/* ============================================================
   vtubermanager.com -- y2k chrome metallic fashion
   ============================================================ */

:root {
    --c-deep: #0A0A14;
    --c-dark: #1A1A2E;
    --c-silver: #C0C0C0;
    --c-silver-hi: #E8E8E8;
    --c-silver-lo: #A0A0A0;
    --c-silver-lt: #D8D8D8;
    --c-gold: #FFD700;
    --c-pink: #FF69B4;
    --c-cyan: #00FFFF;
    --c-white: #FFFFFF;
    --c-violet: #8B5CF6;
    --c-text-dark: #2A2A2A;
    --c-text-light: #E0E0E0;
    --c-grey: #888888;

    --chrome-grad: linear-gradient(135deg,
        #C0C0C0 0%,
        #E8E8E8 18%,
        #A0A0A0 38%,
        #D8D8D8 58%,
        #FFFFFF 70%,
        #A0A0A0 86%,
        #C0C0C0 100%
    );
    --chrome-grad-soft: linear-gradient(135deg, #D8D8D8, #E8E8E8 30%, #A0A0A0 60%, #C0C0C0);
    --gold-grad: linear-gradient(135deg, #FFD700 0%, #FFF6B0 30%, #C9A700 60%, #FFD700 100%);
    --holo-grad: linear-gradient(115deg,
        #FF69B4 0%,
        #FFD700 18%,
        #00FFFF 36%,
        #8B5CF6 56%,
        #FF69B4 74%,
        #FFD700 92%,
        #FF69B4 100%
    );

    --f-display: "Orbitron", "Inter", system-ui, sans-serif;
    --f-secondary: "Exo 2", "Inter", system-ui, sans-serif;
    --f-body: "Manrope", "Inter", system-ui, sans-serif;
    --f-mono: "Space Mono", ui-monospace, "Courier New", monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
    background: var(--c-deep);
    color: var(--c-text-light);
    font-family: var(--f-body);
    font-size: 15px;
    line-height: 1.65;
    overflow-x: hidden;
    min-height: 100%;
}

body {
    background:
        radial-gradient(ellipse 80% 60% at 20% 0%, rgba(255,105,180,0.12), transparent 60%),
        radial-gradient(ellipse 70% 50% at 80% 30%, rgba(0,255,255,0.10), transparent 65%),
        radial-gradient(ellipse 90% 70% at 50% 100%, rgba(139,92,246,0.10), transparent 70%),
        linear-gradient(180deg, #0A0A14 0%, #1A1A2E 50%, #0A0A14 100%);
    background-attachment: fixed;
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        repeating-linear-gradient(0deg, transparent 0 2px, rgba(255,255,255,0.012) 2px 3px),
        repeating-linear-gradient(90deg, transparent 0 80px, rgba(0,255,255,0.025) 80px 81px);
    mix-blend-mode: screen;
    z-index: 1;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

/* ============================================================
   Lens flare corners
   ============================================================ */
.lens-flare {
    position: fixed;
    width: 520px;
    height: 520px;
    pointer-events: none;
    z-index: 2;
    opacity: 0.55;
    mix-blend-mode: screen;
    filter: blur(2px);
}
.lens-flare-tl {
    top: -180px; left: -180px;
    background:
        radial-gradient(circle at 60% 60%, rgba(255,215,0,0.45), transparent 35%),
        radial-gradient(circle at 50% 50%, rgba(0,255,255,0.30), transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255,105,180,0.22), transparent 60%);
}
.lens-flare-br {
    bottom: -180px; right: -180px;
    background:
        radial-gradient(circle at 40% 40%, rgba(139,92,246,0.40), transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(0,255,255,0.25), transparent 55%),
        radial-gradient(circle at 60% 60%, rgba(255,215,0,0.20), transparent 65%);
}

/* ============================================================
   Chrome Nav
   ============================================================ */
.chrome-nav {
    position: sticky;
    top: 16px;
    z-index: 50;
    margin: 16px 28px 0;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-radius: 999px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.02) 50%, rgba(0,0,0,0.40)),
        linear-gradient(180deg, #2A2A3E, #14142A);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.55),
        inset 0 -1px 0 rgba(0,0,0,0.60),
        0 8px 28px rgba(0,0,0,0.55);
    border: 1px solid rgba(216,216,216,0.25);
    backdrop-filter: blur(8px);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--f-display);
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--c-white);
    text-shadow: 1px 1px 2px #888888, -1px -1px 2px #FFFFFF;
}
.brand-mark {
    width: 38px; height: 38px;
    border-radius: 50%;
    display: grid; place-items: center;
    font-size: 14px;
    color: #14142A;
    background: var(--chrome-grad);
    box-shadow:
        inset 0 2px 0 rgba(255,255,255,0.85),
        inset 0 -2px 0 rgba(0,0,0,0.45),
        0 4px 10px rgba(0,0,0,0.6);
    text-shadow: none;
    -webkit-text-fill-color: #14142A;
}
.brand-mark-big { width: 56px; height: 56px; font-size: 20px; }

