@charset "UTF-8";
/* CSS Document */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 20px;
  padding-top: 30px;
  background: #111;
  color: #eee;
}


nav {
  width: 100%;
  background-color: rgba(0, 0, 0, 0); /* transparent */
  color: white;
  padding: 0.5rem 1.2rem; /* 🔼 smaller padding to bring it closer to top */
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  font-family:"Times New Roman", "serif"; 
}

.logo {
  flex: 1;
  font-weight:none;
  font-size: 1.4rem;
}

.close-button {
 position: absolute;
  top: 0.7rem;
  right: 30px;
  font-size: 1rem;
  color:white;
  text-decoration: none;
  z-index: 1100;
  user-select: none;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close-button:hover {
  color:white;
}


.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 ratio */
  height: 0;
  overflow: hidden;
  margin-bottom: 0px;
  margin-top: 20px;
}



.video-container video {
  position:absolute;
  top: 0; left: 0;
  width: 100%;
  height: 91%;
}

.synopsis {
  max-width: 1200px;
  margin: 0 auto 0px auto;
  font-size: 1.2rem;
  line-height: 1.5;
}

.synopsis .year {
  font-weight: bold;
  margin-top: 10px;
  color: #ccc;
  font-size: 2rem;
}

