:root {
  --bg: #08010c;
  --surface: rgba(16, 4, 23, .76);
  --pink: #ff4dc8;
  --violet: #a970ff;
  --text: #fff8ff;
  --muted: #d9bddf;
  --accent: #ff4dc8;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 10px;
  background: #fff;
  color: #16051e;
  transform: translateY(-160%);
}
.skip-link:focus { transform: none; }

.cinema { position: relative; }
.cinema-stage {
  position: sticky;
  top: 0;
  z-index: 0;
  width: 100%;
  height: 100svh;
  overflow: hidden;
  background: #16051e url("assets/banner-1672.webp") 28% center / cover no-repeat;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 44% center;
  filter: saturate(1.06) contrast(1.04);
}
.video-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,0,8,.02) 20%, rgba(5,0,8,.1) 52%, rgba(5,0,8,.7) 100%),
    linear-gradient(180deg, rgba(7,1,10,.06), transparent 55%, rgba(7,1,10,.72));
}
.scanlines {
  position: absolute;
  inset: 0;
  opacity: .1;
  background: repeating-linear-gradient(180deg, transparent 0 3px, rgba(255,255,255,.12) 4px);
  mix-blend-mode: overlay;
}

.story-panel {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 92svh;
  padding: clamp(24px, 5vw, 72px);
  place-items: center end;
  pointer-events: none;
}
.story-panel:not(.story-intro) {
  padding-right: 4vw;
  padding-left: 62vw;
  place-items: center start;
}
.story-panel:not(.story-intro) .feature-card {
  margin-top: 14vh;
}
.story-intro {
  min-height: 100svh;
  margin-top: -100svh;
  place-items: center end;
}
.story-copy,
.feature-card {
  width: min(24vw, 300px);
  opacity: .08;
  transform: translate3d(100px, 20px, 0) scale(.28) rotate(12deg);
  transition: opacity .55s ease, transform .9s cubic-bezier(.16,1,.3,1), filter .7s ease;
}
.story-panel.is-active .story-copy,
.story-panel.is-active .feature-card {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.story-panel.is-active .feature-card {
  animation: bubble-pulse 2.4s ease-in-out infinite;
}
.intro-copy {
  width: min(62vw, 720px);
  margin: 0;
  text-align: right;
}
.eyebrow,
.category {
  margin: 0 0 10px;
  color: #ff9ce2;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .24em;
  text-transform: uppercase;
}
.intro-copy h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 11vw, 9rem);
  font-style: italic;
  font-weight: 500;
  line-height: .84;
  letter-spacing: -.07em;
  text-shadow: 0 0 42px rgba(255,77,200,.5);
}
.intro-copy > p { margin: 22px 0; color: var(--muted); font-size: clamp(1rem,2vw,1.3rem); }
.scroll-cue,
.feature-card > a {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 12px 18px;
  border: 1px solid rgba(255,122,222,.6);
  border-radius: 999px;
  background: rgba(12,3,18,.52);
  text-decoration: none;
  backdrop-filter: blur(12px);
}

