@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;600;700&family=Fugaz+One&display=swap');

:root {
  --ink: #10104b;
  --blue: #168cff;
  --electric-blue: #00c8ff;
  --pink: #ff3cac;
  --hot-pink: #ff1493;
  --cream: #fff8f0;
  --white: #fff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--white);
  font-family: 'DM Sans', Arial, sans-serif;
}
a { color: inherit; }

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 1.35rem 3rem;
  mix-blend-mode: screen;
}
.logo {
  font-family: 'Fugaz One', Impact, sans-serif;
  font-size: 1.5rem;
  letter-spacing: .04em;
  text-decoration: none;
}
.logo span { color: var(--electric-blue); }
.nav-link {
  padding: .6rem 1rem;
  border: 2px solid currentColor;
  border-radius: 99px;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, color .2s, transform .2s;
}
.nav-link:hover { background: white; color: var(--pink); transform: rotate(-2deg); }

.hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  align-items: center;
  justify-content: flex-end;
  padding: 7rem clamp(2rem, 7vw, 8rem) 4rem;
  background-image: linear-gradient(90deg, transparent 35%, rgba(18, 0, 58, .08) 62%, rgba(18, 0, 58, .4)), url('images/LexiBG.png');
  background-position: center;
  background-size: cover;
}
.bio-card {
  position: relative;
  width: min(39rem, 43vw);
  padding: clamp(2rem, 4vw, 4rem);
  border: 3px solid rgba(255,255,255,.75);
  border-radius: 2.5rem 1rem 2.5rem 1rem;
  background: rgba(27, 4, 83, .56);
  box-shadow: 16px 16px 0 rgba(0, 200, 255, .65);
  backdrop-filter: blur(12px);
}
.eyebrow {
  margin: 0 0 .35rem;
  color: var(--electric-blue);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}
h1, h2 {
  margin: 0;
  font-family: 'Fugaz One', Impact, sans-serif;
  font-weight: 400;
  line-height: .92;
  text-transform: uppercase;
}
h1 {
  color: var(--white);
  font-size: clamp(5rem, 11vw, 10rem);
  letter-spacing: -.07em;
  text-shadow: 5px 5px 0 var(--hot-pink), 9px 9px 0 var(--blue);
}
.bio { max-width: 31rem; margin: 2rem 0; font-size: clamp(1rem, 1.4vw, 1.25rem); line-height: 1.65; }
.hero-links { display: grid; gap: .75rem; margin: 1.8rem 0 1.4rem; }
.hero-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .85rem 1.1rem;
  border: 2px solid rgba(255,255,255,.8);
  border-radius: .9rem;
  background: rgba(255,255,255,.1);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s, background .2s, box-shadow .2s;
}
.hero-links a:nth-child(odd):hover { background: var(--pink); box-shadow: 5px 5px 0 var(--electric-blue); }
.hero-links a:nth-child(even):hover { background: var(--blue); box-shadow: 5px 5px 0 var(--pink); }
.hero-links a:hover { transform: translate(-3px, -3px); }
.live-jump { display: inline-block; color: var(--electric-blue); font-weight: 700; text-decoration: none; }
.live-jump:hover { color: white; }
.primary-button {
  display: inline-flex;
  gap: .8rem;
  align-items: center;
  padding: 1rem 1.4rem;
  border-radius: 99px;
  background: var(--pink);
  box-shadow: 6px 6px 0 var(--electric-blue);
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
.primary-button:hover { transform: translate(3px, 3px); box-shadow: 3px 3px 0 var(--electric-blue); }
.spark { position: absolute; color: white; filter: drop-shadow(0 0 12px var(--electric-blue)); animation: twinkle 2s ease-in-out infinite; }
.spark-one { top: 18%; right: 44%; font-size: 3rem; }
.spark-two { right: 5%; bottom: 12%; font-size: 1.8rem; animation-delay: .7s; }
.scroll-note { position: absolute; right: 2rem; bottom: 2rem; margin: 0; font-size: .72rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; writing-mode: vertical-rl; }

.links-section {
  position: relative;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(3rem, 8vw, 9rem);
  align-items: start;
  min-height: 100vh;
  padding: clamp(7rem, 12vw, 11rem) clamp(2rem, 8vw, 9rem);
  overflow: hidden;
  background: var(--cream);
  color: var(--ink);
}
.links-section::before {
  position: absolute;
  top: -10rem;
  left: -8rem;
  width: 28rem;
  height: 28rem;
  border: 5rem solid var(--electric-blue);
  border-radius: 50%;
  content: '';
  opacity: .12;
}
.links-heading { position: sticky; top: 8rem; }
.links-heading .eyebrow { color: var(--hot-pink); }
h2 { font-size: clamp(3.8rem, 7vw, 8rem); letter-spacing: -.055em; }
h2 em { color: var(--blue); font-style: normal; text-shadow: 4px 4px 0 var(--pink); }
.link-list { display: grid; gap: 1.2rem; }
.social-link {
  display: grid;
  grid-template-columns: 2.5rem 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.5rem 1.75rem;
  border: 3px solid var(--ink);
  border-radius: 1.25rem;
  box-shadow: 8px 8px 0 var(--ink);
  font-family: 'Fugaz One', Impact, sans-serif;
  font-size: clamp(1.6rem, 3vw, 3.25rem);
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .2s, box-shadow .2s;
}
.social-link.pink { background: var(--pink); }
.social-link.blue { background: var(--electric-blue); }
.social-link:hover { transform: translate(5px, 5px) rotate(-1deg); box-shadow: 3px 3px 0 var(--ink); }
.link-number { font-family: 'DM Sans', sans-serif; font-size: .75rem; font-weight: 700; }
.arrow { transition: transform .2s; }
.social-link:hover .arrow { transform: translate(5px, -5px); }

.live-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(16rem, .6fr) minmax(32rem, 1.4fr);
  gap: clamp(2rem, 6vw, 7rem);
  align-items: center;
  min-height: 100vh;
  padding: clamp(7rem, 10vw, 10rem) clamp(2rem, 6vw, 7rem);
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 30%, rgba(255, 60, 172, .55), transparent 28rem),
    radial-gradient(circle at 90% 75%, rgba(0, 200, 255, .4), transparent 30rem),
    var(--ink);
}
.live-section::before {
  position: absolute;
  right: -8rem;
  bottom: -12rem;
  width: 30rem;
  height: 30rem;
  border: 4rem solid rgba(255,255,255,.06);
  border-radius: 50%;
  content: '';
}
.live-heading { position: relative; z-index: 1; }
.live-heading h2 { color: white; font-size: clamp(4rem, 7vw, 8rem); }
.live-heading h2 em { color: var(--electric-blue); }