.brand-text { font-size: 16px; }
.brand-dot {
    color: var(--c-pink);
    text-shadow: 0 0 8px var(--c-pink);
}

.nav-links {
    display: flex;
    gap: 8px;
    align-items: center;
}
.nav-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 18px;
    border-radius: 999px;
    font-family: var(--f-secondary);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.05em;
    color: var(--c-text-light);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.10), rgba(0,0,0,0.30));
    border: 1px solid rgba(216,216,216,0.18);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.30),
        inset 0 -1px 0 rgba(0,0,0,0.40);
    transition: transform 0.25s ease, color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.nav-pill:hover {
    transform: translateY(-1px);
    color: var(--c-white);
    background: var(--chrome-grad);
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.85),
        inset 0 -1px 0 rgba(0,0,0,0.50),
        0 6px 18px rgba(0,255,255,0.18);
}
.nav-pill:hover { color: #14142A; text-shadow: 0 1px 0 rgba(255,255,255,0.6); }
.nav-pill.active {
    color: #14142A;
    background: var(--chrome-grad);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.85),
        inset 0 -1px 0 rgba(0,0,0,0.50),
        0 4px 10px rgba(0,0,0,0.4);
}
.nav-pill-vip {
    color: #14142A !important;
    background: var(--gold-grad) !important;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.9),
        inset 0 -2px 0 rgba(120,80,0,0.6),
        0 4px 14px rgba(255,215,0,0.40) !important;
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
    padding: 36px 28px 60px;
    position: relative;
    z-index: 5;
}
.hero-frame {
    position: relative;
    min-height: calc(100vh - 140px);
    border-radius: 32px;
    padding: 8px;
    background: var(--chrome-grad);
    box-shadow:
        0 30px 80px rgba(0,0,0,0.6),
        inset 0 0 0 1px rgba(255,255,255,0.6);
    overflow: hidden;
    isolation: isolate;
}
.hero-frame::before {
    content: "";
    position: absolute;
    inset: 8px;
    border-radius: 26px;
    background:
        radial-gradient(ellipse 120% 80% at 30% 0%, rgba(255,105,180,0.35), transparent 60%),
        radial-gradient(ellipse 110% 80% at 100% 100%, rgba(0,255,255,0.30), transparent 60%),
        radial-gradient(ellipse 80% 80% at 50% 60%, rgba(139,92,246,0.30), transparent 70%),
        linear-gradient(160deg, #14142A 0%, #1A1A2E 40%, #0A0A14 100%);
    z-index: 0;
}
.hero-frame::after {
    content: "";
    position: absolute;
    inset: 8px;
    border-radius: 26px;
    background: linear-gradient(110deg,
        transparent 0%,
        transparent 35%,
        rgba(255,255,255,0.55) 50%,
        transparent 65%,
        transparent 100%);
    background-size: 240% 100%;
    background-position: -120% 0;
    pointer-events: none;
    z-index: 4;
    animation: heroSweep 1.2s ease-out 0.2s both;
}
@keyframes heroSweep {
    from { background-position: -120% 0; opacity: 0; }
    20%  { opacity: 1; }
    to   { background-position: 220% 0; opacity: 0; }
}

.frame-corner {
    position: absolute;
    width: 64px; height: 64px;
    z-index: 5;
    pointer-events: none;
}
.frame-corner::before, .frame-corner::after {
    content: "";
    position: absolute;
    background: var(--chrome-grad);
    box-shadow: 0 0 8px rgba(0,0,0,0.7);
}
.frame-corner-tl { top: 18px; left: 18px; }
.frame-corner-tl::before { top: 0; left: 0; width: 24px; height: 3px; }
.frame-corner-tl::after  { top: 0; left: 0; width: 3px; height: 24px; }
.frame-corner-tr { top: 18px; right: 18px; }
.frame-corner-tr::before { top: 0; right: 0; width: 24px; height: 3px; }
.frame-corner-tr::after  { top: 0; right: 0; width: 3px; height: 24px; }
.frame-corner-bl { bottom: 18px; left: 18px; }
.frame-corner-bl::before { bottom: 0; left: 0; width: 24px; height: 3px; }
.frame-corner-bl::after  { bottom: 0; left: 0; width: 3px; height: 24px; }
.frame-corner-br { bottom: 18px; right: 18px; }
.frame-corner-br::before { bottom: 0; right: 0; width: 24px; height: 3px; }
.frame-corner-br::after  { bottom: 0; right: 0; width: 3px; height: 24px; }

.hero-content {
    position: relative;
    z-index: 3;
    padding: clamp(40px, 8vw, 96px) clamp(28px, 6vw, 72px);
    max-width: 980px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 26px;
    text-align: left;
    min-height: calc(100vh - 156px);
    justify-content: center;
}

.hero-tag {
    font-family: var(--f-mono);
    font-size: 12px;
    letter-spacing: 0.18em;
    color: var(--c-cyan);
    text-shadow: 0 0 12px rgba(0,255,255,0.45);
    text-transform: uppercase;
}

.hero-title {
    font-family: var(--f-display);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: 0.06em;
    font-size: clamp(48px, 9vw, 116px);
    color: var(--c-white);
    text-shadow: 1px 1px 2px #888888, -1px -1px 2px #FFFFFF;
}
.title-line { display: block; }
.title-line-accent {
    background: var(--chrome-grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    text-shadow: none;
    filter: drop-shadow(0 4px 14px rgba(255,255,255,0.25));
}

.hero-sub {
    font-family: var(--f-body);
    font-size: clamp(16px, 1.4vw, 19px);
    line-height: 1.65;
    color: var(--c-text-light);
    max-width: 640px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.chrome-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    border-radius: 999px;
    font-family: var(--f-secondary);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.chrome-btn-primary {
    color: #14142A;
    background: var(--chrome-grad);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.95),
        inset 0 -2px 0 rgba(0,0,0,0.55),
        0 8px 22px rgba(0,255,255,0.25);
}
.chrome-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,1),
        inset 0 -2px 0 rgba(0,0,0,0.55),
        0 14px 38px rgba(255,105,180,0.45);
}
.chrome-btn-ghost {
    color: var(--c-white);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.10), rgba(0,0,0,0.45));
    border: 1px solid rgba(216,216,216,0.35);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.40),
        inset 0 -1px 0 rgba(0,0,0,0.55);
}
.chrome-btn-ghost:hover {
    transform: translateY(-2px);
    color: var(--c-cyan);
    text-shadow: 0 0 8px rgba(0,255,255,0.5);
    border-color: var(--c-cyan);
}
.btn-glint {
    position: absolute;
    top: 0; left: -50%;
    width: 60%; height: 100%;
    background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.65) 50%, transparent 70%);
    pointer-events: none;
    transform: skewX(-20deg);
    animation: btnGlint 3.6s ease-in-out infinite;
}
@keyframes btnGlint {
    0%   { left: -60%; }
    60%  { left: 120%; }
    100% { left: 120%; }
}

