* {
  margin: 0; padding: 0; box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}
body {
  background: linear-gradient(black, red);
  color: white;
  scroll-behavior: smooth;
}
header {
  background-color: #007BFF;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  color: white;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
.nav-center a, .nav-right a {
  margin: 0 10px;
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.3s;
}
.nav-center a:hover, .nav-right a:hover {
  transform: scale(1.1);
}
.poster-section {
  text-align: center;
  background-color: black;
  position: relative;
}
.poster-section img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  display: block;
}
.poster-title {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 36px;
  font-weight: bold;
  color: white;
  text-shadow: 2px 2px 5px black;
}
.watch-btn {
  margin: 20px auto;
  padding: 10px 20px;
  font-size: 18px;
  background-color: red;
  border: none;
  color: white;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.3s;
  display: block;
}
.watch-btn:hover {
  background-color: darkred;
}
.settings {
  position: relative;
  display: inline-block;
}
.settings-menu {
  display: none;
  position: absolute;
  left: 0;
  background: white;
  color: black;
  padding: 10px;
  border-radius: 6px;
}
.settings:hover .settings-menu {
  display: block;
}
.settings-menu a {
  display: block;
  text-decoration: none;
  color: black;
  margin-bottom: 5px;
}
#login-page {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(to bottom, #000, #222);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
#login-box {
  background: #fff;
  color: #000;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 15px #000;
  text-align: center;
}
#login-box input {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 6px;
}
#login-box button {
  padding: 10px 20px;
  background: #007BFF;
  border: none;
  color: white;
  border-radius: 6px;
  cursor: pointer;
}
.section {
  max-width: 900px;
  margin: 20px auto;
  padding: 20px;
  border-radius: 8px;
}
.info-section {
  background: rgba(0, 0, 0, 0.8);
}
.season-select {
  background: #0047b3;
}
.episodes-list {
  background: #b30000;
}
.episode {
  background: #fff;
  margin: 8px 0;
  padding: 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
  color: black;
}
.episode:hover {
  transform: scale(1.02);
  background: #f0f0f0;
}
.video-player {
  display: none;
  text-align: center;
}
video {
  width: 90%;
  max-width: 800px;
  margin: auto;
  border: 4px solid #007BFF;
  border-radius: 8px;
  box-shadow: 0 0 15px #000;
}
