* {
  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%;
  }

}
/* =========================================
   TVIMPACT.LIVE - STICKY TV AD
   ========================================= */

.sticky-tv-ad {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;

  width: 100%;
  min-height: 88px;

  z-index: 999999;

  background:
    linear-gradient(
      90deg,
      #080808 0%,
      #141414 50%,
      #080808 100%
    );

  border-top: 2px solid #ff6a00;

  box-shadow:
    0 -8px 30px rgba(0,0,0,.55);

  color: #fff;

  font-family: "Montserrat", sans-serif;

  animation: tvAdIn .45s ease-out;
}

@keyframes tvAdIn {
  from {
    transform: translateY(100%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}


.tv-ad-inner {
  width: min(1150px, calc(100% - 40px));

  min-height: 88px;

  margin: auto;

  display: flex;
  align-items: center;

  gap: 18px;

  position: relative;
}


/* LOGO TVIMPACT */

.tv-ad-brand {
  display: flex;
  align-items: center;

  gap: 10px;

  flex-shrink: 0;
}

.tv-ad-screen {
  width: 52px;
  height: 38px;

  display: flex;
  align-items: center;
  justify-content: center;

  background:
    linear-gradient(
      135deg,
      #ff8a00,
      #ff3d00
    );

  border-radius: 9px;

  font-size: 17px;
  font-weight: 800;

  box-shadow:
    0 0 18px rgba(255,90,0,.35);
}

.tv-ad-brand-text {
  display: flex;
  flex-direction: column;

  line-height: 1;
}

.tv-ad-brand-text strong {
  margin-top: 5px;

  font-size: 18px;
  font-weight: 800;
}

.tv-ad-brand-text strong span {
  color: #ff6a00;
}

.tv-ad-live {
  display: flex;
  align-items: center;

  gap: 5px;

  color: #ff6a00;

  font-size: 8px;
  font-weight: 800;

  letter-spacing: 1.2px;
}

.tv-ad-live i {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: #ff3030;

  display: block;

  animation: liveBlink 1.2s infinite;
}

@keyframes liveBlink {
  0%, 100% {
    opacity: 1;
  }

  50% {
    opacity: .35;
  }
}


/* CELE 3 CANALE */

.tv-ad-channels {
  flex: 1;

  display: flex;
  align-items: center;

  gap: 10px;
}

.tv-channel {
  flex: 1;

  min-height: 52px;

  display: flex;
  align-items: center;

  gap: 10px;

  padding: 8px 12px;

  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,.08),
      rgba(255,255,255,.025)
    );

  border: 1px solid rgba(255,255,255,.12);

  border-radius: 10px;

  color: #fff !important;

  text-decoration: none !important;

  transition:
    transform .2s ease,
    border-color .2s ease,
    background .2s ease;
}

.tv-channel:hover {
  transform: translateY(-3px);

  background:
    linear-gradient(
      135deg,
      rgba(255,106,0,.18),
      rgba(255,255,255,.05)
    );

  border-color: rgba(255,106,0,.65);
}

.channel-icon {
  width: 34px;
  height: 34px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  background: rgba(255,106,0,.15);

  border-radius: 8px;

  font-size: 17px;
}

.channel-info {
  display: flex;
  flex-direction: column;

  min-width: 0;
}

.tv-channel strong {
  font-size: 11px;
  font-weight: 800;

  white-space: nowrap;
}

.tv-channel small {
  margin-top: 4px;

  color: #ff4747;

  font-size: 8px;
  font-weight: 800;

  letter-spacing: .8px;
}


/* BUTON */

.tv-ad-cta {
  flex-shrink: 0;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 44px;

  padding: 0 18px;

  border-radius: 30px;

  background:
    linear-gradient(
      135deg,
      #ff8500,
      #ff4500
    );

  color: #fff !important;

  text-decoration: none !important;

  font-size: 10px;
  font-weight: 800;

  white-space: nowrap;

  box-shadow:
    0 5px 20px rgba(255,80,0,.25);

  transition: .2s;
}

.tv-ad-cta:hover {
  transform: translateY(-2px);

  box-shadow:
    0 8px 25px rgba(255,80,0,.45);
}


/* X */

.tv-ad-close {
  position: absolute;

  right: -12px;
  top: -10px;

  width: 25px;
  height: 25px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0;

  border: 1px solid rgba(255,255,255,.15);

  border-radius: 50%;

  background: #202020;

  color: #fff;

  font-size: 17px;
  line-height: 1;

  cursor: pointer;

  z-index: 5;
}

.tv-ad-close:hover {
  background: #ff4d00;
}


/* =========================================
   TABLET
   ========================================= */

@media (max-width: 900px) {

  .tv-ad-inner {
    width: calc(100% - 30px);
    gap: 10px;
  }

  .tv-ad-brand-text strong {
    font-size: 15px;
  }

  .tv-ad-screen {
    width: 42px;
    height: 34px;
  }

  .tv-channel {
    padding: 7px;
  }

  .channel-icon {
    width: 30px;
    height: 30px;
  }

  .tv-channel strong {
    font-size: 9px;
  }

  .tv-ad-cta {
    padding: 0 12px;
  }

}


/* =========================================
   TELEFON
   ========================================= */

@media (max-width: 650px) {

  .sticky-tv-ad {
    min-height: 68px;
  }

  .tv-ad-inner {
    width: calc(100% - 20px);

    min-height: 68px;

    gap: 8px;
  }

  .tv-ad-screen {
    width: 38px;
    height: 30px;

    font-size: 13px;
  }

  .tv-ad-brand {
    gap: 7px;
  }

  .tv-ad-brand-text strong {
    font-size: 13px;
  }

  .tv-ad-live {
    font-size: 7px;
  }

  .tv-ad-channels {
    display: none;
  }

  .tv-ad-cta {
    margin-left: auto;

    min-height: 38px;

    padding: 0 12px;

    font-size: 9px;
  }

  .tv-ad-close {
    right: -5px;
    top: -8px;

    width: 21px;
    height: 21px;

    font-size: 14px;
  }

}
/* CARD UNIC - RADIO PETRECERE */

.radio-grid-single {
  grid-template-columns: 1fr;
  max-width: 600px;
  margin: 0 auto;
}

