        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        :root {
            --bg-dark: #0a1428;
            --bg-card: #1c2a4a;
            --bg-card-hover: #24345a;
            --gold: #c8aa6e;
            --gold-light: #e8d5a3;
            --gold-dark: #a8874a;
            --text-primary: #f0f0f0;
            --text-secondary: #b8c6d9;
            --text-muted: #7a8aa3;
            --accent-blue: #3c7dd9;
            --accent-red: #d93c3c;
            --accent-green: #3cd97a;
            --border-subtle: rgba(200, 170, 110, 0.2);
            --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.5);
            --radius: 12px;
            --radius-sm: 6px;
            --font-body: 'Segoe UI', system-ui, -apple-system, sans-serif;
            --font-heading: 'Segoe UI', system-ui, -apple-system, sans-serif;
            --max-width: 1200px;
            --header-height: 72px;
            --transition: 0.25s ease;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: var(--font-body);
            background: var(--bg-dark);
            color: var(--text-primary);
            line-height: 1.7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: var(--gold);
            text-decoration: none;
            transition: color var(--transition);
        }
        a:hover,
        a:focus-visible {
            color: var(--gold-light);
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: var(--font-heading);
            font-weight: 700;
            line-height: 1.25;
            color: var(--gold-light);
            margin-top: 1.8rem;
            margin-bottom: 0.8rem;
        }
        h1 {
            font-size: 2.4rem;
            margin-top: 0.5rem;
            border-bottom: 2px solid var(--gold-dark);
            padding-bottom: 0.6rem;
        }
        h2 {
            font-size: 1.8rem;
            border-left: 4px solid var(--gold);
            padding-left: 0.8rem;
        }
        h3 {
            font-size: 1.4rem;
            color: var(--text-primary);
        }
        h4 {
            font-size: 1.15rem;
            color: var(--text-secondary);
            font-weight: 600;
        }
        p {
            margin-bottom: 1.2rem;
            color: var(--text-secondary);
        }
        strong,
        b {
            color: var(--text-primary);
            font-weight: 700;
        }
        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 1.2rem;
            width: 100%;
        }
        .skip-link {
            position: absolute;
            top: -100%;
            left: 0;
            background: var(--gold);
            color: var(--bg-dark);
            padding: 0.6rem 1.2rem;
            z-index: 10000;
            font-weight: 700;
            border-radius: 0 0 var(--radius-sm) 0;
        }
        .skip-link:focus {
            top: 0;
        }
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(10, 20, 40, 0.95);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border-subtle);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: var(--header-height);
            gap: 1rem;
        }
        .my-logo {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--gold);
            letter-spacing: 0.5px;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            white-space: nowrap;
        }
        .my-logo i {
            font-size: 1.8rem;
            color: var(--gold-light);
        }
        .my-logo span {
            font-size: 0.7rem;
            font-weight: 400;
            color: var(--text-muted);
            display: block;
            line-height: 1.2;
        }
        .my-logo:hover {
            text-decoration: none;
            color: var(--gold-light);
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--gold);
            font-size: 1.6rem;
            cursor: pointer;
            padding: 0.3rem 0.6rem;
            border-radius: var(--radius-sm);
            transition: background var(--transition);
        }
        .nav-toggle:hover {
            background: rgba(200, 170, 110, 0.15);
        }
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 0.2rem;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .nav-menu li a {
            display: block;
            padding: 0.5rem 0.9rem;
            border-radius: var(--radius-sm);
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--text-secondary);
            transition: background var(--transition), color var(--transition);
            white-space: nowrap;
        }
        .nav-menu li a:hover,
        .nav-menu li a:focus-visible {
            background: rgba(200, 170, 110, 0.12);
            color: var(--gold);
            text-decoration: none;
        }
        .nav-menu li a.active {
            color: var(--gold);
            background: rgba(200, 170, 110, 0.08);
        }
        .breadcrumbs {
            padding: 0.8rem 0 0.4rem;
            font-size: 0.85rem;
            color: var(--text-muted);
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
            list-style: none;
        }
        .breadcrumbs li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: var(--gold-dark);
            font-weight: 700;
        }
        .breadcrumbs a {
            color: var(--text-secondary);
        }
        .breadcrumbs a:hover {
            color: var(--gold);
        }
        .breadcrumbs .current {
            color: var(--gold);
            font-weight: 600;
        }
        .main-content {
            flex: 1;
            padding: 1.5rem 0 3rem;
        }
        .section-card {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 2rem 1.8rem;
            margin-bottom: 2.2rem;
            border: 1px solid var(--border-subtle);
            box-shadow: var(--shadow-card);
            transition: background var(--transition), border-color var(--transition);
        }
        .section-card:hover {
            background: var(--bg-card-hover);
            border-color: rgba(200, 170, 110, 0.35);
        }
        .search-form {
            display: flex;
            gap: 0.6rem;
            flex-wrap: wrap;
            margin: 1.2rem 0 0.6rem;
        }
        .search-form input[type="text"] {
            flex: 1;
            min-width: 180px;
            padding: 0.7rem 1.2rem;
            border-radius: var(--radius-sm);
            border: 1px solid var(--border-subtle);
            background: rgba(255, 255, 255, 0.06);
            color: var(--text-primary);
            font-size: 0.95rem;
            transition: border var(--transition), background var(--transition);
        }
        .search-form input[type="text"]:focus {
            outline: none;
            border-color: var(--gold);
            background: rgba(255, 255, 255, 0.1);
        }
        .search-form button {
            padding: 0.7rem 1.6rem;
            background: var(--gold-dark);
            border: none;
            border-radius: var(--radius-sm);
            color: var(--bg-dark);
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background var(--transition), transform 0.15s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form button:hover,
        .search-form button:focus-visible {
            background: var(--gold);
            transform: scale(1.02);
        }
        .comment-form,
        .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 1.2rem;
        }
        .comment-form textarea {
            width: 100%;
            min-height: 110px;
            padding: 0.8rem 1rem;
            border-radius: var(--radius-sm);
            border: 1px solid var(--border-subtle);
            background: rgba(255, 255, 255, 0.06);
            color: var(--text-primary);
            font-size: 0.95rem;
            font-family: var(--font-body);
            resize: vertical;
            transition: border var(--transition);
        }
        .comment-form textarea:focus {
            outline: none;
            border-color: var(--gold);
            background: rgba(255, 255, 255, 0.1);
        }
        .comment-form input[type="text"],
        .rating-form input[type="number"],
        .rating-form input[type="text"] {
            padding: 0.7rem 1rem;
            border-radius: var(--radius-sm);
            border: 1px solid var(--border-subtle);
            background: rgba(255, 255, 255, 0.06);
            color: var(--text-primary);
            font-size: 0.95rem;
            transition: border var(--transition);
            max-width: 360px;
        }
        .comment-form input:focus,
        .rating-form input:focus {
            outline: none;
            border-color: var(--gold);
            background: rgba(255, 255, 255, 0.1);
        }
        .btn-primary {
            padding: 0.7rem 2rem;
            background: var(--gold-dark);
            border: none;
            border-radius: var(--radius-sm);
            color: var(--bg-dark);
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background var(--transition), transform 0.15s;
            align-self: flex-start;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .btn-primary:hover,
        .btn-primary:focus-visible {
            background: var(--gold);
            transform: scale(1.02);
        }
        .rating-stars {
            display: flex;
            gap: 0.4rem;
            font-size: 1.6rem;
            color: var(--gold-dark);
            cursor: pointer;
            flex-wrap: wrap;
        }
        .rating-stars i {
            transition: color var(--transition), transform 0.15s;
        }
        .rating-stars i:hover,
        .rating-stars i.active {
            color: var(--gold);
            transform: scale(1.1);
        }
        .rating-stars i.fa-solid {
            color: var(--gold);
        }
        .featured-image {
            border-radius: var(--radius);
            overflow: hidden;
            margin: 1.8rem 0;
            border: 1px solid var(--border-subtle);
            box-shadow: var(--shadow-card);
            background: var(--bg-card);
        }
        .featured-image img {
            width: 100%;
            height: auto;
            aspect-ratio: 16/9;
            object-fit: cover;
            display: block;
        }
        .featured-image figcaption {
            padding: 0.8rem 1.2rem;
            font-size: 0.85rem;
            color: var(--text-muted);
            font-style: italic;
            border-top: 1px solid var(--border-subtle);
        }
        .link-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 0.6rem 1.2rem;
            list-style: none;
            padding: 0;
            margin: 1rem 0 0.4rem;
        }
        .link-grid li a {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            padding: 0.3rem 0;
            font-size: 0.92rem;
        }
        .link-grid li a i {
            font-size: 0.75rem;
            color: var(--gold-dark);
        }
        friend-link {
            display: block;
            padding: 1.2rem 0 0.4rem;
            border-top: 1px solid var(--border-subtle);
            margin-top: 1.2rem;
        }
        friend-link a {
            display: inline-block;
            margin: 0.2rem 1.2rem 0.2rem 0;
            font-size: 0.9rem;
            color: var(--text-secondary);
        }
        friend-link a:hover {
            color: var(--gold);
        }
        .site-footer {
            background: rgba(0, 0, 0, 0.5);
            border-top: 1px solid var(--border-subtle);
            padding: 2rem 0 1.5rem;
            margin-top: 2rem;
        }
        .footer-inner {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 1.5rem;
        }
        .footer-copy {
            font-size: 0.85rem;
            color: var(--text-muted);
        }
        .footer-copy strong {
            color: var(--text-secondary);
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem 1.6rem;
            list-style: none;
            padding: 0;
        }
        .footer-links a {
            font-size: 0.85rem;
            color: var(--text-muted);
        }
        .footer-links a:hover {
            color: var(--gold);
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .section-card {
                padding: 1.4rem 1rem;
            }
            .header-inner {
                flex-wrap: wrap;
                height: auto;
                min-height: var(--header-height);
                padding: 0.5rem 0;
            }
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                background: rgba(10, 20, 40, 0.98);
                padding: 0.6rem 0 1rem;
                border-top: 1px solid var(--border-subtle);
                gap: 0;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu li a {
                padding: 0.7rem 1rem;
                border-radius: 0;
                border-bottom: 1px solid rgba(200, 170, 110, 0.08);
            }
            .breadcrumbs {
                font-size: 0.78rem;
            }
            .link-grid {
                grid-template-columns: 1fr 1fr;
            }
            .footer-inner {
                flex-direction: column;
            }
            .my-logo {
                font-size: 1.2rem;
            }
            .my-logo span {
                font-size: 0.6rem;
            }
            .rating-stars {
                font-size: 1.4rem;
            }
        }
        @media (max-width: 480px) {
            .link-grid {
                grid-template-columns: 1fr;
            }
            .search-form input[type="text"] {
                min-width: 140px;
            }
            .container {
                padding: 0 0.8rem;
            }
            .section-card {
                padding: 1rem 0.8rem;
            }
            h1 {
                font-size: 1.5rem;
            }
        }
        :focus-visible {
            outline: 2px solid var(--gold);
            outline-offset: 2px;
        }
        ::selection {
            background: var(--gold-dark);
            color: var(--bg-dark);
        }
        ::-webkit-scrollbar {
            width: 8px;
            height: 8px;
        }
        ::-webkit-scrollbar-track {
            background: var(--bg-dark);
        }
        ::-webkit-scrollbar-thumb {
            background: var(--gold-dark);
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: var(--gold);
        }
        @media print {
            .site-header,
            .site-footer,
            .search-form,
            .comment-form,
            .rating-form,
            .nav-toggle {
                display: none !important;
            }
            body {
                background: #fff;
                color: #000;
            }
            .section-card {
                background: #f5f5f5;
                border: 1px solid #ccc;
                box-shadow: none;
            }
            a {
                color: #0044cc;
            }
        }
