/* ===== Reset & Variables ===== */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

:root {
  --primary: #1a0a3e;
  --primary-mid: #2d1b69;
  --primary-light: #4a2c8a;
  --accent: #00e5a0;
  --accent-dark: #00c98b;
  --accent-glow: rgba(0,229,160,0.3);
  --gold: #d4a843;
  --gold-light: #e8c96a;
  --cyan: #00d4ff;
  --magenta: #ff3d8e;
  --bg-dark: #0a0a1a;
  --bg-section: #0e0e24;
  --bg-card: #151535;
  --bg-card-hover: #1e1e4a;
  --text: #eaeaf5;
  --text-muted: #9090b8;
  --text-dim: #5a5a80;
  --border: #2a2a55;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --shadow: 0 4px 30px rgba(0,0,0,0.5);
  --shadow-lg: 0 8px 60px rgba(0,0,0,0.7);
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-dark); }
img { max-width: 100%; display: block; }
.container { max-width: 1320px; margin: 0 auto; padding: 0 24px; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 24px; border: none; border-radius: var(--radius-sm);
  font-family: inherit; font-size: 0.9rem; font-weight: 600;
  cursor: pointer; transition: var(--transition); white-space: nowrap;
}
.btn-accent {
  background: linear-gradient(135deg, var(--accent), var(--cyan));
  color: #000;
}
.btn-accent:hover { transform: translateY(-2px); box-shadow: 0 4px 20px var(--accent-glow); }
.btn-outline-light {
  background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline-light:hover { border-color: #fff; background: rgba(255,255,255,0.1); }
.btn-ghost {
  background: rgba(255,255,255,0.08); color: var(--text); border: 1px solid var(--border);
  position: relative;
}
.btn-ghost:hover { background: rgba(255,255,255,0.15); }
.btn-sm { padding: 8px 16px; font-size: 0.8rem; }
.btn-lg { padding: 14px 36px; font-size: 1rem; }
.btn-block { width: 100%; }
.cart-badge {
  position: absolute; top: -6px; right: -6px;
  background: var(--magenta); color: #fff; font-size: 0.65rem;
  width: 18px; height: 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* ===== Top Bar ===== */
.top-bar {
  background: var(--primary);
  padding: 8px 0;
  font-size: 0.78rem;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; }
.top-bar-right { display: flex; gap: 16px; }
@media(max-width:768px) { .top-bar-right { display: none; } }

/* ===== Navbar ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,10,26,0.9); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
  margin-top: 36px;
}
.navbar.scrolled { margin-top: 0; background: rgba(10,10,26,0.97); box-shadow: var(--shadow); }
.nav-container {
  max-width: 1320px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; height: 60px; gap: 24px;
}
.logo { display: flex; align-items: center; gap: 10px; color: var(--text); }
.logo-emblem { font-size: 1.6rem; }
.logo-text-wrap { display: flex; flex-direction: column; line-height: 1.2; }
.logo-main { font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 0.95rem; letter-spacing: 1px; }
.logo-sub { font-size: 0.65rem; color: var(--text-muted); font-weight: 400; }
.nav-links { display: flex; list-style: none; gap: 4px; flex: 1; justify-content: center; }
.nav-links a {
  color: var(--text-muted); padding: 6px 12px; border-radius: var(--radius-sm);
  font-size: 0.82rem; font-weight: 500; transition: var(--transition);
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.06); }
.nav-actions { display: flex; gap: 12px; align-items: center; }
.mobile-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 28px; height: 20px; position: relative; flex-direction: column; justify-content: space-between;
}
.mobile-toggle span {
  display: block; width: 100%; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition);
}
@media(max-width:1024px) {
  .nav-links { display: none; }
  .mobile-toggle { display: flex; }
  .nav-links.active {
    display: flex; flex-direction: column; position: absolute;
    top: 60px; left: 0; right: 0; background: var(--bg-dark);
    border-bottom: 1px solid var(--border); padding: 16px; z-index: 999;
  }
}


/* ===== Hero ===== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding: 120px 24px 0;
}
.hero-video-bg { position: absolute; inset: 0; }
.hero-bg-img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(10,10,26,0.7) 0%,
    rgba(26,10,62,0.85) 50%,
    rgba(10,10,26,0.95) 100%
  );
}
.hero-content {
  position: relative; text-align: center; max-width: 900px; z-index: 2;
  padding-bottom: 100px;
}
.hero-eyebrow {
  font-family: 'Oswald', sans-serif; font-size: 0.9rem; font-weight: 500;
  letter-spacing: 4px; color: var(--accent); margin-bottom: 12px;
  animation: fadeInUp 0.6s ease both;
}
.hero-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700; line-height: 1.05; margin-bottom: 16px;
  animation: fadeInUp 0.6s ease 0.1s both;
}
.hero-title span { display: inline; }
.hero-tm { font-size: 0.3em; vertical-align: super; }
.hero-subtitle {
  font-size: 1.1rem; color: var(--text-muted); margin-bottom: 12px;
  animation: fadeInUp 0.6s ease 0.2s both;
}
.hero-desc {
  font-size: 0.95rem; color: var(--text-dim); margin-bottom: 32px; line-height: 1.8;
  animation: fadeInUp 0.6s ease 0.25s both;
}
.hero-actions {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px;
  animation: fadeInUp 0.6s ease 0.3s both;
}
.hero-tags {
  display: flex; gap: 10px; justify-content: center; flex-wrap: wrap;
  animation: fadeInUp 0.6s ease 0.4s both;
}
.hero-tag {
  padding: 8px 18px; background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12); border-radius: 50px;
  color: var(--text); font-size: 0.82rem; font-weight: 500;
  transition: var(--transition);
}
.hero-tag:hover { background: rgba(0,229,160,0.15); border-color: var(--accent); color: var(--accent); }

.hero-stats-bar {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(10,10,26,0.8); backdrop-filter: blur(10px);
  border-top: 1px solid var(--border); padding: 20px 0; z-index: 2;
}
.hero-stats { display: flex; justify-content: center; gap: 60px; }
.h-stat { text-align: center; }
.h-stat-num {
  display: block; font-family: 'Oswald', sans-serif;
  font-size: 2rem; font-weight: 700; color: var(--accent);
}
.h-stat-label { font-size: 0.8rem; color: var(--text-muted); }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== Sections ===== */
.section { padding: 80px 0; }
.section-dark { background: var(--bg-section); }
.section-accent {
  background: linear-gradient(135deg, var(--primary), var(--primary-mid));
}
.section-title-lg {
  font-family: 'Oswald', sans-serif; font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700; letter-spacing: 2px; text-align: center; margin-bottom: 12px;
}
.section-desc { text-align: center; color: var(--text-muted); font-size: 1rem; margin-bottom: 48px; }
.sub-title {
  font-family: 'Oswald', sans-serif; font-size: 1.4rem; font-weight: 600;
  letter-spacing: 1px; margin-bottom: 24px;
}

/* ===== Offerings Grid ===== */
.offerings-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.offering-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  min-height: 260px; cursor: pointer; transition: var(--transition);
}
.offering-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.offering-card:hover .offering-img { transform: scale(1.05); }
.offering-wide { grid-column: span 1; }
.offering-img {
  width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0;
  transition: transform 0.6s ease;
}
.offering-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(10,10,26,0.85) 100%);
}
.offering-content {
  position: relative; z-index: 2; padding: 32px;
  display: flex; flex-direction: column; justify-content: flex-end; height: 100%;
}
.offering-content h3 {
  font-family: 'Oswald', sans-serif; font-size: 1.4rem; font-weight: 700;
  letter-spacing: 1px; margin-bottom: 8px; line-height: 1.3;
}
.offering-content p { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 16px; }

