@font-face {
  font-family: 'Asimovian';
  src: url('assets/fonts/asimovian-regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #0e0e10;
  --surface: #18181b;
  --accent: #bec60e;
  --accent-hover: #d8e616;
  --text: #efeff1;
  --muted: #adadb8;
  --radius: 4px;
}

html, body {
  height: 100%;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 80% 60% at 50% 30%, rgba(190, 198, 14, 0.10), transparent 70%),
    radial-gradient(ellipse 60% 50% at 80% 80%, rgba(190, 198, 14, 0.06), transparent 70%),
    var(--bg);
  animation: bg-pulse 7s ease-in-out infinite;
}

@keyframes bg-pulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  body::before {
    animation: none;
  }
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Asimovian', 'Segoe UI', system-ui, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  padding: 2rem;
  width: 100%;
  text-align: center;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
  max-width: 900px;
  text-align: left;
}

.hero-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

@media (max-width: 720px) {
  main {
    padding: 1.25rem;
    gap: 2.25rem;
  }

  .hero {
    flex-direction: column-reverse;
    text-align: center;
  }

  .hero-text {
    align-items: center;
  }
}

.name {
  line-height: 0;
}

.hero-logo {
  width: clamp(180px, 32vw, 340px);
  height: auto;
  display: block;
}

.tagline {
  font-size: clamp(1.15rem, 2.6vw, 1.75rem);
  color: var(--text);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tagline + .tagline {
  font-size: clamp(0.9rem, 2vw, 1.2rem);
  color: var(--muted);
}

.hero-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.75rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius);
  transition: background 0.15s ease, color 0.15s ease;
}

.btn--primary {
  background-color: var(--accent);
  color: var(--bg);
}

.btn--primary:hover {
  background-color: var(--accent-hover);
}

.btn--outline {
  background-color: transparent;
  border: 2px solid var(--accent);
  color: var(--accent-hover);
}

.btn--outline:hover {
  background-color: var(--accent);
  color: var(--bg);
}

.schedule {
  width: 100%;
  max-width: 900px;
}

.schedule-title {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.25rem;
  text-align: center;
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(150px, 100%), 1fr));
  gap: 1rem;
}

.schedule-item {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  background-color: var(--surface);
  border-radius: var(--radius);
  padding: 1rem;
  border-top: 3px solid var(--accent);
}

.schedule-day {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.schedule-event {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

.schedule-time {
  font-size: 0.85rem;
  color: var(--muted);
}

.socials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(120px, 100%), 1fr));
  gap: 1.25rem;
  width: 100%;
  max-width: 900px;
}

.social-card {
  display: flex;
  flex-direction: column;
  background-color: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.social-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.social-card-img {
  width: 100%;
  aspect-ratio: 8 / 5;
  object-fit: cover;
  display: block;
}

.social-card-label {
  padding: 0.85rem 1rem;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
}

.promo {
  width: 100%;
  max-width: 900px;
}

.promo-banner {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.promo-banner-img {
  width: 100%;
  display: block;
}

.promo-banner-links {
  position: absolute;
  left: 7.5%;
  bottom: 16%;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.promo-btn {
  padding: 0.75rem 1.8rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius);
  background-color: var(--accent);
  color: var(--bg);
  transition: background 0.15s ease, color 0.15s ease;
}

.promo-btn:hover {
  background-color: var(--accent-hover);
}

.promo-btn--outline {
  background-color: rgba(14, 14, 16, 0.7);
  border: 2px solid var(--accent);
  color: var(--accent-hover);
}

.promo-btn--outline:hover {
  background-color: var(--accent);
  color: var(--bg);
}

@media (max-width: 600px) {
  .promo-banner-links {
    position: static;
    margin-top: 1rem;
    justify-content: center;
  }

  .promo-banner {
    overflow: visible;
  }
}

.live-section {
  display: none;
  width: 100%;
  max-width: 900px;
}

.live-section--live {
  display: block;
}

.live-badge {
  display: none;
}

.live-section--live .live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--bg);
  background-color: var(--accent);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
}

.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.live-player-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
}

.live-player-wrap iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}

.site-footer {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.5rem 2rem;
  font-size: 0.8rem;
}

.footer-link {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s ease;
}

.footer-link:hover {
  color: var(--text);
}



.legal-page {
  max-width: 680px;
  margin: 0 auto;
  padding: 3rem 2rem 6rem;
}

.legal-page .back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.85rem;
  margin-bottom: 2.5rem;
  transition: color 0.15s ease;
}

.legal-page .back-link:hover {
  color: var(--text);
}

.legal-page h1 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.legal-page h2 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

.legal-page p,
.legal-page address {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  font-style: normal;
}

.legal-page a {
  color: var(--accent);
  text-decoration: none;
}

.legal-page a:hover {
  text-decoration: underline;
}
