    :root {
      --dark-bg: #050509;
      --dark-bg-alt: #101018;
      --light-bg: #f7f7fb;
      --card-bg: #ffffff;
      --primary: #f5c242;  /* gold */
      --primary-soft: rgba(245, 194, 66, 0.16);
      --accent-blue: #13a5ff;
      --accent-pink: #ff3fa6;
      --text-main: #12121a;
      --text-light: #f4f4ff;
      --muted: #77778b;
      --border-soft: #e0e0f0;
      --radius-lg: 20px;
      --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.28);
      --shadow-card: 0 10px 30px rgba(15, 15, 40, 0.12);
      --max-width: 1180px;
      --transition-fast: 0.2s ease;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: var(--dark-bg);
      color: var(--text-main);
      line-height: 1.6;
      scroll-behavior: smooth;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    img {
      max-width: 100%;
      display: block;
    }

    /* Layout helpers */
    .container {
      width: 100%;
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 16px;
    }

    section {
      padding: 72px 0;
    }

    h1, h2, h3, h4 {
      letter-spacing: 0.03em;
    }

    /* Top Nav */
    .nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 50;
      background: linear-gradient(to bottom, rgba(5,5,12,0.98), rgba(5,5,10,0.85), transparent);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(255,255,255,0.04);
    }

    .nav-inner {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 10px 16px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      color: var(--text-light);
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 700;
      font-size: 18px;
      text-transform: uppercase;
    }

    .nav-logo-mark {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: radial-gradient(circle at 20% 20%, var(--primary), var(--accent-pink), var(--dark-bg));
      box-shadow: 0 0 20px rgba(245, 194, 66, 0.7);
    }

    .nav-links {
      display: flex;
      gap: 18px;
      font-size: 14px;
    }

    .nav-links a {
      padding: 6px 0;
      position: relative;
      text-transform: uppercase;
      font-weight: 500;
      opacity: 0.85;
    }

    .nav-links a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -3px;
      width: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--primary), var(--accent-pink));
      transition: width var(--transition-fast);
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .nav-cta {
      padding: 8px 18px;
      border-radius: 999px;
      background: linear-gradient(135deg, var(--primary), var(--accent-pink));
      color: #050509;
      font-size: 13px;
      font-weight: 700;
      text-transform: uppercase;
      box-shadow: 0 0 24px rgba(245, 194, 66, 0.65);
    }

    /* Mobile Nav */
    .nav-burger {
      display: none;
      width: 28px;
      height: 20px;
      flex-direction: column;
      justify-content: space-between;
      cursor: pointer;
    }

    .nav-burger span {
      display: block;
      height: 3px;
      border-radius: 999px;
      background: #ffffff;
    }

    .nav-links-mobile {
      display: none;
      flex-direction: column;
      padding: 10px 16px 14px;
      gap: 10px;
      font-size: 14px;
      background: rgba(5,5,12,0.98);
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .nav-links-mobile a {
      text-transform: uppercase;
      padding: 4px 0;
      color: var(--text-light);
    }

    /* Hero Section (video background) */
/* ================= HERO ================= */
/* =========================================================
   HERO SECTION (VIDEO + TEXT ON TOP)
   ========================================================= */

.hero {
  position: relative;
  min-height: 100vh;
  color: var(--text-light);
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* ================= VIDEO ================= */

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.18) contrast(1.12) brightness(1.02);
}

/* ================= SMART CINEMATIC OVERLAY ================= */

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      to right,
      rgba(2,6,23,0.78) 0%,
      rgba(2,6,23,0.45) 38%,
      rgba(2,6,23,0.18) 62%,
      rgba(2,6,23,0.05) 100%
    ),
    linear-gradient(
      to top,
      rgba(0,0,0,0.45),
      rgba(0,0,0,0.1)
    );
}

/* ================= HERO CONTENT ================= */

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 120px 16px 90px;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr);
  align-items: center;

  /* text readability without box */
  text-shadow:
    0 4px 18px rgba(0,0,0,0.65),
    0 1px 2px rgba(0,0,0,0.9);
}

/* ================= TEXT ================= */

.hero-kicker {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.75);
  margin-bottom: 10px;
}

.hero-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}

.hero-title span {
  background: linear-gradient(120deg, #ffffff, var(--primary));
  -webkit-background-clip: text;
  color: transparent;
}

.hero-meta {
  display: flex;
  gap: 14px 24px;
  flex-wrap: wrap;
  font-size: 13px;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.88);
}

.hero-description {
  font-size: 15px;
  max-width: 560px;
  margin-bottom: 26px;
  color: rgba(235,235,255,0.9);
}