footer { display: flex; justify-content: flex-end; padding: 1.5rem 3rem; background: var(--ink); font-size: .82rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.reveal { opacity: 0; transform: translateY(2rem); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* Live room page */
.room-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 24%, rgba(255, 60, 172, .45), transparent 28rem),
    radial-gradient(circle at 88% 75%, rgba(0, 200, 255, .35), transparent 30rem),
    var(--ink);
}
.room-header { mix-blend-mode: normal; }
.room-main {
  display: grid;
  grid-template-columns: minmax(17rem, .65fr) minmax(32rem, 1.35fr);
  gap: clamp(2rem, 5vw, 6rem);
  align-items: center;
  min-height: 100vh;
  padding: 7rem clamp(2rem, 6vw, 7rem) 4rem;
}
.room-intro h1 { font-size: clamp(4rem, 8vw, 8.5rem); }
.room-intro p:last-child { max-width: 30rem; font-size: 1.1rem; line-height: 1.65; }
.stream-card {
  overflow: hidden;
  border: 3px solid white;
  border-radius: 1.6rem;
  background: #080820;
  box-shadow: 14px 14px 0 var(--pink), 24px 24px 0 var(--electric-blue);
}
.stream-frame { position: relative; aspect-ratio: 16 / 9; background: #080820; }
.stream-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.stream-footer { display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.25rem; font-weight: 700; }
.stream-footer span { display: flex; gap: .6rem; align-items: center; }
.stream-footer i { width: .65rem; height: .65rem; border-radius: 50%; background: var(--pink); box-shadow: 0 0 12px var(--pink); animation: pulse 1.4s ease-in-out infinite; }
.stream-footer a { color: var(--electric-blue); }
.play-link {
  padding: .65rem 1rem;
  border-radius: 99px;
  background: var(--pink);
  color: white !important;
  text-decoration: none;
  transition: transform .2s, background .2s;
}
.play-link:hover { transform: rotate(-2deg) scale(1.04); background: var(--hot-pink); }

@keyframes twinkle { 50% { transform: scale(.55) rotate(25deg); opacity: .45; } }
@keyframes pulse { 50% { opacity: .35; transform: scale(.75); } }

@media (max-width: 850px) {
  .site-header { padding: 1.1rem 1.25rem; }
  .hero {
    min-height: 100svh;
    align-items: flex-end;
    padding: 22rem 1.25rem 3rem;
    background-image: linear-gradient(0deg, rgba(15,0,55,.96) 5%, rgba(15,0,55,.25) 62%), url('images/LexiBG.png');
    background-position: 39% center;
  }
  .bio-card { width: 100%; padding: 1.75rem; border-radius: 1.5rem .7rem; box-shadow: 8px 8px 0 rgba(0,200,255,.75); }
  h1 { font-size: clamp(4.2rem, 24vw, 7rem); }
  .bio { margin: 1.3rem 0; }
  .spark, .scroll-note { display: none; }
  .links-section { grid-template-columns: 1fr; min-height: auto; }
  .links-heading { position: relative; top: auto; }
  .social-link { padding: 1.2rem; box-shadow: 5px 5px 0 var(--ink); }
  footer { gap: 1rem; padding: 1.25rem; }
  .live-section { grid-template-columns: 1fr; min-height: auto; padding: 7rem 1.25rem 5rem; }
  .live-heading h2 { font-size: clamp(4rem, 20vw, 7rem); }
  .live-section .stream-card { box-shadow: 7px 7px 0 var(--pink), 13px 13px 0 var(--electric-blue); }
  .stream-footer { gap: 1rem; }
  .room-main { grid-template-columns: 1fr; padding: 8rem 1.25rem 4rem; }
  .room-intro h1 { font-size: clamp(4rem, 20vw, 7rem); }
  .stream-card { box-shadow: 7px 7px 0 var(--pink), 13px 13px 0 var(--electric-blue); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
