        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
            background: #faf7f2;
            color: #2e241f;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #b35d2b;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover,
        a:focus-visible {
            color: #7a3e1a;
            text-decoration: underline;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .site-header {
            background: linear-gradient(145deg, #1f2a2f, #0f1a1f);
            color: #f5ede6;
            padding: 0.8rem 0;
            border-bottom: 4px solid #d9923a;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        .header-inner {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 0.5rem 1rem;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: 1px;
            color: #f5ede6;
            text-transform: uppercase;
            font-family: 'Georgia', serif;
            background: linear-gradient(135deg, #f5d98a, #d9923a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: transform 0.25s;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
        }
        .my-logo i {
            -webkit-text-fill-color: #d9923a;
            font-size: 2rem;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #d9923a;
            color: #f5ede6;
            font-size: 1.6rem;
            padding: 0.3rem 0.8rem;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(217, 146, 58, 0.2);
        }
        .nav-menu {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.2rem 1.2rem;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .nav-menu li a {
            color: #e8ddd4;
            font-weight: 500;
            padding: 0.4rem 0.2rem;
            border-bottom: 2px solid transparent;
            transition: border-color 0.25s, color 0.25s;
            font-size: 0.95rem;
            white-space: nowrap;
        }
        .nav-menu li a:hover,
        .nav-menu li a.active {
            border-bottom-color: #d9923a;
            color: #f5d98a;
            text-decoration: none;
        }
        .nav-menu li a i {
            margin-right: 0.3rem;
            font-size: 0.85rem;
        }
        .breadcrumb {
            background: #ede7df;
            padding: 0.6rem 0;
            font-size: 0.85rem;
            border-bottom: 1px solid #d9cfc4;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
            padding: 0;
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #8a7a6e;
            font-weight: 600;
        }
        .breadcrumb a {
            color: #7a5a3e;
        }
        .breadcrumb .current {
            color: #3d2c1f;
            font-weight: 600;
        }
        main {
            padding: 2rem 0 3rem;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
        }
        @media (max-width: 900px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 800;
            color: #1f2a2f;
            margin-bottom: 0.6rem;
            line-height: 1.2;
            letter-spacing: -0.5px;
            border-left: 6px solid #d9923a;
            padding-left: 1.2rem;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #2a1f17;
            margin-top: 3rem;
            margin-bottom: 1rem;
            border-bottom: 2px solid #e3d5c8;
            padding-bottom: 0.4rem;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #3d2c1f;
            margin-top: 2.2rem;
            margin-bottom: 0.8rem;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #5a3f2e;
            margin-top: 1.6rem;
            margin-bottom: 0.5rem;
        }
        p {
            margin-bottom: 1.2rem;
        }
        .lead {
            font-size: 1.2rem;
            color: #3d2c1f;
            font-weight: 400;
            background: #f0e9e1;
            padding: 1.2rem 1.8rem;
            border-radius: 12px;
            border-left: 5px solid #d9923a;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.5rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #fffcf8;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
        }
        th,
        td {
            padding: 0.8rem 1rem;
            text-align: left;
            border-bottom: 1px solid #e8ddd4;
        }
        th {
            background: #1f2a2f;
            color: #f5ede6;
            font-weight: 600;
        }
        tr:last-child td {
            border-bottom: none;
        }
        tr:hover td {
            background: #f6f0ea;
        }
        .card {
            background: #fffcf8;
            border-radius: 16px;
            padding: 1.8rem;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
            margin-bottom: 2rem;
            border: 1px solid #ece4db;
            transition: box-shadow 0.3s;
        }
        .card:hover {
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
        }
        .sidebar {
            position: sticky;
            top: 6rem;
            align-self: start;
        }
        .sidebar .card {
            padding: 1.4rem;
        }
        .sidebar h3 {
            font-size: 1.2rem;
            margin-top: 0;
            border-bottom: 2px solid #d9923a;
            padding-bottom: 0.4rem;
        }
        .sidebar ul {
            list-style: none;
            padding: 0;
        }
        .sidebar ul li {
            padding: 0.3rem 0;
            border-bottom: 1px dashed #e3d5c8;
        }
        .sidebar ul li a {
            display: block;
            font-weight: 500;
        }
        .search-form {
            display: flex;
            gap: 0.6rem;
            margin: 1.5rem 0;
            flex-wrap: wrap;
        }
        .search-form input[type="search"] {
            flex: 1;
            min-width: 180px;
            padding: 0.8rem 1.2rem;
            border: 2px solid #d9cfc4;
            border-radius: 40px;
            font-size: 1rem;
            background: #fffcf8;
            transition: border-color 0.3s, box-shadow 0.3s;
            outline: none;
        }
        .search-form input[type="search"]:focus {
            border-color: #d9923a;
            box-shadow: 0 0 0 4px rgba(217, 146, 58, 0.15);
        }
        .search-form button {
            background: #1f2a2f;
            color: #f5ede6;
            border: none;
            padding: 0.8rem 1.8rem;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            font-size: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form button:hover {
            background: #d9923a;
            transform: scale(1.02);
        }
        .comment-form,
        .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 1rem;
        }
        .comment-form label,
        .rating-form label {
            font-weight: 600;
            color: #3d2c1f;
        }
        .comment-form input,
        .comment-form textarea,
        .rating-form select,
        .rating-form input {
            padding: 0.7rem 1rem;
            border: 2px solid #d9cfc4;
            border-radius: 10px;
            font-size: 1rem;
            background: #fffcf8;
            transition: border-color 0.3s;
            outline: none;
            font-family: inherit;
        }
        .comment-form input:focus,
        .comment-form textarea:focus,
        .rating-form select:focus,
        .rating-form input:focus {
            border-color: #d9923a;
        }
        .comment-form textarea {
            min-height: 120px;
            resize: vertical;
        }
        .comment-form button,
        .rating-form button {
            align-self: flex-start;
            background: #d9923a;
            color: #1f2a2f;
            border: none;
            padding: 0.7rem 2rem;
            border-radius: 40px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
        }
        .comment-form button:hover,
        .rating-form button:hover {
            background: #c07d2a;
            transform: scale(1.02);
        }
        .site-footer {
            background: #1f2a2f;
            color: #d9cfc4;
            padding: 2.5rem 0 1.5rem;
            border-top: 4px solid #d9923a;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .site-footer h4 {
            color: #f5d98a;
            font-size: 1.1rem;
            margin-bottom: 0.8rem;
            border-bottom: 1px solid #3a4a52;
            padding-bottom: 0.4rem;
        }
        .site-footer ul {
            list-style: none;
            padding: 0;
        }
        .site-footer ul li {
            margin-bottom: 0.3rem;
        }
        .site-footer ul li a {
            color: #bfb0a4;
            font-size: 0.9rem;
        }
        .site-footer ul li a:hover {
            color: #f5d98a;
        }
        .friend-link {
            display: block;
            background: #2a383f;
            padding: 1.5rem 1.8rem;
            border-radius: 12px;
            margin: 1.5rem 0 1rem;
            border-left: 5px solid #d9923a;
        }
        .friend-link h4 {
            color: #f5d98a;
            margin-top: 0;
            border: none;
        }
        .friend-link .links {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem 1.8rem;
        }
        .friend-link .links a {
            color: #e8ddd4;
            font-weight: 500;
        }
        .friend-link .links a:hover {
            color: #f5d98a;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #3a4a52;
            font-size: 0.85rem;
            color: #a89788;
        }
        .copyright strong {
            color: #d9cfc4;
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #1f2a2f;
                padding: 1rem 0;
                border-top: 2px solid #d9923a;
                margin-top: 0.5rem;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu li a {
                padding: 0.6rem 1rem;
                border-bottom: 1px solid #2f3d45;
                width: 100%;
            }
            .header-inner {
                flex-wrap: wrap;
            }
            h1 {
                font-size: 1.9rem;
                padding-left: 0.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .content-grid {
                gap: 1.5rem;
            }
            .sidebar {
                position: static;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                justify-content: center;
            }
            .friend-link .links {
                flex-direction: column;
                gap: 0.3rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 0.8rem;
            }
            h1 {
                font-size: 1.5rem;
            }
            .lead {
                font-size: 1rem;
                padding: 0.8rem 1rem;
            }
            .card {
                padding: 1.2rem;
            }
        }
        .badge {
            display: inline-block;
            background: #d9923a;
            color: #1f2a2f;
            font-size: 0.75rem;
            font-weight: 700;
            padding: 0.2rem 0.8rem;
            border-radius: 40px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .updated {
            font-size: 0.9rem;
            color: #8a7a6e;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .updated i {
            color: #d9923a;
        }
        .img-wrapper {
            border-radius: 16px;
            overflow: hidden;
            margin: 1.8rem 0;
            background: #e3d5c8;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
        }
        .img-wrapper img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }
        .img-wrapper figcaption {
            padding: 0.8rem 1.2rem;
            background: #f0e9e1;
            font-size: 0.9rem;
            color: #5a3f2e;
            font-style: italic;
        }
        .highlight {
            background: linear-gradient(to right, #fdf6e3, #faf0dc);
            padding: 0.2rem 0.5rem;
            border-radius: 6px;
            font-weight: 600;
        }
        .btn-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background: #1f2a2f;
            color: #f5ede6;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
            transition: background 0.25s, transform 0.2s;
            border: none;
            cursor: pointer;
            z-index: 999;
        }
        .btn-top:hover {
            background: #d9923a;
            transform: translateY(-4px);
            color: #1f2a2f;
        }
        @media (max-width: 480px) {
            .btn-top {
                bottom: 1rem;
                right: 1rem;
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }
        }
        .stars {
            color: #d9923a;
            letter-spacing: 2px;
            font-size: 1.1rem;
        }
        .rating-value {
            font-weight: 700;
            color: #1f2a2f;
        }
        .schema-hidden {
            display: none;
        }
