/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }

/* Body */
body {
  font-family: Arial, sans-serif;
  background: #0d0d0d;
  color: white;
  min-height: 100vh;
}

/* Topbar */
.topbar {
  background: #ff69b4;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
}

.logo { font-size: 1.6em; font-weight: bold; letter-spacing: 2px; }

.topbar nav ul { list-style: none; display: flex; gap: 20px; }
.topbar nav ul li a {
  text-decoration: none;
  color: white;
  font-weight: bold;
  transition: 0.3s;
}
.topbar nav ul li a:hover,
.topbar nav ul li a.active {
  color: #ffe4f2;
  border-bottom: 2px solid white;
}

/* Hero (homepage) */
.hero {
  height: 100vh;
  background: linear-gradient(to bottom, rgba(255,20,147,0.7), rgba(0,0,0,0.9)),
              url('images/hero-bg.jpg') no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 100px 20px 20px;
}
.hero h1 {
  font-size: 4em;
  text-shadow: 0 0 15px rgba(255, 105, 180, 0.9);
}
.release { font-size: 1.4em; margin-bottom: 20px; }

/* Countdown */
.countdown {
  display: flex;
  gap: 20px;
  justify-content: center;
}
.countdown div {
  background: rgba(255,255,255,0.1);
  padding: 15px;
  border-radius: 10px;
}
.countdown span {
  font-size: 2em;
  color: #ff69b4;
  font-weight: bold;
}

/* Coming Soon Pages */
.coming {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to bottom, rgba(255,20,147,0.7), rgba(0,0,0,0.9)),
              url('images/coming-bg.jpg') no-repeat center center/cover;
  text-align: center;
  padding: 100px 20px 20px;
}
.coming h1 {
  font-size: 4em;
  color: #ff69b4;
  text-shadow: 0 0 20px #ff1493;
  animation: pulse 2s infinite;
}
.coming p { font-size: 1.2em; margin-top: 10px; }

/* Footer */
footer {
  background: #111;
  text-align: center;
  padding: 20px;
  font-size: 0.9em;
  color: #bbb;
}

