/* RESET */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background: #061a33;
  color: #fff;
}

/* =========================
   HERO
========================= */
.hero {
  position: relative; /* IMPORTANT FIX */
  padding: 110px 60px;
  background:
    radial-gradient(circle at 25% 25%, rgba(0,140,255,0.18), transparent 45%),
    radial-gradient(circle at 75% 60%, rgba(245,211,138,0.10), transparent 50%),
    linear-gradient(180deg, #071b34, #041020);
}

.hero-inner {
  max-width: 1000px;
}

/* 🔥 ABOUT BUTTON FIXED */
.about-btn {
  position: absolute;
  top: 30px;
  right: 60px;

  text-decoration: none;
  color: #f5d38a;

  border: 1px solid rgba(245, 211, 138, 0.5);
  padding: 8px 18px;
  border-radius: 999px;

  font-size: 14px;
  font-weight: 500;

  background: transparent;
  transition: all 0.25s ease;
}

.about-btn:hover {
  background: rgba(245, 211, 138, 0.1);
  border-color: #f5d38a;
  transform: translateY(-2px);
}

/* BRAND PILL */
.brand-pill {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid #f5d38a;
  color: #f5d38a;
  font-size: 12px;
  margin-bottom: 20px;
}

/* TITLE */
.hero h1 {
  font-size: 64px;
  margin: 0;
  line-height: 1.05;
}

.hero h1 span {
  color: #f5d38a;
}

/* SUBTEXT */
.hero-sub {
  margin-top: 20px;
  opacity: 0.85;
}

/* EMAIL BUTTON */
.hero-email {
  margin-top: 25px;
  display: inline-block;
  padding: 10px 18px;
  border-radius: 30px;
  border: 1px solid rgba(245,211,138,0.4);
  cursor: pointer;
  transition: 0.2s;
}

.hero-email:hover {
  background: rgba(245,211,138,0.1);
}

/* =========================
   MAIN
========================= */
.main {
  padding: 50px 60px;
}

.section-title {
  color: #f5d38a;
  font-size: 24px;
  letter-spacing: 2px;
}

.gold-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, #f5d38a, transparent);
  margin: 20px 0 40px;
}

/* =========================
   GRID
========================= */
.episodes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* =========================
   CARD
========================= */
.episode-card {
  background: linear-gradient(180deg, #0b2545, #081a33);
  border: 1px solid rgba(245,211,138,0.25);
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  transition: 0.3s ease;
}

.episode-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245,211,138,0.6);
}

/* 🔥 PERFECT 16:9 FIX */
.thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
  background: #000;
}

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

/* PLAY BUTTON */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0,0,0,0.6);
  border: 2px solid #f5d38a;
  color: #f5d38a;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

/* TEXT */
.card-content {
  padding: 20px;
}

.episode-pill {
  display: inline-block;
  border: 1px solid #f5d38a;
  color: #f5d38a;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 12px;
  margin-bottom: 10px;
}

.episode-card h3 {
  margin: 6px 0;
  font-size: 18px;
}

.episode-card p {
  margin: 0;
  opacity: 0.8;
  font-size: 14px;
}

/* =========================
   ABOUT SECTION
========================= */
.about {
  padding: 60px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {

  .episodes-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 42px;
  }

  .main,
  .hero,
  .about {
    padding: 40px 25px;
  }

  .about-btn {
    right: 25px;
  }
}