body { 
  margin:0;
  font-family: "Trebuchet MS", sans-serif;
  background-image: url("https://i.pinimg.com/736x/48/66/75/4866758e3bb7431045eaa98e0c0f31d3.jpg");
  background-size: cover;
  background-position: center;
  background-attachment:fixed;
  color: white;
} 

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

.hero {
  text-align: center;
  margin-bottom: 60px;
}

.hero h1 {
  font-size: 70px;
  letter-spacing: 4px;
  color:#FFD56B;
  text-shadow:0 0 18px rgba(255,213,107,.6);
}

.hero p {
  font-size: 22px;
  color: #f3e6b5;
  font-style: italic;
}

.cinema-screen {
  background: #f8f5ee;
  color: #111;
  padding: 45px;
  border-radius: 12px;
  border: 12px solid #2c2c2c;
  box-shadow: 0 0 30px rgba(0,0,0,.45);
  text-align: center;
  margin-bottom: 70px;
}

.cinema-screen h2 { 
  font-size:40px;
  margin-top:0;
  color:#a00000;
  letter-spacing:2px;
}

.cinema-screen p { 
  font-size: 20px;
  line-height: 1.8;
  max-width: 700px;
  margin: 25px auto 0 auto;
  color: #444;
  font-style: italic;
}

.movie-grid {
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:35px;
}

.poster {
  background:#151515;
  border:5px solid #FFD56B;
  border-radius:10px;
  overflow:hidden;
  transition:.35s;
  cursor:pointer;
}

.poster:hover {
  transform:scale(1.05);
  box-shadow: 0 0 35px rgba(255, 213, 107, .5);
}

.poster img{
  width:100%;
  height:280px;
  object-fit:cover;
  display:block;
}

.poster h3{
  margin:0;
  padding:18px;
  text-align:center;
  background:#2c2c2c;
  color:#FFD56B;
  font-size: 24px; 
}

.footer {
  margin-top:70px;
  text-align:center;
}

.back-button {
  text-decoration:none;
  background:#a00000;
  padding:15px 35px;
  border-radius:30px;
  color:white;
  font-weight:bold;
  transition:.3s;
}

.back-button:hover{
  background:#FFD56B;
  color:black;
}

.watch-button {
  display:block;
  text-align:center;
  background:#a00000;
  color:white;
  padding:12px;
  cursor:pointer;
  font-weight:bold;
  transition:.3s;
}

.watch-button:hover{
  background:#FFD56B;
  color:black;
}

.poster input{
  display: none;
}

.poster-details { 
  max-height: 0px; 
  overflow: hidden; 
  background: #fffaf2;
  color: #222; 
  transition: .5s; 
  padding: 0 20px;
} 

.poster input:checked ~ .poster-details{
  max-height:1000px;
  padding:20px;
}

.anime{
  margin: 20px 0;
}

.anime h4 {
  color:#a00000;
  font-size:22px;
  margin-bottom:10px;
}

.anime p {
  line-height:1.8;
  font-size:17px;
}

.poster-details hr{
  border:none;
  border-top:1px solid #d8c9a5;
  margin:25px 0;
}