/* ============================================
   ProSanta School — Single Stylesheet
   Premium festive / warm / professional
   ============================================ */

/* --- Custom Properties --- */
:root {
  --red: #CF1B15;
  --red-dark: #a81610;
  --red-deep: #7f1d1d;
  --navy: #1a5c3a;
  --navy-light: #227a4d;
  --green: #22c55e;
  --green-dark: #16a34a;
  --gold: #d4a84b;
  --cream: #fdf8f0;
  --text: #2d2d2d;
  --text-mid: #555;
  --text-light: #888;
  --border: #e8e0d8;
  --bg: #fff;
  --bg-warm: #faf6f1;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --radius: 14px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  line-height: 1.7;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--red); text-decoration: none; transition: color 0.3s ease; }
a:hover { color: var(--red-dark); }
ul { list-style: none; }
h1, h2, h3, h4, h5 { font-family: 'Playfair Display', serif; line-height: 1.2; color: var(--text); }
h1 { font-size: 2.5rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.5rem; }
p { margin-bottom: 1rem; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }

/* --- Top Bar --- */
.top-bar {
  background: #0f172a;
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
  padding: 6px 24px;
  letter-spacing: 0.02em;
}
.top-bar-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}
.top-bar a { color: rgba(255,255,255,0.9); font-weight: 600; }
.top-bar a:hover { color: #fff; }
.top-bar-location { margin-right: auto; }

/* --- Navigation --- */
.nav-wrap {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.nav-logo img { max-height: 60px; }
.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-menu a {
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
  padding: 8px 13px;
  border-radius: 8px;
  transition: background 0.2s ease, color 0.2s ease;
}
.nav-menu a:hover { color: var(--red); background: rgba(207,27,21,0.04); }
.nav-menu a.active { color: var(--red); font-weight: 600; }
.nav-cta {
  background: var(--red) !important;
  color: #fff !important;
  padding: 10px 26px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  box-shadow: 0 2px 12px rgba(207,27,21,0.25);
  transition: all 0.25s ease !important;
}
.nav-cta:hover {
  background: var(--red-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(207,27,21,0.35) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
.hamburger span {
  width: 24px;
  height: 2.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* --- Hero --- */
.hero {
  background: linear-gradient(160deg, #1a4a2e 0%, #0f3321 40%, #0a2618 100%);
  color: #fff;
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(34,120,60,0.25) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(212,168,75,0.1) 0%, transparent 50%);
  pointer-events: none;
}
.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

/* Snowfall */
.snowfall {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  z-index: 1;
}
.snowflake {
  position: absolute;
  top: -10px;
  background: #fff;
  border-radius: 50%;
  opacity: 0;
  animation: snowfall linear infinite;
}
@keyframes snowfall {
  0%   { opacity: 0; transform: translateX(0) rotate(0deg); }
  10%  { opacity: 0.7; }
  90%  { opacity: 0.4; }
  100% { opacity: 0; transform: translateX(60px) rotate(360deg); top: 100%; }
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-tagline {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 600;
}
.hero h1 {
  color: #fff;
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.hero-lead {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
  margin-bottom: 8px;
}
.hero-sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 32px;
}
.hero-sub em { color: rgba(255,255,255,0.85); font-style: italic; }
.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-image-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-banner {
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.08);
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  text-align: center;
  padding: 13px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
  font-family: 'Open Sans', sans-serif;
  letter-spacing: 0.01em;
}
.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 2px 12px rgba(207,27,21,0.3);
}
.btn-primary:hover {
  background: var(--red-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(207,27,21,0.4);
}
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.35);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
  color: #fff;
}
.btn-navy {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 2px 12px rgba(15,23,42,0.3);
}
.btn-navy:hover {
  background: var(--navy-light);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(15,23,42,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--red);
  border: 2px solid var(--red);
}
.btn-outline:hover {
  background: var(--red);
  color: #fff;
}
.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: #fff;
}
.btn-green {
  background: var(--green);
  color: #fff;
  box-shadow: 0 2px 8px rgba(34,197,94,0.3);
}
.btn-green:hover {
  background: var(--green-dark);
  color: #fff;
  transform: translateY(-2px);
}
.btn-lg { padding: 16px 38px; font-size: 1rem; }

/* --- Credibility Strip --- */
.cred-strip {
  background: var(--bg-warm);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.cred-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.cred-item { text-align: center; }
.cred-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1.2;
}
.cred-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  font-weight: 600;
}
.cred-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* --- Sections --- */
.section { padding: 80px 0; }
.section-courses { background: var(--bg); }
.section-venue { background: var(--bg-warm); }
.section-cta {
  background: linear-gradient(160deg, #1a4a2e 0%, #0a2618 100%);
  color: #fff;
  padding: 80px 0;
  position: relative;
}
.section-cta h2 { color: #fff; }
.cta-sub { color: rgba(255,255,255,0.75); max-width: 500px; margin: 0 auto 28px; font-size: 1.05rem; }
.section-alt { background: var(--bg-warm); }
.section-red { background: var(--cream); }

.section-title { text-align: center; margin-bottom: 48px; }
.section-title h2 { margin-bottom: 12px; }
.section-title p { color: var(--text-mid); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 8px;
}

/* --- Course Cards --- */
.course-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 920px;
  margin: 0 auto;
}
.course-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border);
}
.course-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.course-card-header {
  padding: 32px 28px 28px;
  text-align: center;
  position: relative;
}
.course-card-header.red {
  background: linear-gradient(160deg, var(--red) 0%, var(--red-deep) 100%);
  color: #fff;
}
.course-card-header.navy {
  background: linear-gradient(160deg, var(--navy) 0%, #0e3d24 100%);
  color: #fff;
}
.card-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: rgba(255,255,255,0.65);
  margin-bottom: 8px;
}
.course-card-header h3 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.card-dates {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 0;
}
.course-card-body { padding: 28px; }
.course-card-body .price {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--red);
  text-align: center;
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
  letter-spacing: -0.02em;
}
.card-features {
  margin-bottom: 24px;
}
.card-features li {
  padding: 6px 0;
  padding-left: 24px;
  position: relative;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.5;
}
.card-features li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
  font-size: 0.85rem;
}
.course-card-buttons { display: flex; flex-direction: column; gap: 10px; }
.course-card-body .date-info {
  text-align: center;
  color: var(--text-mid);
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.5;
}

