:root {
  --bg: #07040c;
  --bg-soft: #0d0714;
  --panel: #110a1b;
  --panel-bright: #171022;
  --text: #fbf8ff;
  --muted: #aba2b7;
  --line: rgba(255, 255, 255, 0.1);
  --line-bright: rgba(255, 255, 255, 0.2);
  --purple: #9147ff;
  --purple-hot: #a970ff;
  --pink: #ff3fc7;
  --cyan: #70f4ff;
  --green: #59f3a6;
  --discord: #5865f2;
  --shadow: 0 34px 100px rgba(0, 0, 0, 0.52);
  --max: 1240px;
  --pointer-x: 50vw;
  --pointer-y: 20vh;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 78% 4%, rgba(145, 71, 255, 0.15), transparent 30rem),
    radial-gradient(circle at 9% 36%, rgba(255, 63, 199, 0.08), transparent 28rem),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -4;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0 47%, rgba(145, 71, 255, 0.045) 47% 48%, transparent 48% 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

::selection {
  color: #fff;
  background: rgba(145, 71, 255, 0.78);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 10px 14px;
  border-radius: 10px;
  color: #09040f;
  background: #fff;
  font-weight: 900;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.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;
}

.page-grid {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, #000, transparent 70%);
}

.page-noise {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}

.cursor-glow {
  position: fixed;
  left: var(--pointer-x);
  top: var(--pointer-y);
  z-index: -2;
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  pointer-events: none;
  background: rgba(145, 71, 255, 0.09);
  filter: blur(95px);
  transform: translate(-50%, -50%);
}

.section-shell {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 50;
  width: min(var(--max), calc(100% - 40px));
  min-height: 72px;
  margin: 14px auto 0;
  padding: 12px 14px 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(7, 4, 12, 0.72);
  backdrop-filter: blur(20px);
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  border-color: rgba(145, 71, 255, 0.28);
  background: rgba(7, 4, 12, 0.92);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.32);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 13px 5px 13px 5px;
  color: #fff;
  background: linear-gradient(145deg, var(--purple), var(--pink));
  font-size: 1.1rem;
  font-weight: 1000;
  line-height: 1;
  box-shadow: 0 12px 32px rgba(145, 71, 255, 0.28);
}

.brand-text {
  display: grid;
  line-height: 1.05;
}

.brand-text strong,
.footer-brand strong {
  font-size: 1rem;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.brand-text strong span,
.footer-brand strong span {
  color: var(--purple-hot);
}

.brand-text small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.63rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-navigation {
  display: flex;
  align-items: center;
  gap: 27px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 780;
}

.main-navigation > a {
  transition: color 0.18s ease, transform 0.18s ease;
}

.main-navigation > a:hover {
  color: var(--text);
  transform: translateY(-1px);
}

.nav-social {
  color: var(--purple-hot);
}

.nav-cta {
  min-height: 44px;
  padding: 10px 16px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(145, 71, 255, 0.48);
  border-radius: 12px;
  color: #fff;
  background: rgba(145, 71, 255, 0.13);
}

.nav-cta-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 13px var(--green);
}

.menu-button {
  width: 46px;
  height: 44px;
  padding: 10px;
  display: none;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
}

.menu-button span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: 99px;
  background: #fff;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  min-height: calc(100vh - 86px);
  padding: 100px 0 90px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  align-items: center;
  gap: clamp(58px, 7vw, 105px);
}

.eyebrow,
.section-label {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--purple-hot);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow span,
.section-label span {
  color: var(--pink);
}

h1,
h2,
h3,
blockquote {
  margin-top: 0;
  font-weight: 950;
  letter-spacing: -0.065em;
  line-height: 0.94;
}

h1 {
  margin: 25px 0 30px;
  font-size: clamp(4.6rem, 8.4vw, 8.6rem);
  text-transform: uppercase;
}

h1 > span {
  display: block;
}

.title-outline {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.68);
}

.title-gradient,
h2 em {
  color: transparent;
  background: linear-gradient(90deg, var(--purple-hot), var(--pink));
  background-clip: text;
  -webkit-background-clip: text;
  font-style: normal;
}

