/* TIRT — The International Reggae Train — Site Styles */
/* Streaming Platform Aesthetic — Netflix x Spotify x Network TV */

:root {
  --bg-primary: #0D0E12;
  --bg-surface: #161820;
  --bg-card: #1c1f29;
  --border: #2A2D3A;
  --red: #E50914;
  --red-bright: #ff1f2d;
  --gold: #FFB800;
  --gold-bright: #ffc94d;
  --green: #10B981;
  --green-bright: #34d399;
  --text-heading: #FFFFFF;
  --text-body: #E2E8F0;
  --text-muted: #94A3B8;
  --font-heading: 'Bebas Neue', 'Montserrat', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-body);
  line-height: 1.7;
  overflow-x: hidden;
  padding-bottom: 70px; /* space for sticky radio bar */
}

img {
  max-width: 100%;
  display: block;
}

/* ===== Navigation ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(13, 14, 18, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
  gap: 1rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 44px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  align-items: center;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--text-body);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-cta {
  background: var(--red);
  color: #fff !important;
  padding: 0.6rem 1.25rem;
  border-radius: 4px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-cta:hover {
  background: var(--red-bright);
  color: #fff !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-heading);
  font-size: 1.75rem;
  cursor: pointer;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  display: inline-block;
  animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ===== Hero ===== */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 2rem 3rem;
  background: radial-gradient(ellipse at top, rgba(229, 9, 20, 0.15) 0%, transparent 50%),
              radial-gradient(ellipse at bottom, rgba(255, 184, 0, 0.08) 0%, transparent 50%),
              var(--bg-primary);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.hero-logo {
  max-width: 420px;
  width: 100%;
  margin: 0 auto 2rem;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 7vw, 5rem);
  color: var(--text-heading);
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
  line-height: 1.05;
}

.hero .tagline {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

.hero .subheadline {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto 2rem;
}

.hero-badges {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: 1px solid var(--border);
  background: var(--bg-surface);
  color: var(--gold);
}

.badge-green {
  color: var(--green);
  border-color: var(--green);
}

.badge-red {
  color: var(--red);
  border-color: var(--red);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-red {
  background: var(--red);
  color: #fff;
}

.btn-red:hover {
  background: var(--red-bright);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(229, 9, 20, 0.35);
}

.btn-gold-outline {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
}

.btn-gold-outline:hover {
  background: var(--gold);
  color: var(--bg-primary);
  transform: translateY(-2px);
}

.btn-green {
  background: var(--green);
  color: #06231b;
}

.btn-green:hover {
  background: var(--green-bright);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.35);
}

.btn-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== Sections ===== */
.section {
  padding: 5rem 2rem;
  max-width: 1300px;
  margin: 0 auto;
}

.section-surface {
  background: var(--bg-surface);
}

.section-surface .section-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.section-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  text-align: center;
  margin-bottom: 0.5rem;
}

.section h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--text-heading);
  text-align: center;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.section h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
  letter-spacing: 0.5px;
}

.section .subtext {
  text-align: center;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto 3rem;
  font-size: 1.05rem;
}

.section p {
  color: var(--text-body);
  margin-bottom: 1rem;
}

/* ===== Card Grid (Ecosystem Pillars) ===== */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
}

.pillar-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.25rem 1.75rem;
  transition: transform 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}

.pillar-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
}

.pillar-card .pillar-icon {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  color: var(--red);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: block;
}

.pillar-card h3 {
  margin-bottom: 0.75rem;
}

.pillar-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.pillar-card a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pillar-card a:hover {
  color: var(--gold-bright);
}

/* ===== Video Banner ===== */
.video-banner {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  aspect-ratio: 16/9;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-banner img {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.play-btn-lg {
  position: relative;
  z-index: 2;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(229, 9, 20, 0.9);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.play-btn-lg:hover {
  transform: scale(1.1);
  background: var(--red-bright);
}

.play-btn-lg::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 24px solid #fff;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  margin-left: 4px;
}

.video-caption {
  text-align: center;
  margin-top: 1.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.video-caption h3 {
  text-align: center;
}

.video-caption p {
  color: var(--text-muted);
  text-align: center;
}

/* ===== Sticky Radio Bar ===== */
.radio-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  height: 70px;
  display: flex;
  align-items: center;
  padding: 0 1.5rem;
  gap: 1rem;
}

.radio-bar-inner {
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.radio-play-toggle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--red);
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 1rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.radio-play-toggle:hover {
  background: var(--red-bright);
}

.radio-info {
  flex: 1;
  min-width: 0;
}

.radio-info .station {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-heading);
  letter-spacing: 0.5px;
}

.radio-info .now-playing {
  font-size: 0.75rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.radio-live-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.equalizer {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 16px;
}

.equalizer span {
  width: 3px;
  background: var(--green);
  border-radius: 1px;
  animation: eq-bounce 0.8s infinite ease-in-out;
}

.equalizer span:nth-child(1) { height: 40%; animation-delay: 0s; }
.equalizer span:nth-child(2) { height: 100%; animation-delay: 0.2s; }
.equalizer span:nth-child(3) { height: 60%; animation-delay: 0.4s; }
.equalizer span:nth-child(4) { height: 80%; animation-delay: 0.1s; }

@keyframes eq-bounce {
  0%, 100% { transform: scaleY(0.4); }
  50% { transform: scaleY(1); }
}

/* ===== Newsletter ===== */
.newsletter {
  text-align: center;
  background: linear-gradient(135deg, rgba(229, 9, 20, 0.08), rgba(255, 184, 0, 0.08));
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 3.5rem 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.newsletter h2 {
  margin-bottom: 0.5rem;
}

.newsletter-form {
  display: flex;
  gap: 0.75rem;
  max-width: 460px;
  margin: 2rem auto 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-form input {
  flex: 1;
  min-width: 220px;
  padding: 0.85rem 1.25rem;
  border-radius: 4px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-heading);
  font-size: 0.95rem;
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--gold);
}

.newsletter .micro-copy {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* ===== Team / Roster Cards ===== */
.roster-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}

.roster-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  transition: border-color 0.2s ease;
}

.roster-card:hover {
  border-color: var(--gold);
}

.roster-card .roster-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--bg-primary);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.roster-card h3 {
  margin-bottom: 0.5rem;
}