/* --- Venue --- */
.venue-flex {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.venue-main-img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 340px;
  object-fit: cover;
}
.venue-info h2 { margin-bottom: 8px; }
.venue-address {
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 16px;
  font-size: 0.95rem;
}

/* --- Course Detail Pages --- */
.course-banner {
  text-align: center;
  padding: 56px 20px;
  color: #fff;
}
.course-banner.red-bg { background: linear-gradient(160deg, var(--red) 0%, var(--red-deep) 100%); }
.course-banner.navy-bg { background: linear-gradient(160deg, var(--navy) 0%, #0e3d24 100%); }
.course-banner h1 { color: #fff; margin-bottom: 8px; }
.course-banner .banner-meta { font-size: 1.1rem; opacity: 0.9; }
.course-banner .banner-meta span { margin: 0 12px; }

.course-intro { max-width: 800px; margin: 0 auto; font-size: 1.1rem; color: var(--text-mid); }

/* Course At-a-Glance */
.glance-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: start;
}
.glance-main h2 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}
.glance-main p {
  color: var(--text-mid);
  line-height: 1.75;
  font-size: 1.02rem;
}
.glance-photo {
  margin-top: 24px;
  border-radius: var(--radius);
  width: 100%;
  object-fit: cover;
  max-height: 300px;
  box-shadow: var(--shadow-md);
}
.glance-curriculum {
  background: var(--bg-warm);
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.glance-curriculum h3 {
  font-size: 1.2rem;
  margin-bottom: 16px;
  color: var(--text);
}
.glance-topics {
  list-style: none;
  margin: 0 0 0 0;
  padding: 0;
}
.glance-topics li {
  padding: 7px 0 7px 24px;
  position: relative;
  font-size: 0.9rem;
  color: var(--text-mid);
  border-bottom: 1px solid var(--border);
  line-height: 1.4;
}
.glance-topics li:last-child { border-bottom: none; }
.glance-topics li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
  font-size: 0.85rem;
}

/* Info Boxes */
.info-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
.info-box {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--red);
}
.info-box h4 { color: var(--red); margin-bottom: 8px; font-family: 'Open Sans', sans-serif; font-weight: 700; }
.info-box p { color: var(--text-mid); font-size: 0.95rem; margin-bottom: 0; }

