@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;800;900&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --navy: #0B1230;
  --navy-light: #16204A;
  --gold: #FFC300;
  --gold-soft: #FFE07A;
  --slate: #6B7280;
  --cream: #FAF8F4;
  --white: #ffffff;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--navy);
  background: var(--cream);
  line-height: 1.7;
  font-size: 18px;
}

.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, #1c2a5e 100%);
  color: var(--white);
  padding: 100px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,195,0,0.18) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-overlay { max-width: 760px; margin: 0 auto; position: relative; z-index: 1; }

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  color: var(--navy);
  background: var(--gold);
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 24px;
}

.hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 5rem;
  font-weight: 900;
  letter-spacing: 1px;
  margin-bottom: 16px;
  color: var(--gold);
  text-shadow: 0 4px 30px rgba(255, 195, 0, 0.35);
}

.tagline {
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 28px;
}

.hero-meta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 1rem;
  font-weight: 700;
}

.hero-meta span:not(.dot) {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 195, 0, 0.4);
  padding: 6px 16px;
  border-radius: 999px;
  color: var(--gold-soft);
}

.hero-meta .dot { display: none; }

main {
  max-width: 800px;
  margin: 0 auto;
  padding: 56px 24px;
}

.section { margin-bottom: 56px; }

.section h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 20px;
  display: inline-block;
  position: relative;
  padding-bottom: 8px;
}

.section h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 5px;
  background: var(--gold);
  border-radius: 999px;
}

.section p {
  margin-bottom: 14px;
  font-size: 1.1rem;
  color: #2b3350;
}

.note {
  font-size: 0.95rem;
  color: var(--slate);
  font-style: italic;
}

.cinema-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 8px 30px rgba(11, 18, 48, 0.08);
  border: 2px solid #f0e9d8;
}

.cinema-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.address { color: var(--slate); font-size: 1rem; margin-bottom: 20px; }

.showtimes-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 16px;
}

.showtimes-table th,
.showtimes-table td {
  text-align: left;
  padding: 14px 10px;
  border-bottom: 1px solid #eee;
  font-size: 1.05rem;
}

.showtimes-table th {
  color: var(--white);
  background: var(--navy);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 700;
}

.showtimes-table th:first-child { border-radius: 10px 0 0 10px; }
.showtimes-table th:last-child { border-radius: 0 10px 10px 0; }

.showtimes-table tr.past { opacity: 0.4; }

.showtimes-table tr.today {
  background: linear-gradient(90deg, #FFF6DA, #FFEEB8);
  font-weight: 800;
}

.showtimes-table tr.today td:first-child {
  border-left: 4px solid var(--gold);
  padding-left: 10px;
}

.cast-grid {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 14px;
}

.cast-grid li {
  background: var(--navy);
  color: var(--gold-soft);
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 0.95rem;
  font-weight: 700;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(11, 18, 48, 0.18);
  border: 3px solid var(--gold);
}

.video-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}

.cta-box {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--white);
  text-align: center;
  padding: 48px 24px;
  border-radius: 24px;
  margin-bottom: 56px;
  border: 2px solid var(--gold);
}

.cta-box p {
  color: var(--white);
  margin-bottom: 22px;
  font-size: 1.25rem;
  font-weight: 700;
}

.cta-button {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-weight: 800;
  font-size: 1.05rem;
  padding: 16px 32px;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 6px 20px rgba(255, 195, 0, 0.35);
}

.cta-button:hover { transform: scale(1.05); }

.faq-item {
  border-bottom: 2px solid #f0e9d8;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  padding: 20px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: "+";
  font-size: 1.6rem;
  color: var(--gold);
  background: var(--navy);
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.faq-item.open .faq-question::after { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-item.open .faq-answer { max-height: 200px; }

.faq-answer p { padding-bottom: 20px; color: var(--slate); font-size: 1.05rem; }

footer {
  text-align: center;
  padding: 40px 24px;
  color: var(--white);
  background: var(--navy);
  font-size: 0.95rem;
}

@media (max-width: 600px) {
  body { font-size: 16px; }
  .hero h1 { font-size: 3rem; }
  .hero { padding: 64px 20px; }
  .section h2 { font-size: 1.6rem; }
}