/* ============================================================
   DARKSALXM style.css v7 polished
   ============================================================ */

   :root {
    --bg:        #06080a;
    --bg2:       #0a0c0e;
    --bg3:       #0e1012;
    --surface:   #111518;
    --surface2:  #171b1f;
    --surface3:  #1d2226;
  
    --red:       #c42b20;
    --red-dim:   #8a1d15;
    --red-hi:    #e03326;
    --green:     #1e4d28;
    --green-lit: #2d7a3a;
    --green-hi:  #38a348;
    --brown:     #6b4f2e;
    --brown-lit: #9a7248;
  
    --border:    rgba(196,43,32,0.18);
    --border2:   rgba(255,255,255,0.06);
  
    --twitch:    #9146ff;
    --tiktok:    #ff004f;
    --twitter:   #1d9bf0;
    --youtube:   #ff0000;
    --discord:   #5865f2;
    --instagram: #E4405F;
  
    --t1:  #eaecea;
    --t2:  #b0b8b0;
    --t3:  #727a72;
    --t4:  #3a403a;
  
    --font-d: 'Bebas Neue', sans-serif;
    --font-b: 'Rajdhani', sans-serif;
    --font-m: 'JetBrains Mono', monospace;
  
    --sp:  clamp(20px, 5.5vw, 90px);
    --r:   8px;
    --r2:  14px;
    --ease: 0.2s ease;
  }
  
  /* ============================================================
     RESET
     ============================================================ */
  
  *,
  *::before,
  *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
    font-size: 16px;
  }
  
  body {
    font-family: var(--font-b);
    background: var(--bg);
    color: var(--t1);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -webkit-overflow-scrolling: touch;
  }
  
  img {
    display: block;
    max-width: 100%;
  }
  
  a {
    color: inherit;
    text-decoration: none;
  }
  
  ul {
    list-style: none;
  }
  
  button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
  }
  
  .hidden {
    display: none !important;
  }
  
  ::-webkit-scrollbar {
    width: 3px;
  }
  
  ::-webkit-scrollbar-track {
    background: var(--bg);
  }
  
  ::-webkit-scrollbar-thumb {
    background: var(--red);
    border-radius: 2px;
  }
  
  /* ============================================================
     BACKGROUND
     ============================================================ */
  
  #cursor-glow {
    position: fixed;
    z-index: 1;
    pointer-events: none;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(196,43,32,0.06) 0%, transparent 65%);
    top: -180px;
    left: -180px;
  }
  
  #bg-art {
    position: fixed;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center 20%;
    opacity: 0;
    transition: opacity 1.1s ease;
  }
  
  #bg-art::after {
    content: '';
    position: absolute;
    inset: 0;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    background:
      radial-gradient(ellipse 80% 80% at 50% 50%, transparent 0%, rgba(6,8,10,0.60) 100%),
      linear-gradient(to bottom, rgba(6,8,10,0.65) 0%, rgba(6,8,10,0.25) 30%, rgba(6,8,10,0.88) 80%, rgba(6,8,10,1) 100%),
      linear-gradient(to right, rgba(6,8,10,0.92) 0%, rgba(6,8,10,0.35) 30%, rgba(6,8,10,0.35) 70%, rgba(6,8,10,0.92) 100%);
  }
  
  #scanlines {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: repeating-linear-gradient(
      0deg,
      transparent,
      transparent 3px,
      rgba(0,0,0,0.025) 3px,
      rgba(0,0,0,0.025) 4px
    );
  }
  
  .blob {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(60px);
  }
  
  .blob-red {
    width: 560px;
    height: 560px;
    background: radial-gradient(ellipse, rgba(196,43,32,0.13) 0%, transparent 70%);
    top: -120px;
    left: -120px;
  }
  
  .blob-green {
    width: 400px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(30,77,40,0.09) 0%, transparent 70%);
    bottom: -80px;
    right: -80px;
  }
  
  .page {
    position: relative;
    z-index: 2;
  }
  
  /* ============================================================
     SHARED SECTIONS
     ============================================================ */
  
  section {
    padding: 64px var(--sp);
    position: relative;
    z-index: 2;
    margin: 0;
  }
  
  .sec-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
  }
  
  .sec-label .l {
    width: 20px;
    height: 2px;
    background: var(--red);
    flex-shrink: 0;
  }
  
  .sec-label span {
    font-family: var(--font-m);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--red);
  }
  
  .sec-title {
    font-family: var(--font-d);
    font-size: clamp(2.6rem, 5.5vw, 4rem);
    letter-spacing: 0.03em;
    line-height: 0.95;
    margin-bottom: 12px;
    color: var(--t1);
  }
  
  .sec-sub {
    font-size: clamp(0.95rem, 2vw, 1.08rem);
    color: var(--t2);
    line-height: 1.65;
    max-width: 520px;
  }
  
  /* ============================================================
     MARQUEE
     ============================================================ */
  
  .marquee-wrap {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 101;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
    background: rgba(6,8,10,0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 10px 0;
  }
  
  .marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 30s linear infinite;
  }
  
  .marquee-track:hover {
    animation-play-state: paused;
  }
  
  .marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 0 28px;
    font-family: var(--font-m);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    white-space: nowrap;
    color: var(--t3);
    transition: color var(--ease);
  }
  
  .marquee-item:hover {
    color: var(--t1);
  }
  
  .marquee-sep {
    color: var(--t4);
    padding: 0 4px;
    font-size: 0.65rem;
  }
  
  .mi-twitch {
    color: var(--twitch);
  }
  
  .mi-tiktok {
    color: var(--tiktok);
  }
  
  .mi-discord {
    color: var(--discord);
  }
  
  .mi-yt {
    color: var(--youtube);
  }
  
  /* ============================================================
     NAV
     ============================================================ */
  
  nav {
    position: fixed;
    top: 42px;
    left: 0;
    right: 0;
    z-index: 100;
    height: 58px;
    padding: 0 var(--sp);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(6,8,10,0.70);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent;
    transition: background var(--ease), border-color var(--ease);
  }
  
  nav.scrolled {
    background: rgba(6,8,10,0.95);
    border-color: var(--border);
  }
  
  .nav-logo {
    font-family: var(--font-d);
    font-size: 1.5rem;
    letter-spacing: 0.06em;
    color: var(--t1);
    transition: color var(--ease);
  }
  
  .nav-logo:hover {
    color: var(--red);
  }
  
  .nav-logo .slash {
    color: var(--brown-lit);
  }
  
  .nav-center {
    display: flex;
    align-items: center;
    gap: 26px;
  }
  
  .nav-links {
    display: flex;
    gap: 26px;
  }
  
  .nav-links a {
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--t2);
    transition: color var(--ease);
    position: relative;
    padding-bottom: 2px;
  }
  
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--red);
    transition: width var(--ease);
  }
  
  .nav-links a:hover,
  .nav-links a.active {
    color: var(--t1);
  }
  
  .nav-links a:hover::after,
  .nav-links a.active::after {
    width: 100%;
  }
  
  #nav-live-pill {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 5px 14px;
    background: rgba(196,43,32,0.18);
    border: 1px solid rgba(196,43,32,0.45);
    border-radius: 20px;
    font-family: var(--font-m);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #e05050;
    transition: all var(--ease);
  }
  
  #nav-live-pill.hidden {
    display: none;
  }
  
  #nav-live-pill .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #e05050;
    box-shadow: 0 0 6px #e05050;
    animation: blink 1.3s ease infinite;
  }
  
  #mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px 0;
  }
  
  #mobile-menu-btn span {
    display: block;
    height: 2px;
    background: var(--t1);
    border-radius: 1px;
    transition: all 0.25s ease;
  }
  
  #mobile-menu-btn.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  
  #mobile-menu-btn.open span:nth-child(2) {
    opacity: 0;
  }
  
  #mobile-menu-btn.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  
  #mobile-nav {
    position: fixed;
    inset: 100px 0 0;
    background: rgba(6,8,10,0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 99;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    pointer-events: none;
  }
  
  #mobile-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  
  #mobile-nav a {
    font-family: var(--font-d);
    font-size: 2.4rem;
    letter-spacing: 0.06em;
    color: var(--t2);
    transition: color var(--ease);
  }
  
  #mobile-nav a:hover {
    color: var(--t1);
  }
  
  /* ============================================================
     HERO
     ============================================================ */
  
  #hero {
    padding-top: 100px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: var(--sp);
    padding-right: var(--sp);
  }
  
  .hero-inner {
    max-width: 680px;
    padding-top: clamp(40px, 6vh, 80px);
    padding-bottom: clamp(40px, 6vh, 80px);
  }
  
  .hero-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 14px;
    border-radius: 20px;
    font-family: var(--font-m);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    margin-bottom: 20px;
    transition: all 0.3s;
  }
  
  .hero-status-badge.live {
    background: rgba(196,43,32,0.18);
    border: 1px solid rgba(196,43,32,0.50);
    color: #e05050;
  }
  
  .hero-status-badge.offline {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--t3);
  }
  
  .hero-status-badge .bdot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: currentColor;
  }
  
  .hero-status-badge.live .bdot {
    box-shadow: 0 0 6px currentColor;
    animation: blink 1.3s infinite;
  }
  
  .hero-avatar-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
  }
  
  .avatar-ring {
    position: relative;
    flex-shrink: 0;
    width: 68px;
    height: 68px;
  }
  
  .avatar-ring::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: conic-gradient(var(--red), var(--brown-lit), var(--green-lit), var(--red));
    animation: spin 5s linear infinite;
  }
  
  .avatar-ring img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2.5px solid var(--bg);
  }
  
  .hero-handle {
    font-family: var(--font-m);
    font-size: 0.68rem;
    color: var(--t3);
    letter-spacing: 0.10em;
    text-transform: uppercase;
  }
  
  .hero-platform {
    font-family: var(--font-m);
    font-size: 0.60rem;
    color: var(--t4);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 2px;
  }
  
  .hero-headline {
    font-family: var(--font-d);
    font-size: clamp(4rem, 10vw, 8rem);
    line-height: 0.88;
    letter-spacing: 0.01em;
    margin-bottom: 12px;
  }
  
  .hero-glow-title {
    color: var(--t1);
    text-shadow:
      0 0 10px rgba(255,255,255,0.08),
      0 0 20px rgba(196,43,32,0.10),
      0 0 30px rgba(196,43,32,0.12);
    animation: darksalxmGlowCycle 5s ease-in-out infinite;
    transition: all 0.25s ease;
    will-change: color, text-shadow;
  }
  
  .hero-headline-text {
    max-width: 820px;
    font-size: clamp(3.25rem, 8vw, 7rem);
    line-height: 0.92;
    letter-spacing: 0.015em;
    color: var(--t1);
  }
  
  .hero-typewriter {
    font-family: var(--font-m);
    font-size: clamp(0.70rem, 1.8vw, 0.92rem);
    letter-spacing: 0.20em;
    text-transform: uppercase;
    color: var(--green-lit);
    margin-bottom: 20px;
    min-height: 1.5em;
  }
  
  .hero-typewriter::after {
    content: '|';
    color: var(--red);
    animation: blink 0.65s step-end infinite;
    margin-left: 1px;
  }
  
  .hero-bio {
    font-size: clamp(0.98rem, 1.9vw, 1.10rem);
    color: var(--t2);
    line-height: 1.72;
    max-width: 500px;
    margin-bottom: 30px;
  }
  
  .hero-bio strong {
    color: var(--t1);
    font-weight: 600;
  }
  
  .hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 18px;
  }
  
  .hero-quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
  }
  
  .hero-quick-links a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 12px;
    border: 1px solid var(--border2);
    border-radius: 999px;
    background: rgba(255,255,255,0.045);
    color: var(--t2);
    font-family: var(--font-m);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all var(--ease);
  }
  
  .hero-quick-links a:hover {
    color: var(--t1);
    border-color: var(--border);
    background: rgba(196,43,32,0.08);
    transform: translateY(-1px);
  }
  
  .scroll-hint {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-m);
    font-size: 0.60rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--t2);
    background: rgba(6,8,10,0.65);
    border: 1px solid var(--border2);
    border-radius: 20px;
    padding: 5px 12px;
  }
  
  .scroll-hint i {
    animation: bounceDown 2s ease-in-out infinite;
  }
  
  /* ============================================================
     BUTTONS
     ============================================================ */
  
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: var(--font-b);
    font-weight: 700;
    font-size: 0.96rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: var(--r);
    transition: all var(--ease);
    position: relative;
    overflow: hidden;
    text-decoration: none;
  }
  
  .btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 35%, rgba(255,255,255,0.13) 50%, transparent 65%);
    transform: translateX(-100%);
    transition: transform 0.55s;
  }
  
  .btn:hover::before {
    transform: translateX(100%);
  }
  
  .btn-primary {
    padding: 13px 26px;
    background: var(--red);
    color: #fff;
    border: none;
  }
  
  .btn-primary:hover {
    transform: translateY(-2px);
    background: var(--red-dim);
    box-shadow: 0 8px 28px rgba(196,43,32,0.45);
  }
  
  .btn-primary.pulsing {
    animation: subtlePulse 2s ease-in-out infinite;
  }
  
  .btn-secondary {
    padding: 12px 22px;
    background: transparent;
    color: var(--t2);
    border: 1px solid rgba(196,43,32,0.32);
  }
  
  .btn-secondary:hover {
    color: var(--t1);
    border-color: rgba(196,43,32,0.65);
    background: rgba(196,43,32,0.07);
    transform: translateY(-1px);
  }
  
  .btn-discord {
    padding: 12px 22px;
    background: rgba(88,101,242,0.15);
    color: #8b9fff;
    border: 1px solid rgba(88,101,242,0.35);
  }
  
  .btn-discord:hover {
    background: rgba(88,101,242,0.25);
    transform: translateY(-1px);
  }
  
  .btn-ghost {
    padding: 10px 18px;
    background: rgba(255,255,255,0.05);
    color: var(--t2);
    border: 1px solid var(--border2);
    font-size: 0.88rem;
  }
  
  .btn-ghost:hover {
    background: rgba(255,255,255,0.09);
    color: var(--t1);
  }
  
  /* ============================================================
     START STRIP
     ============================================================ */
  
  .start-strip {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border2);
    border-top: 1px solid var(--border2);
    border-bottom: 1px solid var(--border2);
  }
  
  .start-strip a {
    background: rgba(6,8,10,0.92);
    padding: 18px var(--sp);
    font-family: var(--font-m);
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--t2);
    transition: color var(--ease), background var(--ease);
  }
  
  .start-strip a:hover {
    color: var(--t1);
    background: rgba(196,43,32,0.08);
  }
  
  .start-strip span {
    color: var(--red);
    margin-right: 8px;
  }
  
  /* ============================================================
     PLATFORMS
     ============================================================ */
  
  #platforms {
    background: var(--bg);
  }
  
  .platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 36px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .platform-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 12px;
    padding: 24px 20px;
    border-radius: var(--r2);
    border: 1px solid var(--border2);
    background: var(--surface);
    text-decoration: none;
    transition: all 0.22s ease;
    position: relative;
    overflow: hidden;
    min-height: 170px;
  }
  
  .platform-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--pc, var(--red));
    opacity: 0;
    transition: opacity var(--ease);
  }
  
  .platform-card:hover {
    transform: translateY(-4px);
    border-color: var(--pc, var(--red));
    box-shadow: 0 10px 28px rgba(0,0,0,0.35);
  }
  
  .platform-card:hover::after {
    opacity: 1;
  }
  
  .platform-card:hover .p-icon {
    background: var(--pc, var(--red));
  }
  
  .pc-twitch {
    --pc: var(--twitch);
  }
  
  .pc-discord {
    --pc: var(--discord);
  }
  
  .pc-youtube {
    --pc: var(--youtube);
  }
  
  .pc-tiktok {
    --pc: var(--tiktok);
  }
  
  .pc-twitter {
    --pc: var(--twitter);
  }
  
  .pc-instagram {
    --pc: var(--instagram);
  }
  
  .p-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--r);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #fff;
    background: rgba(255,255,255,0.06);
    transition: background var(--ease);
  }
  
  .p-name {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--t1);
  }
  
  .p-handle {
    font-family: var(--font-m);
    font-size: 0.68rem;
    color: var(--t3);
    margin-top: 2px;
  }
  
  .p-why {
    font-size: 0.80rem;
    color: var(--t3);
    line-height: 1.45;
    margin-top: 6px;
    max-width: 210px;
  }
  
  /* ============================================================
     ABOUT
     ============================================================ */
  
  #about {
    background: var(--bg2);
  }
  
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 32px;
  }
  
  .about-art {
    position: relative;
  }
  
  .about-art img {
    width: 100%;
    border-radius: var(--r2);
    filter: saturate(0.78) brightness(0.82);
    transition: filter 0.5s;
  }
  
  .about-art:hover img {
    filter: saturate(0.95) brightness(0.92);
  }
  
  .about-art::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: calc(var(--r2) + 2px);
    background: linear-gradient(135deg, var(--red), var(--brown));
    z-index: -1;
    opacity: 0.45;
  }
  
  .art-caption {
    position: absolute;
    bottom: 12px;
    left: 12px;
    font-family: var(--font-m);
    font-size: 0.56rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    background: rgba(0,0,0,0.55);
    padding: 3px 8px;
    border-radius: 4px;
  }
  
  .about-text .lead {
    font-size: 1.12rem;
    color: var(--t1);
    line-height: 1.60;
    margin-bottom: 20px;
    font-weight: 500;
  }
  
  .lore-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r2);
    padding: 20px 22px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
  }
  
  .lore-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--red), var(--brown-lit));
  }
  
  .lore-eyebrow {
    font-family: var(--font-m);
    font-size: 0.58rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--brown-lit);
    margin-bottom: 8px;
  }
  
  .lore-card p {
    font-size: 0.92rem;
    color: var(--t2);
    line-height: 1.70;
  }
  
  .about-hook-card {
    background: var(--surface);
    border: 1px solid var(--border2);
    border-radius: var(--r2);
    padding: 18px 20px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
  }
  
  .about-hook-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--red), var(--green-lit));
    opacity: 0.8;
  }
  
  .about-hook-eyebrow {
    font-family: var(--font-m);
    font-size: 0.58rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 8px;
  }
  
  .about-hook-card p {
    font-size: 0.94rem;
    color: var(--t2);
    line-height: 1.7;
  }
  
  .stats-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 20px;
  }
  
  .stat-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 14px 16px;
    transition: border-color var(--ease);
  }
  
  .stat-card:hover {
    border-color: rgba(196,43,32,0.45);
  }
  
  .stat-num {
    font-family: var(--font-d);
    font-size: 2.2rem;
    color: var(--red);
    line-height: 1;
  }
  
  .stat-lbl {
    font-size: 0.68rem;
    color: var(--t3);
    text-transform: uppercase;
    letter-spacing: 0.10em;
    margin-top: 2px;
  }
  
  /* ============================================================
     SCHEDULE
     ============================================================ */
  
  #schedule {
    background: var(--bg2);
  }
  
  .today-card {
    background: var(--surface);
    border: 1px solid var(--red);
    border-radius: var(--r2);
    margin-bottom: 18px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 30px rgba(196,43,32,0.10);
  }
  
  .today-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--red), var(--brown-lit), var(--green-lit));
  }
  
  .today-card.hidden {
    display: none;
  }
  
  .tc-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 18px 22px;
    flex-wrap: wrap;
  }
  
  .tc-icon {
    font-size: 2rem;
    flex-shrink: 0;
  }
  
  .tc-body {
    flex: 1;
    min-width: 200px;
  }
  
  .tc-eyebrow {
    font-family: var(--font-m);
    font-size: 0.58rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 4px;
  }
  
  .tc-game {
    font-family: var(--font-d);
    font-size: 1.7rem;
    letter-spacing: 0.03em;
    line-height: 1;
    color: var(--t1);
    margin-bottom: 3px;
  }
  
  .tc-note {
    font-size: 0.86rem;
    color: var(--t2);
    font-style: italic;
  }
  
  .tc-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 18px;
    background: var(--twitch);
    color: #fff;
    font-family: var(--font-b);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    border-radius: var(--r);
    transition: all var(--ease);
    flex-shrink: 0;
  }
  
  .tc-btn:hover {
    opacity: 0.85;
    transform: translateY(-1px);
  }
  
  .schedule-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    margin-top: 0;
  }
  
  .sched-card {
    background: var(--surface);
    border: 1px solid var(--border2);
    border-radius: var(--r);
    padding: 14px 8px;
    text-align: center;
    transition: all var(--ease);
    position: relative;
  }
  
  .sched-card:hover {
    border-color: var(--border);
    transform: translateY(-2px);
  }
  
  .sched-card.stream-day {
    border-color: rgba(196,43,32,0.38);
    background: rgba(196,43,32,0.05);
  }
  
  .sched-card.today {
    border-color: var(--red);
    background: rgba(196,43,32,0.09);
    box-shadow: 0 0 18px rgba(196,43,32,0.12);
  }
  
  .sched-today-dot {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 0 5px var(--red);
    animation: blink 1.3s infinite;
  }
  
  .sched-day {
    font-family: var(--font-m);
    font-size: 0.56rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--t3);
    margin-bottom: 6px;
  }
  
  .sched-card.stream-day .sched-day {
    color: rgba(196,43,32,0.80);
  }
  
  .sched-card.today .sched-day {
    color: var(--red);
  }
  
  .sched-icon {
    font-size: 1.3rem;
    margin-bottom: 5px;
  }
  
  .sched-game {
    font-size: 0.70rem;
    font-weight: 600;
    color: var(--t1);
    line-height: 1.3;
    margin-bottom: 2px;
  }
  
  .sched-time {
    font-family: var(--font-m);
    font-size: 0.58rem;
    color: var(--t3);
    letter-spacing: 0.05em;
  }
  
  .sched-off {
    font-size: 0.62rem;
    color: var(--t4);
    font-style: italic;
    margin-top: 2px;
  }
  
  .sched-note {
    margin-top: 14px;
    display: flex;
    align-items: center;
    gap: 7px;
    font-family: var(--font-m);
    font-size: 0.64rem;
    color: var(--t3);
  }
  
  .sched-note i {
    color: var(--green-lit);
  }
  
  /* ============================================================
     WATCH
     ============================================================ */
  
  #watch {
    background: var(--bg);
  }
  
  .embed-status-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    padding: 9px 16px;
    background: var(--surface);
    border: 1px solid var(--border2);
    border-radius: var(--r);
  }
  
  .embed-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .embed-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--t4);
    flex-shrink: 0;
  }
  
  .embed-dot.live {
    background: #e05050;
    box-shadow: 0 0 7px #e05050;
    animation: blink 1.3s infinite;
  }
  
  .embed-dot.vod {
    background: var(--green-lit);
  }
  
  #embed-label {
    font-family: var(--font-m);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--t2);
  }
  
  #embed-ext-link {
    font-family: var(--font-m);
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.10em;
    color: var(--t3);
    transition: color var(--ease);
  }
  
  #embed-ext-link:hover {
    color: var(--t1);
  }
  
  .embed-frame {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: var(--r2);
    overflow: hidden;
    border: 1px solid var(--border2);
    background: var(--surface);
    margin-bottom: 14px;
  }
  
  #embed-container {
    position: absolute;
    inset: 0;
  }
  
  .embed-spinner {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    background: var(--surface);
    color: var(--t3);
  }
  
  .spinner-ring {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 3px solid var(--border2);
    border-top-color: var(--red);
    animation: spin 0.85s linear infinite;
  }
  
  .embed-spinner p {
    font-family: var(--font-m);
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }
  
  .vod-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  
  .vod-card {
    background: var(--surface);
    border: 1px solid var(--border2);
    border-radius: var(--r);
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: all var(--ease);
  }
  
  .vod-card:hover {
    border-color: var(--border);
    background: var(--surface2);
    transform: translateY(-2px);
  }
  
  .vod-icon {
    width: 38px;
    height: 38px;
    border-radius: var(--r);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    background: rgba(196,43,32,0.10);
    border: 1px solid var(--border);
    color: var(--red);
    flex-shrink: 0;
    transition: background var(--ease);
  }
  
  .vod-card:hover .vod-icon {
    background: rgba(196,43,32,0.20);
  }
  
  .vod-title {
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--t1);
    margin-bottom: 2px;
  }
  
  .vod-meta {
    font-family: var(--font-m);
    font-size: 0.60rem;
    color: var(--t3);
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }
  
  /* ============================================================
     COMMUNITY AND BUSINESS
     ============================================================ */
  
  #support {
    background: var(--bg2);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
  }
  
  .support-cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  
  .sup-card {
    background: var(--surface);
    border: 1px solid var(--border2);
    border-radius: var(--r2);
    padding: 22px;
    transition: border-color var(--ease);
    position: relative;
    overflow: hidden;
  }
  
  .sup-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--sc, var(--red));
    opacity: 0;
    transition: opacity var(--ease);
  }
  
  .sup-card:hover {
    border-color: var(--sc, var(--border));
  }
  
  .sup-card:hover::before {
    opacity: 1;
  }
  
  .sc-discord {
    --sc: var(--discord);
  }
  
  .sc-brand {
    --sc: var(--brown-lit);
  }
  
  .sup-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--r);
    background: rgba(196,43,32,0.10);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--red);
    margin-bottom: 14px;
    transition: background var(--ease);
  }
  
  .sup-card:hover .sup-icon {
    background: rgba(196,43,32,0.20);
  }
  
  .sc-discord .sup-icon {
    color: var(--discord);
  }
  
  .sc-brand .sup-icon {
    color: var(--brown-lit);
  }
  
  .sup-card h3 {
    font-family: var(--font-d);
    font-size: 1.5rem;
    letter-spacing: 0.03em;
    margin-bottom: 6px;
    color: var(--t1);
  }
  
  .sup-card p {
    font-size: 0.87rem;
    color: var(--t2);
    line-height: 1.65;
    margin-bottom: 16px;
  }
  
  .sup-card a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 18px;
    border-radius: var(--r);
    font-weight: 700;
    font-size: 0.84rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all var(--ease);
  }
  
  .btn-discord-s {
    background: rgba(88,101,242,0.12);
    border: 1px solid rgba(88,101,242,0.32);
    color: #8b9fff;
  }
  
  .btn-discord-s:hover {
    background: rgba(88,101,242,0.22);
    transform: translateY(-1px);
  }
  
  .btn-brand {
    background: rgba(154,114,72,0.12);
    border: 1px solid rgba(154,114,72,0.32);
    color: var(--brown-lit);
  }
  
  .btn-brand:hover {
    background: rgba(154,114,72,0.22);
    transform: translateY(-1px);
  }
  
  /* ============================================================
     CONTACT
     ============================================================ */
  
  .contact-strip {
    position: relative;
    z-index: 2;
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 24px var(--sp);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
  }
  
  .cs-left {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  
  .cs-left i {
    font-size: 1.1rem;
    color: var(--brown-lit);
  }
  
  .cs-label {
    font-family: var(--font-m);
    font-size: 0.58rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--t3);
    margin-bottom: 2px;
  }
  
  .cs-email {
    font-size: 0.94rem;
    font-weight: 600;
    color: var(--t1);
    cursor: pointer;
    transition: color var(--ease);
  }
  
  .cs-email:hover {
    color: var(--green-lit);
  }
  
  .cs-tag {
    font-family: var(--font-m);
    font-size: 0.58rem;
    color: var(--t4);
    letter-spacing: 0.06em;
  }
  
  /* ============================================================
     FOOTER
     ============================================================ */
  
  footer {
    position: relative;
    z-index: 2;
    padding: 20px var(--sp);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    border-top: 1px solid var(--border);
  }
  
  .f-logo {
    font-family: var(--font-d);
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    color: var(--t3);
  }
  
  .f-logo span {
    color: var(--brown-lit);
  }
  
  .f-copy {
    font-family: var(--font-m);
    font-size: 0.58rem;
    color: var(--t4);
    letter-spacing: 0.08em;
  }
  
  /* ============================================================
     POPUP
     ============================================================ */
  
  #live-popup {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(0,0,0,0.84);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }
  
  #live-popup.visible {
    opacity: 1;
    pointer-events: all;
  }
  
  .popup-box {
    background: var(--bg2);
    border: 1px solid var(--red);
    border-radius: var(--r2);
    padding: 22px;
    max-width: 700px;
    width: 100%;
    box-shadow: 0 0 60px rgba(196,43,32,0.22);
    animation: popIn 0.30s cubic-bezier(0.34,1.56,0.64,1);
  }
  
  .popup-hd {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
  }
  
  .popup-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 3px 10px;
    background: rgba(196,43,32,0.14);
    border: 1px solid rgba(196,43,32,0.40);
    border-radius: 16px;
    font-family: var(--font-m);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #e05050;
  }
  
  .popup-badge .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #e05050;
    animation: blink 1.3s infinite;
  }
  
  .popup-title {
    font-family: var(--font-d);
    font-size: 1.5rem;
    letter-spacing: 0.03em;
    color: var(--t1);
    margin-left: 10px;
  }
  
  .popup-close {
    width: 34px;
    height: 34px;
    border-radius: var(--r);
    background: var(--surface);
    border: 1px solid var(--border2);
    color: var(--t2);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--ease);
  }
  
  .popup-close:hover {
    color: var(--t1);
    border-color: var(--border);
  }
  
  .popup-embed {
    border-radius: var(--r);
    overflow: hidden;
    border: 1px solid var(--border2);
    aspect-ratio: 16 / 9;
  }
  
  .popup-embed iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: none;
  }
  
  .popup-ft {
    margin-top: 12px;
    display: flex;
    gap: 8px;
    justify-content: flex-end;
  }
  
  .popup-ft a,
  .popup-ft button {
    padding: 8px 16px;
    border-radius: var(--r);
    font-weight: 700;
    font-size: 0.76rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    text-decoration: none;
    font-family: var(--font-b);
    transition: all var(--ease);
  }
  
  .popup-twitch {
    background: var(--twitch);
    color: #fff;
    border: none;
  }
  
  .popup-twitch:hover {
    opacity: 0.85;
  }
  
  .popup-dismiss {
    background: var(--surface);
    border: 1px solid var(--border2);
    color: var(--t2);
  }
  
  .popup-dismiss:hover {
    color: var(--t1);
  }
  
  /* ============================================================
     MOBILE STICKY
     ============================================================ */
  
  #mobile-sticky {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 90;
    background: rgba(6,8,10,0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--border);
    padding: 10px 16px;
    gap: 8px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
  }
  
  #mobile-sticky.visible {
    transform: translateY(0);
  }
  
  #mobile-sticky a {
    flex: 1;
    justify-content: center;
    text-align: center;
  }
  
  /* ============================================================
     REVEAL
     ============================================================ */
  
  .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.58s ease, transform 0.58s ease;
  }
  
  .reveal.revealed {
    opacity: 1;
    transform: translateY(0);
  }
  
  .d1 {
    transition-delay: 0.08s;
  }
  
  .d2 {
    transition-delay: 0.16s;
  }
  
  .d3 {
    transition-delay: 0.24s;
  }
  
  /* ============================================================
     KEYFRAMES
     ============================================================ */
  
  @keyframes darksalxmGlowCycle {
    0% {
      color: var(--t1);
      text-shadow:
        0 0 8px rgba(255,255,255,0.10),
        0 0 18px rgba(255,255,255,0.12),
        0 0 28px rgba(255,255,255,0.08);
    }
  
    25% {
      color: #ffffff;
      text-shadow:
        0 0 8px rgba(196,43,32,0.20),
        0 0 18px rgba(196,43,32,0.35),
        0 0 30px rgba(196,43,32,0.25);
    }
  
    50% {
      color: #f3e6d4;
      text-shadow:
        0 0 8px rgba(154,114,72,0.22),
        0 0 18px rgba(154,114,72,0.35),
        0 0 30px rgba(154,114,72,0.24);
    }
  
    75% {
      color: #eaf7ec;
      text-shadow:
        0 0 8px rgba(56,163,72,0.18),
        0 0 18px rgba(56,163,72,0.32),
        0 0 30px rgba(56,163,72,0.24);
    }
  
    100% {
      color: var(--t1);
      text-shadow:
        0 0 8px rgba(255,255,255,0.10),
        0 0 18px rgba(255,255,255,0.12),
        0 0 28px rgba(255,255,255,0.08);
    }
  }
  
  @keyframes fadeUp {
    from {
      opacity: 0;
      transform: translateY(26px);
    }
  
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes spin {
    to {
      transform: rotate(360deg);
    }
  }
  
  @keyframes blink {
    0%,
    100% {
      opacity: 1;
    }
  
    50% {
      opacity: 0.25;
    }
  }
  
  @keyframes bounceDown {
    0%,
    100% {
      transform: translateY(0);
    }
  
    50% {
      transform: translateY(5px);
    }
  }
  
  @keyframes popIn {
    from {
      transform: scale(0.88);
      opacity: 0;
    }
  
    to {
      transform: scale(1);
      opacity: 1;
    }
  }
  
  @keyframes marquee {
    from {
      transform: translateX(0);
    }
  
    to {
      transform: translateX(-50%);
    }
  }
  
  @keyframes subtlePulse {
    0%,
    100% {
      box-shadow: 0 0 0 0 rgba(196,43,32,0.4);
    }
  
    50% {
      box-shadow: 0 0 0 8px rgba(196,43,32,0);
    }
  }
  
  @keyframes glitch1 {
    0%,
    90%,
    100% {
      transform: translate(0);
      opacity: 0;
    }
  
    91% {
      transform: translate(-3px, 1px);
      opacity: 0.70;
    }
  
    93% {
      transform: translate(3px, -1px);
      opacity: 0.70;
    }
  
    95% {
      transform: translate(-2px, 0);
      opacity: 0.70;
    }
  
    97% {
      transform: translate(0);
      opacity: 0;
    }
  }
  
  @keyframes glitch2 {
    0%,
    93%,
    100% {
      transform: translate(0);
      opacity: 0;
    }
  
    93% {
      transform: translate(3px, 2px);
      opacity: 0.55;
    }
  
    95% {
      transform: translate(-3px, -1px);
      opacity: 0.55;
    }
  
    97% {
      transform: translate(2px, 1px);
      opacity: 0.55;
    }
  
    99% {
      transform: translate(0);
      opacity: 0;
    }
  }
  
  /* ============================================================
     RESPONSIVE
     ============================================================ */
  
  @media (max-width: 960px) {
    .about-grid {
      grid-template-columns: 1fr;
    }
  
    #support {
      grid-template-columns: 1fr;
    }
  
    .about-art {
      max-width: 420px;
    }
  
    .schedule-grid {
      grid-template-columns: repeat(4, 1fr);
    }
  }
  
  @media (max-width: 700px) {
    body {
      padding-bottom: 78px;
    }
  
    section {
      padding-top: 52px;
      padding-bottom: 52px;
    }
  
    #hero {
      min-height: 100svh;
      padding-top: 110px;
    }
  
    .hero-inner {
      max-width: 100%;
    }
  
    .hero-headline {
      font-size: clamp(4rem, 22vw, 6.2rem);
    }
  
    .hero-ctas {
      display: grid;
      grid-template-columns: 1fr;
    }
  
    .btn {
      min-height: 48px;
    }
  
    .btn-primary,
    .btn-secondary,
    .btn-discord {
      width: 100%;
      justify-content: center;
    }
  
    .hero-quick-links {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 7px;
    }
  
    .hero-quick-links a {
      justify-content: center;
    }
  
    .start-strip {
      grid-template-columns: 1fr;
    }
  
    .start-strip a {
      padding: 14px 20px;
    }
  
    .vod-row {
      grid-template-columns: 1fr;
    }
  
    .platforms-grid {
      grid-template-columns: 1fr;
    }
  
    .schedule-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .nav-center {
      display: none;
    }
  
    #mobile-menu-btn {
      display: flex;
    }
  
    #mobile-sticky {
      display: flex;
    }
  
    .contact-strip {
      flex-direction: column;
      align-items: flex-start;
    }
  
    footer {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .popup-ft {
      flex-direction: column;
    }
  
    .popup-ft a,
    .popup-ft button {
      width: 100%;
      justify-content: center;
      text-align: center;
    }
  }
  
  @media (max-width: 480px) {
    .stats-row {
      grid-template-columns: 1fr 1fr;
    }
  
    .tc-wrap {
      align-items: flex-start;
    }
  
    .tc-btn {
      width: 100%;
      justify-content: center;
    }
  
    .embed-status-bar {
      align-items: flex-start;
      flex-direction: column;
      gap: 8px;
    }
  
    .popup-title {
      font-size: 1.25rem;
    }
  }
  
  @media (prefers-reduced-motion: reduce) {
    html {
      scroll-behavior: auto;
    }
  
    *,
    *::before,
    *::after {
      animation: none !important;
      transition: none !important;
    }
  
    .hero-glow-title {
      text-shadow:
        0 0 8px rgba(255,255,255,0.10),
        0 0 18px rgba(196,43,32,0.18);
    }
  }