/* Neon Pulse Animation */
@keyframes pulse {
  0% { text-shadow: 0 0 10px #ff69b4, 0 0 20px #ff1493; }
  50% { text-shadow: 0 0 25px #ff69b4, 0 0 40px #ff1493; }
  100% { text-shadow: 0 0 10px #ff69b4, 0 0 20px #ff1493; }
}

/* About Hero */
.about-hero {
  height: 60vh;
  background: linear-gradient(to bottom, rgba(255,20,147,0.7), rgba(0,0,0,0.9)),
              url('images/about-bg.jpg') no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 100px;
}
.about-hero-content h1 {
  font-size: 3em;
  color: #ff69b4;
  text-shadow: 0 0 20px rgba(255,20,147,0.8);
}
.about-hero-content p {
  margin-top: 10px;
  font-size: 1.2em;
  opacity: 0.85;
}

/* About Content */
.about-content {
  background: #111;
  padding: 60px 20px;
}
.about-content .container {
  max-width: 900px;
  margin: auto;
}
.about-content h2 {
  font-size: 2em;
  margin: 40px 0 15px;
  color: #ff69b4;
  text-shadow: 0 0 15px rgba(255,20,147,0.6);
}
.about-content p {
  margin-bottom: 20px;
  line-height: 1.7;
  font-size: 1.05em;
}
.about-content ul {
  margin: 15px 0 30px;
  padding-left: 20px;
}
.about-content ul li {
  margin-bottom: 12px;
  list-style: square;
  font-size: 1.05em;
}

/* Credits Hero */
.credits-hero {
  height: 50vh;
  background: linear-gradient(to bottom, rgba(255,20,147,0.7), rgba(0,0,0,0.9)),
              url('images/credits-bg.jpg') no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 100px;
}
.credits-hero h1 {
  font-size: 3em;
  color: #ff69b4;
  text-shadow: 0 0 15px rgba(255,20,147,0.8);
}
.credits-hero p {
  margin-top: 10px;
  font-size: 1.2em;
  opacity: 0.85;
}

/* Credits Content */
.credits-content {
  background: #111;
  padding: 60px 20px;
}
.credits-content .container {
  max-width: 900px;
  margin: auto;
}
.credits-content h2 {
  font-size: 2em;
  margin: 40px 0 15px;
  color: #ff69b4;
  text-shadow: 0 0 15px rgba(255,20,147,0.6);
}
.credits-content p,
.credits-content ul li {
  margin-bottom: 15px;
  line-height: 1.7;
  font-size: 1.05em;
}
.credits-content ul {
  padding-left: 20px;
}
.credits-content ul li {
  list-style: square;
}

/* Contact Hero */
.contact-hero {
  height: 50vh;
  background: linear-gradient(to bottom, rgba(255,20,147,0.7), rgba(0,0,0,0.9)),
              url('images/contact-bg.jpg') no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 100px;
}
.contact-hero h1 {
  font-size: 3em;
  color: #ff69b4;
  text-shadow: 0 0 15px rgba(255,20,147,0.8);
}
.contact-hero p {
  margin-top: 10px;
  font-size: 1.2em;
  opacity: 0.85;
}

/* Contact Content */
.contact-content {
  background: #111;
  padding: 60px 20px;
}
.contact-content .container {
  max-width: 800px;
  margin: auto;
}
.contact-content h2 {
  font-size: 2em;
  margin: 40px 0 20px;
  color: #ff69b4;
  text-shadow: 0 0 15px rgba(255,20,147,0.6);
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.contact-form label {
  font-weight: bold;
  color: #fff;
}
.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-size: 1em;
  outline: none;
}
.contact-form input:focus,
.contact-form textarea:focus {
  box-shadow: 0 0 10px #ff69b4;
}
.contact-form button {
  padding: 14px;
  background: #ff69b4;
  color: #fff;
  font-size: 1.1em;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}
.contact-form button:hover {
  background: #ff2ca3;
  box-shadow: 0 0 20px #ff69b4;
}

/* Social Links */
.social-links {
  margin-top: 30px;
  display: flex;
  gap: 20px;
}
.social-links a {
  color: #ff69b4;
  text-decoration: none;
  font-size: 1.2em;
  transition: 0.3s;
}
.social-links a:hover {
  color: #fff;
  text-shadow: 0 0 15px #ff69b4;
}

/* Episodes Page */
.episodes-hero {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
              url('images/episodes-bg.jpg') no-repeat center center/cover;
  color: white;
  text-align: center;
  padding: 80px 20px;
}

.episodes {
  padding: 60px 20px;
  background: #fce4ec; /* light pink */
}

.episode-card {
  background: #fff;
  border-left: 6px solid #e91e63; /* strong pink */
  padding: 20px;
  margin: 20px auto;
  max-width: 800px;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.15);
  border-radius: 10px;
}

.episode-card h2 {
  color: #c2185b;
  margin-bottom: 10px;
}

.episode-card p {
  font-size: 1rem;
  line-height: 1.6;
}

.status {
  margin-top: 10px;
  font-weight: bold;
}

.status .coming-soon {
  color: #ff5722;
}

.status .locked {
  color: #9e9e9e;
}

.episode-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

/* Hero styling */
.episodes-hero {
  background: url('images/episodes-bg.jpg') center/cover no-repeat;
  text-align: center;
  padding: 100px 20px;
  color: white;
}

.cinematic-title {
  font-size: 3rem;
  letter-spacing: 5px;
  text-shadow: 0 0 15px #ff4da6, 0 0 30px #ff1a75;
  animation: glow 2s infinite alternate;
}

@keyframes glow {
  from { text-shadow: 0 0 15px #ff4da6; }
  to { text-shadow: 0 0 35px #ff1a75, 0 0 60px #ff66cc; }
}

/* Section Titles */
.section-title {
  font-size: 2rem;
  margin: 40px 0 20px;
  text-align: center;
  color: #ff4da6;
  text-shadow: 0 0 10px black;
}

/* Episode grid */
.episode-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 20px;
}

.episode-card {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid #ff4da6;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  color: white;
  box-shadow: 0 0 15px rgba(255, 77, 166, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.episode-card span {
  display: block;
  font-size: 0.9rem;
  color: #ff66cc;
  margin-bottom: 5px;
}

.episode-card h3 {
  font-size: 1.3rem;
  margin: 0;
}

/* Hero Banner */
.episodes-hero {
  position: relative;
  background: url('images/episodes-bg.jpg') center/cover no-repeat;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.episodes-hero .overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.9));
}

.episodes-hero .hero-text {
  position: relative;
  z-index: 2;
}

.episodes-hero h1 {
  font-size: 3rem;
  text-shadow: 0 0 20px #ff4da6, 0 0 40px #ff1a75;
}

.episodes-hero p {
  font-size: 1.2rem;
  margin-top: 10px;
  opacity: 0.9;
}

/* Section Styling */
.episodes-section {
  padding: 60px 20px;
  text-align: center;
}

.episodes-section h2 {
  font-size: 2rem;
  color: #ff4da6;
  margin-bottom: 40px;
  text-shadow: 0 0 10px rgba(255,77,166,0.6);
}

/* Episode Grid */
.episodes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.episode-card {
  background: rgba(255,255,255,0.05);
  border: 2px solid #ff4da6;
  border-radius: 12px;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  color: white;
}

.episode-card span {
  font-size: 0.9rem;
  color: #ff66cc;
  letter-spacing: 1px;
}

.episode-card h3 {
  margin-top: 10px;
  font-size: 1.3rem;
}

.episode-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 25px rgba(255,77,166,0.7);
  background: rgba(255,0,85,0.15);
}

/* Season 2 Coming Soon */
.season-2 {
  background: black;
}

.coming-soon {
  border: 3px dashed #ff4da6;
  padding: 50px;
  display: inline-block;
  border-radius: 16px;
  background: rgba(255,0,85,0.1);
  animation: pulse 2s infinite;
}

.coming-soon p {
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 4px;
  color: white;
  text-shadow: 0 0 15px #ff1a75, 0 0 40px #ff66cc;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.7; }
  100% { transform: scale(1); opacity: 1; }
}
