html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:Arial, sans-serif;
  background:#f2f4f7;
  color:#111;
}

.container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

/* TOPBAR */
.topbar{
  background:#0a0a0a;
  padding:8px 0;
  text-align:right;
}

.topbar a{
  color:#FFD501;
  text-decoration:none;
  font-size:14px;
}

/* NAVBAR */
.navbar{
  background:#0d1b2a;
  padding:15px 0;
  position:sticky;
  top:0;
  z-index:1000;
}

.nav-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.logo img{
  height:40px;
}

.navbar nav{
  display:flex;
  gap:30px;
}

.navbar nav a{
  color:#fff;
  text-decoration:none;
}

.btn-yellow{
  background:#FFD501;
  border:none;
  padding:12px 24px;
  font-weight:bold;
  border-radius:6px;
  cursor:pointer;
}

/* HERO */
.hero{
  background:#1b2a41;
  padding:120px 0 100px 0; /* ridotto padding bottom */
  color:#fff;
}

.hero-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:start; /* cambia allineamento */
}

.hero-left h1{
  font-size:56px;
  line-height:1.1;
  margin-bottom:25px;
}

.hero-left p{
  font-size:20px;
  margin-bottom:35px;
}

.hero-right{
  display:flex;
  flex-direction:column;
  gap:25px; /* spazio tra immagine e card */
}

.hero-image{
  width:100%;
  border-radius:14px;
  box-shadow:0 20px 50px rgba(0,0,0,0.4);
}

/* CARD ORA NORMALE (NON PIÙ ABSOLUTE) */
.hero-card{
  background:#fff;
  color:#000;
  padding:30px;
  border-radius:14px;
  box-shadow:0 20px 60px rgba(0,0,0,0.25);
}

.hero-card strong{
  display:block;
  font-size:14px;
  text-transform:uppercase;
  letter-spacing:1px;
  margin-bottom:10px;
  color:#555;
}

.hero-card h3{
  font-size:28px;
  line-height:1.25;
  margin-bottom:12px;

  word-break:break-word;
  overflow-wrap:anywhere;
}


.hero-card p{
  color:#555;
}

/* SECTIONS */
section{
  padding:100px 0;
}

h2{
  text-align:center;
  margin-bottom:60px;
  font-size:34px;
}

/* EPISODI */
.episodes-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(400px,1fr));
  gap:40px;
}

.episode-card{
  background:#fff;
  padding:30px;
  border-radius:16px;
  box-shadow:0 15px 40px rgba(0,0,0,0.1);
}

.episode-card h3{
  font-size:24px;
  margin-bottom:20px;
}

/* PLATFORM */
.platform-cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:25px;
}

.platform-card{
  padding:35px;
  border-radius:14px;
  text-align:center;
  color:#fff;
}

/* HOSTS */
.hosts-carousel{
  display:flex;
  gap:35px;
  overflow-x:auto;
}

.host-card{
  min-width:220px;
  text-align:center;
}

.host-card img{
  width:170px;
  height:170px;
  border-radius:50%;
  object-fit:cover;
  margin-bottom:15px;
}

/* FOOTER */
.footer{
  background:#0d1b2a;
  color:#fff;
  padding:40px 0;
  text-align:center;
}

/* MOBILE */
@media(max-width:900px){

  .hero-grid{
    grid-template-columns:1fr;
  }

  .hero{
    padding:100px 0 60px 0;
  }

  .navbar nav{
    display:none;
    flex-direction:column;
    position:absolute;
    top:70px;
    right:20px;
    background:#0d1b2a;
    padding:20px;
    border-radius:10px;
  }

  .navbar nav.active{
    display:flex;
  }

  .hamburger{
    display:flex;
    flex-direction:column;
    gap:5px;
  }

  .hamburger span{
    width:25px;
    height:3px;
    background:#fff;
  }

  .desktop-cta{
    display:none;
  }

}
