@font-face {
  font-family: "Syne";
  src: url("./Syne-Variable.ttf") format("truetype");
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Outfit";
  src: url("./Outfit-Variable.ttf") format("truetype");
  font-weight: 300 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #07070c;
  --bg-2: #101018;
  --ink: #f6f4f8;
  --muted: #a8a0b4;
  --line: rgba(255, 255, 255, 0.1);
  --magenta: #ff2d8a;
  --orange: #ff8a00;
  --gold: #ffd400;
  --cyan: #00c2ff;
  --violet: #7b2fff;
  --mint: #00e5a8;
  --wrap: min(1120px, calc(100% - 40px));
  --radius: 22px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Outfit", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.wrap { width: var(--wrap); margin: 0 auto; }

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.aurora {
  pointer-events: none;
  position: fixed;
  inset: -20% -10% auto;
  height: 70vh;
  z-index: 0;
  background:
    radial-gradient(40% 50% at 15% 30%, rgba(255, 45, 138, 0.28), transparent 70%),
    radial-gradient(35% 45% at 75% 20%, rgba(0, 194, 255, 0.22), transparent 70%),
    radial-gradient(30% 40% at 55% 55%, rgba(255, 138, 0, 0.16), transparent 70%);
  filter: blur(8px);
  animation: aurora-drift 14s ease-in-out infinite alternate;
}
@keyframes aurora-drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(-3%, 4%, 0) scale(1.05); }
}

.site-header, main, .site-footer { position: relative; z-index: 1; }

.site-header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(16px);
  background: rgba(7, 7, 12, 0.72);
  border-bottom: 1px solid var(--line);
  z-index: 20;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
}
.brand img { height: 36px; width: auto; }
.nav {
  display: flex;
  gap: 22px;
  font-size: 0.95rem;
  color: var(--muted);
}
.nav a:hover { color: #fff; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--magenta), var(--orange) 55%, var(--gold));
  color: #120810;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.25s ease, filter 0.25s ease;
}
.btn svg { width: 16px; height: 16px; }
.btn:hover { transform: translateY(-2px); filter: brightness(1.05); }
.btn-sm { min-height: 40px; padding: 0 16px; font-size: 0.9rem; }
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: 0 0 72px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.04);
  animation: hero-pan 18s ease-in-out infinite alternate;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7,7,12,0.35) 0%, rgba(7,7,12,0.55) 42%, rgba(7,7,12,0.96) 100%),
    linear-gradient(90deg, rgba(7,7,12,0.72) 0%, rgba(7,7,12,0.25) 55%, rgba(7,7,12,0.45) 100%);
}
@keyframes hero-pan {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to { transform: scale(1.1) translate3d(-2%, -1%, 0); }
}
.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 40rem;
  padding-top: 120px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 0.7, 0, 1);
}
.hero-copy.in { opacity: 1; transform: none; }
.hero-logo {
  width: min(260px, 70vw);
  height: auto;
  margin-bottom: 22px;
  filter: drop-shadow(0 10px 30px rgba(255, 45, 138, 0.35));
  animation: logo-glow 3.6s ease-in-out infinite;
}
@keyframes logo-glow {
  0%, 100% { filter: drop-shadow(0 8px 22px rgba(255, 45, 138, 0.28)); }
  50% { filter: drop-shadow(0 12px 36px rgba(0, 194, 255, 0.35)); }
}
.hero-copy h1 {
  font-family: "Syne", sans-serif;
  font-size: clamp(2.6rem, 5.4vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 800;
  margin-bottom: 16px;
}
.hero-copy h1 span {
  background: linear-gradient(100deg, var(--magenta), var(--orange), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lead {
  max-width: 34rem;
  color: #d7d0e0;
  font-size: 1.08rem;
  margin-bottom: 28px;
}
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; }

.sec { padding: 56px 0 72px; }
.sec-head {
  margin-bottom: 22px;
}
.sec-head h2 {
  font-family: "Syne", sans-serif;
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  letter-spacing: -0.02em;
}

.show-rail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.show {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.22, 0.7, 0, 1);
}
.show.in { opacity: 1; transform: none; }
.show:nth-child(2).in { transition-delay: 0.05s; }
.show:nth-child(3).in { transition-delay: 0.1s; }
.show:nth-child(4).in { transition-delay: 0.15s; }
.show:nth-child(5).in { transition-delay: 0.2s; }
.show:nth-child(6).in { transition-delay: 0.25s; }
.poster {
  display: block;
  aspect-ratio: 16 / 6;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #15151f;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.show:hover .poster {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 18px 40px rgba(255, 45, 138, 0.22);
}
.show h3 {
  font-size: 1rem;
  margin-bottom: 2px;
}
.show p { color: var(--muted); font-size: 0.86rem; }

.schedule { background: linear-gradient(180deg, transparent, rgba(255, 45, 138, 0.05), transparent); }
.sched-list {
  display: grid;
  gap: 10px;
}
.slot {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.22, 0.7, 0, 1), border-color 0.25s ease, background 0.25s ease;
}
.slot.in { opacity: 1; transform: none; }
.slot:hover {
  border-color: rgba(255, 45, 138, 0.45);
  background: rgba(255, 45, 138, 0.08);
}
.slot time {
  color: var(--gold);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.slot strong { font-size: 1.02rem; }
.slot span { color: var(--muted); font-size: 0.9rem; }

.video-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.vcard {
  position: relative;
  min-height: 180px;
  border-radius: var(--radius);
  overflow: hidden;
  display: block;
  border: 1px solid var(--line);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.22, 0.7, 0, 1), box-shadow 0.25s ease;
}
.vcard img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.v-body {
  position: relative;
  z-index: 1;
  min-height: 180px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(180deg, rgba(7,7,12,0.12), rgba(7,7,12,0.9));
}
.vcard.in { opacity: 1; transform: none; }
.vcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}
.v-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.9;
}
.vcard strong {
  font-family: "Syne", sans-serif;
  font-size: 1.05rem;
  line-height: 1.2;
  margin-top: 24px;
}
.vcard em { font-style: normal; font-weight: 700; opacity: 0.9; }

