        *,
        *::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: #faf8f5;
            color: #1e1e2a;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        :root {
            --primary: #0b1a3a;
            --primary-light: #1a2d5a;
            --gold: #f5c842;
            --gold-dark: #dba42b;
            --red: #e74c3c;
            --red-light: #ff6b5a;
            --cream: #fdf8f0;
            --text: #1e1e2a;
            --text-light: #4a4a5a;
            --border: #e0d8cc;
            --card-bg: #ffffff;
            --shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            --radius: 12px;
            --transition: 0.25s ease;
        }
        h1,
        h2,
        h3,
        h4,
        h5 {
            font-weight: 700;
            line-height: 1.25;
            color: var(--primary);
            margin-top: 1.8em;
            margin-bottom: 0.6em;
        }
        h1 {
            font-size: 2.6rem;
            margin-top: 0.4em;
            margin-bottom: 0.3em;
            letter-spacing: -0.01em;
            border-bottom: 4px solid var(--gold);
            display: inline-block;
            padding-bottom: 0.15em;
        }
        h2 {
            font-size: 1.9rem;
            border-left: 5px solid var(--gold);
            padding-left: 0.7rem;
        }
        h3 {
            font-size: 1.4rem;
            color: var(--primary-light);
        }
        h4 {
            font-size: 1.15rem;
            font-weight: 600;
            color: var(--text);
        }
        p {
            margin-bottom: 1.2em;
            color: var(--text);
        }
        a {
            color: var(--red);
            text-decoration: none;
            transition: color var(--transition);
            font-weight: 500;
        }
        a:hover {
            color: var(--gold-dark);
            text-decoration: underline;
        }
        strong {
            font-weight: 700;
            color: var(--primary);
        }
        .highlight {
            background: linear-gradient(to right, #fff3d6, #ffe9b8);
            padding: 0.1em 0.3em;
            border-radius: 4px;
        }
        .emoji-big {
            font-size: 1.3em;
            display: inline-block;
            margin-right: 0.2em;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: var(--primary);
            color: #fff;
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 16px rgba(0, 0, 0, 0.2);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            color: var(--gold);
            text-decoration: none;
            letter-spacing: -0.02em;
            transition: opacity var(--transition);
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }
        .my-logo i {
            font-size: 2rem;
            color: var(--gold);
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none;
            color: var(--gold);
        }
        .my-logo span {
            font-weight: 300;
            color: #fff;
            font-size: 0.7rem;
            display: block;
            line-height: 1.2;
            letter-spacing: 0.3px;
        }
        .logo-sub {
            font-size: 0.55rem;
            color: #ccc;
            display: block;
            font-weight: 400;
        }
        nav {
            display: flex;
            align-items: center;
            gap: 1.2rem;
        }
        nav a {
            color: #f0ede8;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 0.3rem 0.6rem;
            border-radius: 6px;
            transition: background var(--transition), color var(--transition);
            position: relative;
        }
        nav a:hover {
            background: rgba(255, 255, 255, 0.12);
            color: var(--gold);
            text-decoration: none;
        }
        nav a i {
            margin-right: 0.3rem;
            font-size: 0.85rem;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--gold);
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.2rem 0.4rem;
            border-radius: 6px;
            transition: background var(--transition);
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .breadcrumb {
            background: #ede8e0;
            padding: 0.6rem 0;
            font-size: 0.85rem;
            color: var(--text-light);
        }
        .breadcrumb .container {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.3rem;
        }
        .breadcrumb a {
            color: var(--primary-light);
            font-weight: 500;
        }
        .breadcrumb a:hover {
            color: var(--red);
        }
        .breadcrumb i {
            font-size: 0.7rem;
            color: #999;
            margin: 0 0.2rem;
        }
        .breadcrumb .current {
            color: var(--text-light);
            font-weight: 400;
        }
        main {
            padding: 2rem 0 3rem;
        }
        .intro-block {
            background: var(--cream);
            border-radius: var(--radius);
            padding: 2rem 2.5rem;
            margin-bottom: 2.5rem;
            border-left: 6px solid var(--gold);
            box-shadow: var(--shadow);
        }
        .intro-block p {
            font-size: 1.08rem;
        }
        .featured-image {
            width: 100%;
            max-width: 900px;
            height: auto;
            border-radius: var(--radius);
            margin: 1.8rem 0;
            box-shadow: var(--shadow);
            display: block;
            border: 1px solid var(--border);
        }
        .image-caption {
            font-size: 0.85rem;
            color: var(--text-light);
            text-align: center;
            margin-top: -1rem;
            margin-bottom: 2rem;
            font-style: italic;
        }
        .section-card {
            background: var(--card-bg);
            border-radius: var(--radius);
            padding: 1.8rem 2.2rem;
            margin-bottom: 2rem;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
            transition: transform 0.15s ease;
        }
        .section-card:hover {
            transform: translateY(-2px);
        }
        .section-card h2 {
            margin-top: 0.2em;
        }
        .section-card h3 {
            margin-top: 1.4em;
        }
        .link-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: 0.8rem 1.2rem;
            margin: 1.2rem 0;
            padding: 0.8rem 1rem;
            background: #f6f2ec;
            border-radius: 10px;
            border: 1px solid #e8e0d6;
        }
        .link-grid a {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            padding: 0.25rem 0;
            font-weight: 500;
            border-bottom: 1px dotted transparent;
            transition: border-color var(--transition);
        }
        .link-grid a:hover {
            border-bottom-color: var(--gold);
            text-decoration: none;
        }
        .link-grid a i {
            color: var(--gold-dark);
            font-size: 0.8rem;
        }
        .search-box {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem;
            margin: 1.4rem 0 0.8rem;
            background: #fff;
            padding: 1.2rem 1.5rem;
            border-radius: 10px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
            border: 1px solid var(--border);
        }
        .search-box input {
            flex: 1 1 200px;
            padding: 0.7rem 1rem;
            border: 2px solid var(--border);
            border-radius: 8px;
            font-size: 1rem;
            background: #fcfaf7;
            transition: border-color var(--transition);
            outline: none;
            min-width: 0;
        }
        .search-box input:focus {
            border-color: var(--gold);
            background: #fff;
        }
        .search-box button {
            padding: 0.7rem 1.6rem;
            background: var(--primary);
            color: #fff;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background var(--transition), transform 0.1s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-box button:hover {
            background: var(--primary-light);
            transform: scale(1.02);
        }
        .search-box button i {
            font-size: 0.9rem;
        }
        .interact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.8rem;
            margin-top: 1.5rem;
        }
        .interact-card {
            background: var(--card-bg);
            border-radius: var(--radius);
            padding: 1.6rem 1.8rem;
            border: 1px solid var(--border);
            box-shadow: var(--shadow);
        }
        .interact-card h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .interact-card textarea {
            width: 100%;
            padding: 0.7rem 1rem;
            border: 2px solid var(--border);
            border-radius: 8px;
            font-size: 0.95rem;
            font-family: inherit;
            resize: vertical;
            min-height: 90px;
            background: #fcfaf7;
            transition: border-color var(--transition);
            outline: none;
        }
        .interact-card textarea:focus {
            border-color: var(--gold);
            background: #fff;
        }
        .interact-card input[type="text"] {
            width: 100%;
            padding: 0.6rem 0.9rem;
            border: 2px solid var(--border);
            border-radius: 8px;
            font-size: 0.95rem;
            background: #fcfaf7;
            transition: border-color var(--transition);
            outline: none;
        }
        .interact-card input[type="text"]:focus {
            border-color: var(--gold);
            background: #fff;
        }
        .interact-card .btn-submit {
            padding: 0.6rem 1.5rem;
            background: var(--gold);
            color: var(--primary);
            border: none;
            border-radius: 8px;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background var(--transition), transform 0.1s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            margin-top: 0.6rem;
        }
        .interact-card .btn-submit:hover {
            background: var(--gold-dark);
            transform: scale(1.02);
        }
        .rating-stars {
            display: flex;
            gap: 0.3rem;
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            margin: 0.5rem 0 0.8rem;
            transition: color 0.1s ease;
        }
        .rating-stars i {
            transition: color 0.15s ease, transform 0.15s ease;
        }
        .rating-stars i:hover,
        .rating-stars i.active {
            color: var(--gold);
            transform: scale(1.1);
        }
        .rating-stars i.active {
            color: var(--gold-dark);
        }
        .form-row {
            display: flex;
            flex-direction: column;
            gap: 0.6rem;
            margin-bottom: 0.8rem;
        }
        footer {
            background: var(--primary);
            color: #ddd;
            padding: 2.5rem 0 1.2rem;
            margin-top: 3rem;
            border-top: 4px solid var(--gold);
        }
        footer .container {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
        }
        footer h4 {
            color: var(--gold);
            margin-top: 0;
            font-size: 1.1rem;
            margin-bottom: 0.8rem;
        }
        footer a {
            color: #ccc;
            font-weight: 400;
            transition: color var(--transition);
        }
        footer a:hover {
            color: var(--gold);
            text-decoration: underline;
        }
        footer .footer-links {
            list-style: none;
            padding: 0;
        }
        footer .footer-links li {
            margin-bottom: 0.4rem;
        }
        footer .footer-links li::before {
            content: "› ";
            color: var(--gold);
            font-weight: 700;
        }
        .copyright {
            grid-column: 1 / -1;
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.85rem;
            color: #aaa;
            margin-top: 1.2rem;
        }
        .copyright strong {
            color: var(--gold);
            font-weight: 600;
        }
        friend-link {
            display: block;
            margin-top: 0.8rem;
            font-size: 0.9rem;
        }
        friend-link a {
            display: inline-block;
            margin-right: 1rem;
            padding: 0.2rem 0.6rem;
            background: rgba(255, 255, 255, 0.06);
            border-radius: 6px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            transition: background 0.2s ease;
        }
        friend-link a:hover {
            background: rgba(255, 255, 255, 0.12);
            text-decoration: none;
        }
        @media (max-width: 900px) {
            footer .container {
                grid-template-columns: 1fr 1fr;
            }
            .interact-grid {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 768px) {
            html {
                font-size: 15px;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            .header-inner {
                padding: 0.2rem 0;
            }
            .hamburger {
                display: block;
            }
            nav {
                display: none;
                flex-direction: column;
                width: 100%;
                background: var(--primary-light);
                padding: 0.8rem 1rem;
                border-radius: 0 0 12px 12px;
                gap: 0.3rem;
                margin-top: 0.6rem;
            }
            nav.open {
                display: flex;
            }
            nav a {
                padding: 0.5rem 0.8rem;
                border-radius: 6px;
                border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            }
            .intro-block {
                padding: 1.2rem 1.2rem;
            }
            .section-card {
                padding: 1.2rem 1.2rem;
            }
            .link-grid {
                grid-template-columns: 1fr 1fr;
            }
            footer .container {
                grid-template-columns: 1fr;
                gap: 1.2rem;
            }
            .search-box {
                padding: 1rem;
            }
            .search-box input {
                flex: 1 1 100%;
            }
            .interact-card {
                padding: 1.2rem;
            }
            .rating-stars {
                font-size: 1.5rem;
            }
            .my-logo {
                font-size: 1.5rem;
            }
        }
        @media (max-width: 480px) {
            .link-grid {
                grid-template-columns: 1fr;
            }
            .breadcrumb {
                font-size: 0.75rem;
            }
            h1 {
                font-size: 1.6rem;
            }
            .container {
                padding: 0 12px;
            }
        }
        .last-updated {
            display: inline-block;
            background: var(--cream);
            padding: 0.3rem 1rem;
            border-radius: 30px;
            font-size: 0.8rem;
            color: var(--text-light);
            border: 1px solid var(--border);
            margin-bottom: 0.8rem;
        }
        .last-updated i {
            color: var(--gold-dark);
            margin-right: 0.3rem;
        }
        .divider {
            height: 2px;
            background: linear-gradient(to right, var(--gold), transparent);
            margin: 2rem 0;
        }
        .text-small {
            font-size: 0.9rem;
            color: var(--text-light);
        }
        .mt-0 {
            margin-top: 0;
        }
        .mb-0 {
            margin-bottom: 0;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .schema-hidden {
            display: none;
        }
        @media (prefers-reduced-motion: reduce) {
            html {
                scroll-behavior: auto;
            }
        }