.hero-lead {
  max-width: 660px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.14rem);
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 54px;
  padding: 14px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 0.9rem;
  font-weight: 900;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-primary {
  background: linear-gradient(135deg, var(--purple), var(--pink));
  box-shadow: 0 17px 44px rgba(145, 71, 255, 0.3);
}

.button-primary:hover {
  box-shadow: 0 22px 58px rgba(145, 71, 255, 0.42);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.25);
}

.button-icon {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
}

.hero-social-line {
  margin-top: 42px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-social-divider {
  width: 38px;
  height: 1px;
  background: var(--line-bright);
}

.hero-social-line a {
  color: var(--text);
}

.hero-art {
  position: relative;
  min-width: 0;
}

.broadcast-window {
  position: relative;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 26px;
  overflow: hidden;
  background: rgba(15, 8, 24, 0.92);
  box-shadow: var(--shadow), 0 0 0 1px rgba(145, 71, 255, 0.08) inset;
  transform: rotate(1.5deg);
}

.broadcast-window::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 70px rgba(145, 71, 255, 0.12);
}

.window-bar,
.window-footer {
  min-height: 52px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.11em;
}

.window-bar {
  border-bottom: 1px solid var(--line);
}

.window-footer {
  border-top: 1px solid var(--line);
  letter-spacing: 0;
}

.window-footer div {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--text);
}

.window-dots {
  display: flex;
  gap: 5px;
}

.window-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--line-bright);
}

.window-dots span:first-child { background: var(--pink); }
.window-dots span:nth-child(2) { background: var(--purple-hot); }

.signal-bars {
  height: 15px;
  display: flex;
  align-items: flex-end;
  gap: 3px;
}

.signal-bars i {
  width: 2px;
  background: var(--green);
}

.signal-bars i:nth-child(1) { height: 4px; }
.signal-bars i:nth-child(2) { height: 7px; }
.signal-bars i:nth-child(3) { height: 10px; }
.signal-bars i:nth-child(4) { height: 14px; }

.window-stage {
  position: relative;
  aspect-ratio: 1 / 0.9;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgba(145, 71, 255, 0.3), transparent 28%),
    linear-gradient(140deg, #1a0b2c, #0b0711 66%);
}

.window-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 36px 36px;
}

.stage-rings,
.stage-rings::before,
.stage-rings::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
}

.stage-rings {
  width: 60%;
  aspect-ratio: 1;
}

.stage-rings::before,
.stage-rings::after {
  content: "";
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.stage-rings::before { width: 140%; height: 140%; }
.stage-rings::after { width: 190%; height: 190%; }

.dd-monogram {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  font-size: clamp(6rem, 12vw, 10rem);
  font-weight: 1000;
  letter-spacing: -0.22em;
  line-height: 1;
  text-shadow: 0 24px 70px rgba(0, 0, 0, 0.58);
}

.dd-monogram span:last-child {
  color: transparent;
  -webkit-text-stroke: 2px var(--pink);
  transform: translateY(12px);
}

.floating-tag {
  position: absolute;
  z-index: 3;
  padding: 7px 10px;
  border: 1px solid var(--line-bright);
  border-radius: 999px;
  color: var(--text);
  background: rgba(7, 4, 12, 0.78);
  backdrop-filter: blur(10px);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.tag-gaming { top: 15%; right: 8%; }
.tag-talk { bottom: 22%; left: 8%; }
.tag-community { right: 11%; bottom: 9%; }

.online-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px var(--green);
}

.chat-stack {
  position: absolute;
  z-index: 4;
  left: -42px;
  bottom: 74px;
  width: min(290px, 68%);
  display: grid;
  gap: 9px;
}

.chat-bubble {
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line-bright);
  border-radius: 15px;
  background: rgba(8, 4, 13, 0.9);
  backdrop-filter: blur(15px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.chat-bubble > span {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: var(--purple);
  font-size: 0.58rem;
  font-weight: 950;
}

.chat-bubble p {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
}

.chat-two {
  margin-left: 30px;
  transform: translateX(18px);
}

.chat-two > span {
  background: var(--pink);
}

.hero-code {
  position: absolute;
  right: -20px;
  top: -24px;
  color: rgba(255, 255, 255, 0.17);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.24em;
  writing-mode: vertical-rl;
}

.ticker {
  width: 100%;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(145, 71, 255, 0.08);
}

.ticker-track {
  width: max-content;
  padding: 15px 0;
  display: flex;
  align-items: center;
  gap: 30px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.18em;
  animation: ticker 24s linear infinite;
}

.ticker-track i {
  color: var(--pink);
  font-style: normal;
}

.stream-section,
.about-section,
.community-section {
  padding: 140px 0;
}

.section-intro {
  margin-bottom: 58px;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  align-items: end;
  gap: 60px;
}

.section-intro h2 {
  max-width: 860px;
  margin: 19px 0 0;
  font-size: clamp(3rem, 6.1vw, 6.2rem);
}

.section-intro > p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 0.98rem;
}

.stream-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 20px;
  align-items: stretch;
}

