﻿/* ============================================================
   NEON ARCADE — Dark Gaming Design System v4.0
   Deep space · Neon glow · Glassmorphism · Premium game vibe
   ============================================================ */

/* ============ DESIGN TOKENS ============ */
:root {
    /* Deep space palette */
    --gv-bg: #060912;
    --gv-bg-alt: #0b0e1d;
    --gv-surface: #0e1226;
    --gv-surface2: #131832;
    --gv-card: #10142b;
    --gv-card-hover: #151b3a;
    --gv-card-solid: #10142b;
    --gv-border: #1e2647;
    --gv-border2: #2a335c;

    /* Typography */
    --gv-ink: #f3f5ff;
    --gv-text: #a7aed1;
    --gv-muted: #6c74a3;

    /* Accent — neon purple + cyan + pink */
    --gv-accent: #8b5cff;
    --gv-accent-d: #7547e6;
    --gv-accent-l: rgba(139,92,255,.12);
    --gv-accent2: #19e3c8;
    --gv-accent2-l: rgba(25,227,200,.1);
    --gv-accent3: #ff5e9c;
    --gv-accent3-l: rgba(255,94,156,.1);
    --gv-amber: #ffce4d;
    --gv-danger: #ff5e7a;
    --gv-success: #2fe089;

    /* Gradients */
    --gv-grad-primary: linear-gradient(135deg, #8b5cff 0%, #19e3c8 100%);
    --gv-grad-secondary: linear-gradient(135deg, #ff5e9c 0%, #8b5cff 100%);
    --gv-grad-card: linear-gradient(160deg, rgba(139,92,255,.14), rgba(25,227,200,.06));
    --gv-grad-header: linear-gradient(90deg, rgba(139,92,255,.9), rgba(25,227,200,.9));

    /* Neon glow shadows */
    --gv-glow: 0 0 0 1px rgba(139,92,255,.45), 0 18px 48px rgba(139,92,255,.28);
    --gv-glow-soft: 0 0 0 1px rgba(139,92,255,.28), 0 10px 30px rgba(139,92,255,.16);
    --gv-glow-cyan: 0 0 0 1px rgba(25,227,200,.45), 0 18px 48px rgba(25,227,200,.22);

    /* Soft shadows for dark UI */
    --gv-shadow-sm: 0 1px 2px rgba(0,0,0,.4);
    --gv-shadow: 0 8px 28px rgba(0,0,0,.5);
    --gv-shadow-lg: 0 22px 60px rgba(0,0,0,.6);
    --gv-shadow-card: 0 0 0 1px var(--gv-border), 0 6px 20px rgba(0,0,0,.4);
    --gv-shadow-card-hover: 0 0 0 1px rgba(139,92,255,.5), 0 20px 46px rgba(139,92,255,.22);

    /* Border radius */
    --gv-r-sm: 10px;
    --gv-r: 14px;
    --gv-r-lg: 20px;
    --gv-r-xl: 26px;
    --gv-r-pill: 100px;

    /* Layout */
    --gv-shell: 1480px;
    --gv-header-h: 70px;

    /* Typography */
    --gv-font: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --gv-display: "Space Grotesk", "Plus Jakarta Sans", -apple-system, sans-serif;
}

/* ============ RESET & BASE ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; font-size: 16px; }
body {
    font-family: var(--gv-font);
    background:
        radial-gradient(1100px 620px at 82% -8%, rgba(139,92,255,.16), transparent 60%),
        radial-gradient(900px 520px at -6% 8%, rgba(25,227,200,.10), transparent 55%),
        var(--gv-bg);
    background-attachment: fixed;
    color: var(--gv-text);
    line-height: 1.65;
    overflow-x: hidden;
    min-height: 100vh;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ============ HEADER ============ */
.gv-header {
    position: sticky; top: 0; z-index: 1000;
    background: rgba(8,11,22,.72);
    backdrop-filter: blur(18px) saturate(180%);
    -webkit-backdrop-filter: blur(18px) saturate(180%);
    border-bottom: 1px solid var(--gv-border);
    height: var(--gv-header-h);
}
.gv-header__inner {
    max-width: var(--gv-shell);
    margin: 0 auto; padding: 0 40px;
    height: 100%; display: flex; align-items: center; gap: 24px;
}
.gv-header__brand {
    display: flex; align-items: center; gap: 10px;
    font-size: 1.25rem; font-weight: 800;
    color: var(--gv-ink); flex-shrink: 0;
    letter-spacing: -.02em;
    white-space: nowrap;
}
.gv-header__logo {
    width: 38px; height: 38px;
    border-radius: var(--gv-r-sm);
    background: var(--gv-grad-primary);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; color: #fff;
    box-shadow: 0 6px 18px rgba(139,92,255,.4);
}
.gv-header__name { font-weight: 800; }
/* 真实 logo 图片：约束尺寸，避免原始大图撑破品牌区导致换行 */
.gv-header__brand .logo-img {
    display: block;
    width: 38px; height: 38px;
    object-fit: contain;
    flex-shrink: 0;
}
.gv-header__nav { display: flex; align-items: center; gap: 4px; flex: 1; }
.gv-header__link {
    padding: 8px 18px; border-radius: var(--gv-r-pill);
    font-size: .88rem; font-weight: 500; color: var(--gv-text);
    transition: all .2s; white-space: nowrap; background: none;
    display: inline-flex; align-items: center; gap: 6px;
}
.gv-header__link svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--gv-muted); transition: color .2s; }
.gv-header__link:hover { color: #fff; background: var(--gv-accent-l); }
.gv-header__link:hover svg { color: var(--gv-accent); }
.gv-header__link.gv-active { color: #fff; background: var(--gv-accent-l); font-weight: 600; }
.gv-header__link.gv-active svg { color: var(--gv-accent); }

/* ===== Categories Mega Dropdown ===== */
.gv-navdrop { position: relative; }
.gv-navdrop__trigger .gv-navdrop__caret { width: 14px; height: 14px; transition: transform .2s; flex-shrink: 0; }
.gv-navdrop__panel {
    position: absolute; top: calc(100% + 12px); left: 0;
    width: 580px; max-width: 90vw;
    background: var(--gv-surface); border: 1px solid var(--gv-border);
    border-radius: var(--gv-r-lg); box-shadow: var(--gv-shadow-lg);
    padding: 18px; opacity: 0; visibility: hidden;
    transform: translateY(10px); transition: all .22s ease; z-index: 1200;
}
.gv-navdrop::after {
    content: ''; position: absolute; top: 100%; left: 0; right: 0; height: 14px;
}
.gv-navdrop:hover .gv-navdrop__panel,
.gv-navdrop.gv-navdrop--open .gv-navdrop__panel {
    opacity: 1; visibility: visible; transform: translateY(0);
}
.gv-navdrop:hover .gv-navdrop__caret,
.gv-navdrop.gv-navdrop--open .gv-navdrop__caret { transform: rotate(180deg); }
.gv-navdrop__grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px;
    max-height: 320px; overflow-y: auto;
}
.gv-navdrop__item {
    display: flex; align-items: center; gap: 10px;
    padding: 9px 12px; border-radius: var(--gv-r);
    font-size: .88rem; color: var(--gv-text); font-weight: 500; transition: all .15s;
}
.gv-navdrop__item:hover { background: var(--gv-accent-l); color: #fff; }
.gv-navdrop__item.is-active,
.gv-navdrop__item.is-selected {
    background: var(--gv-grad-primary);
    color: #fff;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(139,92,255,.35);
}
.gv-navdrop__item.is-active .gv-navdrop__emoji,
.gv-navdrop__item.is-selected .gv-navdrop__emoji {
    filter: drop-shadow(0 0 6px rgba(255,255,255,.55));
}
.gv-navdrop__emoji { font-size: 1.05rem; line-height: 1; flex-shrink: 0; }
.gv-navdrop__name { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.gv-navdrop__all {
    display: block; margin-top: 12px; padding-top: 12px;
    border-top: 1px solid var(--gv-border);
    font-size: .82rem; font-weight: 700; color: var(--gv-accent); text-align: center;
}
.gv-navdrop__all:hover { text-decoration: underline; }
.gv-header__search { position: relative; margin-left: auto; flex-shrink: 0; width: 240px; }
.gv-header__search input {
    width: 100%; padding: 10px 16px 10px 42px;
    border: 1.5px solid var(--gv-border2); border-radius: var(--gv-r-pill);
    background: var(--gv-surface2); font-size: .86rem; color: var(--gv-ink);
    transition: all .25s; outline: none;
}
.gv-header__search input::placeholder { color: var(--gv-muted); }
.gv-header__search input:focus { border-color: var(--gv-accent); background: var(--gv-surface); box-shadow: 0 0 0 3px var(--gv-accent-l); }
.gv-header__search svg { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); width: 18px; height: 18px; color: var(--gv-muted); pointer-events: none; }
.gv-header__actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.gv-header__toggle { display: none; width: 40px; height: 40px; align-items: center; justify-content: center; flex-direction: column; gap: 5px; background: none; border-radius: var(--gv-r-sm); color: var(--gv-ink); cursor: pointer; padding: 8px; }
.gv-header__toggle span { display: block; width: 20px; height: 2px; background: var(--gv-ink); border-radius: 2px; transition: all .3s; }
.gv-header__drawer {
    position: fixed; top: 0; right: 0; width: 320px; max-width: 85vw;
    height: 100%; background: var(--gv-surface); z-index: 2000; padding: 0;
    overflow-y: auto; transform: translateX(100%);
    transition: transform .3s cubic-bezier(.4,0,.2,1);
    box-shadow: -20px 0 60px rgba(0,0,0,.5);
    border-left: 1px solid var(--gv-border);
}
.gv-header__drawer.gv-open { transform: translateX(0); }
.gv-header__drawer-inner { padding: 28px 24px; display: flex; flex-direction: column; gap: 4px; }
.gv-header__drawer-inner .gv-header__link {
    padding: 12px 18px; border-radius: var(--gv-r);
    font-size: .95rem; font-weight: 500; color: var(--gv-text); transition: all .15s;
}
.gv-header__drawer-inner .gv-header__link:hover,
.gv-header__drawer-inner .gv-header__link.gv-active { background: var(--gv-accent-l); color: #fff; }
.gv-header__drawer-div { height: 1px; background: var(--gv-border); margin: 8px 0; }
.gv-header__drawer-cats { margin-top: 8px; }
.gv-header__drawer-cats h5 {
    font-size: .72rem; text-transform: uppercase; letter-spacing: 1.5px;
    color: var(--gv-muted); margin-bottom: 8px; padding: 0 8px; font-weight: 700;
}
.gv-header__catlink {
    display: block; padding: 10px 18px; border-radius: var(--gv-r);
    font-size: .88rem; color: var(--gv-text); transition: all .15s;
}
.gv-header__catlink:hover, .gv-header__catlink.gv-active { background: var(--gv-accent-l); color: #fff; }
.gv-header__backdrop {
    position: fixed; inset: 0; background: rgba(3,5,12,.6); z-index: 1999; display: none; backdrop-filter: blur(3px);
}
.gv-header__backdrop.gv-open { display: block; }

/* ============ WRAPPER ============ */
.gv-wrap { max-width: var(--gv-shell); margin: 0 auto; padding: 0 40px; }
.gv-section { padding: 64px 0; }

/* ============ HERO ============ */
.gv-hero {
    position: relative; overflow: hidden;
    padding: 84px 0 68px;
    background:
        radial-gradient(700px 300px at 12% 20%, rgba(139,92,255,.16), transparent 60%),
        radial-gradient(600px 300px at 90% 70%, rgba(25,227,200,.12), transparent 60%);
    border-bottom: 1px solid var(--gv-border);
}
.gv-hero__inner {
    max-width: var(--gv-shell); margin: 0 auto; padding: 0 40px;
    position: relative; z-index: 1; display: flex; align-items: center;
    justify-content: space-between; gap: 56px;
}
.gv-hero__copy { max-width: 560px; }
.gv-hero__pill {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 7px 18px; border-radius: var(--gv-r-pill);
    background: var(--gv-accent-l); border: 1px solid rgba(139,92,255,.3);
    font-size: .78rem; font-weight: 600; color: #c9b6ff;
    margin-bottom: 24px; letter-spacing: .2px;
}
.gv-hero__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gv-accent); box-shadow: 0 0 10px var(--gv-accent); }
.gv-hero__title { font-size: 3.4rem; font-weight: 800; line-height: 1.06; margin-bottom: 18px; letter-spacing: -.03em; color: var(--gv-ink); font-family: var(--gv-display); }
.gv-hero__title span { background: var(--gv-grad-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.gv-hero__sub { font-size: 1.05rem; color: var(--gv-text); max-width: 460px; margin-bottom: 32px; line-height: 1.7; }
.gv-hero__search { display: flex; gap: 10px; max-width: 480px; margin-bottom: 24px; }
.gv-hero__search input { flex: 1; padding: 14px 22px; border: 1.5px solid var(--gv-border2); border-radius: var(--gv-r-pill); background: var(--gv-surface); font-size: .94rem; color: var(--gv-ink); outline: none; transition: all .2s; }
.gv-hero__search input:focus { border-color: var(--gv-accent); box-shadow: 0 0 0 4px var(--gv-accent-l); }
.gv-hero__search input::placeholder { color: var(--gv-muted); }
.gv-hero__chips { display: flex; flex-wrap: wrap; gap: 8px; }
.gv-hero__chip { padding: 8px 18px; border-radius: var(--gv-r-pill); background: var(--gv-surface); border: 1px solid var(--gv-border2); font-size: .82rem; font-weight: 600; color: var(--gv-text); transition: all .2s; }
.gv-hero__chip:hover { border-color: var(--gv-accent); color: #fff; background: var(--gv-accent-l); box-shadow: 0 0 18px rgba(139,92,255,.25); }
.gv-hero__visual { position: relative; width: 340px; height: 340px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.gv-hero__glow { width: 280px; height: 280px; border-radius: 50%; background: radial-gradient(circle, rgba(139,92,255,.3) 0%, rgba(25,227,200,.18) 50%, transparent 70%); position: absolute; filter: blur(8px); }
.gv-hero__feature {
    position: relative; z-index: 2;
    width: 230px; height: 310px; border-radius: var(--gv-r-xl);
    overflow: hidden; border: 1px solid var(--gv-border2);
    box-shadow: var(--gv-shadow-lg);
    background: var(--gv-surface); transition: transform .4s cubic-bezier(.25,.46,.45,.94);
}
.gv-hero__feature:hover { transform: translateY(-6px); box-shadow: var(--gv-glow); }
.gv-hero__feature img { width: 100%; height: 100%; object-fit: cover; }
.gv-hero__feature-ovl { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px; background: linear-gradient(to top, rgba(6,9,18,.92) 0%, transparent 100%); }
.gv-hero__feature-tag { display: inline-block; padding: 4px 12px; border-radius: var(--gv-r-pill); background: rgba(255,255,255,.12); color: #fff; font-size: .7rem; font-weight: 600; margin-bottom: 8px; backdrop-filter: blur(4px); }
.gv-hero__feature-title { font-size: 1.1rem; font-weight: 700; color: #fff; line-height: 1.25; margin-bottom: 6px; }
.gv-hero__feature-meta { display: flex; align-items: center; gap: 12px; font-size: .84rem; color: rgba(255,255,255,.7); }

/* ============ BUTTONS ============ */
.gv-btn { display: inline-flex; align-items: center; justify-content: center; gap: 6px; font-family: inherit; transition: all .25s; cursor: pointer; }
.gv-btn--primary {
    padding: 13px 30px; border-radius: var(--gv-r-pill);
    background: var(--gv-grad-primary); color: #fff;
    font-size: .9rem; font-weight: 700;
    box-shadow: 0 8px 26px rgba(139,92,255,.4);
}
.gv-btn--primary:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(139,92,255,.55); }
.gv-btn--ghost {
    padding: 13px 30px; border-radius: var(--gv-r-pill);
    background: var(--gv-surface); color: var(--gv-text);
    border: 1.5px solid var(--gv-border2); font-size: .9rem; font-weight: 600;
}
.gv-btn--ghost:hover { border-color: var(--gv-accent); color: #fff; box-shadow: 0 0 18px rgba(139,92,255,.25); }
.gv-btn--signin {
    padding: 9px 22px; border-radius: var(--gv-r-pill);
    background: linear-gradient(135deg,#19e3c8,#1a9bff); color: #04121a;
    font-size: .86rem; font-weight: 700;
}
.gv-btn--signin:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(25,227,200,.4); }
.gv-btn--solid {
    padding: 13px 30px; border-radius: var(--gv-r-pill);
    background: var(--gv-accent); color: #fff; font-size: .9rem; font-weight: 700;
}
.gv-btn--solid:hover { background: var(--gv-accent-d); box-shadow: 0 0 22px rgba(139,92,255,.4); }
.gv-btn--danger {
    padding: 10px 22px; border-radius: var(--gv-r-pill);
    background: transparent; border: 1.5px solid rgba(255,94,122,.4);
    color: var(--gv-danger); font-size: .86rem; font-weight: 700;
}
.gv-btn--danger:hover { border-color: var(--gv-danger); background: rgba(255,94,122,.1); }
.gv-btn--play {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 32px; border-radius: var(--gv-r-pill);
    background: var(--gv-grad-primary); color: #fff; font-size: .95rem; font-weight: 700;
    transition: all .2s; box-shadow: 0 8px 26px rgba(139,92,255,.45);
}
.gv-btn--play:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(139,92,255,.6); }

/* ============ USER CHIP & DROPDOWN ============ */
.gv-userchip { position: relative; }
.gv-userchip__btn {
    display: flex; align-items: center; gap: 10px;
    padding: 6px 14px 6px 6px; border-radius: var(--gv-r-pill);
    background: var(--gv-surface); border: 1.5px solid var(--gv-border2);
    transition: all .2s;
}
.gv-userchip__btn:hover { border-color: var(--gv-accent); box-shadow: 0 0 16px rgba(139,92,255,.2); }
.gv-userchip__avatar {
    width: 34px; height: 34px; border-radius: 50%;
    background: var(--gv-grad-primary); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: .85rem; flex-shrink: 0;
}
.gv-userchip__name { font-size: .86rem; font-weight: 600; color: var(--gv-ink); }
.gv-dropdown {
    position: absolute; top: calc(100% + 8px); right: 0; min-width: 200px;
    background: var(--gv-surface); border: 1px solid var(--gv-border);
    border-radius: var(--gv-r); box-shadow: var(--gv-shadow-lg);
    padding: 6px; display: none; z-index: 50;
}
.gv-dropdown.gv-open { display: block; }
.gv-dropdown__item {
    display: flex; align-items: center; gap: 10px; width: 100%;
    padding: 10px 14px; border-radius: var(--gv-r-sm);
    font-size: .86rem; color: var(--gv-text); transition: all .15s; background: none;
}
.gv-dropdown__item:hover { background: var(--gv-accent-l); color: #fff; }
.gv-dropdown__div { height: 1px; background: var(--gv-border); margin: 6px 0; }

/* ============ SECTION HEADER ============ */
.gv-sec-head {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 32px; gap: 16px; padding-bottom: 16px;
    border-bottom: 1px solid var(--gv-border); position: relative;
}
.gv-sec-head::after {
    content: ''; position: absolute; bottom: -1px; left: 0;
    width: 40px; height: 3px; border-radius: 3px;
    background: var(--gv-grad-primary);
}
.gv-sec-head__left { display: flex; align-items: baseline; gap: 12px; }
.gv-sec-title { font-size: 1.5rem; font-weight: 800; color: var(--gv-ink); letter-spacing: -.02em; font-family: var(--gv-display); }
.gv-sec-badge {
    padding: 5px 14px; border-radius: var(--gv-r-pill);
    background: var(--gv-accent-l); color: #c9b6ff;
    font-size: .74rem; font-weight: 700; border: 1px solid rgba(139,92,255,.25);
}
.gv-sec-link {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: .82rem; font-weight: 700; padding: 8px 18px;
    border-radius: var(--gv-r-pill); transition: all .2s;
    color: #fff; border: 1.5px solid rgba(139,92,255,.3); background: var(--gv-accent-l);
}
.gv-sec-link:hover { background: var(--gv-accent); box-shadow: 0 0 18px rgba(139,92,255,.4); }

/* ============================================
   VARIANT 0 — FEATURED HERO (Magazine)
   ============================================ */
.gv-mod-feat { padding-top: 64px; }
.gv-feat__hero {
    display: block; position: relative; overflow: hidden;
    border-radius: var(--gv-r-xl); margin-bottom: 28px;
    background: var(--gv-surface); border: 1px solid var(--gv-border);
    box-shadow: var(--gv-shadow-card);
    transition: all .4s cubic-bezier(.25,.46,.45,.94);
    min-height: 360px; height: 420px;
}
.gv-feat__hero:hover { box-shadow: var(--gv-glow); transform: translateY(-3px); }
.gv-feat__hero-bg { position: absolute; inset: 0; }
.gv-feat__hero-bg img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.25,.46,.45,.94); }
.gv-feat__hero:hover .gv-feat__hero-bg img { transform: scale(1.04); }
.gv-feat__hero-ovl {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(to top, rgba(6,9,18,.92) 0%, rgba(6,9,18,.5) 40%, rgba(6,9,18,.05) 100%);
}
.gv-feat__hero-body { position: absolute; bottom: 0; left: 0; right: 0; z-index: 2; padding: 52px 52px 44px; }
.gv-feat__tag {
    display: inline-block; padding: 5px 16px; border-radius: var(--gv-r-pill);
    background: var(--gv-grad-primary); color: #fff;
    font-size: .72rem; font-weight: 800; letter-spacing: .8px;
    text-transform: uppercase; margin-bottom: 14px; box-shadow: 0 6px 16px rgba(139,92,255,.4);
}
.gv-feat__title { font-size: 2.2rem; font-weight: 800; color: #fff; line-height: 1.12; margin-bottom: 12px; letter-spacing: -.02em; max-width: 60%; font-family: var(--gv-display); }
.gv-feat__desc { font-size: .94rem; color: rgba(255,255,255,.7); line-height: 1.6; max-width: 48%; margin-bottom: 18px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.gv-feat__meta { display: flex; align-items: center; gap: 18px; }
.gv-feat__rating { font-size: .9rem; color: var(--gv-amber); font-weight: 600; }
.gv-feat__btn {
    padding: 10px 26px; border-radius: var(--gv-r-pill);
    background: rgba(255,255,255,.14); color: #fff;
    font-size: .86rem; font-weight: 700; transition: all .3s;
    backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,.22);
}
.gv-feat__hero:hover .gv-feat__btn { background: var(--gv-grad-primary); border-color: transparent; box-shadow: 0 8px 24px rgba(139,92,255,.45); }
.gv-feat__row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.gv-feat__card {
    background: var(--gv-surface); border-radius: var(--gv-r-lg);
    border: 1px solid var(--gv-border); overflow: hidden;
    box-shadow: var(--gv-shadow-card);
    transition: all .35s cubic-bezier(.25,.46,.45,.94);
    display: flex; flex-direction: column; position: relative;
}
.gv-feat__card:hover { transform: translateY(-4px); box-shadow: var(--gv-glow-soft); border-color: rgba(139,92,255,.4); }
.gv-feat__img { height: 160px; overflow: hidden; background: var(--gv-bg-alt); }
.gv-feat__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.gv-feat__card:hover .gv-feat__img img { transform: scale(1.08); }
.gv-feat__card-body { padding: 16px; display: flex; flex-direction: column; gap: 6px; position: relative; flex: 1; }
.gv-feat__num {
    position: absolute; top: -24px; right: 12px;
    font-size: .7rem; font-weight: 800; letter-spacing: .5px;
    padding: 4px 12px; border-radius: var(--gv-r-sm);
    background: var(--gv-accent); color: #fff; box-shadow: 0 6px 16px rgba(139,92,255,.4);
}
.gv-feat__card-title { font-size: .9rem; font-weight: 700; color: var(--gv-ink); line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.gv-feat__card-rating { font-size: .78rem; color: var(--gv-amber); }

/* ============================================
   VARIANT 1 — HORIZONTAL SCROLL
   ============================================ */
.gv-mod-scroll { padding-top: 64px; }
.gv-scroll__track {
    display: flex; gap: 18px; overflow-x: auto;
    padding: 6px 4px 20px; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.gv-scroll__track::-webkit-scrollbar { display: none; }
.gv-scroll {
    flex: 0 0 300px; scroll-snap-align: start;
    border-radius: var(--gv-r-lg); overflow: hidden;
    transition: all .35s cubic-bezier(.25,.46,.45,.94);
    position: relative; border: 1px solid var(--gv-border);
    background: var(--gv-surface); box-shadow: var(--gv-shadow-card);
}
.gv-scroll:hover { transform: translateY(-4px); box-shadow: var(--gv-glow-soft); border-color: rgba(139,92,255,.4); z-index: 5; }
.gv-scroll__img { position: relative; height: 200px; overflow: hidden; background: var(--gv-bg-alt); }
.gv-scroll__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.gv-scroll:hover .gv-scroll__img img { transform: scale(1.06); }
.gv-scroll__grad {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(to top, rgba(6,9,18,.8) 0%, rgba(6,9,18,.15) 40%, transparent 70%);
}
.gv-scroll__rank {
    position: absolute; top: 16px; right: 16px; z-index: 3;
    font-size: 3rem; font-weight: 900;
    color: rgba(255,255,255,.18); line-height: 1;
    transition: all .3s; text-shadow: 0 0 20px rgba(139,92,255,.4);
}
.gv-scroll:hover .gv-scroll__rank { color: var(--gv-accent); transform: scale(1.08); text-shadow: 0 0 26px var(--gv-accent); }
.gv-scroll__play {
    position: absolute; inset: 0; z-index: 2;
    display: flex; align-items: center; justify-content: center;
    font-size: 2.2rem; color: #fff; opacity: 0;
    background: rgba(6,9,18,.45); transition: opacity .3s;
}
.gv-scroll:hover .gv-scroll__play { opacity: 1; }
.gv-scroll__info { padding: 18px 20px; }
.gv-scroll__tag {
    display: inline-block; padding: 3px 12px; border-radius: var(--gv-r-pill);
    background: var(--gv-accent3-l); color: var(--gv-accent3);
    font-size: .68rem; font-weight: 700; margin-bottom: 8px;
}
.gv-scroll__title { font-size: 1rem; font-weight: 700; color: var(--gv-ink); line-height: 1.3; margin-bottom: 6px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.gv-scroll__rating { font-size: .82rem; color: var(--gv-amber); }

/* ============================================
   VARIANT 2 — BENTO MOSAIC
   ============================================ */
.gv-mod-bento { padding-top: 64px; }
.gv-bento__hero {
    display: block; position: relative; overflow: hidden;
    border-radius: var(--gv-r-xl); margin-bottom: 20px;
    background: var(--gv-surface); border: 1px solid var(--gv-border);
    box-shadow: var(--gv-shadow-card); transition: all .4s;
    height: 320px;
}
.gv-bento__hero:hover { box-shadow: var(--gv-glow); transform: translateY(-2px); }
.gv-bento__hero-img { position: absolute; inset: 0; }
.gv-bento__hero-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.gv-bento__hero:hover .gv-bento__hero-img img { transform: scale(1.04); }
.gv-bento__hero-ovl {
    position: absolute; inset: 0; z-index: 1;
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 36px 40px;
    background: linear-gradient(to top, rgba(6,9,18,.94) 0%, rgba(6,9,18,.3) 50%, transparent 80%);
}
.gv-bento__tag {
    display: inline-block; padding: 4px 16px; border-radius: var(--gv-r-pill);
    background: var(--gv-grad-primary); color: #fff;
    font-size: .7rem; font-weight: 800; margin-bottom: 12px; width: fit-content;
    letter-spacing: .5px; box-shadow: 0 6px 16px rgba(139,92,255,.4);
}
.gv-bento__title { font-size: 1.7rem; font-weight: 800; color: #fff; line-height: 1.1; margin-bottom: 10px; max-width: 55%; font-family: var(--gv-display); }
.gv-bento__desc { font-size: .88rem; color: rgba(255,255,255,.65); line-height: 1.6; max-width: 42%; margin-bottom: 14px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.gv-bento__rating { font-size: .86rem; color: var(--gv-amber); }
.gv-bento__grid { display: grid; grid-template-columns: repeat(6, 1fr); grid-template-rows: auto auto; gap: 18px; }
.gv-bento {
    background: var(--gv-surface); border-radius: var(--gv-r-lg);
    border: 1px solid var(--gv-border); overflow: hidden;
    box-shadow: var(--gv-shadow-card); transition: all .35s;
    display: flex; flex-direction: column; position: relative;
}
.gv-bento--1 { grid-column: 1 / 3; }
.gv-bento--2 { grid-column: 3 / 5; }
.gv-bento--3 { grid-column: 5 / 7; }
.gv-bento--4 { grid-column: 1 / 4; }
.gv-bento--5 { grid-column: 4 / 7; }
.gv-bento:hover { transform: translateY(-3px); box-shadow: var(--gv-glow-soft); border-color: rgba(139,92,255,.4); }
.gv-bento__img { height: 160px; overflow: hidden; background: var(--gv-bg-alt); }
.gv-bento__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.gv-bento:hover .gv-bento__img img { transform: scale(1.08); }
.gv-bento__info { padding: 14px 18px; }
.gv-bento__info .gv-bento__title { font-size: .88rem; font-weight: 700; color: var(--gv-ink); line-height: 1.3; margin-bottom: 6px; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; max-width: 100%; }
.gv-bento__info .gv-bento__rating { font-size: .78rem; color: var(--gv-amber); }

/* ============================================
   VARIANT 3 — STAGGERED GALLERY
   ============================================ */
.gv-mod-gallery { padding-top: 64px; }
.gv-gallery__wall { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; }
.gv-gallery {
    border-radius: var(--gv-r-lg); overflow: hidden;
    transition: all .4s cubic-bezier(.25,.46,.45,.94);
    position: relative; border: 1px solid var(--gv-border);
    background: var(--gv-surface); box-shadow: var(--gv-shadow-card);
}
.gv-gallery--up { transform: translateY(-22px); }
.gv-gallery--down { transform: translateY(12px); }
.gv-gallery:hover { transform: translateY(-6px); box-shadow: var(--gv-glow-soft); border-color: rgba(139,92,255,.4); z-index: 5; }
.gv-gallery--up:hover { transform: translateY(-28px); }
.gv-gallery--down:hover { transform: translateY(6px); }
.gv-gallery__inner { position: relative; overflow: hidden; aspect-ratio: 3 / 2.2; }
.gv-gallery__inner img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.gv-gallery:hover .gv-gallery__inner img { transform: scale(1.1); }
.gv-gallery__ovl {
    position: absolute; inset: 0; z-index: 2;
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 18px; background: linear-gradient(to top, rgba(6,9,18,.92) 0%, transparent 70%);
    opacity: 0; transition: opacity .35s;
}
.gv-gallery:hover .gv-gallery__ovl { opacity: 1; }
.gv-gallery__title { font-size: .84rem; font-weight: 700; color: #fff; line-height: 1.25; margin-bottom: 4px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.gv-gallery__rating { font-size: .78rem; color: var(--gv-amber); }

/* ============================================
   EDITORIAL — FULL-WIDTH SPLIT LAYOUT SYSTEM
   ============================================ */
.gv-ed { padding: 20px 0; }
.gv-ed:first-of-type { padding-top: 20px; }
.gv-ed--alt { background: none; }
.gv-ed__inner { max-width: var(--gv-shell); margin: 0 auto; padding: 0 40px; }
.gv-ed__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 36px; }
.gv-ed__title { font-size: 1.7rem; font-weight: 800; letter-spacing: -.02em; color: var(--gv-ink); position: relative; padding-bottom: 14px; display: flex; align-items: center; gap: 12px; }
.gv-ed__title::before { content: ''; width: 14px; height: 14px; border-radius: 4px; background: var(--gv-grad-primary); box-shadow: 0 4px 12px rgba(139,92,255,.45); flex-shrink: 0; }
.gv-ed__title::after { content: ''; position: absolute; left: 26px; bottom: 0; width: 44px; height: 3px; border-radius: 3px; background: var(--gv-accent); }
.gv-ed__count { font-size: .78rem; font-weight: 700; color: #c9b6ff; background: var(--gv-accent-l); border: 1px solid rgba(139,92,255,.3); padding: 5px 14px; border-radius: var(--gv-r-pill); }
.gv-ed__link { display: inline-flex; align-items: center; gap: 6px; font-size: .84rem; font-weight: 700; color: #fff; padding: 8px 18px; border-radius: var(--gv-r-pill); border: 1.5px solid rgba(139,92,255,.3); background: var(--gv-accent-l); transition: all .2s; }
.gv-ed__link:hover { background: var(--gv-accent); box-shadow: 0 0 18px rgba(139,92,255,.4); }

/* Editorial kicker / display / dek primitives */
.gv-kicker { display: inline-flex; align-items: center; gap: 10px; font-size: .74rem; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gv-accent); }
.gv-kicker::before { content: ''; width: 30px; height: 2px; background: var(--gv-accent); border-radius: 2px; }
.gv-display { font-size: 2.9rem; font-weight: 800; line-height: 1.06; letter-spacing: -.03em; color: var(--gv-ink); }
.gv-display span { background: var(--gv-grad-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.gv-dek { font-size: 1.02rem; color: var(--gv-text); line-height: 1.7; max-width: 48ch; }
.gv-metarow { display: flex; align-items: center; gap: 18px; font-size: .9rem; color: var(--gv-muted); }
.gv-metarow .gv-rating { color: var(--gv-amber); font-weight: 600; }
.gv-leadcta { display: inline-flex; align-items: center; gap: 8px; padding: 13px 30px; border-radius: var(--gv-r-pill); background: var(--gv-accent); color: #fff; font-size: .9rem; font-weight: 700; align-self: flex-start; box-shadow: 0 4px 16px rgba(139,92,255,.4); transition: all .25s; }
.gv-leadcta:hover { background: var(--gv-accent-d); transform: translateY(-1px); }

/* Split lead (asymmetric 2-col) */
.gv-split { display: grid; grid-template-columns: 1.25fr .75fr; gap: 40px; align-items: stretch; }
.gv-split__media { position: relative; display: block; border-radius: var(--gv-r-xl); overflow: hidden; min-height: 470px; box-shadow: var(--gv-shadow); background: var(--gv-bg-alt); }
.gv-split__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.25,.46,.45,.94); }
.gv-split__media:hover img { transform: scale(1.05); }
.gv-split__media-ovl { position: absolute; inset: 0; background: linear-gradient(115deg, rgba(26,26,36,.55) 0%, rgba(26,26,36,.1) 45%, transparent 70%); }
.gv-split__media-cap { position: absolute; left: 28px; bottom: 26px; right: 28px; z-index: 2; color: #fff; }
.gv-split__media-cap .gv-kicker { color: #fff; }
.gv-split__media-cap .gv-kicker::before { background: #fff; }
.gv-split__media-title { font-size: 1.9rem; font-weight: 800; color: #fff; line-height: 1.12; margin-top: 12px; max-width: 85%; text-shadow: 0 2px 12px rgba(0,0,0,.4); }
.gv-split__body { display: flex; flex-direction: column; justify-content: center; gap: 18px; padding: 8px 4px; }

/* Vertical editorial rail list */
.gv-rail { display: flex; flex-direction: column; gap: 12px; }
.gv-rail__item { display: grid; grid-template-columns: 112px 1fr; gap: 16px; align-items: center; padding: 12px; border-radius: var(--gv-r); border: 1px solid var(--gv-border); background: #fff; transition: all .25s; }
.gv-rail__item:hover { border-color: var(--gv-accent); box-shadow: var(--gv-shadow); transform: translateX(4px); }
.gv-rail__thumb { width: 112px; height: 80px; border-radius: 10px; overflow: hidden; background: var(--gv-bg-alt); flex-shrink: 0; }
.gv-rail__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.gv-rail__item:hover .gv-rail__thumb img { transform: scale(1.08); }
.gv-rail__num { font-size: .72rem; font-weight: 800; color: var(--gv-accent2); }
.gv-rail__title { font-size: .92rem; font-weight: 700; color: var(--gv-ink); line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.gv-rail__meta { font-size: .76rem; color: var(--gv-amber); margin-top: 4px; }

/* Offset lead + subgrid */
.gv-offset { display: grid; grid-template-columns: 1.25fr 1fr; gap: 24px; }
.gv-offset__lead { position: relative; display: block; border-radius: var(--gv-r-xl); overflow: hidden; min-height: 460px; box-shadow: var(--gv-shadow); background: var(--gv-bg-alt); }
.gv-offset__lead img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .8s; }
.gv-offset__lead:hover img { transform: scale(1.04); }
.gv-offset__lead-ovl { position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,26,36,.9) 0%, rgba(26,26,36,.2) 55%, transparent 80%); display: flex; flex-direction: column; justify-content: flex-end; padding: 36px 40px; }
.gv-offset__lead-tag { align-self: flex-start; padding: 5px 16px; border-radius: var(--gv-r-pill); background: rgba(255,255,255,.18); color: #fff; font-size: .7rem; font-weight: 700; letter-spacing: .5px; margin-bottom: 12px; backdrop-filter: blur(6px); }
.gv-offset__lead-title { font-size: 1.8rem; font-weight: 800; color: #fff; line-height: 1.12; margin-bottom: 8px; max-width: 85%; }
.gv-offset__lead-rating { font-size: .86rem; color: var(--gv-amber); }
.gv-offset__sub { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 18px; }
.gv-offset__card { display: block; border-radius: var(--gv-r-lg); overflow: hidden; border: 1px solid var(--gv-border); background: var(--gv-surface); box-shadow: var(--gv-shadow-card); transition: all .35s; }
.gv-offset__card:hover { transform: translateY(-4px); box-shadow: var(--gv-shadow-card-hover); }
.gv-offset__card-img { height: 150px; overflow: hidden; background: var(--gv-bg-alt); }
.gv-offset__card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.gv-offset__card:hover .gv-offset__card-img img { transform: scale(1.08); }
.gv-offset__card-body { padding: 14px 16px; }
.gv-offset__card-title { font-size: .9rem; font-weight: 700; color: var(--gv-ink); line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.gv-offset__card-rating { font-size: .78rem; color: var(--gv-amber); margin-top: 6px; }

/* Alternating feature + grid */
.gv-alt { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: center; margin-bottom: 28px; }
.gv-alt__media { position: relative; display: block; border-radius: var(--gv-r-xl); overflow: hidden; min-height: 360px; box-shadow: var(--gv-shadow); background: var(--gv-bg-alt); }
.gv-alt__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .8s; }
.gv-alt__media:hover img { transform: scale(1.04); }
.gv-alt__body { padding: 8px 12px; }
.gv-alt--rev .gv-alt__media { order: 2; }
.gv-alt__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }

/* Full-bleed grid variant */
.gv-ed .gv-grid { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 18px; }

/* ============================================
   STANDARD GRID CARDS
   ============================================ */
.gv-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 20px; }
.gv-card {
    background: var(--gv-card); border-radius: var(--gv-r-lg);
    border: 1px solid var(--gv-border); overflow: hidden;
    box-shadow: var(--gv-shadow-card); transition: all .35s cubic-bezier(.25,.46,.45,.94);
    display: flex; flex-direction: column; position: relative;
}
.gv-card::before {
    content: ''; position: absolute; inset: 0; z-index: 4; pointer-events: none;
    border-radius: inherit; opacity: 0; transition: opacity .35s;
    box-shadow: inset 0 0 0 1px rgba(139,92,255,.5);
}
.gv-card:hover { transform: translateY(-6px); box-shadow: var(--gv-shadow-card-hover); border-color: rgba(139,92,255,.5); }
.gv-card:hover::before { opacity: 1; }
.gv-card__thumb { position: relative; height: 190px; overflow: hidden; background: var(--gv-bg-alt); }
.gv-card__thumb::after {
    content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 55%;
    background: linear-gradient(to top, rgba(6,9,18,.55), transparent); z-index: 1; pointer-events: none;
}
.gv-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.25,.46,.45,.94); }
.gv-card:hover .gv-card__thumb img { transform: scale(1.1); }
.gv-card__cat {
    position: absolute; top: 12px; left: 12px; z-index: 3;
    padding: 5px 13px; border-radius: var(--gv-r-pill);
    background: var(--gv-grad-primary); color: #fff;
    font-size: .68rem; font-weight: 800; letter-spacing: .4px; text-transform: uppercase;
    box-shadow: 0 4px 14px rgba(139,92,255,.45);
}
.gv-card__score {
    position: absolute; top: 12px; right: 12px; z-index: 3;
    display: inline-flex; align-items: center; gap: 4px;
    padding: 5px 12px; border-radius: var(--gv-r-pill);
    background: rgba(6,9,18,.62); color: var(--gv-amber); backdrop-filter: blur(4px);
    font-size: .72rem; font-weight: 800; border: 1px solid rgba(255,206,77,.25);
}
.gv-card__play {
    position: absolute; inset: 0; background: rgba(6,9,18,.4);
    z-index: 2; display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity .3s;
}
.gv-card:hover .gv-card__play { opacity: 1; }
.gv-card__playbtn {
    width: 56px; height: 56px; border-radius: 50%;
    background: var(--gv-grad-primary); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; box-shadow: 0 8px 28px rgba(139,92,255,.55);
    transition: transform .3s;
}
.gv-card:hover .gv-card__playbtn { transform: scale(1.08); }
.gv-card__body { padding: 16px 18px 18px; flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; background: var(--gv-card); }
.gv-card__title { font-size: .98rem; font-weight: 800; color: var(--gv-ink); line-height: 1.34; margin-bottom: 8px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; transition: color .2s; }
.gv-card:hover .gv-card__title { color: #c9b6ff; }
.gv-card__desc { font-size: .82rem; color: var(--gv-text); line-height: 1.55; margin-bottom: 12px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; flex: 1; }
.gv-card__footer { display: flex; flex-direction: column; align-items: center; gap: 10px; padding-top: 12px; border-top: 1px solid var(--gv-border); width: 100%; }
.gv-card__rating { font-size: .82rem; color: var(--gv-amber); font-weight: 700; }
/* Play Now 按钮（卡片内联，整卡已是 <a>，故用 span 避免嵌套链接）—— 独占一行 */
.gv-card__btn {
    display: flex; align-items: center; justify-content: center; gap: 5px;
    width: 100%;
    padding: 9px 16px; border-radius: var(--gv-r-pill);
    font-size: .82rem; font-weight: 800; color: #fff;
    background: var(--gv-grad-primary);
    box-shadow: 0 6px 18px rgba(139,92,255,.35);
    transition: transform .2s, box-shadow .2s;
    white-space: nowrap;
}
.gv-card:hover .gv-card__btn { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(139,92,255,.5); }

/* ===== HERO FEATURE CARD (module lead) ===== */
.gv-herocard {
    display: block; position: relative; overflow: hidden;
    border-radius: var(--gv-r-xl); height: 440px; margin-bottom: 30px;
    box-shadow: var(--gv-shadow-card); background: var(--gv-bg-alt);
    border: 1px solid var(--gv-border);
    transition: all .45s cubic-bezier(.25,.46,.45,.94);
}
.gv-herocard::before {
    content: ''; position: absolute; inset: 0; z-index: 5; pointer-events: none;
    border-radius: inherit; opacity: 0; transition: opacity .45s;
    box-shadow: inset 0 0 0 1px rgba(139,92,255,.55);
}
.gv-herocard:hover { box-shadow: var(--gv-glow); transform: translateY(-4px); }
.gv-herocard:hover::before { opacity: 1; }
.gv-herocard__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.25,.46,.45,.94); }
.gv-herocard:hover .gv-herocard__img { transform: scale(1.05); }
.gv-herocard__ovl {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(115deg, rgba(6,9,18,.82) 0%, rgba(6,9,18,.42) 42%, rgba(6,9,18,.05) 75%);
}
.gv-herocard__body { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 44px; color: #fff; }
.gv-herocard__cat {
    display: inline-block; padding: 6px 16px; border-radius: var(--gv-r-pill);
    background: var(--gv-grad-primary); color: #fff; font-size: .74rem; font-weight: 800;
    letter-spacing: .5px; text-transform: uppercase; margin-bottom: 14px;
    box-shadow: 0 6px 18px rgba(139,92,255,.5);
}
.gv-herocard__title { font-size: 2.4rem; font-weight: 800; line-height: 1.1; margin-bottom: 12px; max-width: 82%; text-shadow: 0 2px 18px rgba(0,0,0,.5); font-family: var(--gv-display); }
.gv-herocard__desc { font-size: 1rem; color: rgba(255,255,255,.82); line-height: 1.6; max-width: 52ch; margin-bottom: 18px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.gv-herocard__meta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.gv-herocard__rating { font-size: 1rem; color: var(--gv-amber); font-weight: 600; }
.gv-herocard__badge {
    display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px;
    border-radius: var(--gv-r-pill); background: rgba(255,255,255,.95); color: #0b0e1d;
    font-size: .9rem; font-weight: 800; transition: all .25s;
    box-shadow: 0 8px 24px rgba(0,0,0,.3);
}
.gv-herocard:hover .gv-herocard__badge { background: var(--gv-grad-primary); color: #fff; box-shadow: 0 8px 28px rgba(139,92,255,.55); }

/* ===== TAG CARDS ===== */
.gv-grid--tags { grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 14px; }
.gv-card--tag {
    position: relative; flex-direction: row; align-items: stretch;
    min-height: 140px; border-radius: var(--gv-r);
    overflow: hidden; transition: transform .3s, box-shadow .3s;
    background: var(--gv-card); border: 1px solid var(--gv-border);
}
.gv-card--tag::before {
    content: ""; position: absolute; top: 0; bottom: 0; left: 0;
    width: 4px; background: var(--gv-grad-primary); z-index: 2;
    transition: width .3s; box-shadow: 0 0 16px rgba(139,92,255,.5);
}
.gv-card--tag:hover { transform: translateY(-3px); box-shadow: var(--gv-glow-soft); }
.gv-card--tag:hover::before { width: 6px; }
.gv-card--tag .gv-card__thumb { width: 140px; flex-shrink: 0; border-radius: 0; }
.gv-card--tag .gv-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.gv-card--tag:hover .gv-card__thumb img { transform: scale(1.06); }
.gv-card--tag .gv-card__body { padding: 14px 18px; gap: 4px; }
.gv-card--tag .gv-card__title { -webkit-line-clamp: 1; font-size: 1rem; margin-bottom: 2px; }
.gv-card--tag .gv-card__desc { -webkit-line-clamp: 2; margin-bottom: 8px; }
.gv-card--tag .gv-card__footer { border-top: none; padding-top: 0; }

/* ============ PAGE HEADER ============ */
.gv-pagehead { padding: 44px 0 32px; }
.gv-pagehead--center { text-align: center; }
.gv-pagehead__title { font-size: 2rem; font-weight: 800; color: var(--gv-ink); margin-bottom: 8px; letter-spacing: -.02em; }
.gv-pagehead__sub { font-size: .98rem; color: var(--gv-text); max-width: 600px; }
.gv-pagehead--center .gv-pagehead__sub { margin: 0 auto; }
.gv-pagehead__meta { font-size: .84rem; color: var(--gv-muted); }

/* ============ NARROW CONTENT ============ */
.gv-narrow { max-width: 960px; margin: 0 auto; padding-bottom: 56px; }
.gv-panel {
    background: var(--gv-surface); border-radius: var(--gv-r-xl);
    border: 1px solid var(--gv-border); padding: 32px;
    margin-bottom: 20px; box-shadow: var(--gv-shadow-card);
}
.gv-panel h2 {
    font-size: 1.25rem; font-weight: 800; margin-bottom: 16px;
    color: var(--gv-ink); padding-bottom: 12px;
    border-bottom: 2px solid var(--gv-accent-l);
}
.gv-panel h3 { font-size: 1.02rem; font-weight: 700; color: var(--gv-ink); margin: 20px 0 8px; }
.gv-panel p { color: var(--gv-text); line-height: 1.75; margin-bottom: 12px; }
.gv-panel p:last-child { margin-bottom: 0; }
.gv-content { line-height: 1.85; color: var(--gv-text); }
.gv-content h2 { font-size: 1.25rem; font-weight: 800; color: var(--gv-ink); margin: 32px 0 14px; padding-bottom: 10px; border-bottom: 2px solid var(--gv-accent-l); }
.gv-content h3 { font-size: 1.02rem; font-weight: 700; color: var(--gv-ink); margin: 20px 0 8px; }
.gv-content p { margin-bottom: 14px; }
.gv-content a { color: var(--gv-accent); text-decoration: underline; }
.gv-content strong { color: var(--gv-ink); }

/* ============ FORM ============ */
.gv-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.gv-field { margin-bottom: 16px; }
.gv-field label { display: block; font-size: .84rem; font-weight: 600; color: var(--gv-ink); margin-bottom: 6px; }
.gv-field input, .gv-field select, .gv-field textarea {
    width: 100%; padding: 11px 16px;
    border: 1.5px solid var(--gv-border2); border-radius: var(--gv-r);
    background: var(--gv-surface2); font-size: .9rem;
    color: var(--gv-ink); transition: all .2s; outline: none;
}
.gv-field input:focus, .gv-field select:focus, .gv-field textarea:focus {
    border-color: var(--gv-accent); box-shadow: 0 0 0 3px var(--gv-accent-l);
}
.gv-field textarea { resize: vertical; min-height: 110px; }
.gv-field-grp { margin-bottom: 16px; }
.gv-field-grp label { display: block; font-size: .84rem; font-weight: 600; color: var(--gv-ink); margin-bottom: 4px; }
.gv-field-grp input { width: 100%; padding: 11px 16px; border: 1.5px solid var(--gv-border2); border-radius: var(--gv-r); background: var(--gv-surface2); font-size: .9rem; color: var(--gv-ink); outline: none; transition: all .2s; }
.gv-field-grp input:focus { border-color: var(--gv-accent); box-shadow: 0 0 0 3px var(--gv-accent-l); }
.gv-field-grp input:disabled { background: var(--gv-bg-alt); color: var(--gv-muted); cursor: not-allowed; }
.gv-file { font-size: .84rem; color: var(--gv-text); }

/* ============ DETAIL PAGE ============ */
.gv-detail-hero { position: relative; overflow: hidden; background: var(--gv-accent2); color: #fff; }
.gv-detail-hero__bg { position: absolute; inset: 0; z-index: 0; }
.gv-detail-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.gv-detail-hero__bg::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(26,26,36,.96) 0%, rgba(26,26,36,.78) 45%, rgba(26,26,36,.3) 100%);
}
.gv-detail-hero__inner {
    position: relative; z-index: 1;
    max-width: var(--gv-shell); margin: 0 auto; padding: 52px 40px;
    display: flex; gap: 40px; align-items: center;
}
.gv-detail-hero__cover {
    flex-shrink: 0; width: 260px; border-radius: var(--gv-r-lg);
    overflow: hidden; box-shadow: 0 24px 48px rgba(0,0,0,.3);
    border: 2px solid rgba(255,255,255,.08);
}
.gv-detail-hero__cover img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.gv-detail-hero__info { flex: 1; min-width: 0; }
.gv-detail-hero__tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.gv-detail-hero__tag {
    padding: 5px 16px; border-radius: var(--gv-r-pill);
    background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
    font-size: .76rem; font-weight: 600; backdrop-filter: blur(4px);
}
.gv-detail-hero__info h1 { font-size: 2.4rem; font-weight: 800; line-height: 1.08; margin-bottom: 14px; letter-spacing: -.02em; }
.gv-detail-hero__brief { font-size: .98rem; line-height: 1.7; color: rgba(255,255,255,.72); max-width: 600px; margin-bottom: 24px; }
.gv-detail-hero__stats { display: flex; gap: 32px; flex-wrap: wrap; margin-bottom: 28px; }
.gv-detail-hero__stat { display: flex; align-items: center; gap: 10px; }
.gv-detail-hero__icon { font-size: 1.5rem; }
.gv-detail-hero__stat small { display: block; font-size: .68rem; text-transform: uppercase; letter-spacing: 1.2px; color: rgba(255,255,255,.45); }
.gv-detail-hero__stat strong { font-size: .96rem; font-weight: 700; }
.gv-detail-hero__actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.gv-btn-fav {
    width: 48px; height: 48px; border-radius: 50%;
    background: rgba(255,255,255,.12); color: #fff;
    border: 1.5px solid rgba(255,255,255,.3);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; transition: all .2s;
}
.gv-btn-fav:hover { background: rgba(139,92,255,.4); border-color: #fff; }
.gv-btn-fav.gv-faved { background: #fff; color: var(--gv-accent); border-color: #fff; }
.gv-detail-hero__share { display: flex; align-items: center; gap: 8px; }
.gv-detail-hero__share a {
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,.12); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: .88rem; transition: all .2s;
}
.gv-detail-hero__share a:hover { background: #fff; color: var(--gv-accent2); }

/* ===== DETAIL BODY ===== */
.gv-detail-body {
    max-width: var(--gv-shell); margin: 0 auto;
    padding: 48px 40px 72px; display: grid;
    grid-template-columns: 1fr 360px; gap: 48px; align-items: start;
}
.gv-detail-main { min-width: 0; }
.gv-detail-aside { position: sticky; top: 84px; display: flex; flex-direction: column; gap: 16px; }

/* Breadcrumb */
.gv-crumb { padding: 14px 0; font-size: .84rem; color: var(--gv-muted); }
.gv-crumb ol { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.gv-crumb ol > li { margin: 0; padding: 0; }
.gv-crumb a { color: var(--gv-text); }
.gv-crumb a:hover { color: var(--gv-accent); }
.gv-crumb .gv-cur { color: var(--gv-ink); font-weight: 600; }

/* Player */
.gv-player {
    background: #fff; border-radius: var(--gv-r-xl);
    border: 1px solid var(--gv-border); padding: 22px;
    margin: 32px 0; box-shadow: var(--gv-shadow-card);
}
.gv-player__label { display: flex; align-items: center; gap: 8px; font-size: .94rem; font-weight: 800; color: var(--gv-ink); margin-bottom: 16px; }
.gv-player__frame { aspect-ratio: 16/9; border-radius: var(--gv-r); overflow: hidden; background: #000; }
.gv-player__frame iframe { width: 100%; height: 100%; border: none; }

/* Tabs */
.gv-tabs { display: flex; gap: 2px; border-bottom: 2px solid var(--gv-border); margin-bottom: 24px; overflow-x: auto; }
.gv-tabs button {
    padding: 12px 24px; background: none;
    font-size: .9rem; font-weight: 600; color: var(--gv-text);
    border-bottom: 2px solid transparent; margin-bottom: -2px;
    transition: all .2s; white-space: nowrap;
}
.gv-tabs button:hover { color: var(--gv-accent); }
.gv-tabs button.gv-active { color: var(--gv-accent); border-bottom-color: var(--gv-accent); }
.gv-tabs__count { display: inline-block; padding: 2px 8px; border-radius: var(--gv-r-pill); background: var(--gv-surface2); font-size: .76rem; margin-left: 6px; }
.gv-tab { display: none; }
.gv-tab.gv-active { display: block; }

/* FAQ */
.gv-faq { background: #fff; border: 1px solid var(--gv-border); border-radius: var(--gv-r); margin-bottom: 8px; overflow: hidden; }
.gv-faq summary { padding: 16px 20px; font-weight: 700; color: var(--gv-ink); cursor: pointer; font-size: .94rem; display: flex; justify-content: space-between; align-items: center; transition: all .15s; }
.gv-faq summary:hover { color: var(--gv-accent); }
.gv-faq[open] summary { color: var(--gv-accent); border-bottom: 1px solid var(--gv-border); }
.gv-faq__answer { padding: 16px 20px; color: var(--gv-text); line-height: 1.75; }

/* Comments */
.gv-comments__head { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.gv-comments__head h2 { font-size: 1.15rem; font-weight: 800; color: var(--gv-ink); }
.gv-comments__count { font-size: .84rem; color: var(--gv-muted); }
.gv-cform { background: #fff; border-radius: var(--gv-r-lg); border: 1px solid var(--gv-border); padding: 20px; margin-bottom: 20px; }
.gv-cform__head { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.gv-cform__avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--gv-accent3); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: .85rem; flex-shrink: 0; }
.gv-cform__author { font-size: .9rem; font-weight: 700; color: var(--gv-ink); }
.gv-cform__rating { display: flex; align-items: center; gap: 4px; margin-bottom: 12px; }
.gv-cform__rating label { font-size: .84rem; color: var(--gv-text); margin-right: 4px; }
.gv-star { cursor: pointer; color: #d4d4d4; font-size: 1.05rem; transition: color .15s; }
.gv-star.gv-on, .gv-star:hover { color: var(--gv-amber); }
.gv-cform textarea { width: 100%; padding: 14px; border: 1.5px solid var(--gv-border2); border-radius: var(--gv-r); background: #fff; font-size: .9rem; resize: vertical; min-height: 80px; outline: none; color: var(--gv-ink); }
.gv-cform textarea:focus { border-color: var(--gv-accent); }
.gv-cform__foot { margin-top: 12px; }
.gv-login-hint { padding: 20px; text-align: center; color: var(--gv-text); background: var(--gv-surface2); border-radius: var(--gv-r); }
.gv-login-hint a { color: var(--gv-accent); font-weight: 700; }
.gv-comment { background: #fff; border: 1px solid var(--gv-border); border-radius: var(--gv-r); padding: 16px; margin-bottom: 8px; }
.gv-comment__head { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.gv-comment__avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--gv-accent3-l); color: var(--gv-accent3); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: .85rem; flex-shrink: 0; }
.gv-comment__author { font-size: .9rem; font-weight: 700; color: var(--gv-ink); }
.gv-comment__date { font-size: .76rem; color: var(--gv-muted); }
.gv-comment__stars { margin-left: auto; }
.gv-comment__body { font-size: .9rem; color: var(--gv-text); line-height: 1.65; }
.gv-loadmore { display: block; margin: 16px auto; padding: 10px 28px; border-radius: var(--gv-r-pill); background: var(--gv-surface2); border: 1.5px solid var(--gv-border2); color: var(--gv-text); font-size: .86rem; font-weight: 700; transition: all .2s; }
.gv-loadmore:hover { border-color: var(--gv-accent); color: var(--gv-accent); }

/* Aside */
.gv-daside__card { background: var(--gv-surface); border-radius: var(--gv-r-lg); border: 1px solid var(--gv-border); padding: 22px; box-shadow: var(--gv-shadow-card); }
.gv-daside__title { font-size: .78rem; text-transform: uppercase; letter-spacing: 1.2px; color: var(--gv-muted); font-weight: 800; margin-bottom: 14px; }
.gv-daside__list { display: flex; flex-direction: column; gap: 10px; }
.gv-daside__item { display: flex; gap: 12px; align-items: center; border-radius: var(--gv-r); overflow: hidden; transition: all .2s; padding: 4px; }
.gv-daside__item:hover { background: var(--gv-accent-l); }
.gv-daside__thumb { width: 64px; height: 48px; object-fit: cover; border-radius: 8px; flex-shrink: 0; background: var(--gv-bg-alt); }
.gv-daside__name { font-size: .84rem; font-weight: 700; color: var(--gv-ink); line-height: 1.3; }
.gv-daside__sub { font-size: .74rem; color: var(--gv-muted); }

/* ============ PROFILE ============ */
.gv-profile { display: grid; grid-template-columns: 260px 1fr; gap: 24px; padding: 32px 0 56px; }
.gv-profile__card { background: var(--gv-surface); border-radius: var(--gv-r-lg); border: 1px solid var(--gv-border); padding: 28px; text-align: center; margin-bottom: 16px; box-shadow: var(--gv-shadow-card); }
.gv-profile__avatar {
    width: 80px; height: 80px; border-radius: 50%;
    background: var(--gv-grad-primary); color: #fff;
    margin: 0 auto 14px; display: flex; align-items: center;
    justify-content: center; font-size: 1.8rem; font-weight: 800;
    box-shadow: 0 8px 24px rgba(139,92,255,.4);
}
.gv-profile__avatar img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.gv-profile__card h3 { font-size: 1.08rem; font-weight: 700; margin-bottom: 4px; color: var(--gv-ink); }
.gv-profile__card p { font-size: .84rem; color: var(--gv-text); }
.gv-profile__nav { background: var(--gv-surface); border-radius: var(--gv-r-lg); border: 1px solid var(--gv-border); overflow: hidden; box-shadow: var(--gv-shadow-card); }
.gv-profile__nav button {
    display: flex; align-items: center; gap: 10px; width: 100%;
    padding: 14px 20px; background: none; font-size: .9rem;
    font-weight: 500; color: var(--gv-text);
    border-bottom: 1px solid var(--gv-border); transition: all .15s;
    text-align: left;
}
.gv-profile__nav button:last-child { border-bottom: none; }
.gv-profile__nav button:hover { background: var(--gv-accent-l); color: #fff; }
.gv-profile__nav button.gv-active { background: var(--gv-accent-l); color: var(--gv-accent); font-weight: 700; }
.gv-profile__panel { background: var(--gv-surface); border-radius: var(--gv-r-lg); border: 1px solid var(--gv-border); padding: 28px; box-shadow: var(--gv-shadow-card); }
.gv-profile__pane { display: none; }
.gv-profile__pane.gv-active { display: block; }
.gv-profile__heading { font-size: 1.2rem; font-weight: 800; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid var(--gv-accent-l); color: var(--gv-ink); }
.gv-profile__stats { display: flex; gap: 16px; margin-bottom: 20px; }
.gv-profile__stat { padding: 14px 24px; border-radius: var(--gv-r); background: var(--gv-card); border: 1px solid var(--gv-border); text-align: center; }
.gv-stat__val { font-size: 1.5rem; font-weight: 800; color: var(--gv-accent); }
.gv-stat__label { font-size: .76rem; color: var(--gv-text); margin-top: 4px; }
.gv-minigrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 12px; }
.gv-mini { background: var(--gv-card); border-radius: var(--gv-r); overflow: hidden; border: 1px solid var(--gv-border); transition: all .2s; }
.gv-mini:hover { border-color: rgba(139,92,255,.5); box-shadow: var(--gv-shadow-card-hover); transform: translateY(-2px); }
.gv-mini a { display: flex; }
.gv-mini__img { width: 80px; height: 60px; object-fit: cover; flex-shrink: 0; background: var(--gv-bg-alt); }
.gv-mini__body { padding: 12px 14px; display: flex; align-items: center; flex: 1; }
.gv-mini__title { font-size: .84rem; font-weight: 700; color: var(--gv-ink); }
.gv-mini__actions { padding: 6px 14px; border-top: 1px solid var(--gv-border); }
.gv-btn-unfav { font-size: .76rem; color: var(--gv-danger); background: none; font-weight: 600; padding: 4px 10px; border-radius: var(--gv-r-sm); transition: all .15s; }
.gv-btn-unfav:hover { background: rgba(255,94,122,.12); }
.gv-avatar { background: var(--gv-card); border-radius: var(--gv-r); padding: 20px; margin-bottom: 20px; border: 1px solid var(--gv-border); }
.gv-avatar__head { margin-bottom: 14px; }
.gv-avatar__title { font-size: .9rem; font-weight: 700; color: var(--gv-ink); }
.gv-avatar__row { display: flex; align-items: center; gap: 16px; }
.gv-avatar__preview { width: 80px; height: 80px; border-radius: 50%; background: var(--gv-grad-primary); color: #fff; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; font-weight: 800; box-shadow: 0 8px 24px rgba(139,92,255,.4); }
.gv-avatar__preview img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.gv-avatar__actions { display: flex; flex-direction: column; gap: 8px; }
.gv-avatar__hint { font-size: .74rem; color: var(--gv-muted); margin-top: 12px; }

/* ============ LOADING & EMPTY ============ */
.gv-loading { text-align: center; padding: 40px; }
.gv-spinner { width: 36px; height: 36px; border: 3px solid var(--gv-border); border-top-color: var(--gv-accent); border-radius: 50%; animation: gv-spin .7s linear infinite; margin: 0 auto 12px; }
@keyframes gv-spin { to { transform: rotate(360deg); } }
.gv-loading__text { font-size: .86rem; color: var(--gv-text); }
.gv-empty { text-align: center; padding: 64px 24px; }
.gv-empty__icon { font-size: 2.8rem; margin-bottom: 16px; }
.gv-empty h3,
.gv-empty h1 { font-size: 1.25rem; color: var(--gv-ink); margin-bottom: 8px; }
.gv-empty p { color: var(--gv-text); margin-bottom: 20px; }
.gv-empty__btns { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.gv-empty--sm { text-align: center; padding: 32px; color: var(--gv-text); }
.gv-empty--box { text-align: center; padding: 40px; color: var(--gv-text); }
.gv-empty--boxicon { font-size: 2.4rem; margin-bottom: 12px; }

/* ============ ALERTS & TOASTS ============ */
.gv-alert { padding: 12px 18px; border-radius: var(--gv-r); font-size: .86rem; margin-bottom: 16px; display: none; }
.gv-alert.gv-show { display: block; }
.gv-alert.success { background: rgba(90,158,111,.1); color: var(--gv-success); border: 1px solid rgba(90,158,111,.15); }
.gv-alert.error { background: rgba(209,82,82,.08); color: var(--gv-danger); border: 1px solid rgba(209,82,82,.15); }
.gv-alert.info { background: var(--gv-accent-l); color: var(--gv-accent); border: 1px solid rgba(139,92,255,.15); }
.gv-toast { position: fixed; bottom: 24px; right: 24px; z-index: 9999; padding: 14px 24px; border-radius: var(--gv-r-pill); font-size: .86rem; font-weight: 700; box-shadow: var(--gv-shadow-lg); transform: translateY(100px); opacity: 0; transition: all .3s; pointer-events: none; }
.gv-toast.gv-show { transform: translateY(0); opacity: 1; }
.gv-toast.success { background: var(--gv-success); color: #fff; }
.gv-toast.error { background: var(--gv-danger); color: #fff; }
.gv-toast.warning { background: var(--gv-amber); color: #fff; }
.gv-notify {
    position: fixed; top: 24px; right: 24px; z-index: 9999;
    max-width: 400px; background: #fff;
    border-radius: var(--gv-r-lg); box-shadow: var(--gv-shadow-lg);
    border: 1px solid var(--gv-border); overflow: hidden;
    animation: gv-slideIn .3s ease;
}
@keyframes gv-slideIn { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
.gv-notify__head { display: flex; justify-content: space-between; align-items: center; padding: 12px 18px; font-weight: 800; font-size: .86rem; }
.gv-notify--ok .gv-notify__head { background: rgba(90,158,111,.1); color: var(--gv-success); }
.gv-notify--err .gv-notify__head { background: rgba(209,82,82,.08); color: var(--gv-danger); }
.gv-notify__body { padding: 14px 18px; font-size: .86rem; color: var(--gv-text); }
.gv-notify__x { background: none; font-size: 1.2rem; color: inherit; }
.gv-hidden { display: none !important; }

/* ============ CONFIRM MODAL ============ */
.gv-confirm { position: fixed; inset: 0; z-index: 5000; background: rgba(26,26,36,.4); display: none; align-items: center; justify-content: center; backdrop-filter: blur(6px); }
.gv-confirm.gv-open { display: flex; }
.gv-confirm__box {
    background: #fff; border-radius: var(--gv-r-xl);
    padding: 36px; max-width: 420px; width: 90%; text-align: center;
    border: 1px solid var(--gv-border); box-shadow: var(--gv-shadow-lg);
}
.gv-confirm__icon { font-size: 2.4rem; margin-bottom: 12px; }
.gv-confirm__title { font-size: 1.15rem; font-weight: 800; margin-bottom: 8px; color: var(--gv-ink); }
.gv-confirm__text { font-size: .9rem; color: var(--gv-text); margin-bottom: 24px; }
.gv-confirm__btns { display: flex; gap: 10px; justify-content: center; }
.gv-confirm__btn { padding: 10px 24px; border-radius: var(--gv-r-pill); font-size: .86rem; font-weight: 700; transition: all .2s; }
.gv-confirm__btn--cancel { background: var(--gv-surface2); color: var(--gv-text); border: 1px solid var(--gv-border); }
.gv-confirm__btn--cancel:hover { background: var(--gv-border); }
.gv-confirm__btn--danger { background: var(--gv-danger); color: #fff; }
.gv-confirm__btn--danger:hover { opacity: .88; }

/* ============ PAGINATION ============ */
.gv-pager { padding: 32px 0; }
.gv-pager .pagination-container { display: flex; justify-content: center; }
.gv-pager ul.pagination-list { list-style: none; margin: 0; padding: 0; display: flex; justify-content: center; gap: 6px; flex-wrap: wrap; }
.gv-pager li.pagination-item { list-style: none; }
.gv-pager .pagination-link { display: inline-flex; align-items: center; justify-content: center; min-width: 38px; height: 38px; padding: 0 8px; border-radius: var(--gv-r-sm); font-size: .86rem; font-weight: 500; border: 1px solid var(--gv-border); color: var(--gv-text); background: #fff; transition: all .15s; text-decoration: none; }
.gv-pager a.pagination-link:hover { border-color: var(--gv-accent); color: var(--gv-accent); background: var(--gv-accent-l); }
.gv-pager .pagination-link.current, .gv-pager .pagination-item.active .pagination-link { background: var(--gv-accent); color: #fff; border-color: var(--gv-accent); font-weight: 700; }
.gv-pager .pagination-link.disabled { opacity: .35; pointer-events: none; cursor: not-allowed; }

/* ============ GAME OVERLAY ============ */
.gv-gameoverlay { position: fixed; inset: 0; z-index: 8000; background: #000; display: flex; align-items: center; justify-content: center; }
.gv-gameoverlay__stage { width: 100%; height: 100%; max-width: 1400px; max-height: 900px; }
.gv-gameoverlay__stage iframe { width: 100%; height: 100%; border: none; }
.gv-gameoverlay__exit { position: absolute; top: 20px; right: 20px; z-index: 10; width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.15); color: #fff; font-size: 1.3rem; display: flex; align-items: center; justify-content: center; transition: all .2s; }
.gv-gameoverlay__exit:hover { background: rgba(209,82,82,.6); }

/* ============ PROSE ============ */
.gv-prose { line-height: 1.85; color: var(--gv-text); }
.gv-prose h2 { font-size: 1.2rem; font-weight: 800; color: var(--gv-ink); margin: 24px 0 12px; }
.gv-prose h3 { font-size: .98rem; font-weight: 700; color: var(--gv-ink); margin: 16px 0 8px; }
.gv-prose p { margin-bottom: 12px; }

/* ============ FOOTER ============ */
.gv-foot {
    background: var(--gv-bg-alt); color: var(--gv-text);
    padding: 56px 0 24px; margin-top: auto;
    border-top: 1px solid var(--gv-border);
}
.gv-foot__inner { max-width: var(--gv-shell); margin: 0 auto; padding: 0 40px; }
.gv-foot__grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 36px; }
.gv-foot__brand { font-size: 1.2rem; font-weight: 800; color: #fff; margin-bottom: 14px; display: block; }
.gv-foot__about { font-size: .86rem; line-height: 1.7; margin-bottom: 18px; color: rgba(255,255,255,.5); }
.gv-foot__social { display: flex; gap: 10px; }
.gv-foot__social a {
    width: 38px; height: 38px; border-radius: 50%;
    background: rgba(255,255,255,.06); color: rgba(255,255,255,.6);
    display: flex; align-items: center; justify-content: center;
    font-size: .92rem; transition: all .25s;
    border: 1px solid rgba(255,255,255,.08);
}
.gv-foot__social a:hover { background: var(--gv-accent); color: #fff; border-color: transparent; }
.gv-foot__col h4,
.gv-foot__col p { font-size: .86rem; font-weight: 800; color: #fff; margin-bottom: 16px; }
.gv-foot__col li { margin-bottom: 10px; }
.gv-foot__col a { font-size: .84rem; color: rgba(255,255,255,.55); transition: color .15s; }
.gv-foot__col a:hover { color: var(--gv-accent); }
.gv-foot__bar { border-top: 1px solid rgba(255,255,255,.08); padding-top: 20px; text-align: center; font-size: .8rem; color: rgba(255,255,255,.4); }

/* ============ COOKIE BANNER ============ */
.gv-cookie {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
    background: #fff; border-top: 1px solid var(--gv-border);
    padding: 18px 24px; display: none;
    align-items: center; justify-content: center; gap: 20px;
    flex-wrap: wrap; box-shadow: 0 -8px 32px rgba(0,0,0,.08);
}
.gv-cookie.gv-show { display: flex; }
.gv-cookie__text { font-size: .84rem; color: var(--gv-text); max-width: 480px; }
.gv-cookie__btns { display: flex; gap: 10px; }
.gv-cookie__btn { padding: 9px 22px; border-radius: var(--gv-r-pill); font-size: .84rem; font-weight: 700; transition: all .2s; }
.gv-cookie__btn--accept { background: var(--gv-accent); color: #fff; }
.gv-cookie__btn--accept:hover { background: var(--gv-accent-d); }
.gv-cookie__btn:not(.gv-cookie__btn--accept) { background: var(--gv-surface2); color: var(--gv-text); border: 1px solid var(--gv-border); }

/* ============ AUTH MODAL ============ */
.gv-auth {
    position: fixed; inset: 0; z-index: 6000;
    background: rgba(26,26,36,.4);
    display: flex; align-items: center; justify-content: center;
    padding: 24px; backdrop-filter: blur(8px);
    animation: gv-auth-fade .25s ease;
}
@keyframes gv-auth-fade { from { opacity: 0; } to { opacity: 1; } }
.gv-auth__card {
    background: #fff; border-radius: var(--gv-r-xl);
    padding: 44px 40px 36px; max-width: 420px; width: 100%;
    max-height: 92vh; overflow-y: auto; position: relative;
    border: 1px solid var(--gv-border);
    box-shadow: 0 24px 64px rgba(0,0,0,.12);
    animation: gv-auth-pop .3s cubic-bezier(.2,.8,.3,1);
}
@keyframes gv-auth-pop { from { opacity: 0; transform: translateY(16px) scale(.97); } to { opacity: 1; transform: translateY(0) scale(1); } }
.gv-auth__card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--gv-grad-primary); border-radius: var(--gv-r-xl) var(--gv-r-xl) 0 0; }
.gv-auth__x { position: absolute; top: 16px; right: 16px; width: 34px; height: 34px; border-radius: 50%; background: var(--gv-bg-alt); font-size: 1.2rem; color: var(--gv-text); line-height: 1; display: flex; align-items: center; justify-content: center; border: none; cursor: pointer; transition: all .2s; }
.gv-auth__x:hover { background: var(--gv-danger); color: #fff; transform: rotate(90deg); }
.gv-auth__head { text-align: center; margin-bottom: 24px; }
.gv-auth__logo { width: 56px; height: 56px; margin: 0 auto 14px; border-radius: 16px; background: var(--gv-grad-primary); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }
.gv-auth__head h2 { font-size: 1.45rem; font-weight: 800; color: var(--gv-ink); margin-bottom: 4px; }
.gv-auth__head p { font-size: .86rem; color: var(--gv-text); }
.gv-auth__tabs { display: flex; gap: 0; margin-bottom: 22px; background: var(--gv-bg-alt); border-radius: var(--gv-r-pill); padding: 4px; }
.gv-auth__tabs button { flex: 1; padding: 11px; border-radius: var(--gv-r-pill); background: transparent; border: none; font-size: .9rem; font-weight: 700; color: var(--gv-text); transition: all .25s; cursor: pointer; }
.gv-auth__tabs button.gv-active { color: #fff; background: var(--gv-accent); }
.gv-auth__form { display: none; }
.gv-auth__form.gv-active { display: block; }
.gv-auth .gv-field input { background: var(--gv-surface2); border-color: var(--gv-border2); color: var(--gv-ink); }
.gv-auth .gv-field input:focus { background: #fff; border-color: var(--gv-accent); box-shadow: 0 0 0 3px var(--gv-accent-l); }
.gv-pass { position: relative; }
.gv-pass input { padding-right: 46px !important; }
.gv-pass__icon { position: absolute; right: 16px; top: 50%; transform: translateY(-50%); cursor: pointer; color: var(--gv-muted); font-size: .95rem; transition: color .2s; }
.gv-pass__icon:hover { color: var(--gv-accent); }
.gv-auth__submit { width: 100%; padding: 13px; border-radius: var(--gv-r-pill); background: var(--gv-accent); color: #fff; font-size: .94rem; font-weight: 700; margin-top: 8px; border: none; cursor: pointer; transition: all .25s; }
.gv-auth__submit:hover { background: var(--gv-accent-d); transform: translateY(-1px); }
.gv-auth__submit.gv-busy { opacity: .7; pointer-events: none; }
.gv-auth__foot { text-align: center; margin-top: 18px; font-size: .84rem; color: var(--gv-text); }
.gv-auth__foot a { color: var(--gv-accent); font-weight: 700; }
.gv-field__error { font-size: .76rem; color: var(--gv-danger); margin-top: 4px; }
.gv-has-error input { border-color: var(--gv-danger) !important; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
    .gv-detail-body { grid-template-columns: 1fr; }
    .gv-detail-aside { position: static; order: 2; }
}

@media (max-width: 1024px) {
    .gv-header__nav { display: none; }
    .gv-header__search { width: 180px; }
    .gv-header__toggle { display: flex; }
    .gv-hero__inner { flex-direction: column; text-align: center; }
    .gv-hero__copy { max-width: 100%; }
    .gv-hero__search { justify-content: center; }
    .gv-hero__chips { justify-content: center; }
    .gv-hero__visual { width: 260px; height: 260px; }
    .gv-hero__feature { width: 190px; height: 260px; }
    .gv-feat__hero { height: 320px; }
    .gv-feat__hero-body { padding: 36px; }
    .gv-feat__title { font-size: 1.5rem; max-width: 90%; }
    .gv-feat__desc { max-width: 80%; }
    .gv-feat__row { grid-template-columns: repeat(3, 1fr); gap: 14px; }
    .gv-scroll { flex: 0 0 270px; }
    .gv-scroll__img { height: 180px; }
    .gv-bento__hero { height: 260px; }
    .gv-bento__grid { grid-template-columns: repeat(3, 1fr); }
    .gv-bento--1 { grid-column: 1/3; }
    .gv-bento--2 { grid-column: 3/4; }
    .gv-bento--3 { grid-column: 1/2; }
    .gv-bento--4 { grid-column: 2/4; }
    .gv-bento--5 { grid-column: 1/3; }
    .gv-gallery--up, .gv-gallery--down { transform: none; }
    .gv-detail-hero__inner { flex-direction: column; align-items: flex-start; }
    .gv-detail-hero__cover { width: 200px; }
    .gv-detail-hero__info h1 { font-size: 1.8rem; }
    .gv-profile { grid-template-columns: 200px 1fr; }
}

@media (max-width: 768px) {
    .gv-header__search { display: none; }
    .gv-hero { padding: 56px 0 48px; }
    .gv-hero__title { font-size: 2.2rem; }
    .gv-hero__visual { display: none; }
    .gv-hero__search { flex-direction: column; }
    .gv-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
    .gv-feat__hero { height: 260px; }
    .gv-feat__hero-body { padding: 28px; }
    .gv-feat__title { font-size: 1.2rem; max-width: 100%; }
    .gv-feat__desc { font-size: .8rem; max-width: 100%; }
    .gv-feat__row { grid-template-columns: repeat(2, 1fr); }
    .gv-feat__img { height: 120px; }
    .gv-scroll { flex: 0 0 230px; }
    .gv-scroll__img { height: 150px; }
    .gv-scroll__rank { font-size: 2.2rem; }
    .gv-bento__hero { height: 210px; }
    .gv-bento__hero-ovl { padding: 22px; }
    .gv-bento__desc { display: none; }
    .gv-bento__grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .gv-bento--1, .gv-bento--2, .gv-bento--3, .gv-bento--4, .gv-bento--5 { grid-column: span 1; }
    .gv-bento__img { height: 130px; }
    .gv-gallery__wall { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; }
    .gv-detail-hero__inner { padding: 36px 20px; }
    .gv-detail-hero__cover { width: 160px; }
    .gv-detail-hero__info h1 { font-size: 1.5rem; }
    .gv-detail-hero__stats { gap: 16px; }
    .gv-detail-body { grid-template-columns: 1fr; padding: 28px 20px 48px; }
    .gv-profile { grid-template-columns: 1fr; }
    .gv-form-grid { grid-template-columns: 1fr; }
    .gv-foot__grid { grid-template-columns: 1fr; gap: 32px; }
    .gv-sec-title { font-size: 1.25rem; }
    .gv-sec-head { margin-bottom: 22px; }
    .gv-section { padding: 48px 0; }
}

@media (max-width: 480px) {
    .gv-wrap { padding: 0 16px; }
    .gv-hero { padding: 44px 0 36px; }
    .gv-hero__title { font-size: 1.7rem; }
    .gv-grid { grid-template-columns: 1fr; gap: 14px; }
    .gv-feat__hero { height: 220px; }
    .gv-feat__hero-body { padding: 20px; }
    .gv-feat__title { font-size: 1rem; }
    .gv-feat__desc { display: none; }
    .gv-feat__row { grid-template-columns: 1fr 1fr; gap: 10px; }
    .gv-feat__img { height: 100px; }
    .gv-feat__card-body { padding: 12px; }
    .gv-feat__card-title { font-size: .8rem; }
    .gv-scroll { flex: 0 0 200px; }
    .gv-scroll__img { height: 130px; }
    .gv-scroll__rank { font-size: 1.8rem; }
    .gv-bento__hero { height: 180px; }
    .gv-bento__grid { grid-template-columns: 1fr; }
    .gv-bento__img { height: 120px; }
    .gv-gallery__wall { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .gv-detail-hero__cover { width: 130px; }
    .gv-detail-hero__info h1 { font-size: 1.2rem; }
    .gv-detail-hero__actions { flex-direction: column; align-items: flex-start; }
    .gv-panel { padding: 20px; }
    .gv-auth__card { padding: 28px 22px; }
    .gv-cookie { flex-direction: column; text-align: center; }
    .gv-sec-title { font-size: 1.1rem; }
    .gv-pagehead__title { font-size: 1.5rem; }
    .gv-card__thumb { height: 150px; }
    .gv-herocard { height: 240px; margin-bottom: 20px; }
    .gv-herocard__body { padding: 22px; }
    .gv-herocard__title { font-size: 1.5rem; max-width: 100%; }
    .gv-herocard__desc { display: none; }
    .gv-herocard__badge { padding: 10px 22px; font-size: .84rem; }
    .gv-grid--tags { grid-template-columns: 1fr; }
    .gv-card--tag .gv-card__thumb { width: 110px; }
}

/* ===== EDITORIAL RESPONSIVE ===== */
@media (max-width: 1180px) {
    .gv-split, .gv-offset { grid-template-columns: 1fr; }
    .gv-split__media { min-height: 380px; }
    .gv-offset__sub { grid-template-rows: auto; }
    .gv-alt { grid-template-columns: 1fr; gap: 20px; }
    .gv-alt--rev .gv-alt__media { order: 0; }
    .gv-alt__grid { grid-template-columns: repeat(2, 1fr); }
    .gv-herocard { height: 340px; }
    .gv-herocard__body { padding: 32px; }
    .gv-herocard__title { font-size: 1.9rem; }
    .gv-herocard__desc { max-width: 80%; }
    .gv-split__media-title { font-size: 1.5rem; }
    .gv-display { font-size: 2.3rem; }
}
@media (max-width: 768px) {
    .gv-ed { padding: 44px 0; }
    .gv-ed__inner { padding: 0 20px; }
    .gv-display { font-size: 2rem; }
    .gv-offset__sub { grid-template-columns: 1fr; }
    .gv-alt__grid { grid-template-columns: 1fr; }
    .gv-split__media { min-height: 280px; }
    .gv-split__media-cap { left: 20px; right: 20px; bottom: 20px; }
    .gv-offset__lead { min-height: 300px; }
    .gv-offset__lead-ovl { padding: 24px; }
    .gv-rail__item { grid-template-columns: 92px 1fr; }
    .gv-rail__thumb { width: 92px; height: 68px; }
}
@media (max-width: 480px) {
    .gv-ed__inner { padding: 0 16px; }
    .gv-alt__body { padding: 0; }
    .gv-display { font-size: 1.7rem; }
}

/* ============================================================
   HERO SECTION — NEON ARCADE (premium glass + neon glow)
   All rules scoped to header.hero-section to override inline <style>.
   ============================================================ */
header.hero-section .hero-section {
    position: relative;
    /* 与内容区域保持一致的显示宽度 */
    max-width: var(--gv-shell);
    margin: 0 auto;
    padding: 110px 40px 40px;
    text-align: center;
    overflow: hidden;
    min-height: 76vh;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--gv-r-lg);
    background:
        radial-gradient(60% 70% at 18% 12%, rgba(139,92,255,.20) 0%, transparent 60%),
        radial-gradient(55% 65% at 82% 18%, rgba(25,227,200,.16) 0%, transparent 60%),
        var(--gv-bg);
}

/* 霓虹光晕 + 网格层 */
header.hero-section .hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        radial-gradient(circle at 50% -10%, rgba(139,92,255,.28), transparent 55%),
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 100% 100%, 46px 46px, 46px 46px;
    -webkit-mask-image: radial-gradient(80% 80% at 50% 40%, #000 30%, transparent 100%);
    mask-image: radial-gradient(80% 80% at 50% 40%, #000 30%, transparent 100%);
}

/* 底部霓虹发丝线 */
header.hero-section .hero-section::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: min(820px, 90%);
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gv-accent), var(--gv-accent2), transparent);
    opacity: .6;
}

header.hero-section .hero-container { width: 100%; }

/* 玻璃拟态内容卡片 */
header.hero-section .hero-content {
    position: relative;
    z-index: 2;
    /* 与上方数据展示区（模块卡片网格）宽度保持一致 */
    max-width: 100%;
    margin: 0 auto;
    padding: 48px 44px;
    border-radius: var(--gv-r-lg);
    border: 1px solid var(--gv-border);
    background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.012));
    box-shadow: var(--gv-shadow);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    animation: gv-hero-rise .7s cubic-bezier(.2,.8,.3,1) both;
}

@keyframes gv-hero-rise {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* 标签徽章 — 玻璃胶囊 */
header.hero-section .hero-tagline {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: var(--gv-accent2-l);
    color: var(--gv-accent2);
    padding: 0.5rem 1.3rem;
    border: 1px solid rgba(25,227,200,.3);
    border-radius: var(--gv-r-pill);
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 1.6rem;
    letter-spacing: .2px;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    box-shadow: 0 0 18px rgba(25,227,200,.18);
}
header.hero-section .hero-tagline::before {
    content: '';
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--gv-accent2);
    box-shadow: 0 0 10px var(--gv-accent2);
}

/* 主标题 — 渐变 + 辉光 */
header.hero-section .hero-section h1 {
    font-size: 3.4rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    line-height: 1.18;
    letter-spacing: -1px;
    font-family: var(--gv-display);
    color: var(--gv-ink);
    background: var(--gv-grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 6px 26px rgba(139,92,255,.25));
}

header.hero-section .hero-description {
    font-size: 1.08rem;
    color: var(--gv-text);
    margin-bottom: 0.85rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.75;
}

header.hero-section .hero-subdescription {
    font-size: 1rem;
    color: var(--gv-muted);
    margin-bottom: 2rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

header.hero-section .hero-actions {
    display: flex;
    gap: 0.85rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 8px;
}

/* 主按钮 — 渐变 + 辉光 */
header.hero-section .hero-actions .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.9rem 2.1rem;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: var(--gv-r-pill);
    background: var(--gv-grad-primary);
    color: #fff;
    border: none;
    transition: transform .25s ease, box-shadow .25s ease;
    box-shadow: 0 6px 22px rgba(139,92,255,.4);
}
header.hero-section .hero-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(139,92,255,.55);
}

/* 次按钮 — 玻璃描边 */
header.hero-section .hero-actions .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.9rem 2.1rem;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: var(--gv-r-pill);
    background: rgba(255,255,255,.03);
    color: var(--gv-accent2);
    border: 1.5px solid rgba(25,227,200,.4);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
header.hero-section .hero-actions .btn-outline:hover {
    border-color: var(--gv-accent2);
    background: var(--gv-accent2-l);
    transform: translateY(-2px);
}

/* 统计 — 玻璃卡片 */
header.hero-section .hero-stats {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2.4rem;
}

header.hero-section .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    margin: 0;
    padding: 14px 26px;
    min-width: 130px;
    border-radius: var(--gv-r);
    background: rgba(255,255,255,.03);
    border: 1px solid var(--gv-border);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

header.hero-section .hero-stats .stat-number {
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--gv-ink);
    line-height: 1;
    background: var(--gv-grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

header.hero-section .stat-label {
    font-size: 0.82rem;
    color: var(--gv-muted);
    font-weight: 500;
    letter-spacing: .3px;
}

/* Responsive */
@media (max-width: 768px) {
    header.hero-section .hero-section { min-height: 64vh; padding: 100px 16px 36px; }
    header.hero-section .hero-content { padding: 36px 24px; }
    header.hero-section .hero-section h1 { font-size: 2.3rem; }
    header.hero-section .hero-description { font-size: 0.95rem; }
    header.hero-section .hero-subdescription { font-size: 0.85rem; }
    header.hero-section .stat-item { min-width: 110px; padding: 12px 18px; }
    header.hero-section .hero-stats .stat-number { font-size: 1.5rem; }
}

@media (max-width: 640px) {
    header.hero-section .hero-actions { flex-direction: column; width: 100%; }
    header.hero-section .hero-actions .btn-primary,
    header.hero-section .hero-actions .btn-outline { width: 100%; justify-content: center; }
    header.hero-section .hero-stats { gap: 0.75rem; }
}

@media (max-width: 480px) {
    header.hero-section .hero-section { padding: 92px 12px 32px; }
    header.hero-section .hero-content { padding: 28px 18px; }
    header.hero-section .hero-section h1 { font-size: 1.7rem; }
    header.hero-section .stat-item { flex: 1 1 40%; min-width: 0; }
}


/* ============================================================
   HERO (sub-page variant: tags/list) — NEON ARCADE theme
   作用域限定为 .gv-shell 的直接子元素 .hero-section（即 tags 页 hero），
   同时不影响首页 <header> 包裹的 hero。

   ⚠ 关键点：公共片段 common/game_tags_hero_0001.html 自带一段内联
   <style>，并把 .hero-tagline / .hero-title / 文案颜色等大量属性写成
   !important（青色 #10ddb4、灰色 #c0c0c0/#909090、超大标题等）。
   外链 style.css 即便选择器更具体，也无法压过内联的 !important，因此
   本处所有冲突属性一律加 !important，确保主题样式稳定生效。
   ============================================================ */
.gv-shell > .hero-section {
    position: relative !important;
    /* 与内容区域保持一致的显示宽度 */
    max-width: var(--gv-shell) !important;
    margin: 0 auto !important;
    padding: 24px 40px !important;
    min-height: auto !important;
    display: block !important;
    text-align: center !important;
    overflow: hidden !important;
    background:
        radial-gradient(60% 70% at 18% 12%, rgba(139,92,255,.16) 0%, transparent 60%),
        radial-gradient(55% 65% at 82% 18%, rgba(25,227,200,.12) 0%, transparent 60%),
        var(--gv-bg) !important;
}

.gv-shell > .hero-section::before {
    content: '' !important;
    position: absolute !important;
    inset: 0 !important;
    pointer-events: none !important;
    background-image:
        radial-gradient(circle at 50% -10%, rgba(139,92,255,.22), transparent 55%),
        linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px) !important;
    background-size: 100% 100%, 46px 46px, 46px 46px !important;
    -webkit-mask-image: radial-gradient(80% 80% at 50% 40%, #000 30%, transparent 100%) !important;
    mask-image: radial-gradient(80% 80% at 50% 40%, #000 30%, transparent 100%) !important;
}

.gv-shell > .hero-section .hero-container { width: 100% !important; }

/* 玻璃拟态内容卡片（与首页 hero 一致，宽度与上方数据区对齐） */
.gv-shell > .hero-section .hero-content {
    position: relative !important;
    z-index: 2 !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 36px 40px !important;
    border-radius: var(--gv-r-lg) !important;
    border: 1px solid var(--gv-border) !important;
    background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.012)) !important;
    box-shadow: var(--gv-shadow) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    backdrop-filter: blur(8px) !important;
}

/* 主标题（h1.hero-tagline = 站点 slogan）— 渐变大标题 */
.gv-shell > .hero-section .hero-tagline {
    display: block !important;
    font-size: 2.2rem !important;
    font-weight: 800 !important;
    line-height: 1.28 !important;
    margin: 0 auto 0.75rem !important;
    max-width: 900px !important;
    letter-spacing: -0.5px !important;
    font-family: var(--gv-display) !important;
    color: var(--gv-ink) !important;
    background: var(--gv-grad-primary) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    padding: 0 !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    text-transform: none !important;
    filter: drop-shadow(0 6px 26px rgba(139,92,255,.22)) !important;
}

/* 副标题（p.hero-title = “Game Tags & Categories”）— 青色霓虹徽章 */
.gv-shell > .hero-section .hero-title {
    display: inline-block !important;
    font-size: .95rem !important;
    font-weight: 700 !important;
    color: var(--gv-accent2) !important;
    margin-bottom: 1.1rem !important;
    padding: 6px 16px !important;
    border-radius: var(--gv-r-pill) !important;
    letter-spacing: .3px !important;
    background: var(--gv-accent2-l) !important;
    border: 1px solid rgba(25,227,200,.35) !important;
    min-height: 0 !important;
    line-height: 1.4 !important;
}

.gv-shell > .hero-section .hero-description {
    font-size: 1.05rem !important;
    color: var(--gv-text) !important;
    margin: 0 auto 1rem !important;
    max-width: 560px !important;
    line-height: 1.75 !important;
}

.gv-shell > .hero-section .hero-subdescription {
    font-size: 1rem !important;
    color: var(--gv-muted) !important;
    margin: 0 auto 2rem !important;
    max-width: 560px !important;
    line-height: 1.7 !important;
}

.gv-shell > .hero-section .hero-stats {
    display: flex !important;
    gap: 3rem !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    padding-top: 1.5rem !important;
    border-top: 1px solid var(--gv-border) !important;
}

.gv-shell > .hero-section .stat-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 0.25rem !important;
    margin: 0 !important;
}

.gv-shell > .hero-section .hero-stats .stat-number {
    font-size: 2rem !important;
    font-weight: 700 !important;
    color: var(--gv-accent2) !important;
    line-height: 1 !important;
}

.gv-shell > .hero-section .stat-label {
    font-size: 0.875rem !important;
    color: var(--gv-muted) !important;
    font-weight: 400 !important;
}

/* Responsive */
@media (max-width: 768px) {
    .gv-shell > .hero-section { padding: 20px 16px !important; }
    .gv-shell > .hero-section .hero-content { padding: 28px 20px !important; }
    .gv-shell > .hero-section .hero-tagline { font-size: 1.8rem !important; }
    .gv-shell > .hero-section .hero-description { font-size: 0.92rem !important; }
    .gv-shell > .hero-section .hero-subdescription { font-size: 0.85rem !important; }
    .gv-shell > .hero-section .hero-stats { gap: 2rem !important; }
    .gv-shell > .hero-section .stat-number { font-size: 1.5rem !important; }
}

@media (max-width: 480px) {
    .gv-shell > .hero-section .hero-content { padding: 24px 16px !important; }
    .gv-shell > .hero-section .hero-tagline { font-size: 1.5rem !important; }
    .gv-shell > .hero-section .hero-stats { gap: 1.5rem !important; }
}

/* 仅供屏幕阅读器/标题层级使用的隐藏标题 */
.gv-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}