/* ===== VARIABLES ===== */
:root {
  --bg: #080808;
  --bg-light: #1a1a1a;
  --bg-card: rgba(255,255,255,.04);
  --bg-card2: rgba(255,255,255,.06);
  --accent-red: #CC2200;
  --accent-gold: #C8A96E;
  --text: #EDE8E0;
  --text-muted: #9A8878;
  --heading: Georgia, 'Times New Roman', serif;
  --body: Arial, Helvetica, sans-serif;
  --nav-h: 68px;
  --eats: #CC6622;
  --stay: #4A8A3A;
  --go: #4A4AAA;
  --venue: #CC2200;
  --tour: #2A7AAA;
  --radius: 12px;
}

/* Explicit dark-mode variable reset — ensures dark mode is always correct regardless of OS setting */
html[data-theme="dark"] {
  --text: #EDE8E0;
  --text-muted: #9A8878;
  --accent-gold: #C8A96E;
  --bg: #080808;
  --bg-light: #1a1a1a;
  --bg-card: rgba(255,255,255,.04);
  --bg-card2: rgba(255,255,255,.06);
}

/* prefers-color-scheme: dark — no-JS / first-render fallback */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --text: #EDE8E0;
    --text-muted: #9A8878;
    --accent-gold: #C8A96E;
    --bg: #080808;
    --bg-light: #1a1a1a;
    --bg-card: rgba(255,255,255,.04);
    --bg-card2: rgba(255,255,255,.06);
  }
}

/* prefers-color-scheme: light — no-JS / first-render fallback */
@media (prefers-color-scheme: light) {
  :root:not([data-theme="dark"]) {
    --text: #1a1a1a;
    --text-muted: #6a5a4a;
    --accent-gold: #8a6a2a;
    --bg: #f8f8f5;
    --bg-light: #ece5d8;
    --bg-card: rgba(0,0,0,.04);
    --bg-card2: rgba(0,0,0,.06);
  }
  html:not([data-theme="dark"]) body {
    background: linear-gradient(160deg,#f8f8f5 0%,#ece5d8 100%) !important;
    background-attachment: fixed !important;
    color: #1a1a1a;
  }
  html:not([data-theme="dark"]) p { color: #3a2a18; }
  html:not([data-theme="dark"]) h1,
  html:not([data-theme="dark"]) h2,
  html:not([data-theme="dark"]) h3,
  html:not([data-theme="dark"]) h4 { color: #2a1a08; }
  html:not([data-theme="dark"]) a { color: #CC2200; }
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: #080808;
  color: var(--text);
  font-family: var(--body);
  font-size: .875rem;
  line-height: 1.85;
  letter-spacing: .012em;
  min-height: 100vh;
}
h1 { font-family: var(--heading); line-height: 1.12; font-weight: 300; }
h2 { font-family: var(--heading); line-height: 1.18; font-weight: 300; }
h3 { font-family: var(--heading); line-height: 1.25; font-weight: 400; }
h4,h5,h6 { font-family: var(--heading); line-height: 1.3; }
a { color: var(--accent-gold); text-decoration: none; transition: color .25s; }
a:hover { color: var(--accent-red); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ===== NAV ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; height: var(--nav-h);
  background: rgba(6,6,6,.88); backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(200,169,110,.14);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem; z-index: 1000;
  transition: background .3s, box-shadow .3s;
}
.navbar::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--accent-red) 50%, transparent 100%);
  opacity: .55; pointer-events: none;
}
.navbar.scrolled {
  background: rgba(4,4,4,.97);
  backdrop-filter: blur(28px);
  box-shadow: 0 4px 32px rgba(0,0,0,.55);
  border-bottom-color: rgba(204,34,0,.22);
}
.nav-logo { display: flex; flex-direction: column; line-height: 1; flex-shrink: 0; }
.nav-logo-name { font-family: var(--heading); font-size: 1.35rem; color: var(--accent-gold); letter-spacing: 2px; font-weight: bold; }
.nav-logo-tagline { font-size: .6rem; color: var(--text-muted); letter-spacing: 3.5px; text-transform: uppercase; margin-top: 2px; }
.nav-links { display: flex; align-items: center; gap: .05rem; }
.nav-links > li { position: relative; }
.nav-links a {
  color: var(--text); font-size: .78rem; padding: .38rem .6rem;
  border-radius: 4px; letter-spacing: .4px; transition: all .25s; display: flex; align-items: center;
}
.nav-links a:hover, .nav-links a.active { color: var(--accent-gold); background: rgba(200,169,110,.08); }
.nav-links a.nav-eats { color: var(--eats); }
.nav-links a.nav-stay { color: var(--stay); }
.nav-links a.nav-go { color: var(--go); }
.nav-links a.nav-shop { color: var(--tour); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); transition: all .3s; border-radius: 2px; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== NAV DROPDOWN ===== */
.nav-dropdown-btn { gap: .25rem; cursor: pointer; }
.nav-arrow { font-size: .6rem; transition: transform .25s; margin-left: .1rem; }
.nav-item-dropdown:hover .nav-arrow { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: rgba(6,6,6,.97); backdrop-filter: blur(24px);
  border: 1px solid rgba(200,169,110,.18); border-radius: 10px;
  padding: 12px .45rem .45rem; min-width: 185px;
  opacity: 0; pointer-events: none;
  transition: opacity .22s, transform .22s; z-index: 200;
}
.nav-item-dropdown:hover .nav-dropdown-menu,
.nav-item-dropdown.dropdown-open .nav-dropdown-menu {
  opacity: 1; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu li a {
  display: block; padding: .48rem .85rem; border-radius: 6px;
  font-size: .78rem; color: var(--text); transition: all .2s;
  white-space: nowrap; background: none;
}
.nav-dropdown-menu li a:hover { background: rgba(200,169,110,.1); color: var(--accent-gold); }

/* ===== PAGE WRAPPER ===== */
.page-wrapper { padding-top: var(--nav-h); min-height: 100vh; display: flex; flex-direction: column; }
main { flex: 1; }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  padding: 7rem 2rem 8rem; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: var(--hero-img, none);
  background-size: cover; background-position: center; z-index: 0;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0; background: rgba(0,0,0,.65);
}
.hero canvas { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.hero > *:not(.hero-bg):not(canvas) { position: relative; z-index: 2; }
.hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 200px;
  background: linear-gradient(to bottom, transparent, rgba(8,8,8,.6));
  pointer-events: none; z-index: 1;
}
.hero-badge {
  display: inline-block; background: rgba(200,169,110,.12);
  border: 1px solid rgba(200,169,110,.38); color: var(--accent-gold);
  padding: .3rem 1.1rem; border-radius: 50px; font-size: .72rem;
  letter-spacing: 3px; text-transform: uppercase; margin-bottom: 2rem;
}
.hero h1 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 64px; max-width: 960px; margin-bottom: 1.25rem;
  font-weight: 400; color: #EDE8E0; text-shadow: 0 2px 40px rgba(0,0,0,.55);
  letter-spacing: 1px;
}
.hero h1 em { color: var(--accent-red); font-style: normal; }
.hero-tagline {
  font-family: var(--heading); font-size: clamp(1rem, 2vw, 1.35rem);
  color: var(--accent-gold); letter-spacing: 2px; margin-bottom: .5rem; font-weight: 300;
}
.hero-sub { font-size: .88rem; color: var(--text-muted); letter-spacing: 2.5px; margin-bottom: 3rem; }
.hero-scroll {
  position: absolute; bottom: 3rem; left: 50%; transform: translateX(-50%);
  font-size: .7rem; letter-spacing: 2px; color: rgba(237,232,224,.4); text-transform: uppercase; z-index: 2;
}
.hero-scroll::after { content: '↓'; display: block; text-align: center; margin-top: .3rem; animation: bounce .8s infinite alternate; }
@keyframes bounce { from { transform: translateY(0); } to { transform: translateY(6px); } }