.hero-meta {
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 12px;
    margin-top: 18px;
    padding: 18px;
    border-radius: 20px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.05), rgba(0,0,0,0.40));
    border: 1px solid rgba(216,216,216,0.18);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.20),
        inset 0 -1px 0 rgba(0,0,0,0.40);
}
.meta-block {
    display: flex; flex-direction: column; gap: 6px;
    padding: 10px 14px;
    border-right: 1px solid rgba(216,216,216,0.10);
}
.meta-block:last-child { border-right: none; }
.meta-label {
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.18em;
    color: var(--c-silver-lt);
    text-transform: uppercase;
}
.meta-value {
    font-family: var(--f-display);
    font-weight: 700;
    font-size: clamp(20px, 2vw, 26px);
    color: var(--c-white);
    text-shadow: 1px 1px 2px #888888, -1px -1px 2px #FFFFFF;
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
}
.meta-unit {
    font-family: var(--f-mono);
    font-size: 12px;
    color: var(--c-cyan);
    text-shadow: 0 0 6px rgba(0,255,255,0.5);
    margin-left: 2px;
}
.meta-live { color: var(--c-pink); }
.meta-live .live-dot { margin-left: 8px; }

@media (max-width: 720px) {
    .hero-meta { grid-template-columns: repeat(2, 1fr); }
    .meta-block { border-right: none; border-bottom: 1px solid rgba(216,216,216,0.08); }
}

