* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: "Montserrat", sans-serif;
  color: #fff;
  background:
    linear-gradient(
      135deg,
      rgba(255, 115, 0, .86),
      rgba(205, 20, 55, .82)
    ),
    url("/images/radio-impact.jpg") center/cover fixed no-repeat;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(
      circle at top right,
      rgba(255, 230, 80, .25),
      transparent 35%
    );
  pointer-events: none;
  z-index: -1;
}


/* HEADER */

.site-header {
  position: relative;
  z-index: 100;
  background: rgba(10, 5, 5, .72);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.header-inner {
  max-width: 1200px;
  margin: auto;
  min-height: 76px;
  padding: 0 24px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo,
.footer-logo {
  color: #fff;
  text-decoration: none;
  font-family: "Pacifico", cursive;
  font-size: 2.2rem;
  text-shadow:
    0 3px 15px rgba(255, 174, 0, .9);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.main-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: .9rem;
  transition: .25s;
}

.main-nav a:hover,
.main-nav a.active {
  color: #ffd740;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}


/* HERO */

.hero {
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 70px 20px;
}

.hero-content {
  max-width: 850px;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.2);

  padding: 9px 16px;
  border-radius: 30px;

  font-size: .8rem;
  font-weight: 800;
  letter-spacing: 1px;

  margin-bottom: 22px;
}

.live-dot {
  width: 9px;
  height: 9px;
  background: #ff1744;
  border-radius: 50%;
  display: inline-block;

  box-shadow: 0 0 10px #ff1744;

  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .45;
    transform: scale(.75);
  }
}

.hero h1 {
  font-family: "Pacifico", cursive;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.15;

  text-shadow:
    0 5px 20px rgba(0,0,0,.55),
    0 0 25px rgba(255,193,7,.5);
}

.hero-description {
  max-width: 720px;
  margin: 25px auto 30px;

  font-size: 1.15rem;
  line-height: 1.8;

  color: #fff8dc;
}

.hero-button {
  display: inline-block;

  padding: 15px 28px;

  color: #3d1600;
  background: #ffd54f;

  border-radius: 50px;

  text-decoration: none;
  font-weight: 800;

  box-shadow:
    0 8px 30px rgba(0,0,0,.3),
    0 0 20px rgba(255,213,79,.4);

  transition: .25s;
}

.hero-button:hover {
  transform: translateY(-3px);
  background: #fff176;
}


/* SECTIONS */

.player-section,
.seo-section,
.faq-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 70px 20px;
}

.section-heading {
  text-align: center;
  margin-bottom: 40px;
}

.section-heading > span {
  font-size: 2rem;
}

.section-heading h2,
.seo-section h2,
.faq-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin: 8px 0 12px;
}

.section-heading p {
  color: #ffecc0;
}


/* RADIO CARDS */

.radio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.radio-card {
  display: flex;
  flex-direction: column;

  background: rgba(15, 7, 7, .55);

  border: 1px solid rgba(255,255,255,.13);

  border-radius: 20px;

  padding: 25px;

  box-shadow:
    0 15px 40px rgba(0,0,0,.25);

  backdrop-filter: blur(12px);

  transition: .3s;
}

.radio-card:hover {
  transform: translateY(-7px);

  border-color: rgba(255,213,79,.5);

  box-shadow:
    0 20px 45px rgba(0,0,0,.35),
    0 0 25px rgba(255,174,0,.15);
}

.radio-icon {
  font-size: 2.6rem;
  margin-bottom: 12px;
}

.radio-card h3 {
  font-size: 1.45rem;
  margin-bottom: 8px;
}

.radio-card p {
  color: #ffeac2;
  font-size: .9rem;
  line-height: 1.6;
  margin-bottom: 18px;
}

.radio-player {
  width: 100%;
  margin-bottom: 15px;
}

.external-player {
  display: inline-block;

  color: #ffd54f;
  text-decoration: none;
  font-size: .85rem;
  font-weight: 800;
}

.external-player:hover {
  color: #fff;
}


/* SEO CONTENT */

.seo-section {
  background: rgba(10,5,5,.35);
  max-width: none;
}

.content-container {
  max-width: 900px;
  margin: auto;
}

.seo-section h2 {
  margin-top: 35px;
}

.seo-section h2:first-child {
  margin-top: 0;
}

.seo-section p {
  color: #fff4dc;
  line-height: 1.9;
  margin-bottom: 18px;
}

.seo-section a {
  color: #ffe16b;
  font-weight: 700;
}


/* FAQ */

.faq-section {
  max-width: 900px;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 30px;
}

.faq-section details {
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.12);

  border-radius: 12px;

  margin-bottom: 12px;
  padding: 18px 20px;
}

.faq-section summary {
  cursor: pointer;
  font-weight: 800;
}

.faq-section details p {
  color: #ffecc8;
  line-height: 1.7;
  padding-top: 14px;
}


/* FOOTER */

.site-footer {
  background: rgba(7,3,3,.8);
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 45px 20px 110px;
}

.footer-inner {
  max-width: 1100px;
  margin: auto;

  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.footer-logo {
  font-size: 1.8rem;
}

.footer-inner p {
  color: #ffdca3;
  margin-top: 7px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-content: flex-start;
  justify-content: flex-end;
}

.footer-links a {
  color: #ffe6a8;
  text-decoration: none;
  font-size: .85rem;
}

.footer-links a:hover {
  color: #fff;
}

.copyright {
  text-align: center;
  margin-top: 35px;
  color: #cbb99a;
  font-size: .8rem;
}


/* STICKY PLAYER */

.sticky-player {
  position: fixed;
  z-index: 9999;

  bottom: 15px;
  left: 50%;

  transform: translateX(-50%);

  width: min(94%, 650px);

  display: flex;
  align-items: center;
  gap: 15px;

  padding: 12px 15px;

  background: rgba(20,8,5,.88);

  border: 1px solid rgba(255,213,79,.35);

  border-radius: 50px;

  box-shadow:
    0 12px 40px rgba(0,0,0,.45),
    0 0 25px rgba(255,145,0,.15);

  backdrop-filter: blur(15px);
}

.sticky-info {
  min-width: 130px;

  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sticky-live {
  display: flex;
  align-items: center;
  gap: 6px;

  color: #ffcf40;
  font-size: .7rem;
  font-weight: 800;
}

.sticky-live .live-dot {
  width: 7px;
  height: 7px;
}

#nowPlaying {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: .85rem;
}

#mainPlayer {
  width: 100%;
}


/* MOBILE */

@media (max-width: 900px) {

  .radio-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: auto;
  }

  .main-nav {
    display: none;

    position: absolute;
    top: 76px;
    left: 0;
    right: 0;

    background: rgba(15,5,5,.97);

    padding: 20px;

    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav.open {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

}

@media (max-width: 600px) {

  .header-inner {
    min-height: 65px;
  }

  .logo {
    font-size: 1.8rem;
  }

  .hero {
    min-height: 480px;
    padding-top: 40px;
  }

  .hero-description {
    font-size: 1rem;
    line-height: 1.6;
  }

  .player-section,
  .seo-section,
  .faq-section {
    padding: 50px 16px;
  }

  .footer-inner {
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .sticky-player {
    bottom: 8px;
    border-radius: 20px;
    flex-direction: column;
    align-items: stretch;
  }

  .sticky-info {
    min-width: 0;
  }

  #mainPlayer {
    width: 100%;
  }

}
