        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
            background: #f7f3eb;
            color: #2c2416;
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #b55a2b;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #8a411e;
            text-decoration: underline;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        li {
            margin-bottom: 0.25rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            color: #1e1610;
            margin-top: 1.8rem;
            margin-bottom: 0.75rem;
        }
        h1 {
            font-size: 2.4rem;
            margin-top: 0.5rem;
            border-bottom: 4px solid #d48c5c;
            padding-bottom: 0.5rem;
        }
        h2 {
            font-size: 1.8rem;
            border-bottom: 2px solid #e4c6a8;
            padding-bottom: 0.3rem;
        }
        h3 {
            font-size: 1.35rem;
        }
        h4 {
            font-size: 1.1rem;
            font-weight: 600;
        }
        p {
            margin-bottom: 1rem;
        }
        .text-muted {
            color: #6b5a4a;
        }
        .text-small {
            font-size: 0.9rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(145deg, #2c1f14 0%, #1e1610 100%);
            color: #f0e6d8;
            padding: 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            padding: 0.75rem 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: 1px;
            color: #f0d5b0;
            text-transform: uppercase;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .my-logo i {
            color: #d48c5c;
            font-size: 1.6rem;
        }
        .my-logo:hover {
            color: #ffd7a7;
            text-decoration: none;
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 1.2rem;
            flex-wrap: wrap;
        }
        .main-nav a {
            color: #e4d5c4;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 0.4rem 0.2rem;
            border-bottom: 2px solid transparent;
            transition: all 0.25s ease;
            white-space: nowrap;
        }
        .main-nav a:hover {
            color: #ffd7a7;
            border-bottom-color: #d48c5c;
            text-decoration: none;
        }
        .main-nav a.active {
            color: #ffd7a7;
            border-bottom-color: #d48c5c;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #f0e6d8;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.2rem 0.4rem;
            transition: color 0.2s;
        }
        .hamburger:hover {
            color: #d48c5c;
        }
        .breadcrumb {
            background: #e8ddd0;
            padding: 0.6rem 20px;
            font-size: 0.85rem;
            color: #5a4a3a;
            max-width: 1200px;
            margin: 0 auto;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0;
            margin: 0;
            gap: 0.3rem 0.6rem;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #b55a2b;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #7a5a3a;
        }
        .breadcrumb a:hover {
            color: #b55a2b;
        }
        .breadcrumb .current {
            color: #2c2416;
            font-weight: 600;
        }
        .hero-section {
            background: linear-gradient(135deg, #3d2b1f 0%, #1e1610 100%);
            color: #f0e6d8;
            padding: 2.5rem 20px;
            text-align: center;
            border-bottom: 6px solid #d48c5c;
        }
        .hero-section h1 {
            color: #ffd7a7;
            border-bottom: none;
            font-size: 2.8rem;
            margin-top: 0;
        }
        .hero-section p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 1rem auto 0;
            color: #dccfc0;
        }
        .hero-section .badge {
            display: inline-block;
            background: #d48c5c;
            color: #1e1610;
            font-weight: 700;
            padding: 0.3rem 1.2rem;
            border-radius: 40px;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 0.8rem;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            padding: 2rem 20px 3rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        .content-body {
            min-width: 0;
        }
        .content-body .featured-image {
            border-radius: 12px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
            margin: 1.5rem 0 2rem;
            width: 100%;
            border: 2px solid #e4c6a8;
        }
        .content-body .featured-image+figcaption {
            text-align: center;
            font-style: italic;
            color: #6b5a4a;
            font-size: 0.9rem;
            margin-top: 0.3rem;
        }
        .sidebar {
            background: #f0e8de;
            padding: 1.8rem 1.5rem;
            border-radius: 12px;
            border: 1px solid #e4c6a8;
            height: fit-content;
            position: sticky;
            top: 90px;
        }
        .sidebar h3 {
            font-size: 1.2rem;
            margin-top: 0;
            border-bottom: 2px solid #d48c5c;
            padding-bottom: 0.4rem;
            color: #2c2416;
        }
        .sidebar ul {
            list-style: none;
            padding: 0;
            margin: 1rem 0 0;
        }
        .sidebar li {
            margin-bottom: 0.6rem;
        }
        .sidebar a {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.35rem 0.5rem;
            border-radius: 6px;
            transition: background 0.2s;
            font-weight: 500;
        }
        .sidebar a:hover {
            background: #e4d5c4;
            text-decoration: none;
        }
        .sidebar a i {
            width: 1.2rem;
            color: #b55a2b;
            font-size: 0.9rem;
        }
        .link-list-section {
            background: #f0e8de;
            padding: 1.8rem 1.5rem;
            border-radius: 12px;
            border: 1px solid #e4c6a8;
            margin: 2rem 0;
        }
        .link-list-section h3 {
            margin-top: 0;
            border-bottom: 2px solid #d48c5c;
            padding-bottom: 0.4rem;
        }
        .link-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: 0.6rem 1.2rem;
            margin-top: 1rem;
        }
        .link-grid a {
            display: flex;
            align-items: center;
            gap: 0.4rem;
            padding: 0.3rem 0;
            font-weight: 500;
        }
        .link-grid a i {
            color: #b55a2b;
            font-size: 0.8rem;
        }
        .search-form {
            display: flex;
            gap: 0.5rem;
            margin: 1.5rem 0;
            max-width: 600px;
        }
        .search-form input {
            flex: 1;
            padding: 0.7rem 1.2rem;
            border: 2px solid #d4c0ac;
            border-radius: 40px;
            font-size: 1rem;
            background: #fffcf8;
            transition: border-color 0.3s;
            outline: none;
        }
        .search-form input:focus {
            border-color: #b55a2b;
        }
        .search-form button {
            background: #b55a2b;
            color: #fff;
            border: none;
            border-radius: 40px;
            padding: 0.7rem 1.6rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s;
            font-size: 1rem;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .search-form button:hover {
            background: #8a411e;
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.8rem;
            margin: 2rem 0;
        }
        .feedback-card {
            background: #f0e8de;
            padding: 1.5rem 1.8rem;
            border-radius: 12px;
            border: 1px solid #e4c6a8;
        }
        .feedback-card h3 {
            margin-top: 0;
            border-bottom: 2px solid #d48c5c;
            padding-bottom: 0.4rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .feedback-card textarea,
        .feedback-card input[type="text"],
        .feedback-card select {
            width: 100%;
            padding: 0.6rem 1rem;
            border: 2px solid #d4c0ac;
            border-radius: 8px;
            font-size: 0.95rem;
            background: #fffcf8;
            transition: border-color 0.3s;
            outline: none;
            font-family: inherit;
            margin-bottom: 0.8rem;
        }
        .feedback-card textarea:focus,
        .feedback-card input:focus,
        .feedback-card select:focus {
            border-color: #b55a2b;
        }
        .feedback-card textarea {
            min-height: 100px;
            resize: vertical;
        }
        .feedback-card .btn-submit {
            background: #b55a2b;
            color: #fff;
            border: none;
            border-radius: 40px;
            padding: 0.65rem 2rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s;
            font-size: 0.95rem;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
        }
        .feedback-card .btn-submit:hover {
            background: #8a411e;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.2rem;
            margin-bottom: 0.8rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.8rem;
            color: #d4c0ac;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f5c542;
        }
        .last-updated {
            display: inline-block;
            background: #e8ddd0;
            padding: 0.3rem 1.2rem;
            border-radius: 40px;
            font-size: 0.85rem;
            color: #5a4a3a;
            margin: 0.5rem 0 1.5rem;
        }
        .last-updated i {
            margin-right: 0.4rem;
            color: #b55a2b;
        }
        .site-footer {
            background: #2c1f14;
            color: #dccfc0;
            padding: 2.5rem 20px 1.5rem;
            margin-top: 2rem;
            border-top: 6px solid #d48c5c;
        }
        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
        }
        .footer-inner h4 {
            color: #ffd7a7;
            margin-top: 0;
            border-bottom: 1px solid #5a4a3a;
            padding-bottom: 0.4rem;
        }
        .footer-inner a {
            color: #dccfc0;
        }
        .footer-inner a:hover {
            color: #ffd7a7;
        }
        .footer-inner ul {
            list-style: none;
            padding: 0;
            margin: 0.5rem 0 0;
        }
        .footer-inner li {
            margin-bottom: 0.3rem;
        }
        .footer-bottom {
            max-width: 1200px;
            margin: 1.5rem auto 0;
            padding-top: 1.2rem;
            border-top: 1px solid #5a4a3a;
            text-align: center;
            font-size: 0.85rem;
            color: #a09080;
        }
        friend-link {
            display: block;
            background: #3d2b1f;
            padding: 1.2rem 1.5rem;
            border-radius: 8px;
            margin-top: 1rem;
            border: 1px solid #5a4a3a;
        }
        friend-link a {
            color: #f0d5b0;
            margin: 0 0.6rem;
            font-weight: 500;
        }
        friend-link a:hover {
            color: #ffd7a7;
        }
        @media (max-width: 1024px) {
            .main-content {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                order: 2;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 768px) {
            html {
                font-size: 15px;
            }
            .hamburger {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                padding: 0.8rem 0 0.4rem;
                gap: 0.3rem;
                border-top: 1px solid #5a4a3a;
                margin-top: 0.6rem;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                width: 100%;
                padding: 0.5rem 0.2rem;
                border-bottom: 1px solid #3d2b1f;
            }
            .hero-section h1 {
                font-size: 2rem;
            }
            .hero-section p {
                font-size: 1rem;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            .header-inner {
                padding: 0.5rem 16px;
            }
            .container {
                padding: 0 16px;
            }
            .main-content {
                padding: 1.5rem 16px 2rem;
            }
            .breadcrumb {
                padding: 0.4rem 16px;
                font-size: 0.8rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                justify-content: center;
            }
            .link-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .link-grid {
                grid-template-columns: 1fr;
            }
            .hero-section h1 {
                font-size: 1.6rem;
            }
            .feedback-card {
                padding: 1.2rem;
            }
        }
        .highlight-box {
            background: #e8ddd0;
            border-left: 4px solid #d48c5c;
            padding: 1rem 1.5rem;
            border-radius: 0 8px 8px 0;
            margin: 1.2rem 0;
        }
        .highlight-box strong {
            color: #8a411e;
        }
        .emoji-big {
            font-size: 1.8rem;
            vertical-align: middle;
        }
        hr.divider {
            border: none;
            height: 2px;
            background: linear-gradient(to right, transparent, #d48c5c, transparent);
            margin: 2rem 0;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.2rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #fcf8f2;
            border-radius: 8px;
            overflow: hidden;
        }
        table th,
        table td {
            padding: 0.7rem 1rem;
            border: 1px solid #e4c6a8;
            text-align: left;
        }
        table th {
            background: #d48c5c;
            color: #1e1610;
            font-weight: 700;
        }
        table tr:nth-child(even) {
            background: #f5ede4;
        }
        .tag {
            display: inline-block;
            background: #d48c5c;
            color: #1e1610;
            padding: 0.15rem 0.8rem;
            border-radius: 40px;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
