        *,
        *::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: #0b0b1a;
            color: #e8e8f0;
            line-height: 1.8;
            padding: 0;
            margin: 0;
            min-height: 100vh;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #f5c518;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus {
            color: #ffdd66;
            text-decoration: underline;
        }
        ul,
        ol {
            padding-left: 1.6rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            color: #fff;
            letter-spacing: 0.01em;
        }
        h1 {
            font-size: 2.4rem;
            margin-bottom: 1rem;
        }
        h2 {
            font-size: 1.9rem;
            margin-top: 2.4rem;
            margin-bottom: 0.9rem;
            border-left: 5px solid #e62429;
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.5rem;
            margin-top: 2rem;
            margin-bottom: 0.7rem;
            color: #f0c040;
        }
        h4 {
            font-size: 1.2rem;
            margin-top: 1.4rem;
            margin-bottom: 0.5rem;
            color: #c0c0e0;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        :root {
            --primary: #e62429;
            --primary-dark: #b71c1c;
            --gold: #f5c518;
            --gold-light: #ffdd66;
            --bg-dark: #0b0b1a;
            --bg-card: #14142b;
            --bg-card-hover: #1e1e3a;
            --text-primary: #e8e8f0;
            --text-secondary: #a8a8c8;
            --border-color: #2a2a4a;
            --shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
            --radius: 12px;
            --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .site-header {
            background: linear-gradient(145deg, #0d0d24 0%, #1a0a0a 100%);
            border-bottom: 3px solid var(--gold);
            padding: 0.6rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(6px);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.8rem;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--gold);
            text-shadow: 0 0 20px rgba(245, 197, 24, 0.3);
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .my-logo i {
            font-size: 2.2rem;
            color: var(--primary);
        }
        .my-logo:hover {
            text-shadow: 0 0 40px rgba(245, 197, 24, 0.6);
            transform: scale(1.02);
            text-decoration: none;
        }
        .my-logo span {
            color: #fff;
            font-weight: 300;
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 0.2rem;
            flex-wrap: wrap;
        }
        .main-nav a {
            padding: 0.5rem 1rem;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.9rem;
            color: #ddd;
            transition: var(--transition);
            border: 1px solid transparent;
        }
        .main-nav a:hover,
        .main-nav a.active {
            background: rgba(245, 197, 24, 0.12);
            border-color: var(--gold);
            color: var(--gold);
            text-decoration: none;
        }
        .main-nav a i {
            margin-right: 0.4rem;
            font-size: 0.85rem;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--gold);
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.2rem 0.6rem;
            transition: var(--transition);
        }
        .hamburger:hover {
            color: #fff;
        }
        .breadcrumb {
            padding: 0.8rem 0 0.2rem;
            font-size: 0.85rem;
            color: var(--text-secondary);
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
            align-items: center;
        }
        .breadcrumb a {
            color: var(--text-secondary);
        }
        .breadcrumb a:hover {
            color: var(--gold);
        }
        .breadcrumb .sep {
            color: #555;
        }
        .search-bar {
            display: flex;
            gap: 0.4rem;
            max-width: 480px;
            margin: 1.2rem 0 0.4rem;
            background: var(--bg-card);
            border-radius: 60px;
            padding: 0.2rem;
            border: 1px solid var(--border-color);
            transition: var(--transition);
        }
        .search-bar:focus-within {
            border-color: var(--gold);
            box-shadow: 0 0 20px rgba(245, 197, 24, 0.15);
        }
        .search-bar input {
            flex: 1;
            background: transparent;
            border: none;
            padding: 0.8rem 1.2rem;
            color: #fff;
            font-size: 1rem;
            outline: none;
            min-width: 0;
        }
        .search-bar input::placeholder {
            color: #666;
            font-style: italic;
        }
        .search-bar button {
            background: var(--gold);
            border: none;
            border-radius: 40px;
            padding: 0.6rem 1.6rem;
            font-weight: 700;
            color: #0b0b1a;
            cursor: pointer;
            transition: var(--transition);
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            gap: 0.4rem;
            white-space: nowrap;
        }
        .search-bar button:hover {
            background: var(--gold-light);
            transform: scale(1.02);
        }
        .hero {
            padding: 2.4rem 0 1.8rem;
            text-align: center;
            background: radial-gradient(ellipse at 50% 20%, rgba(230, 36, 41, 0.08), transparent 70%);
        }
        .hero h1 {
            font-size: 2.8rem;
            background: linear-gradient(135deg, #f5c518, #ffdd66, #f5c518);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: none;
            margin-bottom: 0.4rem;
        }
        .hero .subtitle {
            font-size: 1.2rem;
            color: var(--text-secondary);
            max-width: 720px;
            margin: 0 auto 1.2rem;
        }
        .hero .meta-tag {
            display: inline-block;
            background: rgba(230, 36, 41, 0.2);
            padding: 0.2rem 1.2rem;
            border-radius: 40px;
            font-size: 0.85rem;
            color: var(--gold);
            border: 1px solid rgba(245, 197, 24, 0.25);
        }
        .update-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            background: rgba(245, 197, 24, 0.1);
            padding: 0.3rem 1.2rem;
            border-radius: 40px;
            font-size: 0.85rem;
            color: #aaa;
            margin-top: 0.6rem;
        }
        .update-badge i {
            color: var(--gold);
        }
        .card {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 1.8rem 2rem;
            margin-bottom: 1.8rem;
            border: 1px solid var(--border-color);
            transition: var(--transition);
            box-shadow: var(--shadow);
        }
        .card:hover {
            border-color: rgba(245, 197, 24, 0.25);
            background: var(--bg-card-hover);
        }
        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.6rem;
        }
        .grid-3 {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 1.4rem;
        }
        .featured-img {
            border-radius: var(--radius);
            margin: 1.8rem 0;
            box-shadow: var(--shadow);
            border: 1px solid var(--border-color);
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            background: #1a1a2e;
        }
        .link-list {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem 1.2rem;
            margin: 1rem 0;
        }
        .link-list a {
            background: rgba(245, 197, 24, 0.06);
            padding: 0.3rem 1rem;
            border-radius: 30px;
            border: 1px solid rgba(245, 197, 24, 0.12);
            font-size: 0.9rem;
            transition: var(--transition);
        }
        .link-list a:hover {
            background: rgba(245, 197, 24, 0.15);
            border-color: var(--gold);
            text-decoration: none;
        }
        .interact-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.6rem;
            margin: 2rem 0;
        }
        .interact-card {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 1.6rem 1.8rem;
            border: 1px solid var(--border-color);
        }
        .interact-card h3 {
            margin-top: 0;
            font-size: 1.3rem;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .interact-card textarea,
        .interact-card input,
        .interact-card select {
            width: 100%;
            background: #1a1a30;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 0.8rem 1rem;
            color: #fff;
            font-size: 0.95rem;
            margin-bottom: 0.8rem;
            transition: var(--transition);
            font-family: inherit;
        }
        .interact-card textarea:focus,
        .interact-card input:focus,
        .interact-card select:focus {
            border-color: var(--gold);
            outline: none;
            box-shadow: 0 0 12px rgba(245, 197, 24, 0.08);
        }
        .interact-card textarea {
            min-height: 90px;
            resize: vertical;
        }
        .interact-card .btn-submit {
            background: var(--gold);
            border: none;
            border-radius: 40px;
            padding: 0.7rem 2rem;
            font-weight: 700;
            color: #0b0b1a;
            cursor: pointer;
            transition: var(--transition);
            font-size: 0.95rem;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .interact-card .btn-submit:hover {
            background: var(--gold-light);
            transform: translateY(-2px);
        }
        .star-rating {
            display: flex;
            gap: 0.3rem;
            font-size: 1.6rem;
            color: #444;
            cursor: pointer;
            margin-bottom: 0.8rem;
        }
        .star-rating i {
            transition: var(--transition);
        }
        .star-rating i.active,
        .star-rating i:hover,
        .star-rating i:hover~i {
            color: var(--gold);
        }
        .star-rating i:hover {
            transform: scale(1.2);
        }
        .site-footer {
            background: linear-gradient(145deg, #0a0a1a, #140a0a);
            border-top: 3px solid var(--gold);
            padding: 2.8rem 0 1.6rem;
            margin-top: 2.8rem;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
        }
        .footer-inner h4 {
            color: var(--gold);
            font-size: 1.1rem;
            margin-bottom: 0.8rem;
        }
        .footer-inner a {
            display: block;
            padding: 0.2rem 0;
            color: var(--text-secondary);
            font-size: 0.9rem;
        }
        .footer-inner a:hover {
            color: var(--gold-light);
        }
        .copyright {
            text-align: center;
            padding-top: 1.8rem;
            margin-top: 1.8rem;
            border-top: 1px solid var(--border-color);
            font-size: 0.85rem;
            color: #666;
        }
        .copyright a {
            color: #888;
        }
        .copyright a:hover {
            color: var(--gold);
        }
        friend-link {
            display: block;
            margin: 1.2rem 0 0.6rem;
            padding: 0.8rem 1.2rem;
            background: rgba(245, 197, 24, 0.04);
            border-radius: 8px;
            border: 1px dashed rgba(245, 197, 24, 0.2);
            font-size: 0.9rem;
        }
        friend-link a {
            display: inline-block;
            margin: 0.2rem 0.8rem 0.2rem 0;
            padding: 0.1rem 0.6rem;
            border-radius: 20px;
            background: rgba(255, 255, 255, 0.03);
        }
        friend-link a:hover {
            background: rgba(245, 197, 24, 0.1);
        }
        @media (max-width: 992px) {
            .grid-3 {
                grid-template-columns: 1fr 1fr;
            }
            .footer-inner {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            html {
                font-size: 15px;
            }
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .header-inner {
                flex-wrap: wrap;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                background: #0d0d24;
                padding: 0.8rem 0;
                border-radius: 12px;
                border: 1px solid var(--border-color);
                margin-top: 0.4rem;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 0.7rem 1.2rem;
                border-radius: 0;
                border: none;
                border-bottom: 1px solid rgba(255, 255, 255, 0.04);
            }
            .main-nav a:last-child {
                border-bottom: none;
            }
            .hamburger {
                display: block;
            }
            .grid-2,
            .grid-3,
            .interact-section {
                grid-template-columns: 1fr;
            }
            .interact-section {
                gap: 1.2rem;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 1.4rem;
            }
            .card {
                padding: 1.2rem 1.2rem;
            }
            .search-bar {
                flex-direction: column;
                border-radius: 20px;
                background: transparent;
                border: none;
                gap: 0.6rem;
            }
            .search-bar input {
                background: var(--bg-card);
                border-radius: 40px;
                border: 1px solid var(--border-color);
                padding: 0.7rem 1.2rem;
            }
            .search-bar button {
                justify-content: center;
                padding: 0.7rem 1.2rem;
            }
            .breadcrumb {
                font-size: 0.75rem;
            }
            .update-badge {
                font-size: 0.75rem;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.6rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .my-logo i {
                font-size: 1.6rem;
            }
            .container {
                padding: 0 0.9rem;
            }
            .card {
                padding: 1rem 0.9rem;
            }
        }
        .text-gold {
            color: var(--gold);
        }
        .text-primary {
            color: var(--primary);
        }
        .mb-0 {
            margin-bottom: 0;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mt-2 {
            margin-top: 2rem;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            flex-wrap: wrap;
        }
        .gap-1 {
            gap: 1rem;
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #0b0b1a;
        }
        ::-webkit-scrollbar-thumb {
            background: var(--border-color);
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: var(--gold);
        }
        .schema-hidden {
            display: none;
        }
