:root {
  --purple-950: #24102f;
  --purple-800: #51206f;
  --purple-700: #6b2d91;
  --purple-500: #9957bd;
  --orange: #f28b28;
  --yellow: #ffd54b;
  --ink: #261f2b;
  --muted: #706779;
  --surface: #fffdfb;
  --line: rgba(81, 32, 111, 0.12);
  --shadow: 0 24px 70px rgba(63, 25, 85, 0.14);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 80% 2%, rgba(255, 213, 75, 0.2), transparent 22rem),
    linear-gradient(180deg, #fffaf7 0%, #fff 50%, #faf6fc 100%);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

a { color: inherit; }

.page-glow {
  position: fixed;
  z-index: -1;
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.2;
  pointer-events: none;
}

.page-glow--one { top: 30rem; left: -18rem; background: #c17be4; }
.page-glow--two { right: -20rem; bottom: 5rem; background: #ffb45f; }

.site-header,
main,
footer {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.brand img { width: 92px; height: 58px; object-fit: contain; }
.brand span, .footer-brand span { display: grid; gap: 1px; }
.brand strong { color: var(--purple-800); font-size: 22px; letter-spacing: -0.03em; }
.brand small, .footer-brand small { color: var(--muted); font-size: 11px; }

.header-link {
  padding: 11px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--purple-800);
  background: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  backdrop-filter: blur(12px);
}

.hero {
  padding: 70px 0 62px;
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(280px, 0.75fr);
  gap: 64px;
  align-items: end;
}

.eyebrow,
.section-kicker {
  color: var(--purple-700);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow { display: flex; align-items: center; gap: 9px; }
.live-dot { width: 9px; height: 9px; border-radius: 50%; background: #ee3d3d; box-shadow: 0 0 0 6px rgba(238, 61, 61, 0.1); }

.hero h1 {
  max-width: 760px;
  margin: 19px 0 20px;
  font-size: clamp(32px, 4.4vw, 52px);
  line-height: 1.03;
  letter-spacing: -0.055em;
}

.hero h1 span {
  color: transparent;
  background: linear-gradient(110deg, var(--purple-700) 18%, var(--orange) 76%, #f7bc2d);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-copy > p { max-width: 660px; margin: 0; color: var(--muted); font-size: 17px; line-height: 1.8; }
.hero-tags { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 9px; }
.hero-tags span { padding: 8px 12px; border-radius: 999px; background: #f4ecf8; color: var(--purple-800); font-size: 11px; font-weight: 700; }

.tagline-card {
  position: relative;
  padding: 28px;
  border-radius: 24px;
  color: white;
  background: linear-gradient(145deg, var(--purple-950), var(--purple-700));
  box-shadow: 0 20px 45px rgba(81, 32, 111, 0.22);
  overflow: hidden;
}

.tagline-card::after { content: ""; position: absolute; width: 150px; height: 150px; right: -54px; bottom: -74px; border-radius: 50%; background: linear-gradient(135deg, var(--orange), var(--yellow)); opacity: 0.75; }
.tagline-card span, .tagline-card p { position: relative; z-index: 1; }
.tagline-card span { display: block; color: #e8c9f5; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.tagline-card strong { position: relative; z-index: 1; display: block; margin: 10px 0 24px; font-size: 23px; line-height: 1.25; }
.tagline-card p { margin: 0; color: #fff; font-size: 12px; }

.live-section { padding: 44px; border: 1px solid var(--line); border-radius: 34px; background: rgba(255, 255, 255, 0.78); box-shadow: var(--shadow); backdrop-filter: blur(16px); }
.section-heading { margin-bottom: 25px; display: flex; align-items: end; justify-content: space-between; gap: 24px; }
.section-heading h2 { margin: 7px 0 0; color: var(--purple-950); font-size: clamp(24px, 3.1vw, 34px); letter-spacing: -0.04em; }
.status-pill { display: flex; align-items: center; gap: 8px; padding: 8px 13px; border-radius: 999px; color: #a82727; background: #fff0f0; font-size: 12px; font-weight: 800; text-transform: uppercase; }
.status-pill i { width: 8px; height: 8px; border-radius: 50%; background: #e53e3e; animation: pulse 1.8s infinite; }

.player-shell { position: relative; aspect-ratio: 16 / 9; border-radius: 22px; overflow: hidden; background: linear-gradient(145deg, #cfaee0, #a973c5); box-shadow: 0 20px 50px rgba(81, 32, 111, 0.2); }
.player-shell video { width: 100%; height: 100%; display: block; object-fit: contain; background: linear-gradient(145deg, #d9c0e7, #ae7ac9); }
.player-overlay, .player-message { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 24px; color: white; text-align: center; background: linear-gradient(180deg, rgba(92, 40, 122, 0.08), rgba(75, 30, 101, 0.57)); }
.player-overlay[hidden], .player-message[hidden] { display: none; }
.play-button { width: 76px; height: 76px; margin-bottom: 18px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; color: white; background: linear-gradient(145deg, var(--purple-500), var(--orange)); box-shadow: 0 10px 30px rgba(242,139,40,.35); cursor: pointer; transition: transform .2s ease; }
.play-button:hover { transform: scale(1.07); }
.play-button svg { width: 30px; fill: currentColor; }
.player-overlay strong, .player-message strong { font-size: clamp(17px, 2vw, 24px); }
.player-overlay span, .player-message span { margin-top: 7px; color: rgba(255,255,255,.75); font-size: 12px; }
.player-message button { margin-top: 18px; padding: 10px 16px; border: 0; border-radius: 999px; color: var(--purple-950); background: white; font: inherit; font-size: 12px; font-weight: 800; cursor: pointer; }

.social-section { padding: 105px 0 90px; }
.section-heading--social { align-items: end; }
.section-heading--social p { max-width: 400px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6; text-align: right; }
.social-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.social-card { min-height: 190px; padding: 28px; display: grid; grid-template-columns: auto 1fr auto; gap: 20px; align-items: center; border: 1px solid var(--line); border-radius: 25px; background: rgba(255,255,255,.84); box-shadow: 0 14px 40px rgba(50,22,65,.08); text-decoration: none; transition: transform .22s ease, box-shadow .22s ease; }
.social-card:hover { transform: translateY(-4px); box-shadow: 0 22px 50px rgba(50,22,65,.14); }
.social-icon { width: 62px; height: 62px; display: grid; place-items: center; border-radius: 18px; color: white; }
.social-icon svg { width: 31px; fill: currentColor; }
.social-card--youtube .social-icon { background: #ff0033; }
.social-card--instagram .social-icon { background: radial-gradient(circle at 31% 105%, #ffd600 0 16%, #ff7a00 35%, #ff0169 56%, #d300c5 73%, #7638fa 100%); }
.social-copy { display: grid; gap: 5px; min-width: 0; }
.social-copy small { color: var(--muted); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
.social-copy strong { color: var(--purple-950); font-size: 18px; }
.social-copy span { color: var(--muted); font-size: 12px; line-height: 1.5; }
.social-arrow { align-self: start; color: var(--purple-700); font-size: 20px; }

footer { min-height: 120px; padding: 28px 0; display: flex; align-items: center; justify-content: space-between; gap: 24px; border-top: 1px solid var(--line); color: var(--muted); font-size: 11px; }
.footer-brand img { width: 70px; height: 45px; object-fit: contain; }
.footer-brand strong { color: var(--purple-800); font-size: 16px; }
footer a { color: var(--purple-700); font-weight: 800; text-decoration: none; }

@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(229,62,62,.32); } 50% { box-shadow: 0 0 0 6px rgba(229,62,62,0); } }

@media (max-width: 820px) {
  .hero { grid-template-columns: 1fr; gap: 30px; padding-top: 45px; }
  .tagline-card { max-width: 460px; }
  .live-section { padding: 26px; border-radius: 26px; }
  .social-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .site-header, main, footer { width: min(100% - 28px, 1180px); }
  .site-header { min-height: 84px; }
  .brand img { width: 76px; height: 48px; }
  .brand small, .header-link { display: none; }
  .hero { padding: 40px 0 46px; }
  .hero h1 { font-size: 32px; }
  .hero-copy > p { font-size: 14px; }
  .live-section { width: calc(100% + 12px); margin-left: -6px; padding: 18px; }
  .section-heading { align-items: center; }
  .section-heading h2 { font-size: 23px; }
  .player-overlay span { display: none; }
  .play-button { width: 60px; height: 60px; margin-bottom: 12px; }
  .social-section { padding: 75px 0 65px; }
  .section-heading--social p { display: none; }
  .social-card { min-height: 155px; padding: 21px; grid-template-columns: auto 1fr; }
  .social-arrow { display: none; }
  .social-icon { width: 52px; height: 52px; border-radius: 15px; }
  footer { flex-wrap: wrap; }
  footer p { order: 3; width: 100%; margin: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
