*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  color:#f7f7f7;
  font-family:Arial,Helvetica,sans-serif;
  background:
    radial-gradient(circle at top left, rgba(210,0,20,.18), transparent 30%),
    linear-gradient(135deg,#07111f 0%, #0b0d12 45%, #151515 100%);
}
a{color:inherit}
header{
  position:sticky;
  top:0;
  z-index:50;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
  padding:22px 34px;
  background:rgba(5,7,10,.94);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.brand{
  text-decoration:none;
  font-weight:900;
  letter-spacing:1px;
  font-size:25px;
}
.brand span{color:#e50914}
nav{display:flex;gap:22px;flex-wrap:wrap;font-weight:900}
nav a{text-decoration:none;color:#ddd}
nav a:hover{color:#e50914}
.hero{
  min-height:74vh;
  display:flex;
  align-items:center;
  padding:70px 32px;
  background:
    linear-gradient(90deg, rgba(0,0,0,.82), rgba(0,0,0,.48)),
    repeating-linear-gradient(90deg, rgba(255,255,255,.04) 0 1px, transparent 1px 90px),
    linear-gradient(135deg,#16243a,#101010,#31040a);
}
.hero-box{
  max-width:900px;
  background:rgba(0,0,0,.36);
  border:1px solid rgba(255,255,255,.14);
  border-radius:22px;
  padding:40px;
  box-shadow:0 30px 90px rgba(0,0,0,.45);
}
.tag{
  color:#ff2430;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:4px;
  font-size:13px;
}
h1{
  font-size:clamp(46px,8vw,90px);
  line-height:.92;
  margin:12px 0;
  text-transform:uppercase;
}
h2{
  font-size:clamp(32px,5vw,58px);
  line-height:1;
  margin:10px 0 20px;
  text-transform:uppercase;
}
h3{font-size:32px;margin:0 0 10px}
p{color:#d8d8d8;font-size:19px;line-height:1.5}
.lead{max-width:780px}
.buttons{display:flex;gap:14px;flex-wrap:wrap;margin-top:24px}
.btn{
  display:inline-block;
  text-decoration:none;
  border-radius:999px;
  padding:16px 26px;
  font-weight:900;
  text-transform:uppercase;
}
.primary{background:#e50914;color:#fff}
.secondary{border:1px solid rgba(255,255,255,.75);background:rgba(255,255,255,.04)}
main{max-width:1120px;margin:auto;padding:54px 24px}
section{margin-bottom:54px}
.video-card{
  background:rgba(255,255,255,.055);
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  padding:24px;
  margin:22px 0;
  box-shadow:0 20px 60px rgba(0,0,0,.28);
}
.episode{
  color:#ff2430;
  text-transform:uppercase;
  letter-spacing:2px;
  font-weight:900;
  font-size:14px;
}
video{
  width:100%;
  border-radius:14px;
  margin-top:12px;
  background:#000;
}
.panel,.split,.contact{
  background:rgba(0,0,0,.35);
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  padding:30px;
}
.split,.contact{
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:24px;
  align-items:center;
}
input{
  width:100%;
  padding:16px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.18);
  background:#080808;
  color:#fff;
  font-size:16px;
  margin-bottom:12px;
}
button{
  width:100%;
  padding:16px;
  border:0;
  border-radius:10px;
  background:#e50914;
  color:#fff;
  font-weight:900;
  text-transform:uppercase;
}
.socials{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.socials a{
  display:inline-block;
  text-decoration:none;
  background:#101722;
  border:1px solid rgba(255,255,255,.13);
  border-radius:12px;
  padding:14px 18px;
  font-weight:900;
}
.music-small{
  max-width:760px;
  margin:30px auto 10px;
  padding:24px;
  border-radius:16px;
  background:rgba(255,255,255,.035);
  border:1px solid rgba(255,255,255,.1);
}
.music-small h2{
  font-size:32px;
}
.music-small p{
  font-size:16px;
}
.music-links{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.music-links a{
  text-decoration:none;
  padding:12px 18px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.15);
  background:#0f1722;
  font-weight:900;
}
footer{
  text-align:center;
  padding:36px;
  border-top:1px solid rgba(255,255,255,.08);
  background:#050505;
}
@media(max-width:760px){
  header{padding:20px 22px}
  .brand{font-size:23px}
  nav{gap:14px;font-size:15px}
  .hero{padding:34px 18px;min-height:68vh}
  .hero-box{padding:24px}
  .split,.contact{grid-template-columns:1fr}
  .btn{width:100%;text-align:center}
}