.about {
  padding-bottom: 96px;
}
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: start;
  padding: 36px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background:
    radial-gradient(60% 80% at 0% 0%, rgba(255,45,138,.16), transparent 60%),
    radial-gradient(50% 70% at 100% 100%, rgba(0,194,255,.12), transparent 55%),
    rgba(255,255,255,0.03);
}
.about h2 {
  font-family: "Syne", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 14px;
}
.about p { color: var(--muted); margin-bottom: 14px; max-width: 38rem; }
.about .muted { font-size: 0.95rem; }
.about .btn { margin-top: 8px; }
.regions {
  list-style: none;
  display: grid;
  gap: 10px;
}
.regions li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid var(--line);
}
.regions b { color: #fff; }
.regions span { color: var(--muted); font-size: 0.9rem; text-align: right; }

.site-footer {
  border-top: 1px solid var(--line);
  padding: 36px 0 48px;
}
.footer-inner {
  display: grid;
  gap: 18px;
  justify-items: start;
}
.footer-inner img { height: 36px; width: auto; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  color: var(--muted);
  font-size: 0.92rem;
}
.footer-links a:hover { color: #fff; }
.site-footer p {
  color: #6f677c;
  font-size: 0.86rem;
}

@media (max-width: 980px) {
  .show-rail { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .video-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  :root { --wrap: min(1120px, calc(100% - 28px)); }
  .hero { align-items: center; padding: 96px 0 48px; }
  .hero-copy { padding-top: 0; }
  .hero-copy h1 { font-size: 2.35rem; }
  .lead { font-size: 0.98rem; }
  .show-rail { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .video-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .vcard, .v-body { min-height: 140px; }
  .vcard strong { font-size: 0.92rem; }
  .cta-row .btn { width: 100%; }
}