/* ===== PAGE HERO (sub-pages) ===== */
.page-hero {
  position: relative; min-height: 440px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  padding: 6rem 2rem 4rem; overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-image: var(--hero-img, none);
  background-size: cover; background-position: center; z-index: 0;
}
.page-hero-bg::after { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,.68); }
.page-hero > *:not(.page-hero-bg) { position: relative; z-index: 1; }
.page-hero .subbrand-badge {
  display: inline-block; padding: .25rem .9rem; border-radius: 50px;
  font-size: .68rem; letter-spacing: 3px; text-transform: uppercase;
  font-weight: bold; margin-bottom: 1rem; border: 1px solid;
}
.page-hero h1 { font-size: clamp(2rem, 5.5vw, 4rem); margin-bottom: .75rem; font-weight: 200; text-shadow: 0 2px 30px rgba(0,0,0,.5); letter-spacing: -.01em; }
.page-hero p { color: var(--text-muted); font-size: .9rem; max-width: 600px; margin: 0 auto; line-height: 1.8; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block; padding: .8rem 2.25rem; border-radius: 7px;
  font-size: .8rem; font-weight: bold; letter-spacing: 1.5px;
  text-transform: uppercase; cursor: pointer; transition: all .3s;
  border: 2px solid transparent; font-family: var(--body);
}
.btn-primary { background: var(--accent-red); color: #fff; border-color: var(--accent-red); }
.btn-primary:hover { background: transparent; color: var(--accent-red); box-shadow: 0 0 28px rgba(204,34,0,.4); }
.btn-secondary { background: transparent; color: var(--accent-gold); border-color: var(--accent-gold); }
.btn-secondary:hover { background: var(--accent-gold); color: #080808; box-shadow: 0 0 22px rgba(200,169,110,.32); }
.btn-sm { padding: .5rem 1.25rem; font-size: .75rem; }
.hero-cta { display: flex; gap: 1.25rem; justify-content: center; flex-wrap: wrap; margin-top: 3rem; }

/* ===== BUDGET FILTER ===== */
.budget-filter { display: flex; justify-content: center; gap: .65rem; flex-wrap: wrap; padding: 2rem 1rem; }
.budget-btn {
  padding: .55rem 1.6rem; border-radius: 50px;
  border: 2px solid rgba(200,169,110,.25); background: transparent;
  color: var(--text-muted); font-family: var(--body); font-size: .82rem;
  letter-spacing: 1px; cursor: pointer; transition: all .3s;
}
.budget-btn:hover { border-color: var(--accent-gold); color: var(--accent-gold); box-shadow: 0 0 16px rgba(200,169,110,.15); }
.budget-btn.active { font-weight: bold; }
.budget-btn[data-mode="fan"].active { background: var(--stay); border-color: var(--stay); color: #fff; box-shadow: 0 0 20px rgba(74,138,58,.35); }
.budget-btn[data-mode="traveler"].active { background: var(--accent-gold); border-color: var(--accent-gold); color: #080808; box-shadow: 0 0 20px rgba(200,169,110,.35); }
.budget-btn[data-mode="vip"].active { background: var(--accent-red); border-color: var(--accent-red); color: #fff; box-shadow: 0 0 20px rgba(204,34,0,.4); }

/* ===== FLIP COUNTDOWN ===== */
.flip-countdown {
  display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap;
  align-items: center; padding: 3rem 2rem;
}
.flip-unit { display: flex; flex-direction: column; align-items: center; gap: .5rem; }
.flip-digit-wrap { display: flex; gap: .3rem; }
.flip-digit {
  width: 54px; height: 72px; border-radius: 8px;
  background: rgba(204,34,0,.14); border: 1px solid rgba(204,34,0,.38);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--heading); font-size: 2.4rem; font-weight: bold;
  color: var(--accent-red);
  box-shadow: 0 0 22px rgba(204,34,0,.2), inset 0 0 20px rgba(0,0,0,.3);
  text-shadow: 0 0 12px rgba(204,34,0,.5);
}
.flip-label { font-size: .62rem; letter-spacing: 2.5px; text-transform: uppercase; color: var(--text-muted); }
.flip-sep { font-family: var(--heading); font-size: 2.4rem; color: rgba(200,169,110,.35); padding-bottom: 1.8rem; }

/* ===== COUNTDOWN (standard) ===== */
.countdown-section {
  background: rgba(204,34,0,.05); border-top: 1px solid rgba(204,34,0,.2);
  border-bottom: 1px solid rgba(204,34,0,.2); padding: 3rem 2rem; text-align: center;
}
.countdown-label { font-size: .72rem; letter-spacing: 3.5px; text-transform: uppercase; color: var(--accent-gold); margin-bottom: 1.5rem; }
.countdown { display: flex; justify-content: center; gap: 1.25rem; flex-wrap: wrap; align-items: center; }
.countdown-unit { display: flex; flex-direction: column; align-items: center; min-width: 75px; }
.countdown-number { font-family: var(--heading); font-size: 2.8rem; color: var(--accent-red); line-height: 1; font-weight: bold; min-width: 80px; text-align: center; }
.countdown-label-unit { font-size: .62rem; letter-spacing: 2.5px; text-transform: uppercase; color: var(--text-muted); margin-top: .3rem; }
.countdown-sep { font-family: var(--heading); font-size: 2.5rem; color: rgba(200,169,110,.4); line-height: 1; margin-bottom: 1rem; }

/* ===== SECTION ===== */
.section { padding: 6rem 2rem; max-width: 1380px; margin: 0 auto; }
.section-sm { padding: 3.5rem 2rem; max-width: 1380px; margin: 0 auto; }
.section-title { font-size: clamp(1.8rem,3.5vw,2.8rem); text-align: center; margin-bottom: .5rem; font-weight: 300; }
.section-title span { color: var(--accent-gold); }
.section-sub { text-align: center; color: var(--text-muted); font-size: .85rem; letter-spacing: 1px; margin-bottom: 3rem; line-height: 1.8; }
hr.divider { border: none; border-top: 1px solid rgba(200,169,110,.1); margin: 3rem 0; }

/* ===== PHOTO CITY CARDS ===== */
.cities-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.city-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  cursor: pointer; transition: all .4s; display: block; text-decoration: none;
  aspect-ratio: 1/1; background: #111;
}
.city-card-photo {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform .7s ease;
}
.city-card:hover .city-card-photo { transform: scale(1.08); }
.city-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.92) 0%, rgba(0,0,0,.1) 55%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.1rem; transition: opacity .4s;
  z-index: 1;
}
.city-card:hover .city-card-overlay { opacity: 0; }
.city-card:hover {
  box-shadow: 0 0 0 2px var(--accent-red), 0 20px 50px rgba(204,34,0,.3);
  transform: translateY(-5px);
}
.city-card-name { font-family: var(--heading); font-size: 1rem; color: #fff; margin-bottom: .25rem; text-shadow: 0 1px 5px rgba(0,0,0,.8); font-weight: 400; }
.city-card-matches { font-size: .7rem; color: rgba(237,232,224,.65); letter-spacing: .5px; }

/* City card hover info layer */
.city-card-info {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: rgba(0,0,0,.78);
  opacity: 0; transition: opacity .45s ease;
  padding: 1.25rem; text-align: center;
  z-index: 2; backdrop-filter: blur(3px);
}
.city-card:hover .city-card-info { opacity: 1; }
.city-card-info-stadium {
  font-size: .72rem; color: var(--accent-gold);
  letter-spacing: 1px; margin-bottom: .6rem; line-height: 1.5;
}
.city-card-info-count {
  font-family: var(--heading); font-size: 1.35rem;
  color: #fff; margin-bottom: .75rem; font-weight: 300;
}
.city-card-info-cta {
  font-size: .68rem; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(237,232,224,.7); border: 1px solid rgba(200,169,110,.35);
  padding: .32rem .9rem; border-radius: 4px;
  transition: all .25s; display: inline-block;
}
.city-card:hover .city-card-info-cta { color: var(--accent-gold); border-color: var(--accent-gold); }

/* legacy emoji fallback */
.city-card-img { height: 100px; display: flex; align-items: center; justify-content: center; font-size: 3.2rem; background: linear-gradient(135deg, rgba(204,34,0,.25), rgba(200,169,110,.08)); }
.city-card-body { padding: 1.1rem 1.25rem 1.25rem; }
.city-card-stadium { font-size: .75rem; color: var(--text-muted); margin-bottom: .75rem; }
.city-card-footer { display: flex; justify-content: space-between; align-items: center; }
.matches-badge { font-size: .68rem; font-weight: bold; letter-spacing: .5px; background: rgba(204,34,0,.18); color: var(--accent-red); border: 1px solid rgba(204,34,0,.3); padding: .18rem .6rem; border-radius: 50px; }
.country-tag { font-size: .65rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-muted); }
.country-tag.usa { color: #6699DD; }
.country-tag.canada { color: #DD5555; }
.country-tag.mexico { color: #55AA66; }
.city-card-note { font-size: .7rem; color: var(--accent-gold); margin-top: .5rem; }

/* ===== FILTER BAR ===== */
.filter-bar {
  display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center;
  padding: 1.5rem 2rem; background: rgba(0,0,0,.32);
  border-bottom: 1px solid rgba(200,169,110,.08);
  position: sticky; top: var(--nav-h); z-index: 100; backdrop-filter: blur(10px);
}
.filter-btn {
  padding: .42rem 1.1rem; border-radius: 50px; cursor: pointer;
  border: 1px solid rgba(200,169,110,.25); background: transparent;
  color: var(--text-muted); font-family: var(--body); font-size: .78rem; transition: all .25s;
}
.filter-btn:hover, .filter-btn.active { border-color: var(--accent-gold); color: var(--accent-gold); background: rgba(200,169,110,.08); box-shadow: 0 0 12px rgba(200,169,110,.1); }

/* ===== CONTENT CARDS ===== */
.card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(200,169,110,.12);
  border-radius: var(--radius); overflow: hidden; transition: all .35s;
}
.card:hover { border-color: rgba(200,169,110,.32); transform: translateY(-4px); box-shadow: 0 14px 40px rgba(200,169,110,.1), 0 0 0 1px rgba(200,169,110,.08); }
.card-body { padding: 1.6rem; }
.card-img { height: 80px; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; background: rgba(255,255,255,.03); }
.card h3 { font-family: var(--heading); font-size: 1.05rem; margin-bottom: .4rem; }
.card p { font-size: .83rem; color: var(--text-muted); line-height: 1.75; margin-bottom: .9rem; }
.card-price { font-size: 1.1rem; color: var(--accent-gold); font-weight: bold; margin-bottom: .6rem; }
.card-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: .75rem; flex-wrap: wrap; gap: .4rem; }
.badge { display: inline-block; padding: .2rem .65rem; border-radius: 50px; font-size: .66rem; font-weight: bold; letter-spacing: .8px; }
.badge-fan { background: rgba(74,138,58,.2); color: var(--stay); border: 1px solid var(--stay); }
.badge-traveler { background: rgba(200,169,110,.15); color: var(--accent-gold); border: 1px solid rgba(200,169,110,.4); }
.badge-vip { background: rgba(204,34,0,.2); color: var(--accent-red); border: 1px solid rgba(204,34,0,.4); }

/* ===== EVENT CATEGORY CARDS ===== */
.events-section { padding: 6rem 2rem 7rem; border-bottom: 1px solid rgba(200,169,110,.1); }
.events-section-header { text-align: center; margin-bottom: 3rem; }
.events-section-header h2 { font-family: var(--heading); font-size: clamp(1.8rem,3.5vw,2.8rem); margin-bottom: .4rem; font-weight: 300; }
.events-section-header p { color: var(--text-muted); font-size: .88rem; letter-spacing: 1px; }
.events-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.5rem;
  max-width: 1100px; margin: 0 auto;
}
.event-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  cursor: pointer; transition: all .4s; display: flex; flex-direction: column;
  align-items: center; justify-content: flex-end; text-decoration: none;
  min-height: 240px; padding: 1.75rem 1rem 1.5rem;
  background: rgba(255,255,255,.04); border: 1px solid rgba(200,169,110,.15); color: var(--text);
}
.event-card-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform .6s ease; z-index: 0;
}
.event-card-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.92) 0%, rgba(0,0,0,.2) 100%);
}
.event-card:hover .event-card-bg { transform: scale(1.08); }
.event-card > *:not(.event-card-bg) { position: relative; z-index: 1; }
.event-card:hover { transform: translateY(-7px); }
.event-card-icon { display: none; }
.event-card-label { font-family: var(--heading); font-size: 1rem; letter-spacing: .8px; font-weight: 300; }
.ec-sports:hover  { box-shadow: 0 16px 45px rgba(204,34,0,.35);   border-color: var(--accent-red); }
.ec-music:hover   { box-shadow: 0 16px 45px rgba(155,89,182,.35);  border-color: #9B59B6; }
.ec-culture:hover { box-shadow: 0 16px 45px rgba(230,126,34,.35);  border-color: #E67E22; }
.ec-vacation:hover{ box-shadow: 0 16px 45px rgba(39,174,96,.35);   border-color: #27AE60; }
.ec-festivals:hover{ box-shadow: 0 16px 45px rgba(243,156,18,.35); border-color: #F39C12; }

/* ===== WC SECTION ===== */
.wc-section { background: rgba(204,34,0,.03); border-top: 1px solid rgba(204,34,0,.12); border-bottom: 1px solid rgba(204,34,0,.12); }
.wc-section-head { text-align: center; padding: 4rem 2rem 0; }
.wc-badge-pill { display: inline-block; background: rgba(204,34,0,.15); border: 1px solid rgba(204,34,0,.35); color: var(--accent-red); padding: .28rem 1.1rem; border-radius: 50px; font-size: .7rem; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 1.25rem; }
.wc-section-head h2 { font-family: var(--heading); font-size: clamp(1.8rem,3.8vw,3rem); margin-bottom: .5rem; font-weight: 300; }
.wc-section-head p { color: var(--text-muted); font-size: .9rem; }

/* ===== COMING SOON SECTIONS ===== */
.cs-section { padding: 5rem 2rem; }
.cs-section.alt-bg { background: rgba(0,0,0,.15); }
.cs-card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(200,169,110,.13);
  border-radius: 16px; padding: 4rem 2.5rem 3rem; text-align: center;
  max-width: 760px; margin: 0 auto;
}
.cs-badge { display: inline-block; background: rgba(200,169,110,.1); border: 1px solid rgba(200,169,110,.28); color: var(--accent-gold); padding: .25rem .9rem; border-radius: 50px; font-size: .67rem; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 1.5rem; }
.cs-icon { font-size: 3.5rem; margin-bottom: .9rem; line-height: 1; }
.cs-title { font-family: var(--heading); font-size: clamp(1.4rem,2.5vw,2rem); margin-bottom: .85rem; font-weight: 300; }
.cs-desc { color: var(--text-muted); font-size: .88rem; line-height: 1.85; max-width: 480px; margin: 0 auto 2rem; }
.cs-notify { display: flex; gap: 0; align-items: center; justify-content: center; max-width: 380px; margin: 0 auto; }
.cs-notify input { flex: 1; background: rgba(255,255,255,.04); border: 1px solid rgba(200,169,110,.25); border-right: none; color: var(--text); font-family: var(--body); font-size: .82rem; padding: .6rem 1rem; border-radius: 5px 0 0 5px; outline: none; transition: border-color .25s; }
.cs-notify input::placeholder { color: var(--text-muted); }
.cs-notify input:focus { border-color: var(--accent-gold); }
.cs-notify button { background: var(--accent-gold); color: #080808; font-family: var(--body); font-size: .76rem; font-weight: bold; padding: .6rem 1.1rem; border: 1px solid var(--accent-gold); border-radius: 0 5px 5px 0; cursor: pointer; letter-spacing: 1px; text-transform: uppercase; white-space: nowrap; transition: opacity .25s; flex-shrink: 0; }
.cs-notify button:hover { opacity: .85; }
.cs-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 2rem; margin-top: 3rem; }
.cs-item { background: rgba(255,255,255,.04); border: 1px solid rgba(200,169,110,.12); border-radius: var(--radius); padding: 2.5rem 1.75rem 2rem; text-align: center; transition: all .35s; }
.cs-item:hover { border-color: rgba(200,169,110,.3); transform: translateY(-4px); box-shadow: 0 14px 35px rgba(0,0,0,.28), 0 0 0 1px rgba(200,169,110,.06); }
.cs-item-icon { display: none; }
.cs-item-title { font-family: var(--heading); font-size: 1.1rem; margin-bottom: .6rem; font-weight: 400; }
.cs-item-desc { font-size: .82rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 1.5rem; }
.cs-item .cs-notify { max-width: 100%; }

/* ===== AFFILIATE BUTTONS ===== */
.affiliate-btn { display: block; width: 100%; padding: .55rem 1rem; margin-top: .6rem; border-radius: 6px; text-align: center; font-size: .76rem; font-weight: bold; letter-spacing: 1px; transition: all .25s; cursor: pointer; border: 1px solid; font-family: var(--body); text-transform: uppercase; }
.aff-booking { color: #007BFF; border-color: #007BFF; background: rgba(0,123,255,.08); }
.aff-booking:hover { background: #007BFF; color: #fff; box-shadow: 0 0 16px rgba(0,123,255,.25); }
.aff-hotels { color: #FF3E00; border-color: #FF3E00; background: rgba(255,62,0,.08); }
.aff-hotels:hover { background: #FF3E00; color: #fff; box-shadow: 0 0 16px rgba(255,62,0,.25); }
.aff-airbnb { color: #FF5A5F; border-color: #FF5A5F; background: rgba(255,90,95,.08); }
.aff-airbnb:hover { background: #FF5A5F; color: #fff; box-shadow: 0 0 16px rgba(255,90,95,.25); }
.aff-expedia { color: #FFC72C; border-color: #FFC72C; background: rgba(255,199,44,.08); }
.aff-expedia:hover { background: #FFC72C; color: #000; box-shadow: 0 0 16px rgba(255,199,44,.25); }
.aff-skyscanner { color: #00B9F1; border-color: #00B9F1; background: rgba(0,185,241,.08); }
.aff-skyscanner:hover { background: #00B9F1; color: #fff; box-shadow: 0 0 16px rgba(0,185,241,.25); }
.aff-viator { color: #7FB900; border-color: #7FB900; background: rgba(127,185,0,.08); }
.aff-viator:hover { background: #7FB900; color: #fff; box-shadow: 0 0 16px rgba(127,185,0,.25); }
.aff-opentable { color: #DA3743; border-color: #DA3743; background: rgba(218,55,67,.08); }
.aff-opentable:hover { background: #DA3743; color: #fff; box-shadow: 0 0 16px rgba(218,55,67,.25); }
.aff-stubhub { color: #0079DB; border-color: #0079DB; background: rgba(0,121,219,.08); }
.aff-stubhub:hover { background: #0079DB; color: #fff; box-shadow: 0 0 16px rgba(0,121,219,.25); }
.aff-rentalcars { color: #FF8C00; border-color: #FF8C00; background: rgba(255,140,0,.08); }
.aff-rentalcars:hover { background: #FF8C00; color: #fff; box-shadow: 0 0 16px rgba(255,140,0,.25); }

/* ===== GRIDS ===== */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px,1fr)); gap: 1.5rem; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(380px,1fr)); gap: 2.5rem; }

/* ===== CITY SELECTOR ===== */
.city-selector-wrap { display: flex; justify-content: center; align-items: center; gap: 1rem; padding: 1.5rem 2rem; background: rgba(0,0,0,.2); border-bottom: 1px solid rgba(200,169,110,.08); flex-wrap: wrap; }
.city-selector-wrap label { font-size: .78rem; color: var(--text-muted); letter-spacing: 1px; text-transform: uppercase; }
.city-select { background: rgba(255,255,255,.05); border: 1px solid rgba(200,169,110,.25); color: var(--text); font-family: var(--body); font-size: .85rem; padding: .5rem 1rem; border-radius: 6px; cursor: pointer; outline: none; transition: border-color .25s; }
.city-select:focus { border-color: var(--accent-gold); }
option { background: #111; }

/* ===== STADIUM CARD ===== */
.stadium-card { background: rgba(255,255,255,.04); border: 1px solid rgba(200,169,110,.12); border-radius: var(--radius); overflow: hidden; transition: all .35s; }
.stadium-card:hover { border-color: rgba(204,34,0,.45); transform: translateY(-4px); box-shadow: 0 12px 35px rgba(204,34,0,.22), 0 0 0 1px rgba(204,34,0,.08); }
.stadium-emoji { height: 140px; overflow: hidden; display: flex; align-items: center; justify-content: center; font-size: 4rem; background: linear-gradient(135deg, rgba(204,34,0,.18), rgba(200,169,110,.08)); }
.stadium-emoji img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .7s ease; }
.stadium-card:hover .stadium-emoji img { transform: scale(1.06); }
.stadium-info { padding: 1.4rem; }
.stadium-city { font-size: .7rem; color: var(--accent-gold); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: .3rem; }
.stadium-name { font-family: var(--heading); font-size: 1rem; margin-bottom: .4rem; font-weight: 400; }
.stadium-detail { font-size: .75rem; color: var(--text-muted); display: flex; flex-direction: column; gap: .25rem; line-height: 1.6; }
.stadium-matches-count { margin-top: .85rem; font-size: .72rem; background: rgba(204,34,0,.18); color: var(--accent-red); border: 1px solid rgba(204,34,0,.3); padding: .2rem .65rem; border-radius: 50px; display: inline-block; font-weight: bold; }

/* ===== TRANSPORT ACCORDION ===== */
.transport-block { background: rgba(255,255,255,.04); border: 1px solid rgba(200,169,110,.12); border-radius: var(--radius); margin-bottom: 1.25rem; overflow: hidden; }
.transport-head { padding: 1.4rem 1.75rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: background .25s; }
.transport-head:hover { background: rgba(200,169,110,.05); }
.transport-head h3 { font-family: var(--heading); font-size: 1.05rem; display: flex; align-items: center; gap: .75rem; }
.transport-toggle { color: var(--accent-gold); font-size: .9rem; transition: transform .3s; }
.transport-toggle.open { transform: rotate(180deg); }
.transport-body { padding: 0 1.75rem; max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .3s; }
.transport-body.open { max-height: 800px; padding: 0 1.75rem 1.75rem; }
.transport-body p { font-size: .85rem; color: var(--text-muted); line-height: 1.8; margin-bottom: .85rem; }
.transport-body ul li { font-size: .84rem; color: var(--text-muted); padding: .35rem 0; border-bottom: 1px solid rgba(200,169,110,.05); }
.transport-body ul li::before { content: '→ '; color: var(--accent-gold); }

/* ===== TOUR CARDS ===== */
.tour-card { background: rgba(255,255,255,.04); border: 1px solid rgba(200,169,110,.12); border-radius: var(--radius); overflow: hidden; transition: all .35s; display: flex; flex-direction: column; }
.tour-card:hover { border-color: rgba(42,122,170,.55); transform: translateY(-5px); box-shadow: 0 14px 40px rgba(42,122,170,.22); }
.tour-card-banner { padding: 2.5rem; text-align: center; background: linear-gradient(135deg, rgba(42,122,170,.15), rgba(200,169,110,.05)); }
.tour-card-body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }
.tour-price { font-family: var(--heading); font-size: 2.2rem; color: var(--accent-gold); margin-bottom: .3rem; font-weight: 300; }
.tour-duration { font-size: .75rem; color: var(--text-muted); margin-bottom: 1.25rem; letter-spacing: 1px; }
.tour-features { margin: 1.25rem 0; flex: 1; }
.tour-features li { padding: .45rem 0; font-size: .83rem; color: var(--text-muted); border-bottom: 1px solid rgba(200,169,110,.06); display: flex; align-items: flex-start; gap: .7rem; line-height: 1.6; }
.tour-features li::before { content: '✓'; color: var(--accent-gold); font-weight: bold; flex-shrink: 0; }
.tour-premium-badge { display: inline-block; padding: .25rem .9rem; background: rgba(200,169,110,.15); color: var(--accent-gold); border: 1px solid rgba(200,169,110,.35); border-radius: 50px; font-size: .7rem; letter-spacing: 2px; text-transform: uppercase; margin-top: .5rem; }

/* ===== SHOP CARDS ===== */
.shop-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 2rem; }
.shop-card { background: rgba(255,255,255,.04); border: 1px solid rgba(200,169,110,.12); border-radius: var(--radius); overflow: hidden; transition: all .35s; display: flex; flex-direction: column; }
.shop-card:hover { border-color: rgba(200,169,110,.35); transform: translateY(-5px); box-shadow: 0 16px 45px rgba(200,169,110,.12), 0 0 0 1px rgba(200,169,110,.06); }
.shop-card.featured { border-color: rgba(204,34,0,.32); }
.shop-card.featured:hover { box-shadow: 0 16px 45px rgba(204,34,0,.2); }
.shop-card-banner { padding: 2rem; background: linear-gradient(135deg, rgba(42,122,170,.12), rgba(200,169,110,.05)); position: relative; }
.shop-card.featured .shop-card-banner { background: linear-gradient(135deg, rgba(204,34,0,.14), rgba(200,169,110,.08)); }
.shop-card-body { padding: 1.6rem; flex: 1; display: flex; flex-direction: column; }
.shop-price { font-family: var(--heading); font-size: 2rem; color: var(--accent-gold); margin-bottom: .2rem; font-weight: 300; }
.shop-price-orig { font-size: .82rem; color: var(--text-muted); text-decoration: line-through; margin-bottom: .85rem; }
.shop-card p { font-size: .83rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 1.1rem; flex: 1; }
.shop-preview-btn { background: none; border: 1px solid rgba(200,169,110,.22); border-radius: 5px; color: var(--text-muted); font-family: var(--body); font-size: .75rem; padding: .4rem .9rem; cursor: pointer; transition: all .25s; margin-bottom: .85rem; text-align: left; width: 100%; }
.shop-preview-btn:hover { border-color: var(--accent-gold); color: var(--accent-gold); }
.shop-preview-content { display: none; background: rgba(255,255,255,.03); border-radius: 6px; padding: .9rem 1.1rem; margin-bottom: .85rem; font-size: .78rem; color: var(--text-muted); line-height: 1.75; }
.shop-preview-content.open { display: block; }
.shop-badge { position: absolute; top: .9rem; right: .9rem; padding: .18rem .6rem; border-radius: 50px; font-size: .64rem; font-weight: bold; letter-spacing: 1px; }
.shop-badge-sale { background: rgba(204,34,0,.2); color: var(--accent-red); border: 1px solid rgba(204,34,0,.4); }
.shop-badge-best { background: rgba(200,169,110,.15); color: var(--accent-gold); border: 1px solid rgba(200,169,110,.4); }
.shop-timer { background: rgba(204,34,0,.08); border: 1px solid rgba(204,34,0,.28); border-radius: 8px; padding: .95rem 1.25rem; text-align: center; margin-bottom: 1.1rem; }
.shop-timer-label { font-size: .67rem; letter-spacing: 2px; text-transform: uppercase; color: var(--accent-gold); margin-bottom: .3rem; }
.shop-timer-count { font-family: var(--heading); font-size: 1.6rem; color: var(--accent-red); font-weight: bold; }

/* ===== SHOP CITY PHOTO CARDS ===== */
.shop-card-photo-wrap { overflow: hidden; position: relative; height: 175px; flex-shrink: 0; }
.shop-card-photo { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .7s ease; }
.shop-card:hover .shop-card-photo { transform: scale(1.06); }
.shop-card-photo-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: .85rem 1rem .7rem;
  background: linear-gradient(to top, rgba(0,0,0,.88), transparent);
  font-family: var(--heading); font-size: 1rem; color: #fff; font-weight: 400;
}
.shop-card-photo-sub { font-size: .7rem; color: rgba(237,232,224,.6); margin-top: .1rem; }

/* ===== STAT ROW ===== */
.stats-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px,1fr)); gap: 1.25rem; margin: 2.5rem 0; }
.stat-box { background: rgba(255,255,255,.04); border: 1px solid rgba(200,169,110,.12); border-radius: var(--radius); padding: 1.75rem 1.25rem; text-align: center; transition: all .35s; }
.stat-box:hover { border-color: rgba(200,169,110,.28); box-shadow: 0 10px 28px rgba(0,0,0,.25), 0 0 20px rgba(200,169,110,.08); transform: translateY(-3px); }
.stat-number { font-family: var(--heading); font-size: 2.2rem; color: var(--accent-gold); font-weight: 300; }
.stat-label { font-size: .68rem; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); margin-top: .3rem; }

/* ===== TICKER ===== */
.ticker-bar { position: fixed; bottom: 0; left: 0; right: 0; height: 36px; background: rgba(5,3,3,.97); border-top: 1px solid rgba(204,34,0,.35); overflow: hidden; z-index: 900; display: flex; align-items: center; }
.ticker-label { background: var(--accent-red); height: 100%; display: flex; align-items: center; padding: 0 .9rem; font-size: .66rem; font-weight: bold; letter-spacing: 2px; color: #fff; white-space: nowrap; z-index: 2; flex-shrink: 0; }
.ticker-track { overflow: hidden; flex: 1; }
.ticker-content { display: flex; animation: ticker 80s linear infinite; width: max-content; }
.ticker-item { white-space: nowrap; padding: 0 1.5rem; font-size: .75rem; color: var(--text); }
.ticker-item b { color: var(--accent-red); }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.page-wrapper.has-ticker { padding-bottom: 36px; }

/* ===== FOOTER ===== */
.footer { background: rgba(4,3,3,.98); border-top: 1px solid rgba(200,169,110,.1); padding: 4.5rem 2rem 2.5rem; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.footer-brand h3 { font-family: var(--heading); font-size: 1.3rem; color: var(--accent-gold); margin-bottom: .6rem; font-weight: 300; }
.footer-brand p { font-size: .8rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 1.1rem; }
.footer-col h4 { font-size: .68rem; letter-spacing: 2.5px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 1rem; }
.footer-col ul li { margin-bottom: .45rem; }
.footer-col ul li a { font-size: .82rem; color: var(--text-muted); transition: color .25s; }
.footer-col ul li a:hover { color: var(--text); }
.social-links { display: flex; gap: .65rem; flex-wrap: wrap; }
.social-link { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(200,169,110,.25); display: flex; align-items: center; justify-content: center; font-size: .85rem; color: var(--text-muted); transition: all .3s; text-decoration: none; }
.social-link:hover { border-color: var(--accent-gold); color: var(--accent-gold); background: rgba(200,169,110,.1); box-shadow: 0 0 12px rgba(200,169,110,.18); }
.footer-subbrand { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; padding: 1.75rem 0; border-top: 1px solid rgba(200,169,110,.08); border-bottom: 1px solid rgba(200,169,110,.08); margin-bottom: 1.75rem; }
.subbrand-pill { padding: .28rem .85rem; border-radius: 50px; font-size: .72rem; font-weight: bold; letter-spacing: 1px; border: 1px solid; transition: all .3s; }
.subbrand-pill:hover { opacity: .75; transform: translateY(-2px); box-shadow: 0 5px 14px rgba(0,0,0,.3); }
.pill-eats { color: var(--eats); border-color: var(--eats); }
.pill-stay { color: var(--stay); border-color: var(--stay); }
.pill-go { color: var(--go); border-color: var(--go); }
.pill-venue { color: var(--venue); border-color: var(--venue); }
.pill-tour { color: var(--tour); border-color: var(--tour); }
.footer-bottom { text-align: center; font-size: .73rem; color: var(--text-muted); }
.footer-bottom p:last-child { margin-top: .35rem; font-size: .68rem; opacity: .7; }

/* ===== FORM ===== */
.form-wrap { max-width: 640px; margin: 0 auto; background: rgba(255,255,255,.04); border: 1px solid rgba(200,169,110,.15); border-radius: var(--radius); padding: 3rem; }
.form-group { margin-bottom: 1.6rem; }
.form-label { display: block; font-size: .73rem; letter-spacing: 1.2px; text-transform: uppercase; color: var(--text-muted); margin-bottom: .45rem; }
.form-control { width: 100%; padding: .75rem 1rem; background: rgba(255,255,255,.04); border: 1px solid rgba(200,169,110,.2); border-radius: 6px; color: var(--text); font-family: var(--body); font-size: .88rem; outline: none; transition: border-color .25s; }
.form-control:focus { border-color: var(--accent-gold); box-shadow: 0 0 0 3px rgba(200,169,110,.06); }
.form-control::placeholder { color: var(--text-muted); }
textarea.form-control { resize: vertical; min-height: 140px; }
select.form-control { cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-success { background: rgba(74,138,58,.15); border: 1px solid var(--stay); border-radius: 8px; padding: 1.75rem; text-align: center; color: var(--stay); display: none; }

/* ===== ABOUT ===== */
.about-content p { color: var(--text-muted); line-height: 1.95; margin-bottom: 1.65rem; font-size: .9rem; }
.about-content h2 { margin: 3rem 0 1.1rem; color: var(--accent-gold); font-size: 1.6rem; font-weight: 300; }
.pull-quote { font-family: var(--heading); font-size: clamp(1.1rem,2.5vw,1.6rem); color: var(--text); line-height: 1.55; font-style: italic; font-weight: 300; border-left: 4px solid var(--accent-red); padding: 1.5rem 2.5rem; margin: 2.5rem 0; background: rgba(204,34,0,.05); border-radius: 0 var(--radius) var(--radius) 0; }
.founder-section { display: grid; grid-template-columns: 1fr 1.65fr; gap: 4rem; align-items: start; max-width: 1100px; margin: 0 auto; }
.founder-card { background: rgba(255,255,255,.04); border: 1px solid rgba(200,169,110,.15); border-radius: var(--radius); padding: 2.75rem; text-align: center; position: sticky; top: calc(var(--nav-h) + 1.5rem); }
.founder-avatar { width: 90px; height: 90px; border-radius: 50%; margin: 0 auto 1.25rem; display: flex; align-items: center; justify-content: center; font-size: 2.2rem; background: linear-gradient(135deg, var(--accent-red), var(--accent-gold)); color: #fff; font-family: var(--heading); font-weight: 300; }
.founder-name { font-family: var(--heading); font-size: 1.5rem; margin-bottom: .3rem; font-weight: 300; }
.founder-title { font-size: .72rem; color: var(--accent-gold); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 1.35rem; }
.founder-origin { font-size: .82rem; color: var(--text-muted); line-height: 1.75; }

/* ===== ABOUT PAGE GLOBE ===== */
.about-hero {
  min-height: 580px;
  background: linear-gradient(160deg,#080808 0%,#0d1f35 100%) !important;
  background-attachment: fixed !important;
}
.about-hero .page-hero-bg { display: none; }
.about-globe-wrap {
  position: absolute !important; inset: 0;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none; z-index: 0 !important;
}
.globe-container {
  position: relative;
  width: clamp(180px,26vw,280px);
  height: clamp(180px,26vw,280px);
  flex-shrink: 0;
  will-change: transform;
}
.globe-sphere {
  width: 100%; height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 32%, #1d4e89 0%, #1a3a6e 22%, #0d2245 52%, #050e1e 100%);
  overflow: hidden; position: relative;
  box-shadow:
    inset -25px -15px 60px rgba(0,0,0,.65),
    inset 10px 10px 30px rgba(100,160,255,.06),
    0 0 55px rgba(20,80,180,.2);
}
.globe-lines {
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 29px, rgba(100,160,220,.1) 29px, rgba(100,160,220,.1) 30px),
    repeating-linear-gradient(90deg, transparent, transparent 29px, rgba(100,160,220,.1) 29px, rgba(100,160,220,.1) 30px);
  animation: globeLineScroll 14s linear infinite;
}
@keyframes globeLineScroll {
  from { background-position: 0 0; }
  to   { background-position: 30px 0; }
}
.globe-highlight {
  position: absolute; top: 8%; left: 12%; width: 36%; height: 36%;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, rgba(255,255,255,.13) 0%, transparent 70%);
  pointer-events: none;
}
.globe-ring {
  position: absolute;
  top: -14%; left: -14%; right: -14%; bottom: -14%;
  border-radius: 50%;
  border: 1.5px solid rgba(100,160,220,.3);
  box-shadow: 0 0 40px rgba(30,100,200,.25);
  animation: ringGlow 3.5s ease-in-out infinite alternate;
  pointer-events: none;
}
.globe-ring-2 {
  position: absolute;
  top: -24%; left: -24%; right: -24%; bottom: -24%;
  border-radius: 50%;
  border: 1px solid rgba(100,160,220,.1);
  pointer-events: none;
}
.globe-atmo {
  position: absolute;
  top: -32%; left: -32%; right: -32%; bottom: -32%;
  border-radius: 50%;
  background: radial-gradient(circle at center, transparent 42%, rgba(20,100,220,.04) 58%, rgba(20,100,220,.14) 68%, rgba(20,100,220,.02) 80%, transparent 88%);
  pointer-events: none;
}
@keyframes ringGlow {
  from { box-shadow: 0 0 28px rgba(30,100,200,.2); opacity: .8; }
  to   { box-shadow: 0 0 55px rgba(30,100,200,.45), 0 0 90px rgba(30,100,200,.12); opacity: 1; }
}

/* ===== TIMELINE ===== */
.timeline { display: flex; flex-direction: column; position: relative; padding-left: 2rem; }
.timeline::before { content: ''; position: absolute; left: .45rem; top: .5rem; bottom: .5rem; width: 2px; background: linear-gradient(to bottom, var(--accent-red), var(--accent-gold)); border-radius: 2px; }
.timeline-item { position: relative; padding: 0 0 2.5rem 1.5rem; }
.timeline-item::before { content: ''; position: absolute; left: -1.55rem; top: .35rem; width: 12px; height: 12px; border-radius: 50%; background: var(--accent-gold); border: 2px solid #080808; box-shadow: 0 0 10px rgba(200,169,110,.55); }
.timeline-date { font-size: .7rem; letter-spacing: 2px; text-transform: uppercase; color: var(--accent-gold); margin-bottom: .3rem; }
.timeline-title { font-family: var(--heading); font-size: 1.05rem; margin-bottom: .3rem; font-weight: 400; }
.timeline-desc { font-size: .83rem; color: var(--text-muted); line-height: 1.7; }

/* ===== CHAR REVEAL (letter by letter) ===== */
.char-reveal {
  display: inline-block;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .55s ease, transform .55s ease;
}
.char-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ===== SECTION CROSSFADE ===== */
.section-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .8s ease, transform .8s ease;
}
.section-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== SCROLL FADE IN ===== */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== FILM GRAIN ===== */
@keyframes grainAnim {
  0%,100% { background-position: 0 0; }
  12%     { background-position: -5% -10%; }
  25%     { background-position: 8% -24%; }
  38%     { background-position: -15% 12%; }
  50%     { background-position: 0 16%; }
  63%     { background-position: 6% -6%; }
  76%     { background-position: -10% 9%; }
  88%     { background-position: 14% -14%; }
}
#gv-grain {
  position: fixed; inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: .042;
  mix-blend-mode: screen;
  background-size: 256px 256px;
  animation: grainAnim .2s steps(1) infinite;
  will-change: background-position;
}

/* ===== MISC ===== */
.text-gold { color: var(--accent-gold); }
.text-red { color: var(--accent-red); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.mt-1 { margin-top: .5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: .5rem; } .mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.5rem; }
.hidden { display: none !important; }
.accent-line { display: block; width: 50px; height: 3px; background: var(--accent-gold); border-radius: 2px; margin: .85rem auto 0; }
.info-banner { background: rgba(200,169,110,.06); border: 1px solid rgba(200,169,110,.18); border-radius: var(--radius); padding: 1.4rem 1.75rem; font-size: .84rem; color: var(--text-muted); margin-bottom: 2.5rem; line-height: 1.8; }
.info-banner b { color: var(--accent-gold); }
.tag { display: inline-block; padding: .15rem .55rem; border-radius: 4px; font-size: .67rem; font-weight: bold; letter-spacing: .8px; background: rgba(200,169,110,.1); color: var(--accent-gold); }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 2rem; margin-top: 2.5rem; }
.team-card { background: rgba(255,255,255,.04); border: 1px solid rgba(200,169,110,.12); border-radius: var(--radius); padding: 2rem; text-align: center; transition: all .35s; }
.team-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.3); border-color: rgba(200,169,110,.25); }
.team-avatar { width: 76px; height: 76px; border-radius: 50%; margin: 0 auto 1.1rem; display: flex; align-items: center; justify-content: center; font-size: 2.2rem; background: linear-gradient(135deg, var(--accent-red), var(--accent-gold)); }
.team-name { font-family: var(--heading); font-size: 1rem; margin-bottom: .25rem; font-weight: 400; }
.team-role { font-size: .75rem; color: var(--accent-gold); letter-spacing: 1px; text-transform: uppercase; }
.team-bio { font-size: .78rem; color: var(--text-muted); margin-top: .65rem; line-height: 1.7; }

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  .char-reveal { transition: none; opacity: 1; transform: none; }
  .fade-in, .section-reveal { transition: none; }
  #gv-grain { animation: none; }
  .globe-lines { animation: none; }
  .globe-ring { animation: none; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .cities-grid { grid-template-columns: repeat(3, 1fr); }
  .founder-section { grid-template-columns: 1fr; gap: 2.5rem; }
  .founder-card { position: static; }
  .events-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .navbar { padding: 0 1rem; }
  .nav-links {
    display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: rgba(4,4,4,.99); flex-direction: column; align-items: stretch;
    padding: .5rem 1rem 1rem; border-bottom: 1px solid rgba(200,169,110,.18); gap: 0;
    max-height: calc(100vh - var(--nav-h)); overflow-y: auto;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: .7rem 1rem; border-bottom: 1px solid rgba(200,169,110,.06); }
  .nav-dropdown-menu {
    position: static; transform: none !important; opacity: 1; pointer-events: auto;
    border: none; background: rgba(255,255,255,.04); border-radius: 0;
    padding: 0 0 0 1rem; display: none;
  }
  .nav-item-dropdown.mob-open .nav-dropdown-menu { display: block; }
  .hamburger { display: flex; }
  .hero { min-height: 85vh; padding: 4rem 1.25rem 5rem; }
  .page-hero { min-height: 380px; padding: 5rem 1.25rem 3.5rem; }
  .cities-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .section { padding: 4rem 1.25rem; }
  .section-sm { padding: 2.5rem 1.25rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-wrap { padding: 2rem 1.25rem; }
  .filter-bar { position: static; }
  .events-grid { grid-template-columns: repeat(3, 1fr); }
  .event-card { min-height: 200px; }
  .cs-notify { flex-direction: column; max-width: 100%; }
  .cs-notify input { border-right: 1px solid rgba(200,169,110,.25); border-bottom: none; border-radius: 5px 5px 0 0; width: 100%; }
  .cs-notify button { border-radius: 0 0 5px 5px; width: 100%; }
  .flip-digit { width: 44px; height: 58px; font-size: 1.9rem; }
  .flip-sep { font-size: 1.9rem; }
  #gv-grain { opacity: .025; }
  .about-hero { min-height: 440px; }
  .globe-container { width: 160px; height: 160px; }
}
@media (max-width: 520px) {
  .hero h1 { font-size: 40px; }
  .grid-4 { grid-template-columns: 1fr; }
  .cities-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: center; }
  .countdown-unit { min-width: 55px; }
  .countdown-number { font-size: 1.7rem; }
  .events-grid { grid-template-columns: repeat(2, 1fr); }
  .event-card { min-height: 175px; }
  .flip-digit { width: 38px; height: 50px; font-size: 1.6rem; }
  .flip-sep { font-size: 1.6rem; }
  .shop-grid { grid-template-columns: 1fr; }
}

/* ===== IMMERSIVE SCENES ===== */
.imm-scene {
  position: relative;
  height: 100vh;
  min-height: 520px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.imm-scene-bg {
  position: absolute;
  inset: -8%;
  background-size: cover;
  background-position: center;
  will-change: transform;
}
.imm-scene-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(8,8,8,.32) 0%, rgba(8,8,8,.55) 55%, rgba(8,8,8,.82) 100%);
}
.imm-scene-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  max-width: 820px;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s ease .12s, transform 1s ease .12s;
}
.imm-scene.is-visible .imm-scene-content { opacity: 1; transform: translateY(0); }
.imm-scene-eyebrow {
  font-size: .6rem;
  letter-spacing: 4.5px;
  text-transform: uppercase;
  color: rgba(200,169,110,.62);
  margin-bottom: 1.1rem;
}
.imm-scene-heading {
  font-family: var(--heading);
  font-size: clamp(2.2rem, 5.5vw, 4.8rem);
  font-weight: 200;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 1.3rem;
}
.imm-scene-heading em { color: var(--accent-gold); font-style: italic; }
.imm-scene-body {
  font-size: clamp(.85rem, 1.5vw, 1.02rem);
  color: rgba(237,232,224,.65);
  max-width: 560px;
  margin: 0 auto 2rem;
  line-height: 1.78;
}
.imm-scene-cta { display: inline-flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.imm-scene-num {
  position: absolute;
  top: calc(var(--nav-h) + 1.4rem);
  right: 2rem;
  font-size: .57rem;
  letter-spacing: 3px;
  color: rgba(200,169,110,.32);
  text-transform: uppercase;
  z-index: 3;
}
.imm-scene-down {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  text-align: center;
  pointer-events: none;
}
.imm-scene-down span {
  display: block;
  font-size: .54rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(237,232,224,.28);
  margin-bottom: .5rem;
}
.imm-scene-down::after {
  content: '';
  display: block;
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, rgba(200,169,110,.38), transparent);
  margin: 0 auto;
  animation: sceneDown 1.9s ease-in-out infinite;
}
@keyframes sceneDown {
  0%,100% { opacity: .38; transform: scaleY(1); }
  50% { opacity: .85; transform: scaleY(.65); }
}
/* Hover-reveal stat row */
.imm-hover {
  position: absolute;
  bottom: 4.5rem;
  left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 3rem;
  z-index: 3;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .55s ease, transform .55s ease;
  pointer-events: none;
}
.imm-scene:hover .imm-hover { opacity: 1; transform: translateY(0); }
.imm-hover-stat { text-align: center; }
.imm-hover-stat strong {
  display: block;
  font-family: var(--heading);
  font-size: 1.55rem;
  font-weight: 200;
  color: var(--accent-gold);
  line-height: 1;
}
.imm-hover-stat span {
  font-size: .57rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(237,232,224,.42);
}
/* Cleanup empty icon divs after emoji removal */
.trip-type-icon:empty,
.survival-icon:empty { display: none; }
@media (prefers-reduced-motion: reduce) {
  .imm-scene-content { opacity: 1; transform: none; transition: none; }
  .imm-scene-down::after { animation: none; }
}
@media (max-width: 768px) {
  .imm-scene { height: 100svh; }
  .imm-scene-heading { font-size: 2rem; }
  .imm-hover { gap: 1.5rem; bottom: 5rem; }
  .imm-hover-stat strong { font-size: 1.2rem; }
}
@media (max-width: 520px) {
  .imm-scene-heading { font-size: 1.65rem; }
  .imm-scene-body { font-size: .82rem; }
  .imm-hover { gap: 1rem; }
}

/* ===== BUDGET MODE THEMES ===== */
body[data-budget-mode="traveler"] { background: linear-gradient(160deg,#0d1520 0%,#1a2535 100%) !important; background-attachment: fixed !important; }
body[data-budget-mode="traveler"] .card { border-color: rgba(42,53,69,.85); transition: border-color .8s ease; }
body[data-budget-mode="traveler"] .card:hover { border-color: rgba(74,122,170,.55); }
body[data-budget-mode="traveler"] .section-title span { color: #c8d8e8; }
body[data-budget-mode="traveler"] .btn-primary { background: #4a7aaa; border-color: #4a7aaa; }
body[data-budget-mode="traveler"] .btn-secondary { color: #c8d8e8; border-color: #4a7aaa; }
body[data-budget-mode="traveler"] .affiliate-btn { transition: all .8s; }

body[data-budget-mode="vip"] { background: linear-gradient(160deg,#050505 0%,#1a0f05 100%) !important; background-attachment: fixed !important; }
body[data-budget-mode="vip"] .card { border-color: rgba(232,196,126,.48); box-shadow: 0 0 18px rgba(232,196,126,.08); transition: border-color .8s ease, box-shadow .8s ease; }
body[data-budget-mode="vip"] .card:hover { border-color: var(--accent-gold); box-shadow: 0 0 32px rgba(232,196,126,.22), 0 14px 40px rgba(232,196,126,.12); }
body[data-budget-mode="vip"] .section-title span { color: var(--accent-gold); }
body[data-budget-mode="vip"] .section-title { letter-spacing: .04em; }
body[data-budget-mode="vip"] .btn-primary { background: var(--accent-gold); border-color: var(--accent-gold); color: #080808; }
body[data-budget-mode="vip"] .btn-secondary { color: var(--accent-gold); border-color: var(--accent-gold); }
body[data-budget-mode="vip"] .affiliate-btn { transition: all .8s; }

/* ===== FEATURED EVENT CARD (homepage) ===== */
.featured-event-section { padding: 4rem 2rem 3rem; }
.fe-label { display: block; text-align: center; font-size: .65rem; letter-spacing: 4px; text-transform: uppercase; color: var(--accent-gold); margin-bottom: 1.5rem; }
.fe-card {
  position: relative; border-radius: 16px; overflow: hidden;
  min-height: 480px; display: flex; align-items: flex-end;
  background: #080808; max-width: 1200px; margin: 0 auto;
  border: 1px solid rgba(200,169,110,.18);
  box-shadow: 0 24px 80px rgba(0,0,0,.55);
}
.fe-card-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform .8s ease;
}
.fe-card:hover .fe-card-bg { transform: scale(1.03); }
.fe-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.94) 0%, rgba(0,0,0,.55) 45%, rgba(0,0,0,.18) 100%);
}
.fe-card-content {
  position: relative; z-index: 1; padding: 3rem 3.5rem;
  display: flex; flex-direction: column; align-items: flex-start;
  width: 100%;
}
.fe-badge { display: inline-block; background: rgba(204,34,0,.18); border: 1px solid rgba(204,34,0,.4); color: var(--accent-red); padding: .22rem .85rem; border-radius: 50px; font-size: .65rem; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 1rem; }
.fe-title { font-family: var(--heading); font-size: clamp(2.4rem,5.5vw,4.5rem); color: #fff; font-weight: 200; line-height: 1.05; margin-bottom: .6rem; }
.fe-sub { font-size: .88rem; color: rgba(237,232,224,.65); letter-spacing: 2px; margin-bottom: 1.5rem; }
.fe-countdown { display: flex; gap: 1.5rem; margin-bottom: 2rem; flex-wrap: wrap; }
.fe-cd-unit { display: flex; flex-direction: column; align-items: center; }
.fe-cd-num { font-family: var(--heading); font-size: 2.2rem; color: var(--accent-gold); font-weight: 300; line-height: 1; }
.fe-cd-label { font-size: .55rem; letter-spacing: 2px; text-transform: uppercase; color: rgba(200,169,110,.55); margin-top: .2rem; }
.fe-cd-sep { font-family: var(--heading); font-size: 2.2rem; color: rgba(200,169,110,.28); line-height: 1; align-self: flex-start; margin-top: .05rem; }
@media (max-width: 768px) {
  .fe-card-content { padding: 2rem 1.5rem; }
  .fe-title { font-size: 2.2rem; }
  .fe-cd-num { font-size: 1.7rem; }
  .fe-card { min-height: 380px; }
}

/* ===== CATEGORY SCROLL SECTIONS (homepage) ===== */
.cat-scroll-section {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 460px; overflow: hidden;
}
.cat-scroll-section.reverse { direction: rtl; }
.cat-scroll-section.reverse > * { direction: ltr; }
.cat-scroll-img {
  position: relative; overflow: hidden; min-height: 400px;
}
.cat-scroll-img-bg {
  position: absolute; inset: -5%;
  background-size: cover; background-position: center;
  transition: transform .9s ease;
}
.cat-scroll-section:hover .cat-scroll-img-bg { transform: scale(1.06); }
.cat-scroll-img-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.32); }
.cat-scroll-text {
  padding: 4.5rem 4rem;
  display: flex; flex-direction: column; justify-content: center;
  background: rgba(0,0,0,.18);
  opacity: 0; transform: translateY(28px);
  transition: opacity .85s ease, transform .85s ease;
}
.cat-scroll-section.cs-visible .cat-scroll-text { opacity: 1; transform: translateY(0); }
.cat-scroll-eyebrow { font-size: .6rem; letter-spacing: 4px; text-transform: uppercase; color: var(--accent-gold); margin-bottom: 1rem; }
.cat-scroll-heading { font-family: var(--heading); font-size: clamp(1.8rem,3.5vw,3rem); font-weight: 200; margin-bottom: 1rem; }
.cat-scroll-desc { font-size: .88rem; color: var(--text-muted); line-height: 1.9; margin-bottom: 2rem; max-width: 440px; }
@media (max-width: 900px) {
  .cat-scroll-section { grid-template-columns: 1fr; direction: ltr; }
  .cat-scroll-section.reverse { direction: ltr; }
  .cat-scroll-img { min-height: 260px; }
  .cat-scroll-text { padding: 2.5rem 1.5rem; opacity: 1; transform: none; }
}

/* ===== CATEGORY IMAGE CARDS (eats/stay/go redesign) ===== */
.cat-cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px,1fr)); gap: 1.5rem; margin: 2rem 0 3rem; }
.cat-img-card {
  position: relative; border-radius: 12px; overflow: hidden;
  height: 280px; cursor: pointer;
  border: 1px solid rgba(200,169,110,.14); transition: all .4s;
}
.cat-img-card:hover { transform: translateY(-6px); box-shadow: 0 18px 55px rgba(0,0,0,.45), 0 0 0 1px rgba(200,169,110,.2); }
.cat-img-card-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform .7s ease;
}
.cat-img-card:hover .cat-img-card-bg { transform: scale(1.08); }
.cat-img-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.88) 0%, rgba(0,0,0,.25) 60%, transparent 100%);
}
.cat-img-card-content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.5rem;
}
.cat-img-card-name { font-family: var(--heading); font-size: 1.2rem; color: #fff; font-weight: 400; margin-bottom: .35rem; }
.cat-img-card-desc { font-size: .78rem; color: rgba(237,232,224,.65); line-height: 1.6; }
.placeholder-note { text-align: center; padding: 2.5rem 2rem; color: var(--text-muted); font-size: .88rem; line-height: 1.8; background: rgba(255,255,255,.03); border: 1px solid rgba(200,169,110,.1); border-radius: 12px; margin-bottom: 2rem; }
.placeholder-note b { color: var(--accent-gold); }

/* ===== SHOP REDESIGN STYLES ===== */
.shop-pass-card {
  background: rgba(200,169,110,.06); border: 2px solid var(--accent-gold);
  border-radius: 16px; padding: 3rem 2.5rem; text-align: center;
  max-width: 680px; margin: 0 auto 1.5rem;
  position: relative; transition: all .4s;
}
.shop-pass-card:hover { box-shadow: 0 0 60px rgba(200,169,110,.18), 0 20px 55px rgba(200,169,110,.1); transform: translateY(-4px); }
.shop-pass-icon { font-size: 2.8rem; margin-bottom: 1.1rem; }
.shop-pass-name { font-family: var(--heading); font-size: 2rem; color: var(--accent-gold); margin-bottom: .5rem; font-weight: 300; }
.shop-pass-desc { font-size: .88rem; color: var(--text-muted); line-height: 1.85; margin-bottom: 1.5rem; max-width: 480px; margin-left: auto; margin-right: auto; }
.shop-pass-price { font-family: var(--heading); font-size: 2.4rem; color: #fff; font-weight: 300; margin-bottom: .4rem; }
.shop-pass-period { font-size: .78rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.shop-pass-btn { display: inline-block; padding: .85rem 2.5rem; border: 2px solid var(--accent-gold); color: var(--accent-gold); border-radius: 7px; font-size: .82rem; font-weight: bold; letter-spacing: 1.5px; text-transform: uppercase; cursor: pointer; transition: all .3s; background: transparent; font-family: var(--body); }
.shop-pass-btn:hover { background: var(--accent-gold); color: #080808; }
.shop-pass-note { font-size: .72rem; color: var(--text-muted); margin-top: .75rem; }

.shop-divider { text-align: center; padding: 2.5rem 0; }
.shop-divider span { font-size: .65rem; letter-spacing: 4px; text-transform: uppercase; color: var(--text-muted); background: #080808; padding: 0 1.5rem; position: relative; }
.shop-divider::before { content: ''; display: block; height: 1px; background: rgba(200,169,110,.14); margin-bottom: -0.85em; }

.shop-bundle-card {
  background: rgba(204,34,0,.06); border: 2px solid rgba(204,34,0,.4);
  border-radius: 16px; padding: 2.5rem; max-width: 780px; margin: 0 auto 1.5rem;
  position: relative; transition: all .4s;
}
.shop-bundle-card:hover { box-shadow: 0 0 50px rgba(204,34,0,.18), 0 18px 50px rgba(0,0,0,.35); transform: translateY(-4px); }
.shop-bundle-badge { position: absolute; top: -1px; right: 1.5rem; background: var(--accent-red); color: #fff; font-size: .62rem; font-weight: bold; letter-spacing: 2px; text-transform: uppercase; padding: .28rem .85rem; border-radius: 0 0 8px 8px; }
.shop-bundle-name { font-family: var(--heading); font-size: 1.7rem; font-weight: 300; margin-bottom: .5rem; }
.shop-bundle-desc { font-size: .85rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 1rem; }
.shop-bundle-pricing { display: flex; align-items: baseline; gap: 1rem; margin-bottom: .5rem; flex-wrap: wrap; }
.shop-bundle-price { font-family: var(--heading); font-size: 2.5rem; color: var(--accent-red); font-weight: 300; }
.shop-bundle-orig { font-family: var(--heading); font-size: 1.4rem; color: var(--text-muted); text-decoration: line-through; }
.shop-bundle-timer { background: rgba(204,34,0,.08); border: 1px solid rgba(204,34,0,.25); border-radius: 8px; padding: .75rem 1.25rem; margin-bottom: 1.25rem; display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.shop-bundle-timer-label { font-size: .65rem; letter-spacing: 2px; text-transform: uppercase; color: var(--accent-gold); }
.shop-bundle-timer-count { font-family: var(--heading); font-size: 1.5rem; color: var(--accent-red); font-weight: bold; }
.shop-bundle-note { font-size: .72rem; color: var(--text-muted); margin-top: .6rem; }
.shop-bundle-sale { font-family: var(--heading); font-size: 2.5rem; color: var(--accent-red); font-weight: 300; }

.shop-other-card { background: rgba(255,255,255,.04); border: 1px solid rgba(200,169,110,.12); border-radius: 12px; padding: 2rem 1.5rem; display: flex; flex-direction: column; transition: all .35s; }
.shop-other-card:hover { transform: translateY(-4px); border-color: rgba(200,169,110,.3); box-shadow: 0 12px 35px rgba(200,169,110,.08); }
.shop-other-icon { font-size: 2rem; margin-bottom: .85rem; }
.shop-other-name { font-family: var(--heading); font-size: 1.1rem; color: #fff; font-weight: 300; margin-bottom: .6rem; }
.shop-other-desc { font-size: .82rem; color: var(--text-muted); line-height: 1.8; flex: 1; }
.shop-other-price { font-family: var(--heading); font-size: 1.6rem; color: var(--accent-gold); font-weight: 300; margin-top: 1rem; }

.shop-city-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px,1fr)); gap: 1.75rem; margin-top: 2rem; }
.shop-city-card { background: rgba(255,255,255,.04); border: 1px solid rgba(200,169,110,.14); border-radius: 12px; overflow: hidden; display: flex; flex-direction: column; transition: all .35s; }
.shop-city-card:hover { transform: translateY(-5px); border-color: rgba(200,169,110,.35); box-shadow: 0 14px 40px rgba(200,169,110,.1); }
.shop-city-card-img { position: relative; height: 175px; overflow: hidden; }
.shop-city-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.shop-city-card:hover .shop-city-card-img img { transform: scale(1.06); }
.shop-city-card-label { position: absolute; bottom: 0; left: 0; right: 0; padding: .8rem 1rem .65rem; background: linear-gradient(to top, rgba(0,0,0,.88), transparent); }
.shop-city-card-city { font-family: var(--heading); font-size: 1rem; color: #fff; }
.shop-city-card-stadium { font-size: .68rem; color: rgba(237,232,224,.58); margin-top: .12rem; }
.shop-city-card-body { padding: 1.2rem; flex: 1; display: flex; flex-direction: column; }
.shop-city-price { font-family: var(--heading); font-size: 1.5rem; color: var(--accent-gold); font-weight: 300; margin-bottom: .5rem; }
.shop-city-note { font-size: .72rem; color: var(--text-muted); margin-top: .35rem; }

/* ===== CITY PAGE SECTIONS ===== */
.city-hero {
  position: relative; min-height: 60vh;
  display: flex; align-items: flex-end;
  padding: 6rem 3rem 3.5rem;
  overflow: hidden;
}
.city-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform .8s ease;
}
.city-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.9) 0%, rgba(0,0,0,.45) 50%, rgba(0,0,0,.15) 100%); }
.city-hero-content { position: relative; z-index: 1; }
.city-hero-badge { display: inline-block; background: rgba(204,34,0,.2); border: 1px solid rgba(204,34,0,.4); color: var(--accent-red); padding: .22rem .85rem; border-radius: 50px; font-size: .62rem; letter-spacing: 3px; text-transform: uppercase; margin-bottom: .85rem; }
.city-hero-name { font-family: var(--heading); font-size: clamp(2.5rem,6vw,5rem); color: #fff; font-weight: 200; line-height: 1; margin-bottom: .6rem; }
.city-hero-sub { font-size: .88rem; color: rgba(237,232,224,.65); letter-spacing: 1.5px; }

.city-section { padding: 4rem 2rem; max-width: 1200px; margin: 0 auto; }
.city-section-title { font-family: var(--heading); font-size: clamp(1.5rem,3vw,2.2rem); font-weight: 300; margin-bottom: .4rem; }
.city-section-title span { color: var(--accent-gold); }
.city-section-sub { font-size: .82rem; color: var(--text-muted); margin-bottom: 2rem; }
.city-divider { border: none; border-top: 1px solid rgba(200,169,110,.1); margin: 0; }

.city-purchase-section { background: rgba(200,169,110,.04); border-top: 1px solid rgba(200,169,110,.12); padding: 4rem 2rem; text-align: center; }
.city-purchase-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 1.5rem; max-width: 860px; margin: 2.5rem auto 0; }
.city-purchase-card { background: rgba(255,255,255,.05); border: 1px solid rgba(200,169,110,.2); border-radius: 12px; padding: 2rem 1.5rem; transition: all .35s; }
.city-purchase-card:hover { transform: translateY(-4px); border-color: rgba(200,169,110,.45); box-shadow: 0 12px 35px rgba(200,169,110,.12); }
.city-purchase-card.featured { border-color: var(--accent-gold); background: rgba(200,169,110,.07); }
.city-purchase-price { font-family: var(--heading); font-size: 2rem; color: var(--accent-gold); font-weight: 300; margin: .5rem 0 .3rem; }
.city-purchase-period { font-size: .72rem; color: var(--text-muted); margin-bottom: 1.25rem; }

@media (max-width: 768px) {
  .city-hero { padding: 5rem 1.5rem 2.5rem; min-height: 50vh; }
  .city-section { padding: 3rem 1.25rem; }
  .shop-pass-card { padding: 2rem 1.5rem; }
  .shop-bundle-card { padding: 1.75rem 1.25rem; }
  .shop-city-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .shop-city-grid { grid-template-columns: 1fr; }
}

/* ===================================================================
   THEME TRANSITIONS + NO-FLASH SUPPRESSION
=================================================================== */
html[data-no-transitions] *, html[data-no-transitions] *::before, html[data-no-transitions] *::after {
  transition: none !important;
}
body, .navbar, .card, .card-body, .footer, .footer-inner, .footer-bottom, .footer-col, .footer-brand,
.ticker-bar, .ticker-label, .ticker-track, .ticker-content, .ticker-item,
.info-banner, .placeholder-note, .stat-box, .affiliate-btn, .city-select, .city-selector-wrap,
.budget-filter, .filter-bar, .filter-btn, .budget-btn,
.section-title, .section-sub, .pull-quote, .founder-card, .founder-name, .founder-title, .founder-origin,
.shop-other-card, .shop-pass-card, .shop-bundle-card, .shop-city-card, .city-purchase-card, .city-purchase-section,
.subbrand-pill, .subbrand-badge, .nav-dropdown-menu, .timeline-date, .timeline-title, .timeline-desc,
.cat-img-card, .cat-scroll-text, .page-hero, .nav-logo-name, .nav-logo-tagline,
.shop-pass-btn, .shop-divider, .social-link, .badge, .matches-badge {
  transition-property: background-color, background, color, border-color, box-shadow;
  transition-duration: 0.4s;
  transition-timing-function: ease;
}

/* ===================================================================
   THEME TOGGLE BUTTON
=================================================================== */
.theme-toggle-btn {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid rgba(200,169,110,.35); background: transparent;
  cursor: pointer; font-size: 15px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: border-color .3s, background .3s;
  margin-left: .75rem; flex-shrink: 0;
  position: relative; color: inherit; padding: 0;
}
.theme-toggle-btn:hover { border-color: var(--accent-gold); background: rgba(200,169,110,.1); }
.theme-toggle-btn::after {
  content: attr(data-tooltip);
  position: absolute; top: calc(100% + 8px); right: 0;
  background: rgba(0,0,0,.85); color: #fff;
  font-size: .62rem; white-space: nowrap;
  padding: .28rem .65rem; border-radius: 4px;
  opacity: 0; pointer-events: none; transition: opacity .2s;
  font-family: var(--body);
}
.theme-toggle-btn:hover::after { opacity: 1; }
html[data-theme="light"] .theme-toggle-btn { border-color: rgba(160,120,40,.4); }
html[data-theme="light"] .theme-toggle-btn:hover { border-color: #a07828; background: rgba(160,120,40,.1); }

/* ===================================================================
   LANGUAGE & CURRENCY SELECTORS
=================================================================== */
.gv-lang-sel,
.gv-currency-sel {
  position: relative; display: flex; align-items: center; margin-left: .35rem;
}
.gv-sel-btn {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid rgba(200,169,110,.35); background: transparent;
  cursor: pointer; font-size: 13px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: border-color .3s, background .3s;
  color: var(--text); padding: 0; font-family: var(--body);
}
.gv-sel-btn:hover { border-color: var(--accent-gold); background: rgba(200,169,110,.1); }
.gv-sel-drop {
  position: absolute; top: calc(100% + 8px); right: 0;
  background: rgba(6,6,6,.97); backdrop-filter: blur(24px);
  border: 1px solid rgba(200,169,110,.18); border-radius: 10px;
  padding: .4rem; min-width: 140px; list-style: none; margin: 0;
  opacity: 0; pointer-events: none;
  transition: opacity .22s, transform .22s;
  transform: translateY(-6px); z-index: 1001;
}
.gv-lang-sel.open .gv-sel-drop,
.gv-currency-sel.open .gv-sel-drop { opacity: 1; pointer-events: auto; transform: translateY(0); }
.gv-sel-drop li {
  padding: .45rem .8rem; border-radius: 6px;
  font-size: .76rem; color: var(--text);
  cursor: pointer; transition: all .2s; white-space: nowrap;
}
.gv-sel-drop li:hover { background: rgba(200,169,110,.1); color: var(--accent-gold); }
.gv-sel-drop li.active { color: var(--accent-gold); font-weight: bold; }

/* Light mode */
html[data-theme="light"] .gv-sel-btn { border-color: rgba(160,120,40,.4); color: #1a1a1a; }
html[data-theme="light"] .gv-sel-btn:hover { border-color: #a07828; background: rgba(160,120,40,.1); }
html[data-theme="light"] .gv-sel-drop {
  background: #ffffff; border-color: #e0dbd0;
  box-shadow: 0 8px 28px rgba(0,0,0,.12);
}
html[data-theme="light"] .gv-sel-drop li { color: #1a1a1a; }
html[data-theme="light"] .gv-sel-drop li:hover { background: rgba(160,120,40,.08); color: #8a6a2a; }
html[data-theme="light"] .gv-sel-drop li.active { color: #8a6a2a; }

/* Lang button is pill-shaped to fit "🌐 EN" text */
.gv-lang-sel .gv-sel-btn {
  width: auto; padding: 0 .55rem; border-radius: 16px;
  font-size: 12px; letter-spacing: .04em; gap: .2rem;
}

/* Suppress Google Translate toolbar */
.goog-te-banner-frame, .goog-te-gadget, #google_translate_element { display: none !important; }
body { top: 0 !important; }
body.translated-ltr, body.translated-rtl { margin-top: 0 !important; }

/* ===================================================================
   LIGHT THEME
=================================================================== */

/* CSS variable overrides — one block fixes all var()-based text colors sitewide */
html[data-theme="light"] {
  --text: #1a1a1a;
  --text-muted: #6a5a4a;
  --accent-gold: #8a6a2a;
  --bg: #f8f8f5;
  --bg-light: #ece5d8;
  --bg-card: rgba(0,0,0,.04);
  --bg-card2: rgba(0,0,0,.06);
}
/* Global link color in light mode */
html[data-theme="light"] a { color: #CC2200; }
html[data-theme="light"] a:hover { color: #a01800; }

html[data-theme="light"] body {
  background: linear-gradient(160deg, #f8f8f5 0%, #ece5d8 100%) !important;
  background-attachment: fixed !important;
  color: #1a1a1a;
}
html[data-theme="light"] p { color: #3a2a18; }
html[data-theme="light"] h1, html[data-theme="light"] h2,
html[data-theme="light"] h3, html[data-theme="light"] h4 { color: #2a1a08; }
html[data-theme="light"] .text-gold { color: #a07828 !important; }
html[data-theme="light"] .text-muted { color: #6a5a4a !important; }

/* Nav */
html[data-theme="light"] .navbar {
  background: rgba(248,248,245,.97) !important;
  border-bottom-color: #e0dbd0 !important;
}
html[data-theme="light"] .navbar::after { opacity: .3; }
html[data-theme="light"] .nav-logo-name { color: #2a1a08; }
html[data-theme="light"] .nav-logo-tagline { color: #9a8878; }
html[data-theme="light"] .nav-links > li > a { color: #1a1a1a !important; }
html[data-theme="light"] .nav-links a:hover,
html[data-theme="light"] .nav-links a.active { color: var(--accent-red) !important; }
html[data-theme="light"] .nav-dropdown-btn { color: #1a1a1a !important; }
html[data-theme="light"] .nav-dropdown-menu {
  background: #ffffff !important; border-color: #e0dbd0 !important;
  box-shadow: 0 8px 28px rgba(0,0,0,.12);
}
html[data-theme="light"] .nav-dropdown-menu a { color: #1a1a1a !important; }
html[data-theme="light"] .nav-dropdown-menu a:hover { color: var(--accent-red) !important; }
html[data-theme="light"] .hamburger span { background: #2a1a08; }

/* Hero */
html[data-theme="light"] .page-hero {
  background: rgba(248,248,245,.35) !important;
  border-bottom-color: rgba(160,120,40,.2) !important;
}
html[data-theme="light"] .page-hero h1 { color: #2a1a08; }
html[data-theme="light"] .page-hero p { color: #5a4a38; }
html[data-theme="light"] .subbrand-badge {
  background: rgba(160,120,40,.12) !important;
  color: #a07828 !important;
  border-color: rgba(160,120,40,.35) !important;
}
/* City hero images keep dark overlay so text stays legible */
html[data-theme="light"] .city-hero-overlay {
  background: linear-gradient(to top, rgba(0,0,0,.72) 0%, rgba(0,0,0,.32) 55%, rgba(0,0,0,.08) 100%) !important;
}

/* Cards */
html[data-theme="light"] .card {
  background: #fff !important;
  border-color: #e0dbd0 !important;
  box-shadow: 0 2px 14px rgba(0,0,0,.07);
}
html[data-theme="light"] .card-body { color: #1a1a1a; }

/* Sections */
html[data-theme="light"] .section-title { color: #2a1a08; border-color: rgba(160,120,40,.2); }
html[data-theme="light"] .section-title span { color: #a07828; }
html[data-theme="light"] .section-sub { color: #7a6a58; }

/* Buttons */
html[data-theme="light"] .btn-primary { background: var(--accent-red); color: #fff; }
html[data-theme="light"] .btn-secondary { color: #2a1a08; border-color: #b0a090; }
html[data-theme="light"] .btn-secondary:hover { background: #2a1a08; color: #f8f8f5; border-color: #2a1a08; }

/* Filters */
html[data-theme="light"] .filter-bar { background: rgba(0,0,0,.04); border-color: rgba(0,0,0,.08); }
html[data-theme="light"] .filter-btn { border-color: #d0c8bc; color: #4a3a28; background: transparent; }
html[data-theme="light"] .filter-btn.active,
html[data-theme="light"] .filter-btn:hover { background: var(--accent-red) !important; color: #fff !important; border-color: var(--accent-red) !important; }
html[data-theme="light"] .budget-filter { background: rgba(0,0,0,.04) !important; }
html[data-theme="light"] .budget-btn { border-color: #d0c8bc; color: #4a3a28; background: transparent; }
html[data-theme="light"] .budget-btn.active { background: var(--accent-red) !important; color: #fff !important; border-color: var(--accent-red) !important; }

/* City selector */
html[data-theme="light"] .city-selector-wrap { background: rgba(0,0,0,.04); border-color: rgba(0,0,0,.06); }
html[data-theme="light"] .city-selector-wrap label { color: #4a3a28; }
html[data-theme="light"] .city-select { background: #fff; border-color: #d0c8bc; color: #1a1a1a; }

/* Info / placeholder */
html[data-theme="light"] .info-banner {
  background: rgba(200,169,110,.1) !important;
  border-color: rgba(160,120,40,.3) !important;
  color: #2a1a08 !important;
}
html[data-theme="light"] .placeholder-note {
  background: rgba(200,169,110,.07) !important;
  border-color: rgba(160,120,40,.2) !important;
  color: #4a3a28 !important;
}
html[data-theme="light"] .placeholder-note b { color: #a07828 !important; }

/* Affiliate buttons */
html[data-theme="light"] .affiliate-btn { background: #fff; border-color: #d0c8bc; color: #2a1a08; }
html[data-theme="light"] .affiliate-btn:hover { border-color: var(--accent-red); color: var(--accent-red); }

/* Stats */
html[data-theme="light"] .stat-box { background: #fff; border-color: #e0dbd0; }
html[data-theme="light"] .stat-number { color: var(--accent-red); }
html[data-theme="light"] .stat-label { color: #7a6a58; }

/* Subbrand pills */
html[data-theme="light"] .subbrand-pill { border-color: #d0c8bc; color: #4a3a28; background: rgba(0,0,0,.03); }

/* Footer */
html[data-theme="light"] .footer { background: #ece5d8; border-top-color: #d8d0c4; }
html[data-theme="light"] .footer-bottom { border-top-color: #d8d0c4; color: #8a7a68; }
html[data-theme="light"] .footer-col h4 { color: #2a1a08; }
html[data-theme="light"] .footer-col a { color: #4a3a28; }
html[data-theme="light"] .footer-brand h3 { color: #2a1a08; }
html[data-theme="light"] .footer-brand p { color: #6a5a48; }
html[data-theme="light"] .social-link { color: #4a3a28; border-color: #d0c8bc; }
html[data-theme="light"] .footer-subbrand { border-color: #d8d0c4; }

/* Cards and components lacking explicit light-mode overrides */
html[data-theme="light"] .cs-card { background: rgba(255,255,255,.8) !important; border-color: rgba(160,120,40,.2) !important; }
html[data-theme="light"] .cs-item { background: rgba(255,255,255,.8) !important; border-color: rgba(160,120,40,.2) !important; }
html[data-theme="light"] .cs-badge { background: rgba(160,120,40,.1) !important; border-color: rgba(160,120,40,.28) !important; color: #8a6a2a !important; }
html[data-theme="light"] .cs-notify input { background: rgba(255,255,255,.9) !important; border-color: #d0c8bc !important; color: #1a1a1a !important; }
html[data-theme="light"] .cs-notify button { background: #8a6a2a !important; border-color: #8a6a2a !important; }
html[data-theme="light"] .tour-card { background: rgba(255,255,255,.8) !important; border-color: rgba(160,120,40,.2) !important; }
html[data-theme="light"] .tour-card-banner { background: linear-gradient(135deg,rgba(42,122,170,.07),rgba(200,169,110,.04)) !important; }
html[data-theme="light"] .tour-premium-badge { color: #8a6a2a !important; border-color: rgba(160,120,40,.3) !important; background: rgba(160,120,40,.1) !important; }
html[data-theme="light"] .stadium-card { background: rgba(255,255,255,.8) !important; border-color: rgba(160,120,40,.18) !important; }
html[data-theme="light"] .stadium-emoji { background: linear-gradient(135deg,rgba(204,34,0,.08),rgba(200,169,110,.05)) !important; }
html[data-theme="light"] .shop-card { background: rgba(255,255,255,.8) !important; border-color: #e0dbd0 !important; }
html[data-theme="light"] .shop-card.featured { border-color: rgba(204,34,0,.35) !important; }
html[data-theme="light"] .shop-preview-btn { border-color: #d0c8bc; color: #6a5a4a; }
html[data-theme="light"] .shop-preview-btn:hover { border-color: #8a6a2a; color: #8a6a2a; }
html[data-theme="light"] .shop-preview-content { background: rgba(0,0,0,.04) !important; color: #6a5a4a !important; }
html[data-theme="light"] .shop-badge-best { color: #8a6a2a !important; border-color: rgba(160,120,40,.35) !important; background: rgba(160,120,40,.1) !important; }
html[data-theme="light"] .shop-timer { background: rgba(204,34,0,.06) !important; border-color: rgba(204,34,0,.2) !important; }
html[data-theme="light"] .form-control { background: rgba(255,255,255,.9) !important; border-color: #d0c8bc !important; color: #1a1a1a !important; }
html[data-theme="light"] .form-control::placeholder { color: #9a8878 !important; }
html[data-theme="light"] .hero-tagline { color: #8a6a2a !important; }
html[data-theme="light"] .hero-sub { color: #6a5a4a !important; }
html[data-theme="light"] .hero-badge { color: #8a6a2a !important; border-color: rgba(138,106,42,.35) !important; background: rgba(138,106,42,.1) !important; }
html[data-theme="light"] .events-section-header h2 { color: #2a1a08; }
html[data-theme="light"] .events-section-header h2 span { color: #8a6a2a; }
html[data-theme="light"] .events-section-header p { color: #6a5a4a; }
html[data-theme="light"] .wc-section { background: rgba(204,34,0,.02) !important; }
html[data-theme="light"] .wc-section-head h2 { color: #2a1a08; }
html[data-theme="light"] .wc-section-head h2 span { color: #8a6a2a; }
html[data-theme="light"] .wc-badge-pill { color: var(--accent-red); background: rgba(204,34,0,.08) !important; }
html[data-theme="light"] .transport-toggle { color: #8a6a2a !important; }
html[data-theme="light"] .transport-body p { color: #4a3a28 !important; }
html[data-theme="light"] .transport-body ul li { color: #4a3a28 !important; }
html[data-theme="light"] .transport-body ul li::before { color: #8a6a2a !important; }
html[data-theme="light"] .city-card-note { color: #8a6a2a !important; }
html[data-theme="light"] .country-tag { color: #6a5a4a !important; }
html[data-theme="light"] .flip-label { color: #6a5a4a !important; }
html[data-theme="light"] .countdown-label-unit { color: #6a5a4a !important; }
html[data-theme="light"] .tour-price { color: #8a6a2a !important; }
html[data-theme="light"] .tour-features li { color: #4a3a28; border-bottom-color: rgba(160,120,40,.12) !important; }

/* Ticker */
html[data-theme="light"] .ticker-bar { background: #f0ede5; border-top-color: #e0dbd0; }
html[data-theme="light"] .ticker-label { background: var(--accent-red); color: #fff; }
html[data-theme="light"] .ticker-item   { color: #1a1a1a; }
html[data-theme="light"] .ticker-item b { color: var(--accent-red); }

/* Badges */
html[data-theme="light"] .badge-fan { background: rgba(0,0,0,.06); color: #4a3a28; border-color: #d0c8bc; }
html[data-theme="light"] .badge-traveler { background: rgba(160,120,40,.12); color: #8a6820; border-color: rgba(160,120,40,.35); }
html[data-theme="light"] .badge-vip { background: rgba(204,34,0,.1); color: var(--accent-red); border-color: rgba(204,34,0,.35); }
html[data-theme="light"] .matches-badge { background: rgba(204,34,0,.1); color: var(--accent-red); }

/* About */
html[data-theme="light"] .pull-quote { border-left-color: #a07828 !important; color: #2a1a08 !important; }
html[data-theme="light"] .founder-card { background: #fff; border-color: #e0dbd0; }
html[data-theme="light"] .founder-name { color: #2a1a08; }
html[data-theme="light"] .founder-title { color: #8a7a68; }
html[data-theme="light"] .founder-origin { color: #4a3a28; }

/* Timeline */
html[data-theme="light"] .timeline-date { color: #a07828 !important; }
html[data-theme="light"] .timeline-title { color: #2a1a08 !important; }
html[data-theme="light"] .timeline-desc { color: #4a3a28 !important; }

/* Shop */
html[data-theme="light"] .shop-pass-card { background: rgba(160,120,40,.06) !important; border-color: #a07828 !important; }
html[data-theme="light"] .shop-pass-name { color: #a07828 !important; }
html[data-theme="light"] .shop-pass-price { color: #2a1a08 !important; }
html[data-theme="light"] .shop-pass-period { color: #7a6a58; }
html[data-theme="light"] .shop-pass-btn { border-color: #a07828; color: #a07828; }
html[data-theme="light"] .shop-pass-btn:hover { background: #a07828; color: #fff8ee; }
html[data-theme="light"] .shop-divider::before { background: rgba(160,120,40,.2); }
html[data-theme="light"] .shop-divider span { background: #ece5d8; color: #8a7a68; }
html[data-theme="light"] .shop-bundle-card { background: rgba(204,34,0,.04) !important; border-color: rgba(204,34,0,.35) !important; }
html[data-theme="light"] .shop-bundle-name { color: #2a1a08; }
html[data-theme="light"] .shop-bundle-desc { color: #4a3a28; }
html[data-theme="light"] .shop-bundle-orig { color: #9a8878; }
html[data-theme="light"] .shop-city-card { background: #fff !important; border-color: #e0dbd0 !important; }
html[data-theme="light"] .shop-city-card-body { color: #1a1a1a; }
html[data-theme="light"] .shop-city-price { color: #a07828; }
html[data-theme="light"] .shop-other-card { background: #fff !important; border-color: #e0dbd0 !important; }
html[data-theme="light"] .shop-other-name { color: #2a1a08; }
html[data-theme="light"] .shop-other-desc { color: #5a4a38; }
html[data-theme="light"] .shop-other-price { color: #a07828; }

/* Cat image cards */
html[data-theme="light"] .cat-img-card { border-color: rgba(160,120,40,.2); }
html[data-theme="light"] .cat-scroll-text { background: rgba(248,248,245,.9) !important; }
html[data-theme="light"] .cat-scroll-eyebrow { color: #a07828; }
html[data-theme="light"] .cat-scroll-heading { color: #2a1a08; }
html[data-theme="light"] .cat-scroll-desc { color: #5a4a38; }

/* City pages */
html[data-theme="light"] .city-section-title { color: #2a1a08; }
html[data-theme="light"] .city-section-title span { color: #a07828; }
html[data-theme="light"] .city-section-sub { color: #7a6a58; }
html[data-theme="light"] .city-divider { border-top-color: rgba(160,120,40,.15); }
html[data-theme="light"] .city-purchase-section { background: rgba(200,169,110,.07) !important; border-top-color: rgba(160,120,40,.2) !important; }
html[data-theme="light"] .city-purchase-card { background: #fff !important; border-color: #e0dbd0 !important; }
html[data-theme="light"] .city-purchase-card.featured { background: rgba(160,120,40,.08) !important; border-color: #a07828 !important; }
html[data-theme="light"] .city-purchase-price { color: #a07828; }
html[data-theme="light"] .city-purchase-period { color: #7a6a58; }

/* Film grain lighter in light mode */
html[data-theme="light"] #gv-grain { opacity: .018 !important; mix-blend-mode: multiply; }

/* Page load overlay */
html[data-theme="light"] #gv-page-overlay { background: #f8f8f5 !important; }

/* ===================================================================
   DARK MODE — NAV, TICKER, BADGE OVERRIDES ONLY
   Structural text (h*, p, li, a, label, div, span) is handled by the
   CSS variable system (--text: #EDE8E0 in dark mode). Only accent
   design elements, nav subbrand colors, ticker, and buttons are locked.
=================================================================== */

/* — Nav subbrand link colors — */
html[data-theme="dark"] .nav-links a                  { color: var(--text)        !important; }
html[data-theme="dark"] .nav-links a.nav-eats         { color: var(--eats)        !important; }
html[data-theme="dark"] .nav-links a.nav-stay         { color: var(--stay)        !important; }
html[data-theme="dark"] .nav-links a.nav-go           { color: var(--go)          !important; }
html[data-theme="dark"] .nav-links a.nav-shop         { color: var(--tour)        !important; }
html[data-theme="dark"] .nav-links a:hover,
html[data-theme="dark"] .nav-links a.active           { color: var(--accent-gold) !important; }
html[data-theme="dark"] .nav-dropdown-menu a          { color: var(--text)        !important; }
html[data-theme="dark"] .nav-dropdown-menu a:hover    { color: var(--accent-gold) !important; }
html[data-theme="dark"] .footer-col ul li a           { color: var(--text-muted)  !important; }
html[data-theme="dark"] .footer-col ul li a:hover     { color: var(--text)        !important; }

/* — Ticker — */
html[data-theme="dark"] .ticker-item   { color: #EDE8E0 !important; }
html[data-theme="dark"] .ticker-item b { color: var(--accent-red) !important; }

/* — Badges / tags — */
html[data-theme="dark"] .badge          { color: #C8A96E !important; }
html[data-theme="dark"] .tag            { color: #C8A96E !important; }
html[data-theme="dark"] .badge-fan      { color: var(--stay)        !important; }
html[data-theme="dark"] .badge-traveler { color: var(--accent-gold) !important; }
html[data-theme="dark"] .badge-vip      { color: var(--accent-red)  !important; }

/* — Buttons: dark text on bright gold / orange backgrounds — */
html[data-theme="dark"] .btn-secondary:hover               { color: #080808 !important; }
html[data-theme="dark"] .budget-btn[data-mode="traveler"].active { color: #080808 !important; }
html[data-theme="dark"] .cs-notify button                  { color: #080808 !important; }
html[data-theme="dark"] .shop-pass-btn:hover               { color: #080808 !important; }

/* — OS dark preference fallback (no-JS — data-theme not yet set by head script) — */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .ticker-item   { color: #EDE8E0 !important; }
  :root:not([data-theme="light"]) .ticker-item b { color: var(--accent-red) !important; }
  :root:not([data-theme="light"]) .badge          { color: #C8A96E !important; }
  :root:not([data-theme="light"]) .tag            { color: #C8A96E !important; }
  :root:not([data-theme="light"]) .badge-fan      { color: var(--stay) !important; }
  :root:not([data-theme="light"]) .badge-traveler { color: var(--accent-gold) !important; }
  :root:not([data-theme="light"]) .badge-vip      { color: var(--accent-red) !important; }
}

/* ===================================================================
   VIP MODE — LUXURY EXPANDED
=================================================================== */

/* Canvas background element */
#vip-bg-canvas {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
  opacity: 0; transition: opacity .8s ease;
}
#vip-bg-canvas.active { opacity: 1; }

/* Body transparent so canvas shows */
body[data-budget-mode="vip"] {
  background: transparent !important;
  background-image: none !important;
}
/* Ensure page-wrapper stacks above canvas */
body[data-budget-mode="vip"] .page-wrapper { position: relative; z-index: 1; }

/* Light mode + VIP also transparent */
html[data-theme="light"] body[data-budget-mode="vip"] {
  background: transparent !important;
}

/* VIP Typography — dark */
body[data-budget-mode="vip"] h1,
body[data-budget-mode="vip"] h2,
body[data-budget-mode="vip"] h3 {
  font-weight: 300; letter-spacing: 4px;
  background: none !important; -webkit-background-clip: unset !important; background-clip: unset !important;
  -webkit-text-fill-color: #F5E6C8 !important; color: #F5E6C8 !important;
}
body[data-budget-mode="vip"] .section-title { letter-spacing: 3px; }
body[data-budget-mode="vip"] .section-sub { letter-spacing: 1.5px; }
body[data-budget-mode="vip"] .subbrand-badge { letter-spacing: 4px; color: var(--accent-gold) !important; }

/* VIP Typography — light */
html[data-theme="light"] body[data-budget-mode="vip"] h1,
html[data-theme="light"] body[data-budget-mode="vip"] h2,
html[data-theme="light"] body[data-budget-mode="vip"] h3 {
  background: none; -webkit-text-fill-color: #1A0F00 !important;
  color: #1A0F00 !important; letter-spacing: 4px;
}
html[data-theme="light"] body[data-budget-mode="vip"] .subbrand-badge { color: #E8C47E !important; }

/* VIP Cards — dark */
body[data-budget-mode="vip"] .card {
  background: rgba(15,12,8,.55) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border: 1px solid rgba(232,196,126,.3) !important;
  position: relative; overflow: hidden;
}
body[data-budget-mode="vip"] .card:hover {
  transform: translateY(-2px) !important;
  border-color: #E8C47E !important;
  box-shadow: 0 12px 40px rgba(232,196,126,.15) !important;
}
/* VIP Cards — light */
html[data-theme="light"] body[data-budget-mode="vip"] .card {
  background: rgba(255,252,245,.65) !important;
  border: 1px solid rgba(180,140,60,.3) !important;
}
html[data-theme="light"] body[data-budget-mode="vip"] .card:hover { border-color: #b8902a !important; }

/* VIP card gold shimmer */
@keyframes vip-shimmer {
  0%   { transform: translateX(-150%) skewX(-20deg); }
  100% { transform: translateX(400%)  skewX(-20deg); }
}
body[data-budget-mode="vip"] .card { overflow: hidden; }
body[data-budget-mode="vip"] .card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(232,196,126,.07), transparent);
  animation: vip-shimmer 3s ease-in-out infinite;
  pointer-events: none; z-index: 0;
}
body[data-budget-mode="vip"] .card > * { position: relative; z-index: 1; }

/* VIP Nav — dark */
body[data-budget-mode="vip"] .navbar {
  background: rgba(10,8,5,.55) !important;
  backdrop-filter: blur(16px) !important; -webkit-backdrop-filter: blur(16px) !important;
  border-bottom: 2px solid #E8C47E !important;
}
body[data-budget-mode="vip"] .navbar::after { display: none; }
body[data-budget-mode="vip"] .nav-logo-name {
  background: linear-gradient(90deg, #E8C47E, #f0d898, #E8C47E);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
/* VIP Nav — light */
html[data-theme="light"] body[data-budget-mode="vip"] .navbar {
  background: rgba(245,240,232,.72) !important;
  border-bottom: 2px solid #b8902a !important;
}
html[data-theme="light"] body[data-budget-mode="vip"] .nav-logo-name {
  background: none; -webkit-text-fill-color: #3a2808; color: #3a2808;
}

/* VIP Buttons — dark */
body[data-budget-mode="vip"] .btn-primary {
  background: #E8C47E !important; color: #0a0805 !important;
  border-color: #E8C47E !important; font-weight: 700 !important; letter-spacing: 2px !important;
}
body[data-budget-mode="vip"] .btn-secondary {
  color: #E8C47E !important; border-color: rgba(232,196,126,.55) !important; font-weight: 600 !important;
}
body[data-budget-mode="vip"] .btn-secondary:hover { background: rgba(232,196,126,.12) !important; }
/* VIP Buttons — light */
html[data-theme="light"] body[data-budget-mode="vip"] .btn-primary {
  background: #8A5A00 !important; color: #FFF8EE !important; border-color: #8A5A00 !important;
}
html[data-theme="light"] body[data-budget-mode="vip"] .btn-secondary {
  color: #E8C47E !important; border-color: rgba(232,196,126,.5) !important;
}

/* VIP decorative gold dividers between sections */
body[data-budget-mode="vip"] .section::before,
body[data-budget-mode="vip"] .city-section::before {
  content: ''; display: block; height: 1px; margin-bottom: 2rem;
  background: linear-gradient(90deg, transparent, rgba(232,196,126,.45), transparent);
}
html[data-theme="light"] body[data-budget-mode="vip"] .section::before,
html[data-theme="light"] body[data-budget-mode="vip"] .city-section::before {
  background: linear-gradient(90deg, transparent, rgba(184,144,42,.5), transparent);
}

/* VIP Watermark */
#vip-watermark {
  position: fixed; bottom: 1.5rem; right: 1.5rem;
  font-family: Georgia, serif; font-size: .72rem; letter-spacing: 6px;
  text-transform: uppercase; pointer-events: none; z-index: 9;
  user-select: none; transition: color .4s ease;
}

/* VIP compact spacing — removes excess padding so sections feel tight and intentional */
body[data-budget-mode="vip"] .section            { padding: 3.5rem 2rem !important; }
body[data-budget-mode="vip"] .section-sm         { padding: 2rem 2rem !important; }
body[data-budget-mode="vip"] .section-sub        { margin-bottom: 1.5rem !important; }
body[data-budget-mode="vip"] .section-title      { margin-bottom: .3rem !important; }
body[data-budget-mode="vip"] .hero               { padding: 5rem 2rem 5.5rem !important; }
body[data-budget-mode="vip"] .page-hero          { padding: 4.5rem 2rem 2.5rem !important; }
body[data-budget-mode="vip"] .flip-countdown     { padding: 1.75rem 2rem !important; }
body[data-budget-mode="vip"] .countdown-section  { padding: 2rem !important; }
body[data-budget-mode="vip"] .budget-filter      { padding: 1.25rem 1rem !important; }
body[data-budget-mode="vip"] .events-section     { padding: 3.5rem 2rem 4rem !important; }
body[data-budget-mode="vip"] .city-section       { padding: 2.75rem 2rem !important; }
body[data-budget-mode="vip"] .city-purchase-section { padding: 2.5rem 2rem !important; }
body[data-budget-mode="vip"] .featured-event-section { padding: 2.5rem 2rem 2rem !important; }
body[data-budget-mode="vip"] .section::before,
body[data-budget-mode="vip"] .city-section::before { margin-bottom: 1rem !important; }

/* VIP Text Colors — dark */
body[data-budget-mode="vip"] h4,
body[data-budget-mode="vip"] h5,
body[data-budget-mode="vip"] h6 {
  color: #E8C47E !important; -webkit-text-fill-color: #E8C47E !important;
}
body[data-budget-mode="vip"] p,
body[data-budget-mode="vip"] li { color: #F5E6C8 !important; }
body[data-budget-mode="vip"] .section-sub { color: #E8C47E !important; }
body[data-budget-mode="vip"] .section-title span { color: #E8C47E !important; }
body[data-budget-mode="vip"] .subbrand-badge { color: #E8C47E !important; }
body[data-budget-mode="vip"] .card p,
body[data-budget-mode="vip"] .card li,
body[data-budget-mode="vip"] .card span { color: #F5E6C8 !important; }
body[data-budget-mode="vip"] .card h4,
body[data-budget-mode="vip"] .card h5,
body[data-budget-mode="vip"] .card h6 {
  color: #F5E6C8 !important; -webkit-text-fill-color: #F5E6C8 !important;
}

/* VIP Text Colors — light */
html[data-theme="light"] body[data-budget-mode="vip"] h4,
html[data-theme="light"] body[data-budget-mode="vip"] h5,
html[data-theme="light"] body[data-budget-mode="vip"] h6 {
  color: #E8C47E !important; -webkit-text-fill-color: #E8C47E !important;
}
html[data-theme="light"] body[data-budget-mode="vip"] p,
html[data-theme="light"] body[data-budget-mode="vip"] li { color: #2A1A08 !important; }
html[data-theme="light"] body[data-budget-mode="vip"] .section-sub { color: #E8C47E !important; }
html[data-theme="light"] body[data-budget-mode="vip"] .section-title span { color: #E8C47E !important; }
html[data-theme="light"] body[data-budget-mode="vip"] .card p,
html[data-theme="light"] body[data-budget-mode="vip"] .card li,
html[data-theme="light"] body[data-budget-mode="vip"] .card span { color: #1A0F00 !important; }
html[data-theme="light"] body[data-budget-mode="vip"] .card h4,
html[data-theme="light"] body[data-budget-mode="vip"] .card h5,
html[data-theme="light"] body[data-budget-mode="vip"] .card h6 {
  color: #1A0F00 !important; -webkit-text-fill-color: #1A0F00 !important;
}

/* ===================================================================
   WORLDCUP HOST CITIES EXPANDABLE GRID
=================================================================== */
.wc-host-section { padding: 4rem 2rem 5rem; }
.wc-city-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
  max-width: 1200px;
  margin: 2rem auto 0;
}
@media (max-width: 900px) { .wc-city-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .wc-city-grid { grid-template-columns: 1fr; } }

.wc-city-card {
  position: relative; border-radius: 10px; overflow: hidden;
  cursor: pointer; min-height: 175px;
  border: 1px solid rgba(200,169,110,.15);
  transition: border-color .3s, box-shadow .3s, transform .25s;
}
.wc-city-card:hover {
  border-color: rgba(200,169,110,.55);
  box-shadow: 0 8px 28px rgba(0,0,0,.45);
  transform: translateY(-2px);
}
.wc-city-photo {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform .5s;
}
.wc-city-card:hover .wc-city-photo { transform: scale(1.04); }
.wc-city-grad {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,.92) 0%, rgba(8,8,8,.38) 65%, transparent 100%);
}
.wc-city-info {
  position: relative; z-index: 1; padding: 1rem;
  display: flex; flex-direction: column; justify-content: flex-end; min-height: 175px;
}
.wc-city-name {
  font-family: var(--heading); font-size: 1.05rem; font-weight: 300;
  color: #fff; margin-bottom: .2rem;
}
.wc-city-stadium { font-size: .68rem; color: var(--accent-gold); letter-spacing: 1px; margin-bottom: .2rem; }
.wc-city-matches  { font-size: .65rem; color: #CC2200; letter-spacing: 1px; text-transform: uppercase; }

/* Expand panel */
.wc-expand-wrap { max-width: 1200px; margin: 0 auto; }
.wc-city-expand {
  display: none;
  background: rgba(12,10,7,.97);
  border: 1px solid rgba(200,169,110,.22);
  border-radius: 12px; padding: 2rem;
  margin: 1rem auto 0;
  max-width: 1200px;
}
.wc-city-expand.active { display: block; animation: wc-exp .28s ease; }
@keyframes wc-exp { from { opacity:0; transform:translateY(-6px); } to { opacity:1; transform:translateY(0); } }

.wc-expand-header {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem;
}
.wc-expand-title {
  font-family: var(--heading); font-size: 1.55rem; font-weight: 200; color: #EDE8E0;
}
.wc-expand-close {
  background: none; border: none; color: rgba(237,232,224,.4);
  font-size: 1.5rem; cursor: pointer; padding: 4px 10px; line-height: 1;
  transition: color .2s;
}
.wc-expand-close:hover { color: #CC2200; }

.wc-tabs { display: flex; gap: .5rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.wc-tab-btn {
  padding: .42rem 1rem; border-radius: 20px;
  border: 1px solid rgba(200,169,110,.25); background: transparent;
  color: var(--text-muted); font-size: .76rem; cursor: pointer; transition: all .2s;
}
.wc-tab-btn:hover, .wc-tab-btn.active {
  background: rgba(200,169,110,.1); border-color: var(--accent-gold); color: var(--accent-gold);
}
.wc-tab-panel { display: none; }
.wc-tab-panel.active { display: block; }
.wc-tab-text {
  color: var(--text-muted); font-size: .88rem; margin-bottom: 1.1rem; line-height: 1.85;
}
.wc-tab-affiliate { display: flex; gap: .75rem; flex-wrap: wrap; margin-bottom: .5rem; }
.wc-expand-footer {
  display: flex; gap: .75rem; flex-wrap: wrap;
  padding-top: 1.2rem; margin-top: 1.2rem;
  border-top: 1px solid rgba(200,169,110,.1);
}

/* VIP transitions smooth in/out */
body, .card, .navbar, .btn-primary, .btn-secondary {
  transition-property: background, background-color, color, border-color, box-shadow, backdrop-filter;
  transition-duration: .8s;
  transition-timing-function: ease;
}