.player-shell,
.channel-panel,
.bento-card,
.discord-panel,
.social-card {
  border: 1px solid var(--line);
  background: rgba(17, 10, 27, 0.82);
  box-shadow: var(--shadow);
}

.player-shell {
  min-width: 0;
  overflow: hidden;
  border-radius: 25px;
}

.player-toolbar {
  min-height: 74px;
  padding: 13px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.022);
}

.player-identity {
  display: flex;
  align-items: center;
  gap: 12px;
}

.player-logo {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  font-weight: 1000;
}

.player-identity div {
  display: grid;
  line-height: 1.15;
}

.player-identity strong {
  font-size: 0.86rem;
}

.player-identity small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.player-state {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.player-state span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--purple-hot);
  box-shadow: 0 0 12px var(--purple);
}

.player-stage {
  position: relative;
  width: 100%;
  min-height: 300px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #050307;
}

.player-stage iframe {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  border: 0;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.player-is-ready .player-stage iframe {
  opacity: 1;
}

.player-loader {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 14px;
  color: var(--muted);
  background:
    radial-gradient(circle at center, rgba(145, 71, 255, 0.2), transparent 35%),
    linear-gradient(135deg, #0e0618, #060309);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.player-loader span {
  width: 38px;
  height: 38px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-top-color: var(--purple-hot);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}

.player-loader p {
  margin: 0;
}

.noscript-player {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: grid;
  place-items: center;
  background: var(--panel);
  color: var(--purple-hot);
  font-weight: 900;
}

.mobile-player-fallback {
  min-height: 270px;
  padding: 30px 24px;
  display: none;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  background: radial-gradient(circle at 50% 50%, rgba(145, 71, 255, 0.22), transparent 48%), #08040d;
}

.mobile-play {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--purple);
  font-size: 1.4rem;
}

.mobile-player-fallback > span:nth-child(2) {
  display: grid;
}

.mobile-player-fallback small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.68rem;
}

.channel-panel {
  padding: 25px;
  display: flex;
  flex-direction: column;
  border-radius: 25px;
  background:
    radial-gradient(circle at 100% 0, rgba(255, 63, 199, 0.15), transparent 18rem),
    rgba(17, 10, 27, 0.9);
}

.channel-topline {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.channel-avatar {
  width: 82px;
  height: 82px;
  margin-top: 28px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 25px 8px 25px 8px;
  background: linear-gradient(145deg, var(--purple), var(--pink));
  font-size: 1.45rem;
  font-weight: 1000;
  box-shadow: 0 16px 36px rgba(145, 71, 255, 0.3);
}

.channel-copy {
  margin-top: 22px;
}

.channel-copy p {
  margin: 0 0 7px;
  color: var(--purple-hot);
  font-size: 0.7rem;
  font-weight: 900;
}

.channel-copy h3 {
  margin-bottom: 0;
  font-size: 1.8rem;
  line-height: 1.04;
}

.channel-list {
  margin: 30px 0;
  padding: 0;
  display: grid;
  gap: 13px;
  list-style: none;
}

.channel-list li {
  display: grid;
  grid-template-columns: 27px 1fr;
  gap: 9px;
  color: var(--muted);
  font-size: 0.74rem;
}

.channel-list span {
  color: var(--pink);
  font-weight: 900;
}

.channel-link {
  margin-top: auto;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  color: var(--purple-hot);
  font-size: 0.75rem;
  font-weight: 900;
}

.bento-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  grid-template-rows: repeat(2, minmax(250px, auto));
  gap: 18px;
}