/* ================= CTA ================= */

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.hero-ctas .btn-primary {
  box-shadow:
    0 0 28px rgba(245,194,66,0.7),
    0 18px 50px rgba(0,0,0,0.6);
}

.hero-ctas .btn-secondary {
  backdrop-filter: blur(6px);
}

/* ================= NOTE ================= */

.hero-note {
  font-size: 11px;
  color: rgba(220,220,245,0.75);
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

/* =========================================================
   HERO SIDE SECTION (BEAUTIFUL HIGHLIGHT BELOW HERO)
   ========================================================= */

.hero-side-section {
  position: relative;
  background:
    radial-gradient(
      circle at top,
      rgba(245,194,66,0.1),
      transparent 55%
    ),
    linear-gradient(
      to bottom,
      #07070f,
      #030308
    );
  padding: 88px 0 96px;
  overflow: hidden;
}

/* glowing separator */
.hero-side-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(245,194,66,0.6),
    transparent
  );
}

.hero-side-wrap {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
}

/* ================= SIDE CARD ================= */

.hero-side-section .hero-side-card {
  max-width: 440px;
  width: 100%;
  background:
    linear-gradient(
      180deg,
      rgba(14,14,28,0.96),
      rgba(5,5,12,0.96)
    );
  border-radius: 28px;
  padding: 22px 22px 24px;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow:
    0 40px 100px rgba(0,0,0,0.9),
    inset 0 1px 0 rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* hover polish */
@media (hover:hover) {
  .hero-side-section .hero-side-card:hover {
    transform: translateY(-4px);
    box-shadow:
      0 50px 120px rgba(0,0,0,0.95),
      inset 0 1px 0 rgba(255,255,255,0.12);
  }
}

/* ================= BADGE ================= */

.hero-side-badge {
  align-self: flex-start;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  background: linear-gradient(
    135deg,
    rgba(245,194,66,0.95),
    rgba(255,63,166,0.9)
  );
  color: #050509;
  font-weight: 700;
  box-shadow: 0 0 18px rgba(245,194,66,0.6);
}

/* ================= TITLE ================= */

.hero-side-title {
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.35;
}

/* ================= LIST ================= */

.hero-side-list {
  display: grid;
  gap: 8px;
  font-size: 13px;
  color: rgba(225,225,245,0.92);
}

.hero-side-list span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-side-list span::before {
  content: "✦";
  color: var(--primary);
  font-size: 11px;
}

/* ================= FOOTER ================= */

.hero-side-footer {
  margin-top: 6px;
  font-size: 11px;
  color: rgba(200,200,235,0.75);
  border-top: 1px dashed rgba(255,255,255,0.14);
  padding-top: 10px;
  text-align: center;
}

/* ================= MOBILE ================= */

@media (max-width: 900px) {
  .hero-inner {
    padding: 100px 16px 72px;
  }
}

@media (max-width: 720px) {
  .hero-side-section {
    padding: 64px 0 72px;
  }

  .hero-side-section .hero-side-card {
    padding: 18px 18px 20px;
  }
}


/* ================= CONTENT ================= */

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 120px 16px 80px;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 36px;
  align-items: start;
}

/* ================= TYPOGRAPHY (CLEAN, NO BOXES) ================= */

.hero-kicker {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.75);
  margin-bottom: 10px;
}

.hero-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 16px;
}

.hero-title span {
  background: linear-gradient(120deg, #ffffff, var(--primary));
  -webkit-background-clip: text;
  color: transparent;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  font-size: 13px;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.85);
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-description {
  font-size: 15px;
  max-width: 560px;
  margin-bottom: 24px;
  color: rgba(235,235,255,0.88);
}

/* ================= CTA ================= */

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 20px;
}

/* ================= MOBILE ================= */

