
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  background:#070707;
  color:white;
  font-family:Inter,sans-serif;
  overflow-x:hidden;
}

img{
  width:100%;
  display:block;
}

button{
  font-family:Inter,sans-serif;
  -webkit-touch-callout:none;
  -webkit-user-select:none;
  user-select:none;
  min-height:44px;
}

.container{
  width:92%;
  max-width:1400px;
  margin:auto;
}

header{
  position:fixed;
  width:100%;
  top:0;
  z-index:1000;
  padding:16px 0;
  background:linear-gradient(to bottom, rgba(0,0,0,.95), transparent);
}

nav{
  display:flex;
  justify-content:flex-start;
  align-items:center;
  gap:12px;
}

.logo{
  font-size:30px;
  font-weight:800;
  color:#e50914;
  letter-spacing:-1px;
}

.hero{
  min-height:100vh;
  display:flex;
  align-items:center;
  background:
  linear-gradient(to right, rgba(0,0,0,.94), rgba(0,0,0,.35)),
  url('https://images.unsplash.com/photo-1489599849927-2ee91cede3ba?q=80&w=1800&auto=format&fit=crop');
  background-size:cover;
  background-position:center;
  padding-top:100px;
}

.hero-content{
  max-width:700px;
}

.hero-tag{
  color:#e50914;
  font-weight:700;
  letter-spacing:2px;
  margin-bottom:16px;
}

.hero h1{
  font-size:76px;
  line-height:0.95;
  margin-bottom:22px;
}

.hero p{
  font-size:18px;
  line-height:1.8;
  color:#d0d0d0;
  margin-bottom:34px;
}

.hero-buttons{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}

.btn{
  border:none;
  padding:16px 28px;
  border-radius:10px;
  cursor:pointer;
  font-weight:700;
  font-size:16px;
  transition:.2s ease;
  min-height:48px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.btn:active{
  transform:scale(0.98);
  opacity:0.9;
}

.btn-primary{
  background:#e50914;
  color:white;
}

.btn-secondary{
  background:rgba(255,255,255,.12);
  color:white;
  backdrop-filter:blur(10px);
}

section{
  padding:80px 0;
}

.section-title{
  font-size:34px;
  margin-bottom:34px;
}

.episodes-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:24px;
}

.episode-card{
  background:#121212;
  border-radius:18px;
  overflow:hidden;
  transition:.3s;
  border:1px solid rgba(255,255,255,.06);
}

.episode-card:hover{
  transform:translateY(-8px);
}

.episode-thumb{
  height:220px;
  object-fit:cover;
}

.episode-info{
  padding:20px;
}

.episode-title{
  font-size:21px;
  font-weight:700;
  margin-bottom:10px;
}

.episode-desc{
  color:#aaa;
  line-height:1.6;
  margin-bottom:18px;
}

.watch-btn{
  width:100%;
  background:#e50914;
  color:white;
  border:none;
  padding:14px;
  border-radius:10px;
  cursor:pointer;
  font-weight:700;
  font-size:15px;
  transition:.2s ease;
  min-height:44px;
}

.watch-btn:active{
  transform:scale(0.98);
  opacity:0.9;
}

nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
}

.nav-links{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}

.nav-links a{
  color:white;
  text-decoration:none;
  font-weight:600;
  opacity:.9;
  transition:.2s ease;
}

.nav-links a:hover{
  opacity:1;
}

.episode-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:16px;
}

.episode-link{
  flex:1;
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:14px;
  border-radius:10px;
  background:rgba(255,255,255,.08);
  color:white;
  text-decoration:none;
  font-weight:700;
  transition:.2s ease;
}

.episode-link:hover{
  background:rgba(255,255,255,.16);
}

.articles-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:22px;
}

.article-card{
  display:block;
  border-radius:20px;
  padding:28px;
  background:#121212;
  border:1px solid rgba(255,255,255,.08);
  transition:.25s ease;
  text-decoration:none;
  color:white;
}

.article-card:hover{
  transform:translateY(-6px);
  border-color:rgba(255,255,255,.18);
}

.article-title{
  font-size:22px;
  margin-bottom:10px;
}

.article-desc{
  color:#b8b8b8;
  line-height:1.75;
}

.cast-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:20px;
  margin-bottom:32px;
}

.cast-card{
  background:#121212;
  border-radius:18px;
  padding:24px;
  border:1px solid rgba(255,255,255,.08);
}

.cast-card h3{
  font-size:20px;
  margin-bottom:10px;
}

.cast-card p{
  color:#d0d0d0;
  line-height:1.7;
}

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:18px;
  margin-bottom:32px;
}

.gallery-item img{
  width:100%;
  height:auto;
  border-radius:18px;
  object-fit:cover;
}

.episode-player iframe{
  width:100%;
  min-height:520px;
  border:none;
  border-radius:20px;
}

.page-card{
  background:#121212;
  border-radius:20px;
  padding:28px;
  border:1px solid rgba(255,255,255,.08);
  margin-bottom:32px;
}

.page-card h2{
  font-size:32px;
  margin-bottom:18px;
}

.page-card p{
  color:#d0d0d0;
  line-height:1.8;
}

.hero-article .hero{
  min-height:60vh;
}

.hero-article .hero-content{
  max-width:850px;
}

.video-modal{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.95);
  z-index:9999;
  display:flex;
  justify-content:center;
  align-items:center;
  padding:20px;
}



.input-group{
  margin-bottom:18px;
}

.input-group input{
  width:100%;
  padding:16px;
  border:none;
  border-radius:10px;
  background:#1d1d1d;
  color:white;
  font-size:15px;
}