/* ============================================================
   Chrome spheres + torus
   ============================================================ */
.chrome-sphere, .chrome-torus {
    position: absolute;
    pointer-events: none;
    z-index: 2;
    will-change: transform;
}
.chrome-sphere {
    border-radius: 50%;
    background:
        radial-gradient(circle at 30% 28%, #FFFFFF 0%, #E8E8E8 18%, #C0C0C0 38%, #888888 60%, #2A2A2A 90%);
    box-shadow:
        inset -6px -10px 18px rgba(0,0,0,0.55),
        inset 4px 6px 12px rgba(255,255,255,0.55),
        0 12px 32px rgba(0,0,0,0.55);
}
.chrome-sphere::after {
    content: "";
    position: absolute;
    top: 12%; left: 22%;
    width: 30%; height: 22%;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(255,255,255,0.95), rgba(255,255,255,0) 70%);
}
.chrome-sphere-1 { width: 80px; height: 80px; top: 10%; left: 6%; animation: sphereFloat 5s ease-in-out infinite; }
.chrome-sphere-2 { width: 36px; height: 36px; top: 20%; right: 12%; animation: sphereFloat 4.4s ease-in-out -1.2s infinite; }
.chrome-sphere-3 { width: 56px; height: 56px; bottom: 14%; left: 12%; animation: sphereFloat 6s ease-in-out -2s infinite; }
.chrome-sphere-4 { width: 28px; height: 28px; bottom: 22%; right: 8%; animation: sphereFloat 4.8s ease-in-out -0.7s infinite; }
.chrome-sphere-5 { width: 44px; height: 44px; top: 50%; right: 30%; animation: sphereFloat 5.6s ease-in-out -3s infinite; }

.chrome-torus {
    border-radius: 50%;
    border: 8px solid transparent;
    background:
        conic-gradient(from 90deg,
            #C0C0C0, #E8E8E8 12%,
            #A0A0A0 28%, #FFFFFF 40%,
            #888888 55%, #D8D8D8 72%,
            #A0A0A0 86%, #C0C0C0 100%) border-box;
    -webkit-mask:
        radial-gradient(circle, transparent 50%, #000 52%);
            mask:
        radial-gradient(circle, transparent 50%, #000 52%);
    box-shadow: 0 12px 32px rgba(0,0,0,0.55);
}
.chrome-torus-1 { width: 110px; height: 110px; top: 60%; left: 8%; animation: sphereFloat 7s ease-in-out -1.5s infinite, torusSpin 24s linear infinite; }
.chrome-torus-2 { width: 70px; height: 70px; top: 18%; right: 6%; animation: sphereFloat 5.2s ease-in-out -0.4s infinite, torusSpin 18s linear -3s infinite reverse; }

@keyframes sphereFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-20px); }
}
@keyframes torusSpin {
    from { rotate: 0deg; }
    to   { rotate: 360deg; }
}