@media (max-width: 900px) {

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 100px 16px 64px;
  }

  .hero-title {
    font-size: 32px;
  }

}


    .btn-primary {
      padding: 10px 22px;
      border-radius: 999px;
      border: none;
      cursor: pointer;
      font-weight: 700;
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      background: linear-gradient(135deg, var(--primary), var(--accent-pink));
      color: #050509;
      box-shadow: var(--shadow-soft);
      transition: transform var(--transition-fast), box-shadow var(--transition-fast), opacity var(--transition-fast);
    }

    .btn-primary:hover {
      transform: translateY(-1px);
      box-shadow: 0 22px 60px rgba(0,0,0,0.5);
    }

    .btn-secondary {
      padding: 9px 20px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,0.5);
      background: rgba(5,5,18,0.75);
      color: var(--text-light);
      font-weight: 600;
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
    }

    .btn-secondary:hover {
      background: rgba(255,255,255,0.1);
      border-color: #ffffff;
    }

    .hero-note {
      font-size: 11px;
      color: rgba(220,220,245,0.75);
      text-transform: uppercase;
      letter-spacing: 0.18em;
    }

    .hero-side-card {
      background: rgba(4,4,12,0.94);
      border-radius: 22px;
      padding: 18px 18px 20px;
      border: 1px solid rgba(255,255,255,0.08);
      box-shadow: 0 20px 55px rgba(0,0,0,0.7);
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .hero-side-badge {
      align-self: flex-start;
      padding: 4px 10px;
      border-radius: 999px;
      background: rgba(0,0,0,0.7);
      border: 1px solid rgba(255,255,255,0.15);
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: rgba(255,255,255,0.85);
    }

    .hero-side-title {
      font-size: 16px;
      font-weight: 600;
      color: #ffffff;
    }

    .hero-side-list {
      font-size: 13px;
      color: rgba(220,220,245,0.9);
      display: grid;
      gap: 6px;
    }

    .hero-side-list span::before {
      content: "•";
      margin-right: 6px;
      color: var(--primary);
    }

    .hero-side-footer {
      margin-top: 4px;
      font-size: 11px;
      color: rgba(200,200,235,0.7);
    }

    /* Common section heading */
    .section-heading {
      text-align: center;
      margin-bottom: 36px;
    }

    .section-kicker {
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.2em;
      color: var(--muted);
    }

    .section-title {
      font-size: 26px;
      margin-top: 6px;
    }

    .section-subtitle {
      font-size: 14px;
      color: var(--muted);
      margin-top: 6px;
      max-width: 520px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Main Poster Section */
    .poster-section {
      background: radial-gradient(circle at top, #151525, #050509 50%, #050509);
      color: var(--text-light);
    }

    .poster-content {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
      gap: 28px;
      align-items: center;
    }

    .poster-image-wrap {
      border-radius: 26px;
      overflow: hidden;
      box-shadow: var(--shadow-soft);
      border: 1px solid rgba(255,255,255,0.1);
      background: #000;
      min-height: 320px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .poster-image-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .poster-text h3 {
      font-size: 22px;
      margin-bottom: 8px;
    }

    .poster-text p {
      font-size: 14px;
      color: rgba(225,225,245,0.86);
      margin-bottom: 14px;
    }

    .poster-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 14px;
    }

    .poster-tag {
      font-size: 11px;
      text-transform: uppercase;
      padding: 4px 9px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,0.22);
      background: rgba(0,0,0,0.5);
    }

    .poster-details {
      font-size: 13px;
      color: rgba(215,215,245,0.82);
    }

    .poster-details strong {
      color: var(--primary);
    }

    /* Artists / Lineup Section */
    .lineup {
      background: var(--light-bg);
    }

    .lineup-tabs {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-bottom: 24px;
      flex-wrap: wrap;
    }

    .lineup-tab {
      padding: 7px 14px;
      border-radius: 999px;
      border: 1px solid var(--border-soft);
      background: #ffffff;
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      cursor: pointer;
      color: var(--muted);
      transition: background var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast), box-shadow var(--transition-fast);
    }

    .lineup-tab.active {
      background: var(--primary-soft);
      border-color: var(--primary);
      color: #312000;
      box-shadow: var(--shadow-card);
    }

    .lineup-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap: 18px;
    }

    .artist-card {
      background: #ffffff;
      border-radius: 18px;
      box-shadow: var(--shadow-card);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      border: 1px solid var(--border-soft);
    }

    .artist-poster {
      position: relative;
      padding-top: 110%;
      overflow: hidden;
    }

    .artist-poster img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .artist-role-pill {
      position: absolute;
      left: 10px;
      bottom: 10px;
      padding: 4px 9px;
      border-radius: 999px;
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      background: rgba(0,0,0,0.75);
      color: #ffffff;
      border: 1px solid rgba(255,255,255,0.5);
    }

    .artist-body {
      padding: 10px 12px 12px;
      font-size: 13px;
    }

    .artist-name {
      font-weight: 700;
      margin-bottom: 4px;
    }

    .artist-meta {
      font-size: 11px;
      color: var(--muted);
      margin-bottom: 6px;
    }

    .artist-styles {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: #555;
    }

    /* Tickets */
    .tickets {
      background: #ffffff;
    }

    .tickets-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    .ticket-card {
      background: #ffffff;
      border-radius: 18px;
      box-shadow: var(--shadow-card);
      border: 1px solid var(--border-soft);
      padding: 18px 16px 18px;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .ticket-name {
      font-size: 16px;
      font-weight: 700;
    }

    .ticket-label {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: var(--muted);
    }

    .ticket-price {
      font-size: 20px;
      font-weight: 800;
      margin-top: 4px;
    }

    .ticket-includes {
      font-size: 13px;
      color: var(--muted);
    }

    .ticket-includes ul {
      margin: 6px 0 0;
      padding-left: 18px;
    }

    .ticket-cta {
      margin-top: 4px;
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .btn-pay {
      flex: 1 1 120px;
      padding: 8px 10px;
      border-radius: 999px;
      border: 1px solid #d9d9ea;
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      cursor: pointer;
      background: #f8f8ff;
      color: #33334a;
      display: inline-flex;
      justify-content: center;
      align-items: center;
      gap: 6px;
      transition: background var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
    }

    .btn-pay:hover {
      background: #ffffff;
      border-color: var(--primary);
      box-shadow: var(--shadow-card);
    }

    .ticket-note {
      font-size: 11px;
      color: var(--muted);
      margin-top: 4px;
    }

    /* Schedule */
    .schedule {
      background: var(--light-bg);
    }

    .schedule-layout {
      display: grid;
      grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
      gap: 20px;
      align-items: flex-start;
    }

    .schedule-table {
      background: #ffffff;
      border-radius: 18px;
      box-shadow: var(--shadow-card);
      border: 1px solid var(--border-soft);
      padding: 16px;
      font-size: 13px;
    }

    .schedule-table table {
      width: 100%;
      border-collapse: collapse;
    }

    .schedule-table th,
    .schedule-table td {
      padding: 8px 6px;
      border-bottom: 1px solid #f0f0fb;
      text-align: left;
      vertical-align: top;
    }

    .schedule-table th {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: var(--muted);
    }

    .schedule-badge {
      display: inline-block;
      padding: 2px 7px;
      border-radius: 999px;
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: #ffffff;
    }

    .schedule-bachata { background: #ff3fa6; }
    .schedule-salsa { background: #ff8a3f; }
    .schedule-kizomba { background: #13a5ff; }

    .schedule-note-card {
      background: #ffffff;
      border-radius: 18px;
      padding: 16px 16px 18px;
      box-shadow: var(--shadow-card);
      border: 1px solid var(--border-soft);
      font-size: 13px;
      color: var(--muted);
    }

    /* J&J Registration */
    .jj {
      background: #ffffff;
    }

    .jj-layout {
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
      gap: 24px;
      align-items: flex-start;
    }

    .jj-text {
      font-size: 14px;
      color: var(--muted);
    }

    .jj-highlight {
      font-size: 16px;
      font-weight: 600;
      color: var(--text-main);
      margin-bottom: 8px;
    }

    .jj-form {
      background: #f9f9ff;
      border-radius: 18px;
      padding: 16px 16px 18px;
      border: 1px solid var(--border-soft);
      box-shadow: var(--shadow-card);
      font-size: 13px;
    }

    .field-row {
      display: flex;
      gap: 10px;
      margin-bottom: 10px;
      flex-wrap: wrap;
    }

    .field {
      flex: 1 1 150px;
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .field label {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      color: var(--muted);
    }

    .field input,
    .field select,
    .field textarea {
      padding: 7px 9px;
      border-radius: 10px;
      border: 1px solid #dcdcf0;
      font-size: 13px;
      font-family: inherit;
      resize: vertical;
    }

    .field textarea {
      min-height: 70px;
    }

    .field input:focus,
    .field select:focus,
    .field textarea:focus {
      outline: none;
      border-color: var(--primary);
      box-shadow: 0 0 0 1px var(--primary-soft);
    }

    .jj-consent {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      font-size: 11px;
      color: var(--muted);
      margin: 8px 0;
    }

    .jj-consent input {
      margin-top: 2px;
    }

    .jj-small {
      font-size: 11px;
      color: var(--muted);
      margin-top: 4px;
    }

    /* Media */
    .media {
      background: var(--light-bg);
    }

    .media-grid {
      display: grid;
      grid-template-columns: 2fr 1.2fr;
      gap: 20px;
      align-items: flex-start;
    }

    .media-videos {
      display: grid;
      grid-template-columns: repeat(2, minmax(0,1fr));
      gap: 10px;
    }

    .media-video-frame {
      position: relative;
      padding-top: 56.25%;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: var(--shadow-card);
      background: #000;
    }

    .media-video-frame iframe {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border: 0;
    }

    .media-photos {
      background: #ffffff;
      border-radius: 18px;
      box-shadow: var(--shadow-card);
      border: 1px solid var(--border-soft);
      padding: 12px;
      font-size: 13px;
      color: var(--muted);
    }

    .media-photo-grid {
      margin-top: 10px;
      display: grid;
      grid-template-columns: repeat(2, minmax(0,1fr));
      gap: 8px;
    }

    .media-photo-grid div {
      border-radius: 10px;
      overflow: hidden;
      background: #000;
      min-height: 80px;
    }

    /* Venue */
    .venue {
      background: #ffffff;
    }

    .venue-layout {
      display: grid;
      grid-template-columns: minmax(0,1.15fr) minmax(0,1fr);
      gap: 24px;
      align-items: flex-start;
    }

    .venue-text {
      font-size: 14px;
      color: var(--muted);
    }

    .venue-map {
      border-radius: 18px;
      overflow: hidden;
      box-shadow: var(--shadow-card);
      border: 1px solid var(--border-soft);
      min-height: 220px;
      background: #000;
    }

    .venue-map iframe {
      width: 100%;
      height: 100%;
      border: 0;
    }

    /* Contact */
    .contact {
      background: var(--dark-bg-alt);
      color: var(--text-light);
    }

    .contact-layout {
      display: grid;
      grid-template-columns: minmax(0,1.1fr) minmax(0,1fr);
      gap: 24px;
      align-items: flex-start;
    }

    .contact-details {
      font-size: 14px;
      color: rgba(232,232,255,0.85);
    }

    .contact-details p + p {
      margin-top: 8px;
    }

    .contact-links {
      margin-top: 12px;
      font-size: 13px;
    }

    .contact-links a {
      color: var(--primary);
    }

    .contact-form {
      background: rgba(7,7,22,0.94);
      border-radius: 18px;
      padding: 14px 16px 16px;
      border: 1px solid rgba(255,255,255,0.12);
      box-shadow: var(--shadow-soft);
      font-size: 13px;
    }

    .contact-form .field input,
    .contact-form .field textarea {
      background: rgba(10,10,24,0.94);
      border-color: rgba(255,255,255,0.16);
      color: var(--text-light);
    }

    .contact-form .field input::placeholder,
    .contact-form .field textarea::placeholder {
      color: rgba(200,200,235,0.7);
    }

    .contact-form .field input:focus,
    .contact-form .field textarea:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 1px rgba(245,194,66,0.2);
    }

    /* Footer */
    .footer {
      padding: 18px 0 26px;
      background: #030308;
      color: rgba(180,180,220,0.78);
      font-size: 11px;
    }

    .footer-inner {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 16px;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 10px;
      align-items: center;
    }

    .footer-social {
      display: flex;
      gap: 10px;
      font-size: 12px;
    }

    .footer-social a {
      color: rgba(220,220,255,0.88);
    }

    /* Responsive */
    @media (max-width: 900px) {
      .hero-inner,
      .poster-content,
      .lineup-grid,
      .tickets-grid,
      .schedule-layout,
      .jj-layout,
      .media-grid,
      .venue-layout,
      .contact-layout {
        grid-template-columns: minmax(0,1fr);
      }

      .lineup-grid,
      .tickets-grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
      }

      .media-videos {
        grid-template-columns: minmax(0,1fr);
      }
    }

    @media (max-width: 720px) {
      .nav-links {
        display: none;
      }

      .nav-burger {
        display: flex;
      }

      .hero-inner {
        grid-template-columns: minmax(0,1fr);
        padding-top: 96px;
      }

      .hero-side-card {
        margin-top: 6px;
      }

      .lineup-grid,
      .tickets-grid {
        grid-template-columns: minmax(0,1fr);
      }

      section {
        padding: 56px 0;
      }
    }

    /* PAYMENT MODAL */


.modal{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.6);
  z-index:9999;
  align-items:center !important;
  justify-content:center !important;
}


.modal-box{
  background:#fff;
  padding:24px;
  border-radius:14px;
  width:100%;
  max-width:420px;
  box-shadow:0 20px 60px rgba(0,0,0,.25);
}

.modal-box h3{
  margin-bottom:14px;
  font-size:20px;
}

.modal-box input{
  width:100%;
  padding:12px;
  margin-bottom:10px;
  border-radius:8px;
  border:1px solid #ddd;
}

.modal-box button{
  padding:12px 18px;
  border-radius:8px;
  border:none;
  cursor:pointer;
}

.modal-box button:first-child{
  background:#4f46e5;
  color:#fff;
  margin-right:6px;
}

.modal-box button:last-child{
  background:#e5e7eb;
}

