*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Inter',sans-serif;
  background:black;
  color:white;
}

/* BACKGROUND */
.bg-collage{
  position:fixed;
  inset:0;
  background:url("images/collage.jpeg") center/cover no-repeat;
  filter:brightness(0.35);
  z-index:-3;
}

.film-grain{
  position:fixed;
  inset:0;
  background:url("images/grain.png");
  opacity:0.08;
  pointer-events:none;
  z-index:-2;
}

/* WHO'S WATCHING */
.who{
  height:100vh;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:40px;
}

.who h1{
  font-size:38px;
  font-weight:400;
}

.profile{
  text-align:center;
  cursor:pointer;
}

.profile img{
  width:160px;
  height:160px;
  border-radius:8px;
  object-fit:cover;
  box-shadow:0 0 28px rgba(176,0,32,0.7);
}

.profile p{
  margin-top:15px;
  font-size:18px;
}

/* APP */
.hidden{ display:none; }

/* HEADER */
header{
  padding:30px 50px;
}

.logo{
  font-size:42px;
  font-weight:700;
  letter-spacing:4px;
  color:#b00020;
  animation:logoGlow 5s ease-in-out infinite;
}

@keyframes logoGlow{
  0%{ text-shadow:0 0 35px rgba(176,0,32,1); }
  50%{ text-shadow:0 0 6px rgba(176,0,32,0.4); }
  100%{ text-shadow:0 0 35px rgba(176,0,32,1); }
}

/* SERIES HERO */
.series-hero{
  display:flex;
  align-items:center;
  gap:40px;
  padding:60px;
}

.series-poster{
  width:260px;
  border-radius:12px;
  box-shadow:0 0 35px rgba(0,0,0,0.8);
}

.series-info h2{
  font-size:42px;
  font-family:'Playfair Display',serif;
}

.tagline{
  margin-top:12px;
  font-size:18px;
  opacity:0.85;
}

/* EPISODES */
.episodes{
  padding:40px 60px;
  display:grid;
  gap:22px;
}

.episode{
  padding:22px 26px;
  font-size:20px;
  background:rgba(0,0,0,0.6);
  border-left:4px solid #b00020;
  cursor:pointer;
}

.episode:hover{
  background:rgba(176,0,32,0.25);
  transform:translateX(8px);
}

/* VIDEO */
#player{
  width:85%;
  display:none;
  margin:40px auto;
  border-radius:12px;
}

/* FINAL NOTE */
.final-note{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.95);
  display:none;
  justify-content:center;
  align-items:center;
  text-align:center;
  font-family:'Playfair Display',serif;
  font-size:30px;
  line-height:1.9;
  color:#e50914;
  padding:40px;
}

.final-bold{
  font-size:36px;
  font-weight:700;
  text-shadow:0 0 25px rgba(229,9,20,0.9);
}
/* Subtle slow zoom on series poster */
.series-poster{
  animation: slowZoom 18s ease-in-out infinite;
}

@keyframes slowZoom{
  0%   { transform: scale(1); }
  50%  { transform: scale(1.04); }
  100% { transform: scale(1); }
}
/* Cinematic vignette */
body::after{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background:radial-gradient(
    ellipse at center,
    rgba(0,0,0,0) 45%,
    rgba(0,0,0,0.65) 100%
  );
  z-index:5;
}
