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

html {
  scroll-behavior: smooth;
}

body {
  background: #000;
  color: white;
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

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

.center {
  text-align: center;
}

h1, h2, h3 {
  font-family: 'Anton', sans-serif;
  letter-spacing: 2px;
}

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 100px 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.9)),
    url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?q=80&w=2000&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
}

.hero-content {
  width: 90%;
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero h1 {
  font-size: 7rem;
  line-height: 0.9;
  margin-bottom: 30px;
}

.hero p {
  font-size: 1.4rem;
  color: #ccc;
  max-width: 550px;
  line-height: 1.7;
}

.tag,
.section-tag {
  color: #ff7a00;
  letter-spacing: 4px;
  font-size: 0.85rem;
  margin-bottom: 20px;
}

.buttons {
  display: flex;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.btn {
  text-decoration: none;
  padding: 18px 34px;
  border-radius: 14px;
  font-weight: 700;
  transition: 0.3s;
}

.btn-primary {
  background: #ff7a00;
  color: black;
}

.btn-primary:hover {
  transform: translateY(-4px);
}

.btn-secondary {
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  background: rgba(255,255,255,0.05);
}


.hero-poster img {
  border-radius: 30px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.8);
}

section {
  padding: 120px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

h2 {
  font-size: 5rem;
  line-height: 0.95;
}

.about-text p,
.cta p {
  color: #b8b8b8;
  line-height: 1.9;
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.episodes {
  background: #090909;
}

.episode-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.episode-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: #111;
  transition: 0.4s;
}

.episode-card:hover {
  transform: translateY(-10px);
}

.episode-card img {
  height: 600px;
  width: 100%;
  object-fit: cover;
}

.episode-content {
  position: absolute;
  bottom: 0;
  padding: 35px;
  background: linear-gradient(to top, rgba(0,0,0,0.95), transparent);
  width: 100%;
}

.episode-content span {
  color: #ff7a00;
  font-size: 0.8rem;
  letter-spacing: 3px;
}

.episode-content h3 {
  font-size: 2rem;
  margin: 10px 0 15px;
}

.episode-content p {
  color: #ccc;
  line-height: 1.7;
  margin-bottom: 25px;
}

.episode-content button {
  background: #ff7a00;
  color: white;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 14px 22px;
  border-radius: 12px;
  cursor: pointer;
}
.episode-card {
  position: relative;
  overflow: hidden;
}

.episode-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.episode-card {
  position: relative;
  background: black;
  overflow: hidden;
  border:1px solid orange;
}

.episode-card video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.inmate-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.inmate-card {
  background: #0d0d0d;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 30px;
  padding: 40px;
}

.status {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 100px;
  font-size: 0.75rem;
  margin-bottom: 30px;
  font-weight: 700;
  letter-spacing: 2px;
}

.alive {
  background: rgba(0,255,100,0.15);
  color: #4dff94;
}

.missing {
  background: rgba(255,180,0,0.15);
  color: #ffc14d;
}

.eliminated {
  background: rgba(255,0,0,0.15);
  color: #ff6666;
}

.inmate-card h3 {
  font-size: 2rem;
}

.inmate-card h4 {
  color: #ff7a00;
  margin: 10px 0 25px;
  font-size: 1.2rem;
}

.inmate-card p {
  color: #b8b8b8;
  line-height: 1.8;
}

.trailer {
  background: #090909;
}

.trailer-box {
  position: relative;
  margin-top: 60px;
  border-radius: 30px;
  overflow: hidden;
}

.trailer-box img {
  width: 100%;
  opacity: 0.5;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: white;
  color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  cursor: pointer;
}

.cta h2 {
  font-size: 7rem;
  margin-bottom: 30px;
}

.big-btn {
  display: inline-block;
  margin-top: 30px;
}
.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.video-modal.active {
  display: flex;
}

.video-modal-content {
  position: relative;
  width: min(900px, 90vw);
  aspect-ratio: 16 / 9;
  background: black;
}

.video-modal-content video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.close-modal {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 32px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

@media(max-width: 1100px) {
  .hero-content,
  .split,
  .episode-grid,
  .inmate-grid {
    grid-template-columns: 1fr;
  }

  .hero h1,
  .cta h2 {
    font-size: 4.5rem;
  }

  h2 {
    font-size: 3.5rem;
  }
}

@media(max-width: 700px) {
  .hero h1,
  .cta h2 {
    font-size: 3.2rem;
  }

  h2 {
    font-size: 2.5rem;
  }

  .buttons {
    flex-direction: column;
  }

  .btn {
    text-align: center;
  }
}