/* ===== HERO SECTION ===== */
#hero {
  display: flex;
  align-items: center;
  justify-content: space-around;
  min-height: calc(100vh - 64px);
  padding: 60px 80px 60px 64px;
  gap: 40px;
  overflow: hidden;
  position: relative;
}

#hero::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(196,30,58,0.06) 0%, transparent 70%); */
  pointer-events: none;
}

#hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  max-width: 680px;
  position: relative;
  z-index: 1;
}

#season1Png {
  max-width: 680px;
  width: 100%;
  height: auto;
  display: block;
}

#hero-btns {
  display: flex;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.hero-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  max-width: 46%;
}

#silhouettePng {
  max-width: 100%;
  max-height: 82vh;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 60px rgba(0, 0, 0, 0.15));
}

/* ===== ABOUT SECTION ===== */
#about {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  max-width: 1400px;
  margin: 80px auto 80px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background-color: #0b0b0b;
  overflow: hidden;
  position: relative;
}

#about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, #c41e3a 40%, transparent);
}

#about-left {
  padding: 72px 64px;
  flex: 1;
  max-width: 600px;
}

#about-left h1 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.15;
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}

.about-content {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.97rem;
  line-height: 1.8;
}

#about-right {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-shrink: 0;
  max-width: 380px;
}

#characterFallingPng {
  max-height: 75vh;
  width: auto;
  display: block;
  object-fit: contain;
}

/* ===== PLACEHOLDER SECTIONS SHARED ===== */
.placeholder-section {
  max-width: 1400px;
  margin: 0 auto 80px;
  padding: 0 48px;
}

.placeholder-section-inner {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #0b0b0b;
  padding: 64px;
  position: relative;
  overflow: hidden;
}

.placeholder-section-inner::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(196, 30, 58, 0.4),
    transparent
  );
}

.placeholder-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(196, 30, 58, 0.1);
  border: 1px solid rgba(196, 30, 58, 0.3);
  color: #e8667a;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 14px;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 0 100%);
  white-space: nowrap;
}

.coming-soon-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #c41e3a;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ===== HOW IT WORKS ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.step-card {
  position: relative;
}

.step-number {
  font-family: "Josefin Sans", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(196, 30, 58, 0.2);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.step-title {
  font-family: "Josefin Sans", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.step-desc {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
}

/* ===== SEASON HIGHLIGHTS ===== */
.highlights-placeholder {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.highlight-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 28px;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.highlight-card .card-tag {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}

.highlight-card .card-label {
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
}

.highlight-card .card-value {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.25);
  font-style: italic;
}

/* ===== RESULTS TABLE PLACEHOLDER ===== */
.results-table-placeholder {
  width: 100%;
  border-collapse: collapse;
}

.results-table-placeholder th {
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px 16px;
  text-align: left;
}

.results-table-placeholder td {
  padding: 14px 16px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-style: italic;
}

/* ===== ELIMINATION SCHEDULE ===== */
.elimination-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.elim-card {
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 24px;
}

.elim-round {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #c41e3a;
  margin-bottom: 8px;
}

.elim-label {
  font-family: "Josefin Sans", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.elim-date {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.3);
}

/* ===== EPISODES ===== */
.episodes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.episode-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.07);
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
}

.episode-card .play-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.episode-card .play-icon svg {
  width: 18px;
  height: 18px;
  color: rgba(255, 255, 255, 0.3);
}

.episode-card .ep-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 0.08em;
}

/* ===== HALL OF FAME ===== */
.winners-row {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.winner-card {
  flex-shrink: 0;
  width: 180px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.winner-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.winner-avatar svg {
  width: 22px;
  height: 22px;
  color: rgba(255, 255, 255, 0.2);
}

.winner-name {
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.3);
  font-style: italic;
}

.winner-season {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.18);
  text-transform: uppercase;
}

/* ===== RESPONSIVE HOME ===== */
@media (max-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .highlights-placeholder {
    grid-template-columns: repeat(2, 1fr);
  }
  .episodes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .elimination-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  #hero {
    flex-direction: column;
    padding: 48px 24px 60px;
    min-height: auto;
    padding-top: 60px;
    text-align: center;
    gap: 32px;
  }

  #hero-left {
    max-width: 100%;
    align-items: center;
  }

  #season1Png {
    max-width: 90vw;
  }

  #hero-btns {
    justify-content: center;
    gap: 14px;
    flex-direction: column;
    align-items: center;
    margin-top: 32px;
  }

  .hero-right {
    display: none;
  }

  #about {
    flex-direction: column;
    margin: 40px 16px;
  }

  #about-left {
    padding: 48px 28px;
    max-width: 100%;
  }

  #about-right {
    max-width: 100%;
    justify-content: flex-end;
    padding-top: 0;
    max-height: 260px;
    overflow: hidden;
  }

  #characterFallingPng {
    max-height: 260px;
  }

  .placeholder-section {
    padding: 0 16px;
  }

  .placeholder-section-inner {
    padding: 36px 24px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .highlights-placeholder,
  .episodes-grid,
  .elimination-grid {
    grid-template-columns: 1fr;
  }

  .placeholder-header {
    flex-direction: column;
    gap: 14px;
  }
}
