* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary: #0b1a3a;
            --secondary: #1a3a6b;
            --gold: #f5b81b;
            --gold-light: #ffe792;
            --accent: #e84c3d;
            --bg: #faf8f4;
            --card-bg: #ffffff;
            --text: #1e1e2a;
            --text-light: #4a4a5a;
            --border: #e0dcd4;
            --shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
            --radius: 16px;
            --radius-sm: 10px;
            --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
            --max-width: 1200px;
            --header-h: 70px;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: var(--font);
            background: var(--bg);
            color: var(--text);
            line-height: 1.7;
            padding-top: var(--header-h);
        }
        a {
            color: var(--secondary);
            text-decoration: none;
            transition: color 0.25s, border-color 0.25s;
        }
        a:hover {
            color: var(--gold);
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--radius-sm);
        }
        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: var(--header-h);
            background: var(--primary);
            z-index: 999;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
            display: flex;
            align-items: center;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
            height: 100%;
        }
        .my-logo {
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--gold);
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 6px;
            text-decoration: none !important;
            transition: opacity 0.2s;
        }
        .my-logo:hover {
            opacity: 0.88;
            text-decoration: none !important;
            color: var(--gold);
        }
        .my-logo i {
            font-size: 1.8rem;
            color: var(--gold);
        }
        .my-logo span {
            color: #fff;
            font-weight: 300;
        }
        .nav-wrap {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 6px;
            align-items: center;
        }
        .nav-list li a {
            color: #eaeef5;
            padding: 8px 14px;
            border-radius: 30px;
            font-size: 0.88rem;
            font-weight: 500;
            transition: background 0.25s, color 0.25s;
            white-space: nowrap;
            text-decoration: none;
        }
        .nav-list li a:hover {
            background: rgba(255, 215, 0, 0.18);
            color: var(--gold);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.6rem;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.08);
        }
        .breadcrumb-wrap {
            background: #f0ede6;
            padding: 12px 0;
            border-bottom: 1px solid var(--border);
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            gap: 4px 8px;
            font-size: 0.82rem;
            color: var(--text-light);
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 8px;
            color: #aaa;
        }
        .breadcrumb a {
            color: var(--secondary);
        }
        .breadcrumb .current {
            color: var(--text-light);
            font-weight: 500;
        }
        .hero {
            background: linear-gradient(135deg, var(--primary) 0%, #162a5e 100%);
            color: #fff;
            padding: 60px 0 50px;
            text-align: center;
            border-bottom: 4px solid var(--gold);
        }
        .hero h1 {
            font-size: 2.6rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            max-width: 900px;
            margin: 0 auto 12px;
        }
        .hero h1 i {
            color: var(--gold);
        }
        .hero .sub {
            font-size: 1.1rem;
            opacity: 0.88;
            max-width: 700px;
            margin: 0 auto 18px;
            font-weight: 300;
        }
        .hero .update-badge {
            display: inline-block;
            background: rgba(255, 215, 0, 0.18);
            padding: 6px 20px;
            border-radius: 40px;
            font-size: 0.85rem;
            color: var(--gold-light);
            border: 1px solid rgba(255, 215, 0, 0.25);
        }
        .hero .update-badge i {
            margin-right: 6px;
        }
        .main-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 40px 0 60px;
        }
        .content-area {
            min-width: 0;
        }
        .sidebar {
            min-width: 0;
        }
        .sidebar-card {
            background: var(--card-bg);
            border-radius: var(--radius);
            padding: 24px 20px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
            margin-bottom: 24px;
        }
        .sidebar-card h3 {
            font-size: 1.1rem;
            margin-bottom: 12px;
            border-bottom: 2px solid var(--gold);
            padding-bottom: 8px;
            display: inline-block;
        }
        .sidebar-card ul {
            list-style: none;
        }
        .sidebar-card ul li {
            padding: 6px 0;
            border-bottom: 1px solid #f0ece4;
        }
        .sidebar-card ul li a {
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .sidebar-card ul li a i {
            color: var(--gold);
            font-size: 0.75rem;
        }
        h2 {
            font-size: 1.9rem;
            font-weight: 700;
            margin: 40px 0 16px;
            color: var(--primary);
            border-left: 5px solid var(--gold);
            padding-left: 18px;
        }
        h3 {
            font-size: 1.4rem;
            font-weight: 600;
            margin: 32px 0 12px;
            color: var(--secondary);
        }
        h4 {
            font-size: 1.15rem;
            font-weight: 600;
            margin: 24px 0 8px;
            color: var(--text);
        }
        p {
            margin-bottom: 16px;
            color: var(--text-light);
        }
        .content-area p strong {
            color: var(--text);
            font-weight: 600;
        }
        .highlight-box {
            background: #fcf8ee;
            border-left: 4px solid var(--gold);
            padding: 20px 24px;
            border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
            margin: 24px 0;
        }
        .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .emoji-big {
            font-size: 1.4rem;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 16px;
            margin: 24px 0;
        }
        .stat-item {
            background: var(--card-bg);
            border-radius: var(--radius-sm);
            padding: 18px 16px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
            text-align: center;
        }
        .stat-item .num {
            font-size: 2rem;
            font-weight: 800;
            color: var(--gold);
            display: block;
        }
        .stat-item .label {
            font-size: 0.85rem;
            color: var(--text-light);
        }
        .img-wrap {
            margin: 32px 0;
            border-radius: var(--radius-sm);
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .img-wrap img {
            width: 100%;
            object-fit: cover;
        }
        .img-wrap figcaption {
            background: #f0ede6;
            padding: 10px 16px;
            font-size: 0.85rem;
            color: var(--text-light);
            font-style: italic;
        }
        .search-module {
            background: var(--card-bg);
            border-radius: var(--radius);
            padding: 28px 30px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
            margin: 36px 0;
        }
        .search-module h3 {
            margin-top: 0;
        }
        .search-form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        .search-form input[type="text"] {
            flex: 1;
            min-width: 200px;
            padding: 12px 18px;
            border: 2px solid var(--border);
            border-radius: 40px;
            font-size: 1rem;
            outline: none;
            transition: border 0.3s;
            background: #faf8f4;
        }
        .search-form input[type="text"]:focus {
            border-color: var(--gold);
        }
        .search-form button {
            background: var(--gold);
            border: none;
            padding: 12px 28px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            color: var(--primary);
            transition: background 0.25s, transform 0.15s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            background: #e0a800;
            transform: scale(1.02);
        }
        .comment-module {
            background: var(--card-bg);
            border-radius: var(--radius);
            padding: 28px 30px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
            margin: 36px 0;
        }
        .comment-module h3 {
            margin-top: 0;
        }
        .comment-form textarea {
            width: 100%;
            min-height: 100px;
            padding: 14px 18px;
            border: 2px solid var(--border);
            border-radius: var(--radius-sm);
            font-size: 1rem;
            font-family: var(--font);
            resize: vertical;
            outline: none;
            transition: border 0.3s;
            background: #faf8f4;
        }
        .comment-form textarea:focus {
            border-color: var(--gold);
        }
        .comment-form .row {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin-top: 12px;
        }
        .comment-form .row input {
            flex: 1;
            min-width: 180px;
            padding: 10px 16px;
            border: 2px solid var(--border);
            border-radius: 40px;
            font-size: 0.95rem;
            outline: none;
            background: #faf8f4;
            transition: border 0.3s;
        }
        .comment-form .row input:focus {
            border-color: var(--gold);
        }
        .comment-form .btn-submit {
            background: var(--secondary);
            color: #fff;
            border: none;
            padding: 10px 32px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .comment-form .btn-submit:hover {
            background: var(--primary);
            transform: scale(1.02);
        }
        .rating-module {
            background: var(--card-bg);
            border-radius: var(--radius);
            padding: 28px 30px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
            margin: 36px 0;
            text-align: center;
        }
        .rating-module h3 {
            margin-top: 0;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 8px;
            font-size: 2.2rem;
            margin: 12px 0 16px;
            direction: rtl;
        }
        .stars input {
            display: none;
        }
        .stars label {
            cursor: pointer;
            color: #ddd;
            transition: color 0.2s, transform 0.15s;
        }
        .stars label:hover,
        .stars label:hover~label,
        .stars input:checked~label {
            color: var(--gold);
        }
        .stars label:hover {
            transform: scale(1.15);
        }
        .rating-module .btn-rate {
            background: var(--gold);
            border: none;
            padding: 10px 36px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            color: var(--primary);
            transition: background 0.25s, transform 0.15s;
        }
        .rating-module .btn-rate:hover {
            background: #e0a800;
            transform: scale(1.02);
        }
        footer {
            background: var(--primary);
            color: #c8d0dd;
            padding: 40px 0 28px;
            margin-top: 20px;
        }
        footer .container {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 32px;
        }
        footer h4 {
            color: var(--gold);
            font-size: 1.05rem;
            margin-bottom: 12px;
            border: none;
        }
        footer a {
            color: #b0bbd0;
        }
        footer a:hover {
            color: var(--gold);
        }
        footer ul {
            list-style: none;
        }
        footer ul li {
            padding: 4px 0;
        }
        footer ul li a {
            font-size: 0.88rem;
        }
        .footer-copy {
            grid-column: 1 / -1;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 20px;
            margin-top: 12px;
            font-size: 0.85rem;
            text-align: center;
            color: #8894aa;
        }
        .footer-copy a {
            color: var(--gold);
        }
        friend-link {
            display: block;
            margin-top: 8px;
            font-size: 0.88rem;
        }
        friend-link a {
            display: inline-block;
            margin: 0 6px 4px 0;
        }
        @media (max-width: 992px) {
            .main-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .sidebar {
                order: 2;
            }
            footer .container {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            :root {
                --header-h: 60px;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .hero .sub {
                font-size: 0.95rem;
            }
            h2 {
                font-size: 1.5rem;
                padding-left: 12px;
            }
            h3 {
                font-size: 1.2rem;
            }
            .search-form input[type="text"] {
                min-width: 140px;
            }
            .comment-form .row input {
                min-width: 140px;
            }
            footer .container {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .nav-list {
                display: none;
                flex-direction: column;
                position: absolute;
                top: var(--header-h);
                left: 0;
                width: 100%;
                background: var(--primary);
                padding: 16px 20px 24px;
                box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
                border-top: 1px solid rgba(255, 255, 255, 0.06);
                gap: 4px;
            }
            .nav-list.open {
                display: flex;
            }
            .nav-list li a {
                padding: 10px 16px;
                font-size: 0.95rem;
                width: 100%;
            }
            .hamburger {
                display: block;
            }
            .sidebar {
                order: 0;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 14px;
            }
            .hero {
                padding: 40px 0 32px;
            }
            .hero h1 {
                font-size: 1.5rem;
            }
            .stat-grid {
                grid-template-columns: 1fr 1fr;
            }
            .search-module,
            .comment-module,
            .rating-module {
                padding: 20px 16px;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                width: 100%;
                justify-content: center;
            }
            .comment-form .row {
                flex-direction: column;
            }
            .comment-form .btn-submit {
                width: 100%;
                justify-content: center;
            }
            .stars {
                font-size: 1.8rem;
            }
        }