@media(max-width:768px) {
  .offerings-grid { grid-template-columns: 1fr; }
  .offering-wide { grid-column: span 1; }
}

/* ===== Filters ===== */
.filters {
  display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 32px;
  padding: 24px; background: var(--bg-card); border-radius: var(--radius);
  border: 1px solid var(--border);
}
.filter-group { flex: 1; min-width: 150px; }
.filter-group label {
  display: block; font-size: 0.7rem; font-weight: 600; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px;
}
.filter-group select, .filter-group input {
  width: 100%; padding: 10px 14px; background: var(--bg-dark);
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  color: var(--text); font-family: inherit; font-size: 0.85rem;
  transition: var(--transition);
}
.filter-group select:focus, .filter-group input:focus {
  outline: none; border-color: var(--accent);
}
.matches-count { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 16px; }


/* ===== Match Cards with Flags ===== */
.matches-grid { display: grid; gap: 12px; }
.match-card {
  display: grid; grid-template-columns: 120px 1fr auto;
  align-items: center; gap: 20px; padding: 16px 24px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); transition: var(--transition);
}
.match-card:hover {
  border-color: var(--accent); background: var(--bg-card-hover);
  transform: translateX(4px); box-shadow: 0 0 20px var(--accent-glow);
}
.match-date { text-align: center; }
.match-date .day { display: block; font-family: 'Oswald',sans-serif; font-size: 1.6rem; font-weight: 700; color: var(--accent); }
.match-date .month { font-size: 0.8rem; color: var(--text-muted); }
.match-date .time { font-size: 0.75rem; color: var(--text-dim); margin-top: 2px; }

