        *,
        *::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, sans-serif;
            background: #f4f7fc;
            color: #1e293b;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        a {
            color: #b8860b;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #f5c518;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        :root {
            --primary: #0a1a3a;
            --secondary: #f5c518;
            --accent: #b8860b;
            --bg-light: #f4f7fc;
            --bg-card: #ffffff;
            --text-dark: #1e293b;
            --text-muted: #475569;
            --gold-gradient: linear-gradient(135deg, #f5c518 0%, #b8860b 100%);
            --shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
            --radius: 16px;
        }
        .site-header {
            background: var(--primary);
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: var(--gold-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            padding: 4px 0;
        }
        .my-logo a {
            color: inherit;
            text-decoration: none;
            -webkit-text-fill-color: transparent;
        }
        .my-logo a:hover {
            text-decoration: none;
        }
        .nav-list {
            display: flex;
            list-style: none;
            align-items: center;
            gap: 6px;
        }
        .nav-list li a {
            color: #e2e8f0;
            padding: 8px 16px;
            border-radius: 40px;
            font-size: 0.92rem;
            font-weight: 500;
            transition: all 0.25s ease;
            display: block;
        }
        .nav-list li a:hover {
            background: rgba(245, 197, 24, 0.15);
            color: #f5c518;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #f5c518;
            font-size: 1.6rem;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(245, 197, 24, 0.1);
        }
        #nav-toggle {
            display: none;
        }
        .breadcrumb-wrap {
            background: #fff;
            border-bottom: 1px solid #e9edf2;
            padding: 10px 0;
            font-size: 0.88rem;
        }
        .breadcrumb {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 6px;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 6px;
            color: #94a3b8;
            font-weight: 600;
        }
        .breadcrumb a {
            color: #475569;
        }
        .breadcrumb a:hover {
            color: #b8860b;
        }
        .breadcrumb .active {
            color: #0a1a3a;
            font-weight: 600;
        }
        .hero {
            background: var(--primary);
            padding: 48px 0 40px;
            text-align: center;
            color: #fff;
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: var(--gold-gradient);
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: var(--gold-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 12px;
        }
        .hero p {
            font-size: 1.15rem;
            max-width: 720px;
            margin: 0 auto;
            color: #cbd5e1;
            line-height: 1.6;
        }
        .hero .last-update {
            display: inline-block;
            margin-top: 16px;
            font-size: 0.85rem;
            color: #94a3b8;
            background: rgba(255, 255, 255, 0.06);
            padding: 4px 16px;
            border-radius: 40px;
        }
        .main-wrap {
            padding: 40px 0 60px;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 32px;
        }
        section {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 32px 36px;
            box-shadow: var(--shadow);
            transition: box-shadow 0.2s ease;
        }
        section:hover {
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
        }
        h2 {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 20px;
            padding-bottom: 8px;
            border-bottom: 3px solid #f5c518;
            display: inline-block;
        }
        h3 {
            font-size: 1.35rem;
            font-weight: 600;
            color: #0f2a4a;
            margin-top: 28px;
            margin-bottom: 12px;
        }
        h4 {
            font-size: 1.08rem;
            font-weight: 600;
            color: #1e3a5f;
            margin-top: 20px;
            margin-bottom: 8px;
        }
        p {
            margin-bottom: 16px;
            color: var(--text-dark);
        }
        .text-muted {
            color: var(--text-muted);
            font-size: 0.95rem;
        }
        .featured-image {
            margin: 24px 0 28px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }
        .featured-image img {
            width: 100%;
            object-fit: cover;
        }
        .featured-image figcaption {
            font-size: 0.82rem;
            color: #64748b;
            padding: 10px 16px;
            background: #f8fafc;
            border-bottom-left-radius: 12px;
            border-bottom-right-radius: 12px;
        }
        .link-group {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 16px;
            margin: 16px 0 20px;
            padding: 0;
            list-style: none;
        }
        .link-group li a {
            background: #f1f5f9;
            padding: 4px 14px;
            border-radius: 40px;
            font-size: 0.88rem;
            font-weight: 500;
            color: var(--primary);
            border: 1px solid #e2e8f0;
            transition: all 0.2s ease;
            display: inline-block;
        }
        .link-group li a:hover {
            background: var(--secondary);
            color: var(--primary);
            border-color: var(--secondary);
            text-decoration: none;
            transform: translateY(-1px);
        }
        .search-section form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            max-width: 560px;
            margin: 12px 0 0;
        }
        .search-section input[type="text"] {
            flex: 1;
            min-width: 180px;
            padding: 12px 20px;
            border: 2px solid #e2e8f0;
            border-radius: 40px;
            font-size: 1rem;
            outline: none;
            transition: border 0.2s ease;
        }
        .search-section input[type="text"]:focus {
            border-color: #f5c518;
        }
        .search-section button {
            padding: 12px 28px;
            background: var(--gold-gradient);
            border: none;
            border-radius: 40px;
            font-weight: 600;
            font-size: 1rem;
            color: #0a1a3a;
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }
        .search-section button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(245, 197, 24, 0.35);
        }
        .comment-box,
        .rating-box {
            margin-top: 24px;
            padding: 20px 24px;
            background: #f8fafc;
            border-radius: 12px;
            border: 1px solid #e9edf2;
        }
        .comment-box textarea {
            width: 100%;
            min-height: 100px;
            padding: 14px 18px;
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            font-size: 0.95rem;
            font-family: inherit;
            resize: vertical;
            outline: none;
            transition: border 0.2s ease;
        }
        .comment-box textarea:focus {
            border-color: #f5c518;
        }
        .comment-box .form-footer {
            display: flex;
            gap: 12px;
            align-items: center;
            flex-wrap: wrap;
            margin-top: 12px;
        }
        .btn {
            padding: 10px 28px;
            border: none;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.2s ease;
            background: var(--gold-gradient);
            color: #0a1a3a;
        }
        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(245, 197, 24, 0.3);
        }
        .btn-outline {
            background: transparent;
            border: 2px solid #cbd5e1;
            color: var(--text-dark);
        }
        .btn-outline:hover {
            border-color: #f5c518;
            background: rgba(245, 197, 24, 0.06);
        }
        .star-rating {
            display: flex;
            gap: 6px;
            font-size: 1.6rem;
            color: #cbd5e1;
            cursor: pointer;
            direction: rtl;
            unicode-bidi: bidi-override;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            color: #cbd5e1;
            transition: color 0.15s ease;
            font-size: 1.8rem;
            line-height: 1;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f5c518;
        }
        .site-footer {
            background: var(--primary);
            color: #cbd5e1;
            padding: 40px 0 20px;
            margin-top: 20px;
        }
        .footer-inner {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 24px;
            justify-content: center;
            list-style: none;
        }
        .footer-links a {
            color: #94a3b8;
            font-size: 0.92rem;
        }
        .footer-links a:hover {
            color: #f5c518;
        }
        friend-link {
            display: block;
            text-align: center;
            padding: 12px 0 4px;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
        }
        friend-link a {
            color: #94a3b8;
            margin: 0 8px;
            font-size: 0.9rem;
        }
        friend-link a:hover {
            color: #f5c518;
        }
        .copyright {
            text-align: center;
            font-size: 0.82rem;
            color: #64748b;
            margin-top: 8px;
        }
        .schema-hidden {
            display: none;
        }
        @media (max-width: 768px) {
            .header-inner {
                flex-wrap: nowrap;
            }
            .hamburger {
                display: block;
            }
            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #0d1f3f;
                padding: 12px 0 18px;
                border-radius: 0 0 16px 16px;
                margin-top: 12px;
                gap: 2px;
            }
            #nav-toggle:checked+.hamburger+.nav-list,
            .nav-list.active {
                display: flex;
            }
            .nav-list li a {
                padding: 10px 20px;
                text-align: center;
            }
            .hero h1 {
                font-size: 1.9rem;
            }
            .hero p {
                font-size: 1rem;
            }
            section {
                padding: 24px 18px;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            .search-section form {
                flex-direction: column;
            }
            .search-section input[type="text"] {
                min-width: auto;
            }
            .star-rating {
                font-size: 1.4rem;
            }
            .star-rating label {
                font-size: 1.5rem;
            }
            .content-grid {
                gap: 24px;
            }
            .footer-links {
                flex-direction: column;
                align-items: center;
            }
        }
        @media (min-width: 769px) {
            .nav-list {
                display: flex !important;
            }
            #nav-toggle {
                display: none;
            }
            .hamburger {
                display: none !important;
            }
        }
        .mt-1 {
            margin-top: 12px;
        }
        .mt-2 {
            margin-top: 24px;
        }
        .mb-1 {
            margin-bottom: 12px;
        }
        .mb-2 {
            margin-bottom: 24px;
        }
        .fw-bold {
            font-weight: 700;
        }
        .text-gold {
            color: #b8860b;
        }
        .list-check {
            list-style: none;
            padding-left: 0;
        }
        .list-check li {
            padding-left: 28px;
            position: relative;
            margin-bottom: 8px;
        }
        .list-check li::before {
            content: "✅";
            position: absolute;
            left: 0;
            top: 0;
        }
        .highlight-box {
            background: #fef9e7;
            border-left: 4px solid #f5c518;
            padding: 16px 20px;
            border-radius: 0 12px 12px 0;
            margin: 20px 0;
        }
        .anchor-offset {
            scroll-margin-top: 80px;
        }