/* ============================================================
   Live dot
   ============================================================ */
.live-dot {
    display: inline-block;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #FF3344;
    box-shadow:
        0 0 8px rgba(255,51,68,0.85),
        0 0 16px rgba(255,51,68,0.55);
    animation: livePulse 1.5s ease-in-out infinite;
    vertical-align: middle;
}
.live-dot-big { width: 14px; height: 14px; }
@keyframes livePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.5; transform: scale(0.9); }
}

/* ============================================================
   Section heads
   ============================================================ */
.section-head {
    max-width: 980px;
    margin: 0 auto 36px;
    text-align: center;
    padding: 0 16px;
}
.section-eyebrow {
    font-family: var(--f-mono);
    font-size: 12px;
    letter-spacing: 0.22em;
    color: var(--c-cyan);
    text-shadow: 0 0 10px rgba(0,255,255,0.4);
    text-transform: uppercase;
    margin-bottom: 10px;
}
.section-title {
    font-family: var(--f-display);
    font-weight: 700;
    font-size: clamp(36px, 5vw, 64px);
    letter-spacing: 0.06em;
    color: var(--c-white);
    text-shadow: 1px 1px 2px #888888, -1px -1px 2px #FFFFFF;
    margin-bottom: 12px;
}
.section-lede {
    color: var(--c-text-light);
    font-size: 16px;
    max-width: 640px;
    margin: 0 auto;
}

/* ============================================================
   Talent grid
   ============================================================ */
.talent {
    padding: 60px 28px 40px;
    position: relative;
    z-index: 5;
}
.talent-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 26px;
    max-width: 1320px;
    margin: 0 auto;
    perspective: 1200px;
}

.talent-card {
    --tilt-x: 0deg;
    --tilt-y: 0deg;
    --rot-z: 0deg;
    transform: rotateZ(var(--rot-z));
    transition: transform 0.45s cubic-bezier(0.2,0.8,0.2,1);
    will-change: transform;
}
.talent-card:nth-child(odd)  { --rot-z: -1.4deg; }
.talent-card:nth-child(even) { --rot-z:  1.6deg; }
.talent-card:nth-child(3n)   { --rot-z:  0.8deg; }
.talent-card:nth-child(5n)   { --rot-z: -1.8deg; }

.talent-card.is-tilting {
    transition: transform 0.08s linear;
    transform: rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
}