/* Topics Grid */
.topics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}
.topic-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px;
  background: #fff;
  border-radius: 8px;
  font-size: 0.95rem;
}
.topic-item .check { color: var(--green); font-weight: 700; flex-shrink: 0; font-size: 1.1rem; }

/* Schedule Table */
.schedule-section { max-width: 900px; margin: 0 auto; }
.schedule-section h3 { color: var(--red); margin-bottom: 16px; padding-bottom: 8px; border-bottom: 2px solid var(--cream); }
.schedule-table { width: 100%; border-collapse: collapse; margin-bottom: 30px; }
.schedule-table th {
  background: var(--red);
  color: #fff;
  padding: 12px 16px;
  text-align: left;
  font-size: 0.9rem;
  font-weight: 600;
}
.schedule-table td {
  padding: 10px 16px;
  border-bottom: 1px solid #eee;
  font-size: 0.9rem;
  color: var(--text-mid);
}
.schedule-table tr:hover td { background: var(--cream); }
.schedule-table .topic-name { font-weight: 600; color: var(--text); }

/* Venue Gallery & Map */
.venue-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 24px 0;
}
.venue-gallery img { border-radius: var(--radius); width: 100%; height: 200px; object-fit: cover; }
.venue-map { border-radius: var(--radius); overflow: hidden; margin-top: 20px; }
.venue-map iframe { width: 100%; height: 350px; border: none; }

/* Cancellation Policy */
.policy-box {
  background: var(--cream);
  border-left: 4px solid var(--red);
  padding: 20px 24px;
  border-radius: 0 var(--radius) var(--radius) 0;
  max-width: 800px;
  margin: 0 auto;
}

/* --- Instructor Cards --- */
.instructor-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}
.instructor-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  text-align: center;
  border: 1px solid var(--border);
}
.instructor-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center 20%;
}
.instructor-card-body { padding: 20px; }
.instructor-card-body h3 { margin-bottom: 4px; }
.instructor-card-body .role { color: var(--red); font-weight: 600; font-size: 0.9rem; margin-bottom: 12px; }
.instructor-card-body p { color: var(--text-mid); font-size: 0.9rem; }