.match-info { display: flex; flex-direction: column; gap: 8px; }
.match-teams-row {
  display: flex; align-items: center; gap: 12px; font-size: 1rem; font-weight: 600;
}
.team-flag {
  width: 32px; height: 22px; border-radius: 3px; object-fit: cover;
  box-shadow: 0 1px 3px rgba(0,0,0,0.3); flex-shrink: 0;
}
.team-name { white-space: nowrap; }
.vs-badge {
  padding: 2px 10px; background: rgba(255,255,255,0.06);
  border-radius: 4px; font-size: 0.7rem; color: var(--text-dim); font-weight: 400;
}
.match-meta { display: flex; gap: 12px; font-size: 0.75rem; color: var(--text-muted); flex-wrap: wrap; }
.match-meta span { display: flex; align-items: center; gap: 4px; }
.match-stage-badge {
  display: inline-block; padding: 3px 10px; border-radius: 50px;
  font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
}
.badge-group { background: rgba(0,229,160,0.15); color: var(--accent); }
.badge-r32 { background: rgba(0,212,255,0.15); color: var(--cyan); }
.badge-r16 { background: rgba(168,85,247,0.15); color: #A855F7; }
.badge-quarter { background: rgba(245,158,11,0.15); color: #F59E0B; }
.badge-semi { background: rgba(239,68,68,0.15); color: #EF4444; }
.badge-third { background: rgba(236,72,153,0.15); color: #EC4899; }
.badge-final { background: rgba(212,168,67,0.25); color: var(--gold); }

.match-actions { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.match-price { font-size: 1.05rem; font-weight: 700; color: var(--gold); }
.match-price .from { font-size: 0.7rem; font-weight: 400; color: var(--text-muted); }

@media(max-width:768px) {
  .match-card { grid-template-columns: 1fr; gap: 10px; }
  .match-date { text-align: left; display: flex; gap: 10px; align-items: baseline; }
  .match-actions { flex-direction: row; align-items: center; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .h-stat-num { font-size: 1.5rem; }
}

/* ===== Hospitality ===== */
.hospitality-hero {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  min-height: 400px; display: flex; align-items: center;
}
.hospitality-bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.hospitality-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10,10,26,0.92) 0%, rgba(10,10,26,0.5) 100%);
}
.hospitality-content {
  position: relative; z-index: 2; padding: 48px; max-width: 600px;
}
.hospitality-content p { color: var(--text-muted); margin: 16px 0 24px; font-size: 0.95rem; }
.hospitality-features { display: flex; gap: 16px; flex-wrap: wrap; }
.hosp-feat {
  padding: 10px 18px; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-sm);
  font-size: 0.85rem; color: var(--text);
}

.additional-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.additional-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; transition: var(--transition);
}
.additional-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--accent); }
.additional-card img { width: 100%; height: 200px; object-fit: cover; }
.additional-info { padding: 20px; }
.additional-info h4 {
  font-family: 'Oswald', sans-serif; font-size: 1rem; font-weight: 600;
  letter-spacing: 0.5px; margin-bottom: 8px;
}
.additional-info p { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 12px; }
.additional-price { color: var(--gold); font-weight: 700; font-size: 0.95rem; }

@media(max-width:768px) {
  .additional-grid { grid-template-columns: 1fr; }
  .hospitality-content { padding: 24px; }
}

/* ===== Hotels ===== */
.hotels-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.hotel-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; transition: var(--transition);
}
.hotel-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--cyan); }
.hotel-img-wrap { position: relative; height: 200px; overflow: hidden; }
.hotel-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.hotel-card:hover .hotel-img-wrap img { transform: scale(1.05); }
.hotel-badge {
  position: absolute; top: 12px; left: 12px;
  padding: 4px 12px; background: var(--magenta); color: #fff;
  border-radius: 50px; font-size: 0.7rem; font-weight: 700;
}
.hotel-info { padding: 20px; }
.hotel-city { font-size: 0.8rem; color: var(--accent); margin-bottom: 6px; }
.hotel-info h4 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.hotel-stars { font-size: 0.75rem; margin-bottom: 8px; }
.hotel-info p { color: var(--text-muted); font-size: 0.82rem; margin-bottom: 16px; }
.hotel-bottom { display: flex; justify-content: space-between; align-items: center; }
.hotel-price { font-size: 1.1rem; font-weight: 700; color: var(--gold); }
.hotel-price small { font-size: 0.7rem; font-weight: 400; color: var(--text-muted); }