.bento-card {
  position: relative;
  min-width: 0;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border-radius: 24px;
}

.bento-main {
  grid-row: 1 / span 2;
  min-height: 520px;
  background:
    linear-gradient(155deg, rgba(145, 71, 255, 0.25), transparent 55%),
    var(--panel);
}

.card-index {
  position: relative;
  z-index: 2;
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.quote-mark {
  position: relative;
  z-index: 2;
  margin-top: auto;
  color: var(--pink);
  font-family: Georgia, serif;
  font-size: 7rem;
  line-height: 0.4;
}

blockquote {
  position: relative;
  z-index: 2;
  margin-bottom: 20px;
  font-size: clamp(2.6rem, 4.8vw, 5rem);
}

.quote-caption {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
}

.bento-orb {
  position: absolute;
  right: -20%;
  top: -10%;
  width: 80%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 40px rgba(255, 255, 255, 0.025), 0 0 0 80px rgba(255, 255, 255, 0.018);
}

.bento-purple {
  background: linear-gradient(145deg, rgba(145, 71, 255, 0.28), rgba(17, 10, 27, 0.92));
}

.bento-pink {
  background: linear-gradient(145deg, rgba(255, 63, 199, 0.2), rgba(17, 10, 27, 0.92));
}

.bento-dark {
  grid-column: 2 / span 2;
  background: linear-gradient(115deg, rgba(112, 244, 255, 0.08), transparent 50%), rgba(17, 10, 27, 0.92);
}

.card-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-bright);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 1.7rem;
}

.bento-card h3 {
  margin: 0 0 9px;
  font-size: 2rem;
}

.bento-card > div:last-child p,
.bento-dark > div:last-child p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.tech-lines {
  position: absolute;
  right: 28px;
  top: 30px;
  width: 35%;
  display: grid;
  gap: 7px;
}

.tech-lines span {
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--cyan), transparent);
}

.tech-lines span:nth-child(2) { width: 70%; }
.tech-lines span:nth-child(3) { width: 45%; }
.tech-lines span:nth-child(4) { width: 82%; }

.discord-panel {
  position: relative;
  min-height: 500px;
  padding: clamp(32px, 6vw, 75px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 50px;
  overflow: hidden;
  border-radius: 30px;
  background:
    radial-gradient(circle at 82% 20%, rgba(255, 255, 255, 0.13), transparent 17rem),
    linear-gradient(135deg, #5865f2, #6c4bed 50%, #8f3cff);
}

.discord-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 45px 45px;
}

.discord-backdrop {
  position: absolute;
  left: -25px;
  bottom: -88px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.13);
  font-size: clamp(7rem, 18vw, 15rem);
  font-weight: 1000;
  letter-spacing: -0.08em;
  line-height: 1;
}

.discord-icon {
  position: absolute;
  top: clamp(30px, 6vw, 65px);
  right: clamp(30px, 6vw, 75px);
  width: clamp(75px, 9vw, 115px);
  height: clamp(75px, 9vw, 115px);
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  transform: rotate(5deg);
}

.discord-copy,
.discord-button {
  position: relative;
  z-index: 2;
}

.discord-copy {
  max-width: 790px;
}

.discord-copy .section-label {
  color: rgba(255, 255, 255, 0.76);
}

.discord-copy .section-label span {
  color: #fff;
}

.discord-copy h2 {
  margin: 18px 0 24px;
  font-size: clamp(3.2rem, 6.5vw, 6.5rem);
}

.discord-copy h2 em {
  color: #fff;
  background: none;
  -webkit-text-fill-color: initial;
}

