@font-face {
  font-family: 'Powerpuff';
  src: url('./fonts/Powerpuff.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --pink: #F300A1;
  --pink-dark: #c4007f;
  --pink-pale: #fce4f5;
  --pink-light: #fff0fb;
  --pink-mid: #f9c8ee;
  --pink-border: rgba(243,0,161,0.22);
  --text: #2a0035;
  --text-muted: rgba(80,0,70,0.55);
  --text-light: rgba(80,0,70,0.4);
  --card-bg: rgba(255,255,255,0.7);
  --card-hover: rgba(255,255,255,0.9);
  --display: 'Powerpuff';
  --body: 'Poppins', sans-serif;
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }

body {
  background: var(--pink-light);
  color: var(--text);
  font-family: var(--body);
  overflow-x: hidden;
}

/* ─── TOPBAR ─── */
.topbar {
  background: var(--pink-pale);
  border-bottom: 1px solid var(--pink-border);
  padding: 11px 0;
  overflow: hidden;
}

.tb-track {
  display:flex;
  gap:36px;
  animation: marquee 22s linear infinite;
  width:max-content;
}

.tb-track:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  from { transform:translateX(0); }
  to { transform:translateX(-50%); }
}

.tb-item {
  display:flex;
  align-items:center;
  gap:9px;
  color: var(--text-muted);
  text-decoration:none;
  font-size:12px;
  font-weight:500;
  letter-spacing:0.5px;
  white-space:nowrap;
  transition: color .3s ease;
}

.tb-item:hover {
  color: var(--pink);
}

.tb-item svg {
  width:17px;
  height:17px;
  fill:currentColor;
  flex-shrink:0;
}

.tb-sep {
  color: rgba(243,0,161,0.4);
  font-size:16px;
}

.fi {
  background: var(--pink-pale);
  border-top: 1px solid var(--pink-border);
  border-bottom: 1px solid var(--pink-border);
  padding: 18px 0;
  overflow: hidden;
}

.fi .tb-track {
  animation-duration: 28s;
}

/* ─── NAV ─── */
nav {
  position: sticky;
  top:0;
  z-index:200;
  background: rgba(255,240,251,0.96);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--pink-border);
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 48px;
  height:62px;
}

.nav-logo {
  display:inline-flex;
  align-items:center;
  justify-content:flex-start;
  text-decoration:none;
  height:32px;
  max-width:145px;
  overflow:hidden;
}

.nav-logo-img {
  display:block;
  max-height:100%;
  max-width:100%;
  width:auto;
  height:auto;
  object-fit:contain;
}

.nav-links {
  display:flex;
  gap:28px;
  list-style:none;
}

.nav-links a,
.nav-right a {
  color: var(--text-muted);
  text-decoration:none;
  font-size:13px;
  font-weight:500;
  letter-spacing:0.5px;
  transition: color .3s ease;
}

.nav-links a:hover,
.nav-right a:hover {
  color: var(--pink);
}

.nav-right {
  display:flex;
  gap:12px;
  align-items:center;
}