@media(max-width:768px) { .hotels-grid { grid-template-columns: 1fr; } }


/* ===== Merchandise ===== */
.merch-tabs {
  display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-bottom: 36px;
}
.merch-tab {
  padding: 10px 22px; background: rgba(255,255,255,0.05);
  border: 1px solid var(--border); border-radius: 50px;
  color: var(--text-muted); font-family: inherit; font-size: 0.85rem;
  font-weight: 500; cursor: pointer; transition: var(--transition);
}
.merch-tab:hover { border-color: var(--accent); color: var(--accent); }
.merch-tab.active {
  background: linear-gradient(135deg, var(--accent), var(--cyan));
  color: #000; border-color: transparent; font-weight: 700;
}

.merch-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.merch-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; transition: var(--transition);
}
.merch-card.hidden { display: none; }
.merch-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--accent); }
.merch-img-wrap {
  position: relative; height: 240px; overflow: hidden; background: #1a1a3a;
}
.merch-img-wrap img {
  width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease;
}
.merch-card:hover .merch-img-wrap img { transform: scale(1.08); }
.merch-badge {
  position: absolute; top: 12px; left: 12px;
  padding: 4px 12px; background: var(--accent); color: #000;
  border-radius: 50px; font-size: 0.68rem; font-weight: 700;
}
.merch-badge.sale { background: var(--magenta); color: #fff; }
.merch-badge.new { background: var(--cyan); color: #000; }
.merch-badge.limited { background: var(--gold); color: #000; }
.merch-wishlist {
  position: absolute; top: 12px; right: 12px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(0,0,0,0.5); border: none; color: #fff;
  font-size: 1.1rem; cursor: pointer; transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.merch-wishlist:hover { background: var(--magenta); transform: scale(1.1); }
.merch-info { padding: 16px 20px; }
.merch-cat { font-size: 0.7rem; color: var(--accent); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.merch-info h4 { font-size: 0.95rem; font-weight: 600; margin: 6px 0 8px; line-height: 1.4; }
.merch-rating { font-size: 0.8rem; color: var(--gold); margin-bottom: 12px; }
.merch-rating span { color: var(--text-dim); font-size: 0.75rem; }
.merch-bottom { display: flex; justify-content: space-between; align-items: center; }
.merch-price { font-size: 1.1rem; font-weight: 700; color: var(--gold); }
.merch-price del { font-size: 0.8rem; color: var(--text-dim); font-weight: 400; margin-left: 6px; }

@media(max-width:1024px) { .merch-grid { grid-template-columns: repeat(3, 1fr); } }
@media(max-width:768px) { .merch-grid { grid-template-columns: repeat(2, 1fr); } }
@media(max-width:480px) { .merch-grid { grid-template-columns: 1fr; } }

/* ===== Groups ===== */
.groups-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px;
}
.group-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; transition: var(--transition);
}
.group-card:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: var(--shadow); }
.group-header {
  padding: 14px 20px;
  background: linear-gradient(135deg, var(--primary-mid), var(--primary-light));
  font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 1rem; letter-spacing: 1px;
}
.group-teams { padding: 6px 0; }
.group-team {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 20px; font-size: 0.9rem; transition: var(--transition);
}
.group-team:hover { background: rgba(255,255,255,0.03); }
.group-team .flag-img {
  width: 28px; height: 20px; border-radius: 3px; object-fit: cover;
  box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

/* ===== Venues ===== */
.venues-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px;
}
.venue-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; transition: var(--transition);
}
.venue-card:hover { border-color: var(--cyan); transform: translateY(-4px); box-shadow: var(--shadow); }
.venue-card-img { height: 180px; overflow: hidden; }
.venue-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.venue-card:hover .venue-card-img img { transform: scale(1.05); }
.venue-card-info { padding: 20px; }
.venue-country {
  display: inline-block; padding: 3px 10px; border-radius: 50px;
  font-size: 0.65rem; font-weight: 700; text-transform: uppercase; margin-bottom: 10px;
}
.venue-usa { background: rgba(0,212,255,0.15); color: var(--cyan); }
.venue-canada { background: rgba(239,68,68,0.15); color: #EF4444; }
.venue-mexico { background: rgba(0,229,160,0.15); color: var(--accent); }
.venue-name { font-size: 1.05rem; font-weight: 700; margin-bottom: 4px; }
.venue-city { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 12px; }
.venue-details { display: flex; gap: 14px; font-size: 0.78rem; color: var(--text-dim); flex-wrap: wrap; }
.venue-details span { display: flex; align-items: center; gap: 4px; }

/* ===== Why Section ===== */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-img { border-radius: var(--radius-lg); overflow: hidden; }
.why-img img { width: 100%; height: 400px; object-fit: cover; }
.why-stats { display: flex; gap: 40px; margin: 24px 0; }
.why-num {
  display: block; font-family: 'Oswald', sans-serif;
  font-size: 2.5rem; font-weight: 700; color: var(--accent);
}
.why-label { font-size: 0.85rem; color: var(--text-muted); }
.why-list { list-style: none; }
.why-list li {
  padding: 8px 0; font-size: 0.95rem; color: var(--text-muted);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
@media(max-width:768px) { .why-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ===== FAQ ===== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; background: none; border: none; color: var(--text);
  font-family: inherit; font-size: 1rem; font-weight: 600;
  cursor: pointer; text-align: left; transition: var(--transition);
}
.faq-question:hover { color: var(--accent); }
.faq-icon { font-size: 1.5rem; color: var(--text-dim); transition: var(--transition); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease;
  color: var(--text-muted); font-size: 0.9rem; line-height: 1.7;
}
.faq-item.active .faq-answer { max-height: 200px; padding-bottom: 20px; }
.faq-item.active .faq-icon { transform: rotate(45deg); color: var(--accent); }

/* ===== Footer ===== */
.footer {
  background: var(--bg-dark); border-top: 1px solid var(--border); padding: 60px 0 30px;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 40px; margin-bottom: 40px;
}
.footer-brand p { color: var(--text-muted); font-size: 0.85rem; margin-top: 12px; line-height: 1.7; }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.06); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; transition: var(--transition);
}
.footer-social a:hover { background: var(--accent); color: #000; border-color: var(--accent); }
.footer-col h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a { color: var(--text-muted); font-size: 0.85rem; transition: var(--transition); }
.footer-col ul a:hover { color: var(--accent); }
.footer-contact { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 8px; }
.footer-bottom {
  text-align: center; padding-top: 24px; border-top: 1px solid var(--border);
  color: var(--text-dim); font-size: 0.78rem;
}
@media(max-width:768px) { .footer-top { grid-template-columns: 1fr; gap: 24px; } }

/* ===== Modals ===== */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px); z-index: 2000;
  display: none; align-items: center; justify-content: center; padding: 24px;
}
.modal-overlay.active { display: flex; }
.modal {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); width: 100%; max-width: 520px; max-height: 80vh; overflow-y: auto;
}
.modal-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; border-bottom: 1px solid var(--border);
}
.modal-header h3 { font-size: 1.1rem; }
.modal-close { background: none; border: none; color: var(--text-muted); font-size: 1.2rem; cursor: pointer; }
.modal-body { padding: 24px; }
.modal-footer { padding: 16px 24px; border-top: 1px solid var(--border); }
.cart-empty { text-align: center; color: var(--text-dim); padding: 40px 0; }
.cart-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.05);
}
.cart-item-info { flex: 1; }
.cart-item-name { font-weight: 600; font-size: 0.85rem; }
.cart-item-detail { font-size: 0.75rem; color: var(--text-muted); }
.cart-item-price { font-weight: 700; color: var(--gold); margin: 0 16px; }
.cart-item-remove { background: none; border: none; color: var(--text-dim); cursor: pointer; font-size: 1rem; }
.cart-item-remove:hover { color: #EF4444; }
.cart-total { text-align: right; font-size: 1.1rem; margin-bottom: 16px; }

.ticket-options { display: flex; flex-direction: column; gap: 12px; }
.ticket-option {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px; background: var(--bg-dark); border: 1px solid var(--border);
  border-radius: var(--radius-sm); cursor: pointer; transition: var(--transition);
}
.ticket-option:hover { border-color: var(--accent); background: var(--bg-card-hover); }
.ticket-option-name { font-weight: 600; }
.ticket-option-desc { font-size: 0.8rem; color: var(--text-muted); }
.ticket-option-price { font-weight: 700; color: var(--gold); font-size: 1.1rem; }

/* ===== Scrollbar ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-dim); }
