        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        :root {
            --bg: #0b0a0c;
            --bg-card: #161218;
            --bg-nav: #1e1822;
            --text: #f0e8f0;
            --text-dim: #b0a0b8;
            --accent: #f53b3b;
            --accent2: #ff7a1a;
            --accent-glow: rgba(245, 59, 59, 0.25);
            --border: #2f2635;
            --gold: #f7c948;
            --shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
            --radius: 12px;
            --radius-sm: 6px;
            --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
            --max-width: 1120px;
            --header-h: 68px;
            --transition: 0.25s ease;
        }
        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);
            min-height: 100vh;
        }
        a {
            color: var(--accent2);
            text-decoration: none;
            transition: color var(--transition);
        }
        a:hover {
            color: var(--accent);
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--radius-sm);
        }
        ::selection {
            background: var(--accent);
            color: #fff;
        }
        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: var(--bg-nav);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border);
            height: var(--header-h);
            display: flex;
            align-items: center;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
            gap: 16px;
        }
        .my-logo {
            font-size: 1.6rem;
            font-weight: 900;
            letter-spacing: 1px;
            background: linear-gradient(135deg, var(--accent), var(--accent2));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px var(--accent-glow);
            display: flex;
            align-items: center;
            gap: 8px;
            white-space: nowrap;
        }
        .my-logo i {
            -webkit-text-fill-color: initial;
            color: var(--accent);
            font-size: 1.4rem;
        }
        .my-logo small {
            font-size: 0.55rem;
            -webkit-text-fill-color: initial;
            color: var(--text-dim);
            font-weight: 400;
            letter-spacing: 0.5px;
            display: block;
            margin-top: -2px;
        }
        nav {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        nav a {
            color: var(--text-dim);
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
            transition: all var(--transition);
            position: relative;
        }
        nav a:hover,
        nav a.active {
            color: #fff;
            background: rgba(245, 59, 59, 0.15);
            text-decoration: none;
        }
        nav a.active::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 50%;
            transform: translateX(-50%);
            width: 20px;
            height: 2px;
            background: var(--accent);
            border-radius: 2px;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            background: none;
            border: none;
            padding: 6px;
            z-index: 1001;
        }
        .hamburger span {
            display: block;
            width: 28px;
            height: 2.5px;
            background: var(--text);
            border-radius: 4px;
            transition: all var(--transition);
        }
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 6px 12px;
            padding: 14px 0 6px;
            font-size: 0.8rem;
            color: var(--text-dim);
        }
        .breadcrumb a {
            color: var(--text-dim);
            font-size: 0.8rem;
        }
        .breadcrumb a:hover {
            color: var(--accent2);
        }
        .breadcrumb span {
            color: var(--text);
        }
        .breadcrumb i {
            font-size: 0.55rem;
            color: var(--text-dim);
        }
        .hero {
            padding: 40px 0 30px;
            text-align: center;
            position: relative;
        }
        .hero h1 {
            font-size: clamp(2rem, 6vw, 3.6rem);
            font-weight: 900;
            line-height: 1.15;
            background: linear-gradient(135deg, #fff 20%, var(--accent2) 60%, var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 12px;
        }
        .hero .sub {
            font-size: 1.1rem;
            color: var(--text-dim);
            max-width: 680px;
            margin: 0 auto 16px;
        }
        .hero .badge {
            display: inline-block;
            background: var(--accent-glow);
            color: var(--accent);
            padding: 4px 18px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            border: 1px solid rgba(245, 59, 59, 0.3);
            margin-bottom: 10px;
        }
        .last-updated {
            font-size: 0.75rem;
            color: var(--text-dim);
            margin-top: 8px;
        }
        .last-updated i {
            margin-right: 4px;
        }
        .featured-img-wrap {
            margin: 30px auto;
            max-width: 820px;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
        }
        .featured-img-wrap img {
            width: 100%;
            height: auto;
            aspect-ratio: 16/9;
            object-fit: cover;
            background: var(--bg-card);
        }
        .search-section {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 28px 24px;
            margin: 30px 0;
            border: 1px solid var(--border);
        }
        .search-section form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        .search-section input[type="text"] {
            flex: 1;
            min-width: 200px;
            padding: 12px 18px;
            border-radius: 30px;
            border: 1px solid var(--border);
            background: var(--bg);
            color: var(--text);
            font-size: 1rem;
            outline: none;
            transition: border var(--transition);
        }
        .search-section input[type="text"]:focus {
            border-color: var(--accent);
            box-shadow: 0 0 0 3px var(--accent-glow);
        }
        .search-section button {
            padding: 12px 32px;
            border-radius: 30px;
            border: none;
            background: linear-gradient(135deg, var(--accent), var(--accent2));
            color: #fff;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: opacity var(--transition), transform var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-section button:hover {
            opacity: 0.9;
            transform: scale(1.02);
        }
        .content {
            padding: 10px 0 50px;
        }
        .content h2 {
            font-size: clamp(1.5rem, 3vw, 2.1rem);
            font-weight: 800;
            margin: 44px 0 14px;
            padding-bottom: 8px;
            border-bottom: 3px solid var(--accent);
            display: inline-block;
        }
        .content h3 {
            font-size: clamp(1.2rem, 2.2vw, 1.55rem);
            font-weight: 700;
            margin: 32px 0 12px;
            color: var(--accent2);
        }
        .content h4 {
            font-size: 1.05rem;
            font-weight: 600;
            margin: 22px 0 8px;
            color: var(--gold);
        }
        .content p {
            margin: 0 0 18px;
            color: var(--text-dim);
            font-size: 1rem;
        }
        .content strong {
            color: #fff;
            font-weight: 600;
        }
        .content ul,
        .content ol {
            margin: 0 0 20px 24px;
            color: var(--text-dim);
        }
        .content li {
            margin-bottom: 6px;
        }
        .content .highlight-box {
            background: var(--bg-card);
            border-left: 4px solid var(--accent);
            padding: 18px 22px;
            border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
            margin: 24px 0;
        }
        .content .highlight-box p {
            margin: 0;
        }
        .interact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin: 40px 0;
        }
        @media (max-width:700px) {
            .interact-grid {
                grid-template-columns: 1fr;
            }
        }
        .interact-card {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 28px 24px;
            border: 1px solid var(--border);
        }
        .interact-card h3 {
            margin-top: 0;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .interact-card form {
            display: flex;
            flex-direction: column;
            gap: 14px;
            margin-top: 12px;
        }
        .interact-card input,
        .interact-card textarea,
        .interact-card select {
            padding: 10px 14px;
            border-radius: var(--radius-sm);
            border: 1px solid var(--border);
            background: var(--bg);
            color: var(--text);
            font-size: 0.95rem;
            font-family: var(--font);
            outline: none;
            transition: border var(--transition);
        }
        .interact-card input:focus,
        .interact-card textarea:focus {
            border-color: var(--accent);
        }
        .interact-card textarea {
            min-height: 80px;
            resize: vertical;
        }
        .interact-card button {
            padding: 10px 24px;
            border-radius: 30px;
            border: none;
            background: linear-gradient(135deg, var(--accent), var(--accent2));
            color: #fff;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: opacity var(--transition);
            align-self: flex-start;
        }
        .interact-card button:hover {
            opacity: 0.9;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 4px;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.6rem;
            color: var(--border);
            cursor: pointer;
            transition: color 0.15s;
        }
        .star-rating input:checked~label,
        .star-rating label:hover,
        .star-rating label:hover~label {
            color: var(--gold);
        }
        footer {
            background: var(--bg-card);
            border-top: 1px solid var(--border);
            padding: 40px 0 24px;
            margin-top: 50px;
        }
        footer .container {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }
        friend-link {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 24px;
            padding: 16px 0;
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }
        friend-link a {
            color: var(--text-dim);
            font-size: 0.85rem;
        }
        friend-link a:hover {
            color: var(--accent2);
        }
        .footer-copy {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
            font-size: 0.8rem;
            color: var(--text-dim);
        }
        @media (max-width: 860px) {
            .hamburger {
                display: flex;
            }
            nav {
                position: fixed;
                top: var(--header-h);
                left: 0;
                right: 0;
                background: var(--bg-nav);
                flex-direction: column;
                padding: 20px 24px 30px;
                gap: 10px;
                transform: translateY(-120%);
                opacity: 0;
                transition: all 0.35s ease;
                border-bottom: 2px solid var(--border);
                box-shadow: var(--shadow);
                pointer-events: none;
                z-index: 999;
            }
            nav.open {
                transform: translateY(0);
                opacity: 1;
                pointer-events: auto;
            }
            nav a {
                font-size: 1rem;
                padding: 10px 16px;
                width: 100%;
                border-radius: var(--radius-sm);
            }
            nav a.active::after {
                display: none;
            }
            .breadcrumb {
                font-size: 0.7rem;
                gap: 4px 8px;
            }
        }
        @media (max-width: 480px) {
            :root {
                --header-h: 60px;
            }
            .my-logo {
                font-size: 1.2rem;
            }
            .my-logo small {
                font-size: 0.45rem;
            }
            .hero h1 {
                font-size: 1.6rem;
            }
            .search-section form {
                flex-direction: column;
            }
            .search-section button {
                justify-content: center;
            }
            .interact-card {
                padding: 20px 16px;
            }
            footer .container {
                gap: 16px;
            }
        }
        ::-webkit-scrollbar {
            width: 6px;
        }
        ::-webkit-scrollbar-track {
            background: var(--bg);
        }
        ::-webkit-scrollbar-thumb {
            background: var(--border);
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: var(--text-dim);
        }
        .schema-hidden {
            display: none;
        }
