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

body{
  background:#050505;
  color:#f5e6c8;
  font-family:'Inter', sans-serif;
}

.header{
  position:fixed;
  width:100%;
  top:0;
  left:0;
  padding:24px 60px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  z-index:1000;
  background:rgba(0,0,0,0.7);
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(255,120,0,0.15);
}

.logo h1{
  font-family:'Orbitron', sans-serif;
  font-size:28px;
  letter-spacing:3px;
}

.logo span{
  color:#b88f52;
  font-size:12px;
}

nav{
  display:flex;
  gap:32px;
}

nav a{
  color:#f5e6c8;
  text-decoration:none;
  text-transform:uppercase;
  font-size:14px;
  letter-spacing:2px;
}

.hero{
  height:100vh;
  position:relative;
  overflow:hidden;
}

.hero-image{
  width:100%;
  height:100%;
  object-fit:cover;
  filter:brightness(0.45);
}

.overlay{
  position:absolute;
  inset:0;
  background:
  linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.2));
  z-index:1;
}

.hero-content{
  position:absolute;
  top:50%;
  left:7%;
  transform:translateY(-50%);
  z-index:2;
  max-width:520px;
}

.live-dot{
  color:#ff2d2d;
  margin-bottom:18px;
  letter-spacing:3px;
}

.hero h2{
  font-size:86px;
  line-height:0.9;
  margin-bottom:28px;
  font-family:'Orbitron', sans-serif;
}

.hero-text{
  color:#d1c2a6;
  line-height:1.7;
  margin-bottom:34px;
  font-size:18px;
}

.button{
  display:inline-block;
  padding:18px 34px;
  border:1px solid #ff5e00;
  color:#ff5e00;
  text-decoration:none;
  text-transform:uppercase;
  letter-spacing:2px;
  transition:0.3s;
}

.button:hover{
  background:#ff5e00;
  color:black;
}

.live-section,
.playlist-section,
.podcast-section{
  padding:120px 7%;
}

.section-title{
  margin-bottom:40px;
}

.section-title h3{
  font-size:34px;
  font-family:'Orbitron', sans-serif;
}

.live-grid{
  display:grid;
  grid-template-columns:2fr 1fr;
  gap:30px;
}

.video-card iframe{
  width:100%;
  height:500px;
  border:none;
  border-radius:14px;
}

.about-card,
.playlist-card,
.podcast-card{
  border:1px solid rgba(255,120,0,0.15);
  padding:30px;
  border-radius:18px;
  background:rgba(255,255,255,0.02);
}

.about-card h4,
.playlist-card h4,
.podcast-card h4{
  margin-bottom:18px;
  font-size:24px;
}

.about-card p{
  margin-bottom:18px;
  line-height:1.7;
  color:#ccb998;
}

.playlist-grid,
.podcast-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(240px,1fr));
  gap:24px;
}

.playlist-card{
  min-height:220px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  background:
  linear-gradient(180deg, rgba(255,94,0,0.05), rgba(0,0,0,0.6));
}

.playlist-card a,
.podcast-card a{
  color:#ff7a1a;
  text-decoration:none;
}

.footer{
  padding:50px 7%;
  border-top:1px solid rgba(255,255,255,0.08);
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:20px;
}

.socials{
  display:flex;
  gap:24px;
}

.socials a{
  color:#f5e6c8;
  text-decoration:none;
}

@media(max-width:900px){

  .header{
    padding:20px;
    flex-direction:column;
    gap:18px;
  }

  nav{
    gap:18px;
    flex-wrap:wrap;
    justify-content:center;
  }

  .hero h2{
    font-size:52px;
  }

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

  .video-card iframe{
    height:320px;
  }

}
