* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background: url('https://wallpapercave.com/wp/wp6231030.jpg') no-repeat center center fixed;
  background-size: cover;
  font-family: 'Segoe UI', sans-serif;
  color: white;
  padding: 20px;
}
h1 {
  text-align: center;
  font-size: 2.5rem;
  color: #facc15;
  text-shadow: 0 0 10px #facc15;
  margin-top: 10px;
}
.thumb {
  display: block;
  margin: 20px auto;
  border-radius: 16px;
  max-width: 300px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}
.episode-list {
  margin: 30px auto;
  max-width: 500px;
  list-style: none;
  backdrop-filter: blur(8px);
}
.episode-list li {
  margin: 12px 0;
  display: flex;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.5);
  padding: 12px 18px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}
.watch-btn {
  background: linear-gradient(to right, #ff416c, #ff4b2b);
  padding: 6px 14px;
  border: none;
  color: white;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  transition: 0.3s;
}
.watch-btn:hover {
  transform: scale(1.05);
  background: linear-gradient(to right, #ff4b2b, #ff416c);
  box-shadow: 0 0 12px #ff4b2b;
}
.back-link {
  display: block;
  margin-top: 30px;
  text-align: center;
  color: #bbb;
  text-decoration: none;
  font-weight: bold;
}
.back-link:hover {
  color: #facc15;
  text-shadow: 0 0 5px #facc15;
}