.discord-copy > p:last-child {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.discord-button {
  min-width: 190px;
  border-color: rgba(255, 255, 255, 0.28);
  background: #fff;
  color: #31275f;
  box-shadow: 0 20px 50px rgba(28, 15, 70, 0.28);
}

.social-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.social-card {
  min-height: 310px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 24px;
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.social-card:hover {
  transform: translateY(-7px);
  border-color: var(--line-bright);
}

.social-twitch { background: radial-gradient(circle at 90% 12%, rgba(145, 71, 255, 0.34), transparent 15rem), var(--panel); }
.social-instagram { background: radial-gradient(circle at 90% 12%, rgba(255, 63, 199, 0.27), transparent 15rem), var(--panel); }
.social-discord { background: radial-gradient(circle at 90% 12%, rgba(88, 101, 242, 0.33), transparent 15rem), var(--panel); }

.social-top {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.social-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-bright);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.07);
  font-size: 2rem;
}

.social-card strong {
  font-size: 1.55rem;
  letter-spacing: -0.04em;
}

.social-card p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.site-footer {
  padding: 35px 0 45px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 35px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.7rem;
}

.footer-brand .brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 11px 4px 11px 4px;
  font-size: 0.95rem;
}

.site-footer p {
  margin: 0;
  text-align: center;
}

.footer-links {
  display: flex;
  gap: 18px;
}

.footer-links a:hover {
  color: var(--text);
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.js .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 1050px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 90px;
  }

  .hero-copy {
    max-width: 850px;
  }

  .hero-art {
    width: min(720px, 92%);
    margin-inline: auto;
  }

  .stream-layout {
    grid-template-columns: 1fr;
  }

  .channel-panel {
    min-height: 390px;
  }

  .bento-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bento-main {
    grid-row: 1 / span 2;
  }

  .bento-dark {
    grid-column: 1 / span 2;
  }

  .discord-panel {
    grid-template-columns: 1fr;
  }

  .discord-button {
    justify-self: start;
  }
}

@media (max-width: 900px) {
  .menu-button {
    display: block;
  }

  .main-navigation {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    padding: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(7, 4, 12, 0.98);
    box-shadow: var(--shadow);
  }

  .main-navigation.is-open {
    display: flex;
  }

  .main-navigation > a {
    padding: 11px 12px;
  }

  .nav-cta {
    justify-content: center;
  }

  .section-intro {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .social-grid {
    grid-template-columns: 1fr;
  }

  .social-card {
    min-height: 260px;
  }
}

@media (max-width: 700px) {
  .section-shell,
  .site-header {
    width: min(var(--max), calc(100% - 24px));
  }

  .brand-text small {
    display: none;
  }

  .hero {
    padding: 74px 0 80px;
  }

  h1 {
    font-size: clamp(3.7rem, 17.6vw, 6rem);
  }

  .hero-art {
    width: calc(100% - 18px);
  }

  .ticker {
    transform: none;
  }

  .chat-stack {
    left: -12px;
    bottom: 58px;
  }

  .hero-code {
    right: -13px;
  }

  .stream-section,
  .about-section,
  .community-section {
    padding: 100px 0;
  }

  .section-intro h2,
  .discord-copy h2 {
    font-size: clamp(2.8rem, 13vw, 4.8rem);
  }

  .bento-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .bento-main,
  .bento-dark {
    grid-column: auto;
    grid-row: auto;
  }

  .bento-main {
    min-height: 470px;
  }

  .bento-card {
    min-height: 270px;
  }

  .discord-panel {
    min-height: 590px;
    padding: 32px 25px;
    align-content: end;
  }

  .discord-icon {
    top: 28px;
    right: 28px;
  }

  .discord-button {
    width: 100%;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .site-footer p {
    text-align: left;
  }
}

@media (max-width: 440px) {
  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .hero-social-line {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .hero-social-divider {
    display: none;
  }

  .window-bar > span:nth-child(2),
  .window-footer > span {
    display: none;
  }

  .chat-stack {
    width: 86%;
  }

  .chat-bubble p {
    font-size: 0.65rem;
  }

  .player-stage {
    display: none;
  }

  .mobile-player-fallback {
    display: grid;
  }

  .player-toolbar {
    min-height: 67px;
  }

  .player-state {
    display: none;
  }

  .channel-panel,
  .bento-card,
  .social-card {
    padding: 23px;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
