/* Paleta base */
:root {
  --primary: #e10600;
  --dark: #0f0f0f;
  --gray: #1b1b1f;
  --light: #f5f5f5;
  --text: #e8e8e8;
  --accent: #ff4d4d;
  --radius: 14px;
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
  background: rgba(15, 15, 15, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  height: 46px;
  width: auto;
}

.logo-text {
  font-size: 22px;
  font-weight: 700;
}

.slogan {
  margin: 0;
  color: #c9c9c9;
  font-size: 14px;
}

.main-nav {
  display: flex;
  gap: 18px;
  font-weight: 600;
}

.main-nav a {
  padding: 6px 10px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

.main-nav a:hover {
  color: var(--primary);
  background: rgba(255, 255, 255, 0.05);
}

.btn-live,
.btn-primary,
.btn-secondary,
.btn-share {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
}

.btn-live {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow);
}

.btn-live:hover,
.btn-primary:hover,
.btn-secondary:hover,
.btn-share:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}

.hero {
  position: relative;
  min-height: 75vh;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(15, 15, 15, 0.85), rgba(15, 15, 15, 0.5)), url('../images/hero.jpg') center/cover no-repeat;
}

.hero-slider-section {
  padding: 0;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 75vh;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-color: #0f0f0f;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.8s ease, transform 1s ease;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(225, 6, 0, 0.18), transparent 40%), radial-gradient(circle at 70% 40%, rgba(255, 77, 77, 0.2), transparent 40%), rgba(0, 0, 0, 0.45);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 30px;
}

.hero-tag {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(225, 6, 0, 0.12);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 3.8rem);
  margin: 12px 0;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: #d0d0d0;
  margin-bottom: 20px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.hero-dots {
  position: absolute;
  bottom: 24px;
  left: 0;
  right: 0;
  display: flex;
  gap: 8px;
  justify-content: center;
  z-index: 3;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: transparent;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.hero-dot.active {
  background: var(--primary);
  transform: scale(1.1);
}

main {
  padding: 40px 18px 120px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.section-header h2 {
  font-size: 1.8rem;
  margin: 0;
}

.section-header p {
  color: #c1c1c1;
  margin: 0;
}

.live-section {
  margin: 40px 0;
}

.live-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--gray);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.live-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-secondary {
  background: #fff;
  color: #111;
  min-width: 48px;
}

.btn-share {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

input[type="range"] {
  accent-color: var(--primary);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.schedule-calendar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.day-column {
  background: var(--gray);
  padding: 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.day-column.today {
  border-color: rgba(225, 6, 0, 0.55);
  box-shadow: 0 12px 32px rgba(225, 6, 0, 0.15);
}

.day-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
}

.pill {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(225, 6, 0, 0.18);
  color: #fff;
  font-size: 0.85rem;
}

.day-card {
  background: #13131a;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}

.day-card h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
}

.empty-slot {
  color: #9c9c9c;
  font-size: 0.95rem;
  margin: 0;
}

.card {
  background: var(--gray);
  padding: 18px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.card h3 {
  margin: 0 0 10px;
}

.schedule,
.eyebrow {
  color: #ffb3b3;
  font-weight: 700;
  letter-spacing: 0.2px;
  margin: 0 0 4px;
}

.about {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
  align-items: center;
  margin-top: 50px;
}

.about-content h2 {
  margin: 0 0 10px;
  font-size: 1.9rem;
}

.about-content p {
  color: #d2d2d2;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
}

.about-stats div {
  background: var(--gray);
  padding: 16px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
}

.about-stats strong {
  display: block;
  font-size: 1.6rem;
}

.player-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(12, 12, 14, 0.92);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  grid-template-columns: 1.8fr auto;
  align-items: center;
  gap: 18px;
  padding: 14px 20px;
  box-shadow: 0 -10px 32px rgba(0, 0, 0, 0.6);
  overflow: hidden;
  backdrop-filter: blur(12px);
}

.player-glow {
  position: absolute;
  inset: -40% auto auto -10%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(225, 6, 0, 0.25), transparent 60%);
  filter: blur(48px);
  pointer-events: none;
  animation: floatGlow 12s ease-in-out infinite alternate;
}

.player-info {
  display: flex;
  align-items: center;
  gap: 14px;
}

.player-logo {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(145deg, #1f1f25, #0f0f12);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.4), 0 0 0 3px rgba(225, 6, 0, 0.12);
  display: grid;
  place-items: center;
}

.player-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}

.logo-fallback {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #fff;
  background: linear-gradient(135deg, #ff4d4d, #e10600);
}

.player-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.player-info {
  position: relative;
}

.live-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 12px var(--primary);
}

.player-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-end;
}

.audio-visual {
  display: inline-flex;
  align-items: flex-end;
  gap: 3px;
  height: 22px;
  padding: 0 6px;
}

.audio-visual span {
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff4d4d, #e10600);
  display: block;
  animation: equalizer 1.2s ease-in-out infinite;
  opacity: 0.9;
}

.audio-visual span:nth-child(1) { animation-delay: 0s; }
.audio-visual span:nth-child(2) { animation-delay: 0.1s; }
.audio-visual span:nth-child(3) { animation-delay: 0.2s; }
.audio-visual span:nth-child(4) { animation-delay: 0.3s; }
.audio-visual span:nth-child(5) { animation-delay: 0.4s; }

.player-btn {
  position: relative;
  isolation: isolate;
  box-shadow: 0 8px 22px rgba(225, 6, 0, 0.35);
  background: linear-gradient(135deg, #fff, #ececec);
  color: #0f0f0f;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.player-btn::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 14px;
  background: radial-gradient(circle, rgba(225, 6, 0, 0.28), transparent 55%);
  z-index: -1;
  opacity: 0.8;
  animation: pulse 2.8s ease-in-out infinite;
}

.volume-wrap {
  width: 180px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.site-footer {
  margin-top: 60px;
  padding: 32px 18px 100px;
  background: #0b0b0d;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.footer-contact p {
  margin: 4px 0;
}

.site-footer h3 {
  margin-top: 0;
}

.footer-bottom {
  margin-top: 18px;
  color: #bdbdbd;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  color: var(--primary);
  font-weight: 700;
}

/* Responsive */
@media (max-width: 900px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .main-nav {
    flex-wrap: wrap;
  }

  .live-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .about {
    grid-template-columns: 1fr;
  }

  .player-bar {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .site-header {
    padding: 14px 18px;
  }

  main {
    padding: 30px 14px 110px;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding: 22px;
  }

  .volume-wrap {
    width: 100%;
  }
}

@keyframes pulse {
  0% { transform: scale(0.95); opacity: 0.9; }
  50% { transform: scale(1.05); opacity: 0.65; }
  100% { transform: scale(0.95); opacity: 0.9; }
}

@keyframes floatGlow {
  0% { transform: translateY(0); opacity: 0.5; }
  100% { transform: translateY(-16px); opacity: 0.7; }
}

@keyframes equalizer {
  0% { height: 6px; }
  25% { height: 18px; }
  50% { height: 10px; }
  75% { height: 20px; }
  100% { height: 8px; }
}
