        *,
        *::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, sans-serif;
            background: #f4f1eb;
            color: #1e1e1e;
            line-height: 1.75;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #b8860b;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover,
        a:focus-visible {
            color: #d4a017;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
            margin: 1rem 0;
        }
        li {
            margin-bottom: 0.4rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(145deg, #0d1b2a 0%, #1b2e45 100%);
            color: #fff;
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
            border-bottom: 3px solid #b8860b;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.6rem;
            font-weight: 800;
            letter-spacing: 1px;
            color: #f7d44a;
            text-shadow: 0 2px 8px rgba(183, 134, 11, 0.5);
            transition: transform 0.2s;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
        }
        .my-logo i {
            font-size: 2rem;
            color: #f7d44a;
        }
        .my-logo span {
            font-size: 0.75rem;
            display: block;
            color: #c0cbd6;
            font-weight: 400;
            letter-spacing: 0;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #f7d44a;
            color: #f7d44a;
            font-size: 1.6rem;
            padding: 0.3rem 0.8rem;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.2s;
        }
        .nav-toggle:hover {
            background: #f7d44a;
            color: #0d1b2a;
        }
        .main-nav {
            display: flex;
            gap: 0.2rem;
            flex-wrap: wrap;
            align-items: center;
        }
        .main-nav a {
            color: #e8edf2;
            padding: 0.5rem 1rem;
            border-radius: 30px;
            font-weight: 500;
            font-size: 0.9rem;
            transition: all 0.2s;
            white-space: nowrap;
        }
        .main-nav a:hover,
        .main-nav a:focus-visible {
            background: #b8860b;
            color: #fff;
            text-decoration: none;
        }
        .main-nav a.active {
            background: #b8860b;
            color: #fff;
        }
        .nav-cta {
            background: #f7d44a !important;
            color: #0d1b2a !important;
            font-weight: 700 !important;
        }
        .nav-cta:hover {
            background: #ffdf6e !important;
            color: #0d1b2a !important;
        }
        .breadcrumb-wrap {
            background: #e8e2d8;
            padding: 0.6rem 0;
            border-bottom: 1px solid #d6cdbf;
            font-size: 0.85rem;
        }
        .breadcrumb {
            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: #7a6a5a;
        }
        .breadcrumb a {
            color: #5a4a3a;
        }
        .breadcrumb a:hover {
            color: #b8860b;
        }
        .breadcrumb .current {
            color: #1e1e1e;
            font-weight: 600;
        }
        .hero-section {
            background: linear-gradient(135deg, #0d1b2a 0%, #1b3a4b 100%);
            border-radius: 20px;
            margin: 2rem 0 1.5rem;
            padding: 2rem 2.5rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 2rem;
            color: #fff;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
        }
        .hero-text {
            flex: 1 1 300px;
        }
        .hero-text h1 {
            font-size: 2.4rem;
            font-weight: 800;
            line-height: 1.25;
            margin-bottom: 0.8rem;
            color: #f7d44a;
        }
        .hero-text p {
            font-size: 1.1rem;
            opacity: 0.92;
            max-width: 580px;
        }
        .hero-img {
            flex: 0 0 280px;
            border-radius: 16px;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
        }
        .hero-img img {
            border-radius: 16px;
            width: 100%;
            height: auto;
        }
        .main-content {
            flex: 1;
            padding: 1.5rem 0 3rem;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
        }
        .content-body {
            background: #fff;
            border-radius: 20px;
            padding: 2.2rem 2.5rem;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
        }
        .content-body h2 {
            font-size: 1.9rem;
            color: #0d1b2a;
            border-bottom: 3px solid #f7d44a;
            padding-bottom: 0.4rem;
            margin: 2.2rem 0 1rem 0;
        }
        .content-body h2:first-child {
            margin-top: 0;
        }
        .content-body h3 {
            font-size: 1.45rem;
            color: #1b3a4b;
            margin: 1.8rem 0 0.6rem 0;
        }
        .content-body h4 {
            font-size: 1.15rem;
            color: #2a4a5c;
            margin: 1.2rem 0 0.4rem 0;
            font-weight: 600;
        }
        .content-body p {
            margin-bottom: 1.1rem;
        }
        .content-body .lead {
            font-size: 1.18rem;
            font-weight: 400;
            color: #2a3a4a;
            border-left: 4px solid #b8860b;
            padding-left: 1.2rem;
            background: #f9f6f0;
            border-radius: 0 8px 8px 0;
            padding: 1rem 1.2rem;
        }
        .highlight-box {
            background: #f0ebe2;
            border-radius: 14px;
            padding: 1.5rem 1.8rem;
            margin: 1.5rem 0;
            border-left: 6px solid #b8860b;
        }
        .highlight-box h4 {
            margin-top: 0;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 1.8rem;
        }
        .sidebar-card {
            background: #fff;
            border-radius: 16px;
            padding: 1.5rem 1.2rem;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
        }
        .sidebar-card h3 {
            font-size: 1.2rem;
            color: #0d1b2a;
            border-bottom: 2px solid #f7d44a;
            padding-bottom: 0.4rem;
            margin-bottom: 1rem;
        }
        .sidebar-card ul {
            padding-left: 0;
            list-style: none;
        }
        .sidebar-card li {
            margin-bottom: 0.7rem;
        }
        .sidebar-card li a {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.4rem 0.6rem;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .sidebar-card li a:hover {
            background: #f0ebe2;
            text-decoration: none;
        }
        .sidebar-card li a i {
            width: 1.4rem;
            color: #b8860b;
        }
        .search-form {
            display: flex;
            gap: 0.4rem;
            margin: 0.6rem 0;
        }
        .search-form input {
            flex: 1;
            padding: 0.6rem 1rem;
            border: 2px solid #d6cdbf;
            border-radius: 30px;
            font-size: 0.95rem;
            outline: none;
            transition: border 0.2s;
        }
        .search-form input:focus {
            border-color: #b8860b;
        }
        .search-form button {
            background: #b8860b;
            border: none;
            color: #fff;
            padding: 0 1.2rem;
            border-radius: 30px;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s;
        }
        .search-form button:hover {
            background: #d4a017;
        }
        .comment-section,
        .score-section {
            margin-top: 2.5rem;
            padding-top: 1.5rem;
            border-top: 2px solid #e8e2d8;
        }
        .comment-section h3,
        .score-section h3 {
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .comment-form textarea,
        .comment-form input,
        .score-form select,
        .score-form input {
            width: 100%;
            padding: 0.7rem 1rem;
            border: 2px solid #d6cdbf;
            border-radius: 12px;
            font-size: 0.95rem;
            margin-bottom: 0.8rem;
            font-family: inherit;
            transition: border 0.2s;
        }
        .comment-form textarea:focus,
        .comment-form input:focus,
        .score-form select:focus {
            border-color: #b8860b;
            outline: none;
        }
        .comment-form textarea {
            min-height: 110px;
            resize: vertical;
        }
        .btn {
            background: #0d1b2a;
            color: #fff;
            border: none;
            padding: 0.7rem 1.8rem;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.2s;
        }
        .btn:hover {
            background: #1b3a4b;
            transform: translateY(-1px);
        }
        .btn-gold {
            background: #b8860b;
        }
        .btn-gold:hover {
            background: #d4a017;
        }
        friend-link {
            display: block;
            background: #0d1b2a;
            color: #e8edf2;
            padding: 2rem 0;
            margin-top: 2rem;
            border-top: 4px solid #b8860b;
        }
        friend-link .container {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem 2rem;
            justify-content: center;
        }
        friend-link a {
            color: #f7d44a;
            font-weight: 500;
            padding: 0.2rem 0.6rem;
            border-radius: 6px;
            transition: background 0.2s;
        }
        friend-link a:hover {
            background: #1b3a4b;
            text-decoration: none;
        }
        .site-footer {
            background: #09121c;
            color: #aab8c7;
            padding: 1.8rem 0;
            text-align: center;
            font-size: 0.9rem;
        }
        .site-footer .copyright {
            color: #7a8a9a;
            letter-spacing: 0.3px;
        }
        .site-footer a {
            color: #f7d44a;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .hero-section {
                flex-direction: column-reverse;
                padding: 1.5rem;
                text-align: center;
            }
            .hero-text h1 {
                font-size: 2rem;
            }
            .hero-img {
                flex: 0 0 200px;
                max-width: 280px;
                margin: 0 auto;
            }
            .content-body {
                padding: 1.5rem;
            }
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #0d1b2a;
                padding: 1rem 0.5rem;
                border-radius: 0 0 16px 16px;
                margin-top: 0.8rem;
                gap: 0.3rem;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 0.7rem 1.2rem;
                width: 100%;
                text-align: center;
            }
            .header-inner {
                align-items: center;
            }
            .my-logo {
                font-size: 1.3rem;
                flex: 1;
            }
            .hero-text h1 {
                font-size: 1.6rem;
            }
            .content-body {
                padding: 1.2rem;
            }
            .breadcrumb-wrap {
                font-size: 0.75rem;
                padding: 0.4rem 0;
            }
            .sidebar-card {
                padding: 1rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 12px;
            }
            .hero-section {
                padding: 1rem;
                margin: 1rem 0;
            }
            .content-body {
                padding: 1rem;
                border-radius: 14px;
            }
            .my-logo {
                font-size: 1.1rem;
            }
            .my-logo i {
                font-size: 1.4rem;
            }
            .btn {
                width: 100%;
                text-align: center;
            }
        }
        .text-gold {
            color: #b8860b;
        }
        .fw-700 {
            font-weight: 700;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex {
            display: flex;
            gap: 0.8rem;
            flex-wrap: wrap;
            align-items: center;
        }
        .gap-1 {
            gap: 1rem;
        }
        .rating-stars {
            color: #f7d44a;
            font-size: 1.3rem;
            letter-spacing: 2px;
        }
        .main-nav {
            transition: all 0.3s ease;
        }
        .main-nav.open {
            display: flex;
        }