/* Instructor Full Bio Layout */
.instructor-bio {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
  align-items: start;
  max-width: 960px;
  margin: 0 auto 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
.instructor-bio:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.instructor-bio img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center 20%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.instructor-bio-text h3 { margin-bottom: 4px; }
.instructor-bio-text .role {
  color: var(--red);
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 16px;
}
.instructor-bio-text p {
  color: var(--text-mid);
  font-size: 0.93rem;
  line-height: 1.7;
}

/* --- Registration Form --- */
.register-section { max-width: 700px; margin: 0 auto; }
.course-selector {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 30px;
}
.course-option {
  border: 2px solid #ddd;
  border-radius: var(--radius);
  padding: 20px;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
}
.course-option:hover { border-color: var(--red); }
.course-option.selected {
  border-color: var(--red);
  background: var(--cream);
  box-shadow: 0 0 0 3px rgba(207,27,21,0.12);
}
.course-option h4 { margin-bottom: 4px; }
.course-option .course-date { font-size: 0.85rem; color: #666; margin-bottom: 8px; }
.course-option .course-price { font-size: 1.4rem; font-weight: 700; color: var(--red); font-family: 'Playfair Display', serif; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 0.9rem;
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #ddd;
  border-radius: 10px;
  font-size: 1rem;
  font-family: 'Open Sans', sans-serif;
  transition: border-color 0.25s ease;
}
.form-group input:focus,
.form-group select:focus {
  border-color: var(--red);
  outline: none;
  box-shadow: 0 0 0 3px rgba(207,27,21,0.1);
}
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.form-row-3 { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 16px; }
.form-error { color: var(--red); font-size: 0.85rem; margin-top: 4px; display: none; }

/* --- FAQ Accordion --- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-question {
  padding: 18px 24px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  background: #fff;
  transition: background 0.2s ease;
}
.faq-question:hover { background: var(--cream); }
.faq-question .arrow {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  color: var(--red);
}
.faq-item.active .faq-question .arrow { transform: rotate(180deg); }
.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--text-mid);
  line-height: 1.7;
}
.faq-item.active .faq-answer {
  padding: 0 24px 18px;
  max-height: 500px;
}

/* --- Footer --- */
.footer {
  background: #0f172a;
  color: #aaa;
  padding: 56px 24px 24px;
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand { }
.footer-logo {
  max-height: 50px;
  margin-bottom: 16px;
  filter: brightness(10);
}
.footer-brand p { font-size: 0.88rem; color: #888; line-height: 1.6; }
.footer h4 {
  color: #fff;
  margin-bottom: 14px;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}
.footer a { color: #999; font-size: 0.9rem; }
.footer a:hover { color: var(--red); }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.8rem;
  color: #666;
}

/* ============================================
   Live Stream — Login & Viewing Room
   ============================================ */

.watch-body { background: #0b1120; min-height: 100vh; }

/* --- Login --- */
.watch-login-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
  background:
    radial-gradient(1000px 500px at 50% -10%, rgba(207,27,21,0.16), transparent 60%),
    linear-gradient(160deg, #0b1120 0%, #131f36 100%);
}
.watch-login-box {
  width: 100%;
  max-width: 430px;
  background: #fff;
  border-radius: 18px;
  padding: 40px 36px 30px;
  box-shadow: 0 24px 70px rgba(0,0,0,0.45);
  text-align: center;
}
.watch-logo { max-height: 62px; margin: 0 auto 20px; }
.watch-login-box h1 { font-size: 1.7rem; margin-bottom: 4px; }
.watch-login-sub { color: var(--text-light); font-size: 0.9rem; margin-bottom: 26px; }
.watch-login-box .form-group { text-align: left; margin-bottom: 18px; }
.watch-login-box label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 6px;
}
.watch-login-box input {
  width: 100%;
  padding: 13px 15px;
  border: 2px solid #e2e2e2;
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.watch-login-box input:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(207,27,21,0.12);
}
.watch-login-box small { display: block; color: var(--text-light); font-size: 0.8rem; margin-top: 5px; }
.watch-code-input {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 700;
  font-size: 1.25rem !important;
  text-align: center;
}
/* The placeholder must never look like a real code — people were typing "ABC123". */
.watch-code-input::placeholder {
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
  color: #b8b8b8;
  font-style: italic;
  opacity: 1;
}
/* While empty, drop the big letter-spaced treatment entirely. */
.watch-code-input:placeholder-shown {
  letter-spacing: normal;
  font-weight: 400;
  font-size: 1rem !important;
}
.watch-login-box .form-error {
  background: #fef2f2;
  border: 1px solid #fca5a5;
  color: #991b1b;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.88rem;
  margin-bottom: 16px;
  text-align: left;
}
.watch-login-help {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid #eee;
  font-size: 0.85rem;
  color: var(--text-mid);
}
.watch-login-help p { margin-bottom: 8px; }

/* --- Top bar --- */
.watch-bar {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 10px 22px;
  background: #0f172a;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: sticky;
  top: 0;
  z-index: 50;
}
.watch-bar-logo img { max-height: 38px; }
.watch-bar-title { display: flex; flex-direction: column; line-height: 1.3; }
.watch-bar-title strong { color: #fff; font-size: 0.95rem; }
.watch-bar-title span { color: rgba(255,255,255,0.5); font-size: 0.78rem; }
.watch-bar-right { margin-left: auto; display: flex; align-items: center; gap: 16px; }
.watch-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 5px 12px;
  border-radius: 20px;
}
.watch-status.live { background: rgba(207,27,21,0.18); color: #fca5a5; }
.watch-status.offline { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.5); }
.watch-dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.watch-status.live .watch-dot { animation: watchPulse 1.6s infinite; }
@keyframes watchPulse { 0%,100% { opacity: 1; } 50% { opacity: 0.25; } }
.watch-user { color: rgba(255,255,255,0.55); font-size: 0.82rem; }
.watch-user strong { color: rgba(255,255,255,0.85); font-weight: 600; }
.watch-signout { color: rgba(255,255,255,0.5); font-size: 0.82rem; }
.watch-signout:hover { color: #fff; }

/* --- Layout --- */
/* The viewing room always fits the viewport — never let the page scroll,
   or the chat's Send button ends up below the fold (iPad Safari especially). */
.watch-room {
  height: 100vh;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.watch-room .watch-bar { flex: 0 0 auto; position: static; }
.watch-main {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 0;
  flex: 1 1 auto;
  min-height: 0;
}
.watch-main.no-chat { grid-template-columns: 1fr; }
.watch-stage {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px;
  min-width: 0;
}
.watch-player {
  position: relative;
  width: 100%;
  /* Cap by available height so the player never pushes the layout taller
     than the viewport — dvh keeps it honest under Safari's toolbars. */
  max-width: min(100%, calc((100dvh - 150px) * 16 / 9));
  margin: 0 auto;
  padding-top: min(56.25%, calc(100dvh - 150px));
  background: #000;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}
.watch-player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* --- Offline state --- */
.watch-offline {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 50px 30px;
}
.watch-offline-icon { font-size: 2.8rem; margin-bottom: 14px; opacity: 0.85; }
.watch-offline h2 { color: #fff; font-size: 1.4rem; margin-bottom: 10px; }
.watch-offline > p { color: rgba(255,255,255,0.6); max-width: 520px; margin: 0 auto 8px; font-size: 0.95rem; }
.watch-offline-foot { font-size: 0.85rem !important; color: rgba(255,255,255,0.4) !important; margin-top: 18px !important; }
.watch-schedule {
  margin-top: 24px;
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 18px 24px;
  text-align: left;
  min-width: 300px;
}
.watch-schedule h4 {
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-family: 'Open Sans', sans-serif;
}
.watch-schedule-row {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.watch-schedule-row:last-child { border-bottom: 0; }

.watch-help-strip {
  margin-top: 16px;
  text-align: center;
  color: rgba(255,255,255,0.35);
  font-size: 0.82rem;
}
.watch-help-strip a { color: rgba(255,255,255,0.7); }

/* --- Chat --- */
.watch-chat {
  background: #0f172a;
  border-left: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  min-height: 0;   /* lets the chat shrink inside the grid instead of overflowing */
}
.watch-chat-head {
  padding: 14px 18px;
  color: rgba(255,255,255,0.75);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.watch-chat iframe { flex: 1 1 auto; width: 100%; border: 0; min-height: 0; height: 100%; }

@media (max-width: 900px) {
  /* Tablet/phone: fit the whole room to the viewport so the chat's
     Send button is always visible without scrolling the page. */
  .watch-main, .watch-main.no-chat {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
  }
  .watch-bar { flex-wrap: wrap; gap: 10px 14px; padding: 10px 16px; }
  .watch-bar-right { margin-left: 0; width: 100%; justify-content: space-between; gap: 10px; }
  .watch-user { display: none; }

  .watch-stage { padding: 10px; justify-content: flex-start; min-height: 0; }
  /* Cap the video so the chat always gets usable room underneath. */
  .watch-player { max-width: min(100%, calc(42vh * 16 / 9)); padding-top: min(56.25%, 42vh); }
  .watch-help-strip { margin-top: 8px; font-size: 0.75rem; }

  .watch-chat {
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    min-height: 0;          /* lets the grid row actually shrink */
  }
  .watch-chat iframe { min-height: 0; height: 100%; flex: 1; }
  .watch-chat-head { padding: 9px 16px; font-size: 0.72rem; }

  .watch-offline { padding: 30px 18px; }
  .watch-schedule { min-width: 0; width: 100%; }
}

/* Landscape phones/small tablets: room is short, so shrink the video further. */
@media (max-width: 900px) and (max-height: 520px) {
  .watch-player { max-width: min(100%, calc(34vh * 16 / 9)); padding-top: min(56.25%, 34vh); }
  .watch-help-strip { display: none; }
}

/* ============================================
   New Dates Section
   ============================================ */

.section-dates { background: var(--bg-warm); }
.dates-badge {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.dates-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 860px;
  margin: 0 auto;
}
.dates-item {
  display: grid;
  grid-template-columns: 150px 1fr;
  align-items: stretch;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.dates-item:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.dates-when {
  background: linear-gradient(135deg, #b91c1c, #7f1d1d);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 12px;
  text-align: center;
}
.dates-when.navy { background: linear-gradient(135deg, #1a5c3a, #0f3d26); }
.dates-month {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  opacity: 0.85;
}
.dates-day {
  font-family: 'Playfair Display', serif;
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.1;
  margin: 2px 0;
}
.dates-year { font-size: 0.85rem; opacity: 0.7; letter-spacing: 0.08em; }
.dates-what { padding: 24px 28px; }
.dates-what h3 { font-size: 1.3rem; margin-bottom: 6px; }
.dates-what p { color: var(--text-mid); font-size: 0.95rem; margin-bottom: 10px; }
.dates-link { font-weight: 600; font-size: 0.9rem; }
.dates-soon {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-light);
  background: #f1f1f1;
  border-radius: 20px;
  padding: 4px 12px;
}
.dates-foot {
  text-align: center;
  margin-top: 28px;
  margin-bottom: 0;
  color: var(--text-mid);
  font-size: 0.92rem;
}

/* ============================================
   Streaming Access Section & Page
   ============================================ */

.section-streaming {
  background: linear-gradient(135deg, #0f172a 0%, #1a2840 100%);
  color: #fff;
}
.streaming-badge {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
}
.streaming-inner { text-align: center; }
.streaming-header { max-width: 660px; margin: 0 auto 44px; }
.streaming-sub {
  color: rgba(255,255,255,0.72);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 0;
}

/* Price bar (homepage section) */
.streaming-price-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 28px 40px;
  margin-bottom: 48px;
}
.streaming-price-wrap { text-align: center; }
.streaming-price-label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 6px;
}
.streaming-price {
  display: flex;
  align-items: baseline;
  gap: 14px;
  justify-content: center;
}
.streaming-was {
  font-size: 1.5rem;
  color: rgba(255,255,255,0.3);
  text-decoration: line-through;
  font-family: 'Playfair Display', serif;
}
.streaming-now {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  font-family: 'Playfair Display', serif;
  line-height: 1;
}
.streaming-caveat {
  display: block;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.38);
  margin-top: 6px;
}

/* Benefits grid */
.streaming-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: left;
  max-width: 960px;
  margin: 0 auto;
}
.streaming-benefit {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 24px 20px;
  transition: background 0.2s;
}
.streaming-benefit:hover { background: rgba(255,255,255,0.08); }
.streaming-benefit-icon { font-size: 1.8rem; margin-bottom: 10px; }
.streaming-benefit h4 {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 6px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
}
.streaming-benefit p { color: rgba(255,255,255,0.58); font-size: 0.88rem; margin: 0; line-height: 1.55; }

/* Streaming page — hero */
.streaming-hero {
  padding: 80px 0;
}
.streaming-price-hero {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.streaming-price-was-wrap,
.streaming-price-now-wrap { text-align: center; }
.streaming-label-sm {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 4px;
}
.streaming-price-was-wrap .streaming-was { font-size: 2rem; }
.streaming-price-now-wrap .streaming-now { font-size: 3.5rem; }

/* How it works steps */
.streaming-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}
.streaming-step {
  flex: 1;
  min-width: 160px;
  max-width: 200px;
  text-align: center;
  padding: 0 12px;
}
.streaming-step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-family: 'Playfair Display', serif;
}
.streaming-step h4 {
  font-size: 1rem;
  margin-bottom: 6px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
}
.streaming-step p { font-size: 0.88rem; color: var(--text-mid); margin: 0; }
.streaming-step-arrow {
  font-size: 1.5rem;
  color: var(--border);
  padding-top: 14px;
  align-self: flex-start;
}

/* Reserve form */
.streaming-form-wrap {
  max-width: 520px;
  margin: 0 auto;
}
.streaming-form-header { text-align: center; margin-bottom: 32px; }
.streaming-form-was {
  text-decoration: line-through;
  color: var(--text-light);
  font-weight: 400;
}

/* Benefits on white bg (streaming page) */
.section:not(.section-streaming) .streaming-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: left;
  max-width: 960px;
  margin: 0 auto;
}
.section:not(.section-streaming) .streaming-benefit {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 20px;
  box-shadow: var(--shadow-sm);
}
.section:not(.section-streaming) .streaming-benefit h4 { color: var(--text); font-size: 1rem; }
.section:not(.section-streaming) .streaming-benefit p { color: var(--text-mid); }

/* ============================================
   Popup
   ============================================ */

.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.72);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}
.popup-box {
  background: linear-gradient(145deg, #0f172a, #1e2d4a);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  max-width: 480px;
  width: 100%;
  padding: 40px 36px 32px;
  position: relative;
  color: #fff;
  text-align: center;
  box-shadow: 0 28px 80px rgba(0,0,0,0.55);
  transform: translateY(12px) scale(0.97);
  transition: transform 0.35s ease;
}
.popup-overlay.active .popup-box {
  transform: translateY(0) scale(1);
}
.popup-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.4);
  font-size: 1.6rem;
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.popup-close:hover { color: #fff; background: rgba(255,255,255,0.08); }
.popup-badge {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.popup-box h3 {
  color: #fff;
  font-size: 1.55rem;
  margin-bottom: 8px;
  line-height: 1.25;
}
.popup-box > p {
  color: rgba(255,255,255,0.68);
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.6;
}
.popup-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  justify-content: center;
  margin-bottom: 18px;
}
.popup-price-was {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.3);
  text-decoration: line-through;
  font-family: 'Playfair Display', serif;
}
.popup-price-now {
  font-size: 2.6rem;
  font-weight: 700;
  color: #fff;
  font-family: 'Playfair Display', serif;
  line-height: 1;
}
.popup-price-tag {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  align-self: flex-end;
  margin-bottom: 4px;
}
.popup-perks {
  text-align: left;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
  display: inline-block;
  width: 100%;
}
.popup-perks li {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.68);
  padding: 4px 0;
}
.popup-dismiss {
  display: block;
  margin: 12px auto 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
  transition: color 0.2s;
  font-family: inherit;
}
.popup-dismiss:hover { color: rgba(255,255,255,0.6); }

/* --- Legal Pages --- */
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h2 { font-size: 1.5rem; margin-top: 30px; margin-bottom: 12px; }
.legal-content h3 { font-size: 1.2rem; margin-top: 20px; margin-bottom: 8px; }
.legal-content ul { margin-left: 20px; margin-bottom: 16px; list-style: disc; }
.legal-content li { margin-bottom: 6px; color: var(--text-mid); }

/* --- Success / Cancel --- */
.result-page {
  text-align: center;
  padding: 80px 20px;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.result-icon { font-size: 4rem; margin-bottom: 20px; }
.result-page h1 { margin-bottom: 16px; }
.result-page p { color: var(--text-mid); max-width: 500px; margin: 0 auto 24px; }

/* --- 404 --- */
.page-404 { text-align: center; padding: 100px 20px; }
.page-404 h1 { font-size: 6rem; color: var(--red); margin-bottom: 0; }
.page-404 h2 { margin-bottom: 16px; }

/* --- Utility --- */
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }

  .top-bar-inner { font-size: 0.75rem; gap: 12px; }
  .top-bar-email { display: none; }

  .nav-inner { height: 64px; }
  .nav-logo img { max-height: 48px; }
  .hamburger { display: flex; }
  .nav-menu {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 16px 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    gap: 4px;
    border-top: 1px solid var(--border);
  }
  .nav-menu.open { display: flex; }
  .nav-menu a { width: 100%; padding: 12px 16px; }

  .hero { padding: 48px 0 40px; }
  .hero h1 { font-size: 2.6rem; }
  .hero-content { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .hero-buttons { justify-content: center; }
  .hero-banner { max-width: 400px; margin: 0 auto; }

  .cred-items { flex-wrap: wrap; gap: 20px; }
  .cred-divider { display: none; }

  .course-cards { grid-template-columns: 1fr; max-width: 420px; }
  .venue-flex { grid-template-columns: 1fr; gap: 24px; }
  .venue-main-img { height: 220px; }
  .glance-grid { grid-template-columns: 1fr; gap: 24px; }
  .glance-details { grid-template-columns: 1fr; gap: 12px; }
  .glance-curriculum { padding: 24px 20px; }
  .info-boxes { grid-template-columns: 1fr; }
  .topics-grid { grid-template-columns: 1fr; }
  .course-selector { grid-template-columns: 1fr; }
  .form-row, .form-row-3 { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-logo { margin: 0 auto 16px; }
  .venue-gallery { grid-template-columns: 1fr; }
  .schedule-table { font-size: 0.8rem; }
  .schedule-table th, .schedule-table td { padding: 8px 10px; }
  .instructor-cards { grid-template-columns: 1fr; max-width: 350px; margin: 0 auto; }
  .instructor-bio { grid-template-columns: 1fr; gap: 20px; }
  .instructor-bio img { height: 220px; }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .hero h1 { font-size: 3rem; }
  .hero-content { gap: 36px; }
  .hero-banner { max-width: 400px; }
  .topics-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-menu a { font-size: 0.85rem; padding: 8px 10px; }
  .footer-inner { grid-template-columns: repeat(2, 1fr); }
  .streaming-benefits { grid-template-columns: repeat(2, 1fr); }
  .section:not(.section-streaming) .streaming-benefits { grid-template-columns: repeat(2, 1fr); }
  .streaming-steps { gap: 0; }
}

@media (max-width: 768px) {
  .dates-item { grid-template-columns: 1fr; }
  .dates-when { flex-direction: row; gap: 8px; padding: 14px; align-items: baseline; justify-content: center; }
  .dates-day { font-size: 1.5rem; }
  .dates-what { padding: 20px; }
  .dates-what h3 { font-size: 1.15rem; }

  .streaming-benefits { grid-template-columns: 1fr; }
  .section:not(.section-streaming) .streaming-benefits { grid-template-columns: 1fr; }
  .streaming-price-bar { flex-direction: column; gap: 20px; padding: 24px 20px; }
  .streaming-now { font-size: 2.4rem; }
  .streaming-price-now-wrap .streaming-now { font-size: 2.8rem; }
  .streaming-steps { flex-direction: column; align-items: center; gap: 8px; }
  .streaming-step { max-width: 280px; }
  .streaming-step-arrow { transform: rotate(90deg); padding: 0; }
  .popup-box { padding: 32px 22px 24px; }
  .popup-price-now { font-size: 2.2rem; }
}

/* Watch Live nav link */
.nav-menu a.nav-watch {
  color: var(--red);
  font-weight: 700;
}
.nav-menu a.nav-watch::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  margin-right: 6px;
  vertical-align: middle;
}