.feature-card {
  --accent: var(--pink);
  position: relative;
  display: grid;
  width: clamp(133px, 16.1vw, 210px);
  height: clamp(133px, 16.1vw, 210px);
  padding: 0;
  border: 1px solid color-mix(in srgb, var(--accent) 75%, white 25%);
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 28%, rgba(255,255,255,.2), transparent 14%),
    radial-gradient(circle at 50% 54%, color-mix(in srgb, var(--accent) 28%, #13041c 72%), rgba(8,1,12,.78) 66%);
  box-shadow:
    0 0 0 10px color-mix(in srgb, var(--accent) 7%, transparent),
    0 0 72px color-mix(in srgb, var(--accent) 34%, transparent),
    inset 0 0 58px color-mix(in srgb, var(--accent) 18%, transparent);
  filter: none;
  place-items: center;
}
.feature-card::before {
  position: absolute;
  inset: 9%;
  border: 1px solid color-mix(in srgb, var(--accent) 44%, transparent);
  border-radius: 50%;
  content: "";
  animation: bubble-orbit 9s linear infinite;
}
.feature-card::after {
  position: absolute;
  top: 13%;
  right: 18%;
  width: 13%;
  aspect-ratio: 1;
  border-radius: 50%;
  content: "";
  background: rgba(255,255,255,.65);
  filter: blur(3px);
  z-index: 1;
}
.counter,
.feature-card .category,
.feature-card > p { display: none; }
.network-icon {
  position: relative;
  z-index: 2;
  display: grid;
  width: 42%;
  height: 42%;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  place-items: center;
  filter: none;
  isolation: isolate;
  transition: transform .45s ease;
}
.network-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.text-icon { font-size: .9rem; font-weight: 900; }
.feature-card h2 { display: none; }
.feature-card > a {
  position: absolute;
  inset: 0;
  z-index: 3;
  border: 0;
  border-radius: 50%;
  background: transparent;
  backdrop-filter: none;
  font-size: 0;
}
.feature-card > a:focus-visible {
  outline: 4px solid #fff;
  outline-offset: 8px;
}
.feature-card:hover .network-icon { transform: scale(1.12); }
.twitch { --accent:#a970ff; }
.kick { --accent:#53fc18; }
.youtube { --accent:#ff3b58; }
.discord { --accent:#8991ff; }
.instagram { --accent:#ff4e9f; }
.tiktok { --accent:#39f5e8; }
.x { --accent:#d4d9e0; }
.portfolio { --accent:#d56bff; }
.email { --accent:#6d4aff; }

@keyframes bubble-orbit {
  to { transform: rotate(360deg); }
}

@keyframes bubble-pulse {
  0%, 100% {
    box-shadow:
      0 0 0 8px color-mix(in srgb, var(--accent) 6%, transparent),
      0 0 38px color-mix(in srgb, var(--accent) 24%, transparent),
      inset 0 0 42px color-mix(in srgb, var(--accent) 16%, transparent);
  }
  50% {
    box-shadow:
      0 0 0 15px color-mix(in srgb, var(--accent) 10%, transparent),
      0 0 72px color-mix(in srgb, var(--accent) 48%, transparent),
      inset 0 0 50px color-mix(in srgb, var(--accent) 24%, transparent);
  }
}

.quick-links {
  position: relative;
  z-index: 4;
  padding: clamp(72px, 10vw, 140px) max(20px, calc((100vw - 1240px) / 2));
  background:
    radial-gradient(circle at 15% 8%, rgba(213,43,178,.2), transparent 36rem),
    linear-gradient(180deg, #100217, #08010c);
}
.section-heading { max-width: 720px; margin-bottom: 48px; }
.section-heading h2 { margin: 0; font-size: clamp(2.7rem,7vw,6rem); line-height: 1; letter-spacing: -.055em; }
.section-heading p { color: var(--muted); font-size: 1.05rem; }
.quick-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px; }
.quick-card {
  --accent: var(--pink);
  display: grid;
  grid-template-columns: 52px minmax(0,1fr) 84px;
  align-items: center;
  gap: 18px;
  min-height: 120px;
  padding: 16px;
  border: 1px solid color-mix(in srgb, var(--accent) 38%, transparent);
  border-radius: 20px;
  background: rgba(26,6,36,.68);
  transition: transform .2s ease, border-color .2s ease;
}
.quick-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.quick-icon { width: 30px; max-height: 32px; justify-self: center; }
.quick-card .text-icon { display:grid; height:42px; place-items:center; }
.quick-card h3 { margin: 0 0 5px; }
.quick-card a { color: #f4a9df; font-size: .86rem; overflow-wrap: anywhere; text-decoration: none; }
.quick-qr { width: 84px; height: 84px; padding: 5px; border-radius: 10px; background: #fff; }
footer { padding: 28px; color: #a888b2; background:#08010c; text-align:center; }
footer span { color:var(--pink); margin:0 9px; }

@media (max-width: 760px) {
  .cinema-stage { background-position: 24% center; }
  .hero-video { object-position: 24% center; }
  .video-shade {
    background: linear-gradient(180deg, rgba(5,0,8,.01) 28%, rgba(5,0,8,.12) 52%, rgba(5,0,8,.88) 88%);
  }
  .story-panel { min-height: 92svh; padding: 18px; place-items: end center; }
  .story-panel:not(.story-intro) {
    padding: 18px 18px max(12vh, 72px);
    place-items: end center;
  }
  .story-panel:not(.story-intro) .feature-card { margin-top: 0; }
  .story-intro {
    min-height: 100svh;
    padding: max(24px, env(safe-area-inset-top)) 18px max(32px, env(safe-area-inset-bottom));
    place-items: center;
  }
  .story-copy,
  .feature-card { width: min(100%, 520px); transform: translate3d(0,50px,0); }
  .intro-copy { width: min(100%, 560px); margin: 0; text-align:left; }
  .intro-copy h1 { font-size: clamp(3.6rem,19vw,6.2rem); overflow-wrap: anywhere; }
  .feature-card {
    width: clamp(119px, 36.4vw, 161px);
    height: clamp(119px, 36.4vw, 161px);
    padding: 0;
  }
  .network-icon { width:42%; height:42%; margin:0; }
  .network-icon img { width:100%; height:100%; }
  .quick-grid { grid-template-columns: 1fr; }
}
@media (max-width: 430px) {
  .quick-card { grid-template-columns: 42px minmax(0,1fr) 68px; gap:10px; min-height:98px; padding:12px; }
  .quick-qr { width:68px; height:68px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior:auto; }
  .hero-video { display:none; }
  .story-copy,.feature-card,.quick-card { transition:none; }
  .feature-card::before { animation:none; }
  .story-panel.is-active .feature-card { animation:none; }
}