.submit-btn{
  width:100%;
  border:none;
  background:#e50914;
  color:white;
  padding:16px;
  border-radius:10px;
  font-weight:700;
  cursor:pointer;
}

.video-modal{
  display:none;
}

.video-box{
  width:100%;
  max-width:1200px;
  background:#111;
  border-radius:20px;
  overflow:hidden;
}

.video-header{
  padding:18px 22px;
  background:#191919;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.close-btn{
  background:none;
  border:none;
  color:white;
  font-size:24px;
  cursor:pointer;
  transition:.2s;
  padding:8px;
  min-height:44px;
  min-width:44px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.close-btn:active{
  opacity:0.7;
  transform:scale(0.95);
}

.player-wrapper{
  position:relative;
  width:100%;
  padding-top:56.25%;
  background:black;
}

.player-wrapper iframe{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
}

.video-overlay-top{
  position:absolute;
  top:0;
  left:0;
  right:0;
  padding:20px 24px;
  background:linear-gradient(to bottom, rgba(0,0,0,.8), transparent);
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  z-index:100;
}

.video-overlay-top h3{
  font-size:18px;
  font-weight:700;
  margin:0;
}

.video-overlay-bottom{
  position:absolute;
  bottom:0;
  left:0;
  right:0;
  padding:24px;
  background:linear-gradient(to top, rgba(0,0,0,.8), transparent);
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
  z-index:100;
}

.overlay-control-btn{
  border:none;
  padding:12px 18px;
  border-radius:8px;
  background:rgba(255,255,255,.15);
  color:white;
  cursor:pointer;
  font-weight:600;
  font-size:14px;
  backdrop-filter:blur(8px);
  transition:.2s;
  min-height:44px;
  min-width:44px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.overlay-control-btn:active{
  background:rgba(255,255,255,.35);
  transform:scale(0.98);
}

.overlay-control-btn:hover{
  background:rgba(255,255,255,.25);
}

.ad-box{
  margin:20px;
  padding:18px;
  text-align:center;
  border-radius:12px;
  border:1px dashed rgba(255,255,255,.08);
  color:#888;
  background:#0d0d0d;
}

footer{
  text-align:center;
  padding:40px 0;
  color:#777;
  border-top:1px solid rgba(255,255,255,.06);
}

@media(max-width:480px){

  .logo{
    font-size:24px;
    letter-spacing:-1.5px;
  }

  .hero{
    padding-top:100px;
    min-height:85vh;
  }

  .hero-content{
    max-width:100%;
  }

  .hero h1{
    font-size:38px;
    line-height:1;
    margin-bottom:14px;
  }

  .hero-tag{
    font-size:12px;
    letter-spacing:1px;
    margin-bottom:12px;
  }

  .hero p{
    font-size:14px;
    line-height:1.6;
    margin-bottom:22px;
  }

  .hero-buttons{
    gap:12px;
  }

  .btn{
    padding:12px 18px;
    font-size:13px;
    width:100%;
  }

  .section-title{
    font-size:24px;
    margin-bottom:20px;
  }

  section{
    padding:50px 0;
  }

  .episodes-grid{
    grid-template-columns:1fr;
    gap:16px;
  }

  .episode-thumb{
    height:180px;
  }

  .episode-info{
    padding:14px;
  }

  .episode-title{
    font-size:16px;
    margin-bottom:8px;
  }

  .episode-desc{
    font-size:13px;
    margin-bottom:12px;
  }

  .watch-btn{
    padding:10px;
    font-size:13px;
  }

  .video-modal{
    padding:0;
    align-items:flex-start;
  }

  .video-box{
    width:100%;
    max-width:100%;
    border-radius:0;
    height:100vh;
    display:flex;
    flex-direction:column;
  }

  .player-wrapper{
    padding-top:56.25%;
    flex:1;
  }

  .video-overlay-top{
    padding:12px 14px;
  }

  .video-overlay-top h3{
    font-size:14px;
  }

  .video-overlay-top div:first-child div:first-child{
    font-size:11px;
  }

  .close-btn{
    font-size:20px;
  }

  .video-overlay-bottom{
    padding:12px;
    gap:8px;
  }

  .overlay-control-btn{
    padding:8px 12px;
    font-size:12px;
  }

}

@media(max-width:768px){

  .logo{
    font-size:26px;
  }

  .hero{
    padding-top:110px;
    min-height:90vh;
  }

  .hero h1{
    font-size:48px;
  }

  .hero p{
    font-size:15px;
  }

  .section-title{
    font-size:28px;
  }

  .episodes-grid{
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  }

  .episode-thumb{
    height:200px;
  }

  .video-modal{
    padding:12px;
  }

  .video-box{
    border-radius:12px;
  }

}

@media(orientation:landscape) and (max-height:600px){

  header{
    padding:12px 0;
  }

  .logo{
    font-size:20px;
  }

  .hero{
    padding-top:60px;
    min-height:auto;
  }

  .hero h1{
    font-size:32px;
    margin-bottom:8px;
  }

  .hero-buttons{
    gap:8px;
  }

  .btn{
    padding:8px 14px;
    font-size:12px;
  }

  .video-modal{
    padding:0;
  }

  .video-box{
    width:100%;
    max-width:100%;
    height:100vh;
    border-radius:0;
  }

  .player-wrapper{
    padding-top:0;
    width:100%;
    height:100%;
  }

  .player-wrapper iframe{
    width:100%;
    height:100%;
  }

  .video-overlay-top{
    padding:8px 12px;
  }

  .video-overlay-top h3{
    font-size:12px;
  }

  .close-btn{
    font-size:18px;
  }

  .video-overlay-bottom{
    padding:8px;
    gap:6px;
  }

  .overlay-control-btn{
    padding:6px 10px;
    font-size:11px;
  }

}