/* ─── HERO ─── */
.hero {
  position:relative;
  height:100vh;
  min-height:580px;
  overflow:hidden;
  background: linear-gradient(135deg, #fce4f5 0%, #fff0fb 40%, #ffd6f0 100%);
}

.hero-slide {
  position:absolute;
  inset:0;
  opacity:0;
  transition:opacity 1.3s ease;
}

.hero-slide.active { opacity:1; }

.hs0 { background:linear-gradient(140deg,#fce4f5,#f9c8ee,#ffd6f0); }
.hs1 { background:linear-gradient(140deg,#f9c8ee,#fce4f5,#ffe0f5); }
.hs2 { background:linear-gradient(140deg,#ffe4f8,#ffd6f0,#fce4f5); }
.hs3 { background:linear-gradient(140deg,#ffd6f0,#f9c8ee,#ffe4f8); }
.hs4 { background:linear-gradient(140deg,#ffe0f5,#fce4f5,#f9c8ee); }

.hero-content {
  position:relative;
  z-index:10;
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding-left:8vw;
  max-width:580px;
}

.hero-name {
  font-family: var(--display);
  font-size: clamp(88px, 13vw, 160px);
  line-height: 0.88;
  color: var(--text);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-name .pink {
  color: var(--pink);
  display:block;
}

.hero-bar {
  width:56px;
  height:4px;
  background:var(--pink);
  margin:20px 0 16px;
  border-radius:2px;
}

.hero-sub,
.hero-cta-label {
  font-size:12px;
  color:var(--text-muted);
  letter-spacing:4px;
  text-transform:uppercase;
}

.hero-sub { margin-bottom:36px; }
.hero-cta-label { margin-bottom:10px; }

.hero-btn {
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:15px 36px;
  background:var(--pink);
  color:#fff;
  text-decoration:none;
  font-size:13px;
  font-weight:600;
  letter-spacing:1px;
  border:2px solid var(--pink);
  border-radius:50px;
  box-shadow:0 4px 24px rgba(243,0,161,0.3);
  transition: all .3s ease;
}

.hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(243,0,161,0.22);
}

.hero-dots {
  position:absolute;
  bottom:28px;
  left:8vw;
  z-index:10;
  display:flex;
  gap:8px;
}

.dot {
  width:7px;
  height:7px;
  border-radius:50%;
  background:rgba(243,0,161,0.25);
  cursor:pointer;
  border:none;
}

.dot.active {
  background:var(--pink);
  width:22px;
  border-radius:3px;
}

/* ─── SECTIONS ─── */
.promo-wrap,
.streams-wrap {
  background: linear-gradient(180deg, var(--pink-pale) 0%, var(--pink-mid) 100%);
}

.promo-grid,
.streams-inner {
  padding:72px 48px;
}

.promo-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}

.pc,
.soc-card,
.embed-box {
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  border:1px solid rgba(243,0,161,0.15);
  border-radius:16px;
  box-shadow:0 2px 20px rgba(243,0,161,0.08);
}

.pc {
  padding:36px 28px;
  text-decoration:none;
  color:var(--text);
  display:flex;
  flex-direction:column;
  gap:11px;
  transition: all .3s ease;
}

.pc:hover {
  background: var(--card-hover);
  transform: translateY(-4px);
  box-shadow: 0 14px 35px rgba(243,0,161,0.12);
}

.pc-icon {
  width:28px;
  height:28px;
  color:var(--pink);
  display:flex;
  align-items:center;
  justify-content:center;
}

.pc-icon svg {
  width:100%;
  height:100%;
  fill:currentColor;
}

.pc-tag,
.s-label,
.soc-name {
  font-size:10px;
  font-weight:600;
  letter-spacing:3px;
  text-transform:uppercase;
  color:var(--pink);
}

.pc h3,
.s-head h2 {
  color:var(--text);
}

.pc p,
.soc-desc {
  color:var(--text-muted);
  line-height:1.7;
}

.pc-btn {
  display:inline-block;
  margin-top:6px;
  padding:10px 24px;
  background:var(--pink);
  color:#fff;
  font-size:12px;
  font-weight:600;
  letter-spacing:1px;
  border-radius:50px;
  width:fit-content;
  box-shadow:0 2px 12px rgba(243,0,161,0.25);
}

.s-head {
  text-align:center;
  margin-bottom:48px;
}

.s-head h2 {
  font-size:clamp(26px,3.5vw,44px);
  font-weight:700;
}

.s-label {
  display:block;
  margin-bottom:10px;
}

/* ─── STREAMS ─── */
.streams-row {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
  margin-bottom:20px;
}

.embed-head {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:14px 18px;
  background:rgba(255,255,255,0.25);
  border-bottom:1px solid rgba(243,0,161,0.12);
  font-size:14px;
  font-weight:700;
  letter-spacing:2px;
  text-transform:uppercase;
}

.tc { color:#7c4dff; }
.kc { color:#19b500; }

.stream-box {
  overflow:hidden;
}

.stream-stage {
  position: relative;
  width: 100%;
  min-height: 520px;
  background: linear-gradient(135deg, var(--pink-pale), var(--pink-mid));
  overflow: hidden;
}

.player-wrap {
  width: 100%;
  height: 100%;
  min-height: 520px;
}

.player-wrap.hidden {
  display: none;
}

#twitchEmbed,
#twitchEmbed iframe,
.embed-frame {
  display: block;
  width: 100%;
  height: 520px;
  border: 0;
}

.offline-card {
  display: none;
  width: 100%;
  min-height: 520px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  background: linear-gradient(135deg, var(--pink-pale), var(--pink-mid));
  padding: 32px;
}

.offline-card.active {
  display: flex;
}

.offline-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:40px;
  font-weight:800;
  margin-bottom:18px;
  background:rgba(124,77,255,0.10);
  color:#7c4dff;
}

.kick-icon {
  background:rgba(25,181,0,0.10);
  color:#19b500;
}

.offline-card h3 {
  display:none;
}

.offline-card p {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.offline-btn {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:180px;
  padding:12px 24px;
  border-radius:999px;
  text-decoration:none;
  font-weight:700;
  letter-spacing:1px;
  background:#fff;
  transition: all .3s ease;
}

.offline-btn:hover {
  transform: translateY(-2px);
}

.twitch-btn {
  color:#7c4dff;
  border:2px solid #7c4dff;
}

.kick-btn {
  color:#19b500;
  border:2px solid #19b500;
}

.live-pill {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:7px 12px;
  border-radius:999px;
  font-size:11px;
  font-weight:700;
  letter-spacing:1px;
  background:rgba(255,255,255,0.5);
  color:#7c4dff;
  border:1px solid rgba(124,77,255,0.25);
}

.live-pill.live {
  background:rgba(255,0,90,0.12);
  color:#ff005a;
  border-color:rgba(255,0,90,0.22);
}

.kick-pill {
  color:#19b500;
  border-color:rgba(25,181,0,0.2);
}

.kick-pill.live {
  background:rgba(25,181,0,0.12);
  color:#19b500;
  border-color:rgba(25,181,0,0.22);
}

/* ─── SOCIAL CARDS ─── */
.soc-row {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}

.soc-card {
  padding:28px 22px;
  text-decoration:none;
  color:var(--text);
  display:flex;
  flex-direction:column;
  gap:10px;
  transition: all .3s ease;
}

.soc-card:hover {
  background: var(--card-hover);
  transform: translateY(-4px);
  box-shadow: 0 14px 35px rgba(243,0,161,0.12);
}

.soc-icon {
  width:22px;
  height:22px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.soc-icon svg {
  width:100%;
  height:100%;
  fill:currentColor;
}

.tiktok-icon { color:#e6007a; }
.youtube-icon { color:#d90000; }
.discord-icon { color:#5865f2; }

/* ─── CONTACT ─── */
.ct-band {
  padding:56px 0;
  background: var(--pink);
}

.ct-inner {
  display:flex;
  align-items:center;
  justify-content:center;
  gap:28px;
  flex-wrap:wrap;
  padding:0 48px;
}

.ct-label,
.ct-mail {
  color:#fff;
  letter-spacing:2px;
}

.ct-mail {
  text-decoration:none;
  font-weight:600;
}

.ct-btn,
.ct-btn-ghost {
  padding:12px 32px;
  border-radius:50px;
  text-decoration:none;
  transition: all .3s ease;
}

.ct-btn {
  background:#fff;
  color:var(--pink);
  font-weight:700;
}

.ct-btn-ghost {
  border:2px solid rgba(255,255,255,0.5);
  color:#fff;
}

.ct-btn:hover,
.ct-btn-ghost:hover {
  transform: translateY(-2px);
}

/* ─── FOOTER ─── */
footer {
  background: var(--pink-mid);
  padding:44px 48px 20px;
  border-top:1px solid var(--pink-border);
}

.ft-top {
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:20px;
  margin-bottom:28px;
}

.ft-logo {
  display:inline-flex;
  align-items:center;
  justify-content:flex-start;
  height:50px;
  max-width:230px;
  overflow:hidden;
}

.footer-logo-img {
  display:block;
  max-height:100%;
  max-width:100%;
  width:auto;
  height:auto;
  object-fit:contain;
}

.ft-tagline,
.ft-copy,
.ft-links a {
  color:var(--text-light);
  text-decoration:none;
}

.ft-links {
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}

.ft-copy {
  text-align:center;
  font-size:11px;
  border-top:1px solid var(--pink-border);
  padding-top:18px;
  margin-top:18px;
}

.reveal {
  opacity:0;
  transform:translateY(28px);
  transition:opacity .7s ease, transform .7s ease;
}

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

@media (max-width: 1200px) {
  .streams-row,
  .soc-row,
  .promo-grid {
    grid-template-columns:1fr;
  }
}

@media (max-width: 900px) {
  nav {
    padding:0 18px;
  }

  .nav-links,
  .nav-right {
    display:none;
  }

  .promo-grid,
  .streams-inner {
    padding:40px 18px;
  }

  .hero-name {
    font-size: clamp(68px, 18vw, 120px);
    line-height: 0.9;
  }

  .stream-stage,
  .player-wrap,
  .offline-card,
  #twitchEmbed,
  #twitchEmbed iframe,
  .embed-frame {
    min-height:360px;
    height:360px;
  }

  .nav-logo {
    height:32px;
    max-width:140px;
  }

  .ft-logo {
    height:44px;
    max-width:200px;
  }

  .ct-inner {
    flex-direction:column;
    text-align:center;
    padding:0 18px;
  }

  footer {
    padding:36px 18px 18px;
  }
}