.roster-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ===== Callout box ===== */
.callout-box {
  background: var(--bg-card);
  border: 1px solid var(--gold);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  max-width: 700px;
  margin: 3rem auto 0;
}

.callout-box h3 {
  text-align: center;
}

.callout-box p {
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 1.5rem;
}

/* ===== Gallery ===== */
.filter-tabs {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.filter-tab {
  padding: 0.6rem 1.25rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-tab:hover,
.filter-tab.active {
  border-color: var(--gold);
  color: var(--gold);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg-card);
  border: 1px solid var(--border);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease;
}

.gallery-item:hover {
  transform: scale(1.03);
}

.gallery-item .gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  padding: 1.5rem 1rem 0.75rem;
  color: var(--text-heading);
  font-size: 0.85rem;
  font-weight: 600;
}

.gallery-placeholder-icon {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--border);
}

/* ===== Press Grid ===== */
.press-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
}

.press-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  transition: border-color 0.2s ease;
}

.press-card:hover {
  border-color: var(--red);
}

.press-card .press-source {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
}

.press-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.press-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.press-card a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
}

/* ===== Media Kit / Downloads ===== */
.download-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.download-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-body);
  font-size: 0.9rem;
  font-weight: 600;
}

.download-item span.tag {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
}

/* ===== Contact Form ===== */
.contact-form {
  max-width: 650px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--text-heading);
  font-size: 1rem;
  font-family: var(--font-body);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  max-width: 900px;
  margin: 3rem auto 0;
}

.contact-detail-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
}

.contact-detail-card label {
  display: block;
  color: var(--text-muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.contact-detail-card a,
.contact-detail-card strong {
  color: var(--gold);
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
}

.social-channels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  max-width: 900px;
  margin: 2rem auto 0;
}

.social-channel-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.25rem;
  text-align: center;
  text-decoration: none;
  transition: border-color 0.2s ease;
}

.social-channel-card:hover {
  border-color: var(--gold);
}

.social-channel-card .platform {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
  margin-bottom: 0.3rem;
}

.social-channel-card .handle {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ===== Team acknowledgments ===== */
.ack-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 2rem auto 0;
  text-align: center;
}

.ack-item label {
  display: block;
  color: var(--text-muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.3rem;
}

.ack-item strong {
  color: var(--text-heading);
  font-size: 0.95rem;
}

/* ===== Segment Preview List ===== */
.segment-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.segment-item {
  background: var(--bg-card);
  border-left: 3px solid var(--red);
  border-radius: 0 8px 8px 0;
  padding: 1.25rem 1.5rem;
}

.segment-item .segment-num {
  color: var(--red);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.4rem;
  display: block;
}

.segment-item p {
  color: var(--text-body);
  font-size: 0.9rem;
  margin: 0;
}

/* ===== Cast Grid ===== */
.cast-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.cast-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
}

.cast-item label {
  display: block;
  color: var(--text-muted);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.4rem;
}

.cast-item strong {
  color: var(--gold);
  font-size: 1rem;
}

/* ===== Programming schedule table ===== */
.schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.schedule-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.75rem;
}

.schedule-block h4 {
  color: var(--gold);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.schedule-block ul {
  list-style: none;
}

.schedule-block li {
  color: var(--text-body);
  font-size: 0.9rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
}

.schedule-block li:last-child {
  border-bottom: none;
}

/* ===== Footer ===== */
.footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  padding: 3rem 2rem 2rem;
  text-align: center;
}

.footer-inner {
  max-width: 1300px;
  margin: 0 auto;
}

.footer-logo {
  height: 40px;
  margin: 0 auto 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.footer-social a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.footer-social a:hover {
  color: var(--gold);
}

.footer-tagline {
  color: var(--green);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.footer-copy {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--bg-primary);
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
    gap: 1.25rem;
    border-bottom: 1px solid var(--border);
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    max-height: 80vh;
    overflow-y: auto;
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .btn-group {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .section {
    padding: 3.5rem 1.5rem;
  }

  .section-surface .section-inner {
    padding: 3.5rem 1.5rem;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input {
    width: 100%;
  }

  .radio-info .now-playing {
    display: none;
  }
}

/* Fade-in on scroll */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