.card-frame {
    position: relative;
    border-radius: 22px;
    padding: 5px;
    background: var(--chrome-grad);
    box-shadow:
        inset 0 0 0 1px rgba(255,255,255,0.55),
        0 18px 40px rgba(0,0,0,0.55);
    overflow: hidden;
    isolation: isolate;
    transform-style: preserve-3d;
}
.card-frame::before {
    content: "";
    position: absolute;
    inset: 5px;
    border-radius: 17px;
    background:
        linear-gradient(160deg, #1A1A2E 0%, #0A0A14 70%);
    z-index: 0;
}
.card-frame::after {
    content: "";
    position: absolute;
    inset: 5px;
    border-radius: 17px;
    background: var(--holo-grad);
    background-size: 300% 300%;
    background-position: 0% 50%;
    mix-blend-mode: color-dodge;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 4;
    pointer-events: none;
}
.talent-card:hover .card-frame::after {
    opacity: 0.42;
    animation: holoShift 2s linear infinite;
}
@keyframes holoShift {
    0%   { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.card-avatar {
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: 14px 14px 4px 4px;
    overflow: hidden;
    z-index: 2;
}
.avatar-mesh {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, var(--avatar-a, #FF69B4) 0%, transparent 55%),
        radial-gradient(circle at 80% 25%, var(--avatar-b, #00FFFF) 0%, transparent 55%),
        radial-gradient(circle at 60% 80%, var(--avatar-c, #FFD700) 0%, transparent 60%),
        radial-gradient(circle at 30% 90%, #8B5CF6 0%, transparent 65%),
        linear-gradient(135deg, #1A1A2E, #0A0A14);
    filter: blur(6px) saturate(1.1);
    transform: scale(1.06);
}
.avatar-aria  { --avatar-a: #FF69B4; --avatar-b: #8B5CF6; --avatar-c: #00FFFF; }
.avatar-yuki  { --avatar-a: #00FFFF; --avatar-b: #FFD700; --avatar-c: #FFFFFF; }
.avatar-mira  { --avatar-a: #FFD700; --avatar-b: #FF69B4; --avatar-c: #1A1A2E; }
.avatar-nova  { --avatar-a: #8B5CF6; --avatar-b: #00FFFF; --avatar-c: #FF69B4; }
.avatar-kira  { --avatar-a: #FFD700; --avatar-b: #FFFFFF; --avatar-c: #FF69B4; }
.avatar-sora  { --avatar-a: #00FFFF; --avatar-b: #FF69B4; --avatar-c: #FFD700; }
.avatar-ren   { --avatar-a: #1A1A2E; --avatar-b: #8B5CF6; --avatar-c: #00FFFF; }
.avatar-aoi   { --avatar-a: #C0C0C0; --avatar-b: #00FFFF; --avatar-c: #FFD700; }

.avatar-shimmer {
    position: absolute;
    inset: -10%;
    background: linear-gradient(115deg,
        transparent 35%, rgba(255,255,255,0.55) 50%, transparent 65%);
    background-size: 240% 240%;
    background-position: -120% 0;
    mix-blend-mode: overlay;
    pointer-events: none;
}
.talent-card:hover .avatar-shimmer {
    animation: avatarSweep 1.2s ease-in-out;
}
@keyframes avatarSweep {
    from { background-position: -120% 0; }
    to   { background-position: 220% 0; }
}

.card-rank {
    position: absolute;
    top: 10px; left: 10px;
    padding: 4px 10px;
    border-radius: 999px;
    font-family: var(--f-display);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.08em;
    color: #14142A;
    background: var(--chrome-grad);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.85),
        inset 0 -1px 0 rgba(0,0,0,0.45),
        0 4px 10px rgba(0,0,0,0.5);
    z-index: 3;
}
.card-live {
    position: absolute;
    top: 10px; right: 10px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    color: #FFFFFF;
    background: rgba(0,0,0,0.65);
    border: 1px solid #FF3344;
    box-shadow: 0 0 14px rgba(255,51,68,0.35);
    z-index: 3;
}
.card-offline {
    color: var(--c-silver-lt);
    border-color: rgba(216,216,216,0.4);
    box-shadow: none;
}

.card-body {
    position: relative;
    z-index: 2;
    padding: 14px 16px 18px;
}
.card-name {
    font-family: var(--f-secondary);
    font-weight: 700;
    font-size: 22px;
    color: var(--c-white);
    margin-bottom: 2px;
    letter-spacing: 0.02em;
}
.card-handle {
    font-family: var(--f-mono);
    font-size: 12px;
    color: var(--c-cyan);
    letter-spacing: 0.04em;
    margin-bottom: 14px;
    text-shadow: 0 0 6px rgba(0,255,255,0.3);
}
.card-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 14px;
    padding: 10px;
    border-radius: 12px;
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(216,216,216,0.12);
}
.card-stats > div {
    display: flex; flex-direction: column; gap: 2px;
    text-align: center;
}
.card-stats span {
    font-family: var(--f-mono);
    font-size: 10px;
    letter-spacing: 0.12em;
    color: var(--c-silver-lt);
}
.card-stats b {
    font-family: var(--f-display);
    font-size: 16px;
    color: var(--c-white);
    text-shadow: 1px 1px 2px #888888, -1px -1px 2px #FFFFFF;
}
.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.tag {
    font-family: var(--f-mono);
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: 999px;
    border: 1px solid rgba(216,216,216,0.2);
    background: rgba(255,255,255,0.04);
    color: var(--c-silver-lt);
}
.tag-pink   { color: var(--c-pink);   border-color: rgba(255,105,180,0.55); text-shadow: 0 0 8px rgba(255,105,180,0.4); }
.tag-cyan   { color: var(--c-cyan);   border-color: rgba(0,255,255,0.55);   text-shadow: 0 0 8px rgba(0,255,255,0.4); }
.tag-violet { color: #C4A8FF;         border-color: rgba(139,92,246,0.55);  text-shadow: 0 0 8px rgba(139,92,246,0.4); }
.tag-gold   { color: var(--c-gold);   border-color: rgba(255,215,0,0.6);    text-shadow: 0 0 8px rgba(255,215,0,0.4); }

/* ============================================================
   Live board
   ============================================================ */
.live-board {
    padding: 60px 28px;
    position: relative;
    z-index: 5;
}
.live-frame {
    max-width: 1180px;
    margin: 0 auto;
    border-radius: 28px;
    padding: 6px;
    background: var(--chrome-grad);
    box-shadow:
        inset 0 0 0 1px rgba(255,255,255,0.55),
        0 24px 52px rgba(0,0,0,0.55);
}
.live-header {
    padding: 28px 28px 8px;
    border-radius: 22px 22px 0 0;
    background: linear-gradient(180deg, #1A1A2E, #0A0A14);
    text-align: center;
}
.live-feed {
    background: linear-gradient(180deg, #0A0A14, #1A1A2E);
    border-radius: 0 0 22px 22px;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.live-row {
    display: grid;
    grid-template-columns: 64px 180px 1fr 110px 80px;
    align-items: center;
    gap: 16px;
    padding: 14px 18px;
    border-radius: 14px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.04), rgba(0,0,0,0.30));
    border: 1px solid rgba(216,216,216,0.10);
    transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}
.live-row:hover {
    transform: translateX(4px);
    background:
        linear-gradient(180deg, rgba(255,105,180,0.10), rgba(0,255,255,0.06));
    border-color: rgba(0,255,255,0.45);
}
.live-time {
    font-family: var(--f-mono);
    font-size: 13px;
    color: var(--c-cyan);
    letter-spacing: 0.06em;
    text-shadow: 0 0 6px rgba(0,255,255,0.3);
}
.live-channel {
    font-family: var(--f-mono);
    font-size: 13px;
    color: var(--c-pink);
    letter-spacing: 0.04em;
    text-shadow: 0 0 6px rgba(255,105,180,0.3);
}
.live-title {
    font-family: var(--f-secondary);
    font-weight: 600;
    font-size: 15px;
    color: var(--c-white);
}
.live-viewers {
    font-family: var(--f-display);
    font-weight: 700;
    font-size: 16px;
    color: var(--c-white);
    text-shadow: 1px 1px 2px #888888, -1px -1px 2px #FFFFFF;
    text-align: right;
}
.live-tag.tag-pink, .live-tag.tag-cyan, .live-tag.tag-violet, .live-tag.tag-gold {
    text-align: center;
}
@media (max-width: 720px) {
    .live-row {
        grid-template-columns: 60px 1fr 80px;
        grid-template-areas:
            "time channel viewers"
            "time title viewers"
            "time tag tag";
        row-gap: 4px;
    }
    .live-time    { grid-area: time; }
    .live-channel { grid-area: channel; }
    .live-title   { grid-area: title; }
    .live-viewers { grid-area: viewers; }
    .live-tag     { grid-area: tag; justify-self: start; }
}

/* ============================================================
   Stats band
   ============================================================ */
.stats-band {
    padding: 60px 28px;
    position: relative;
    z-index: 5;
}
.stats-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}
.stat-tile {
    position: relative;
    padding: 30px 22px;
    border-radius: 22px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.06), rgba(0,0,0,0.40));
    border: 1px solid rgba(216,216,216,0.18);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.30),
        inset 0 -1px 0 rgba(0,0,0,0.45);
    overflow: hidden;
    isolation: isolate;
}
.stat-tile::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 22px;
    padding: 1px;
    background: var(--chrome-grad);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
            mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    opacity: 0.55;
    pointer-events: none;
}
.stat-num {
    font-family: var(--f-display);
    font-weight: 700;
    font-size: 42px;
    color: var(--c-white);
    text-shadow: 1px 1px 2px #888888, -1px -1px 2px #FFFFFF;
    letter-spacing: 0.04em;
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
}
.stat-label {
    margin-top: 6px;
    font-family: var(--f-mono);
    font-size: 12px;
    letter-spacing: 0.18em;
    color: var(--c-silver-lt);
    text-transform: uppercase;
}

/* ============================================================
   Footer
   ============================================================ */
.chrome-foot {
    margin: 60px 28px 28px;
    padding: 6px;
    border-radius: 28px;
    background: var(--chrome-grad);
    box-shadow:
        inset 0 0 0 1px rgba(255,255,255,0.5),
        0 24px 52px rgba(0,0,0,0.55);
    position: relative;
    z-index: 5;
}
.foot-frame {
    border-radius: 22px;
    padding: 30px;
    background: linear-gradient(180deg, #1A1A2E, #0A0A14);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 30px;
    align-items: start;
}
.foot-left {
    display: flex; gap: 14px; align-items: center;
}
.foot-brand {
    font-family: var(--f-display);
    font-weight: 700;
    font-size: 22px;
    color: var(--c-white);
    text-shadow: 1px 1px 2px #888888, -1px -1px 2px #FFFFFF;
    letter-spacing: 0.06em;
}
.foot-tag {
    font-family: var(--f-mono);
    font-size: 12px;
    letter-spacing: 0.16em;
    color: var(--c-cyan);
    text-transform: uppercase;
    margin-top: 2px;
}
.foot-cols {
    display: grid;
    grid-template-columns: repeat(3, minmax(120px, 1fr));
    gap: 30px;
}
.foot-col { display: flex; flex-direction: column; gap: 8px; }
.foot-h {
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.20em;
    color: var(--c-gold);
    margin-bottom: 4px;
}
.foot-col a {
    font-family: var(--f-secondary);
    font-size: 14px;
    color: var(--c-text-light);
    transition: color 0.2s ease, transform 0.2s ease;
}
.foot-col a:hover {
    color: var(--c-pink);
    transform: translateX(4px);
    text-shadow: 0 0 8px rgba(255,105,180,0.4);
}
.foot-base {
    margin-top: 18px;
    border-radius: 14px;
    padding: 14px 22px;
    background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(0,0,0,0.5));
    display: flex; justify-content: space-between; align-items: center;
    font-family: var(--f-mono);
    font-size: 12px;
    letter-spacing: 0.12em;
    color: var(--c-silver-lt);
}
.foot-time { color: var(--c-cyan); text-shadow: 0 0 8px rgba(0,255,255,0.4); }

@media (max-width: 720px) {
    .foot-frame { grid-template-columns: 1fr; }
    .foot-cols { grid-template-columns: repeat(3, 1fr); gap: 12px; }
    .chrome-nav { margin: 12px; padding: 8px; gap: 10px; }
    .nav-links { display: none; }
}

/* ============================================================
   Sparkle canvas
   ============================================================ */
.sparkle-canvas {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 60;
    mix-blend-mode: screen;
}

/* ============================================================
   Reveal-on-scroll
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2,0.8,0.2,1);
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}
