body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Lato', sans-serif;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top:0; left:0; right:0; z-index:200;
  padding: 16px 48px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(247,243,236,0.93);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}
.logo {
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-size: 20px; letter-spacing: -0.3px;
}
.logo span { color: var(--a1); }
.nav-links { display:flex; gap:28px; list-style:none; }
.nav-links a { color:var(--muted); text-decoration:none; font-size:14px; font-weight:500; transition:color .2s; }
.nav-links a:hover { color:var(--text); }
.lang-toggle { display:flex; background:var(--surface2); border-radius:20px; padding:3px; gap:2px; }
.lang-btn {
  padding:5px 12px; border-radius:16px; font-size:12px; font-weight:700;
  cursor:pointer; transition:all .2s; border:none; background:transparent; color:var(--muted);
  font-family:'Lato',sans-serif;
}
.lang-btn.active { background:var(--a1); color:var(--text); }

/* hamburger (mobile) */
.hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; padding:4px; }
.hamburger span { width:22px; height:2px; background:var(--text); border-radius:2px; transition:all .3s; }
.mobile-menu {
  display:none; position:fixed; top:57px; left:0; right:0; z-index:199;
  background:var(--bg); border-bottom:1px solid var(--border);
  flex-direction:column; padding:16px 24px; gap:16px;
}
.mobile-menu.open { display:flex; }
.mobile-menu a { color:var(--text); text-decoration:none; font-size:16px; font-weight:500; padding:8px 0; border-bottom:1px solid var(--border); }

.hero-tag {
  display:inline-flex; align-items:center; gap:8px;
  background:var(--surface2); border:1px solid var(--border); border-radius:20px;
  padding:6px 14px 6px 8px; font-size:12px; font-weight:500; color:var(--muted);
  margin-bottom:28px; width:fit-content;
}
.hero-tag-dot {
  width:8px; height:8px; background:var(--a5); border-radius:50%;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(.8)} }

h1.hero-title {
  font-family:'Playfair Display',serif; font-weight:700;
  font-size: clamp(44px,7vw,100px);
  line-height:1; letter-spacing:-2px; margin-bottom:24px; max-width:860px;
}
.hero-title .italic { font-style:italic; color:var(--a4); }
.hero-title .underline { position:relative; display:inline-block; isolation:isolate; }
.hero-title .underline::after {
  content:''; position:absolute; bottom:-4px; left:0; right:0;
  height:6px; background:var(--a5); border-radius:2px; z-index:-1;
}
.hero-sub {
  font-size:17px; color:var(--muted); max-width:460px;
  line-height:1.65; font-weight:300; margin-bottom:40px;
}
.hero-stats { display:flex; gap:36px; margin-bottom:48px; flex-wrap:wrap; }
.stat-num {
  font-family:'Playfair Display',serif; font-weight:700;
  font-size:34px; letter-spacing:-1px; line-height:1; display:block;
}
.stat-label { font-size:11px; color:var(--muted); font-weight:700; letter-spacing:1px; text-transform:uppercase; margin-top:2px; display:block; }
.hero-cta { display:flex; gap:14px; align-items:center; flex-wrap:wrap; justify-content:center; }
.btn-primary {
  background:var(--a1); color:var(--text); border:none;
  padding:15px 28px; border-radius:50px; font-size:15px; font-weight:700;
  cursor:pointer; transition:all .2s; font-family:'Lato',sans-serif;
}
.btn-primary:hover { transform:translateY(-2px); box-shadow:0 10px 32px rgba(232,197,71,.4); }
.btn-ghost {
  background:transparent; color:var(--text); border:1.5px solid var(--border);
  padding:15px 28px; border-radius:50px; font-size:15px; font-weight:500;
  cursor:pointer; transition:all .2s; font-family:'Lato',sans-serif;
}
.btn-ghost:hover { border-color:var(--muted); }

/* ── TICKER ── */
.ticker-disclaimer {
  text-align:center;
  font-family:'Lato',sans-serif;
  font-size:10px;
  font-weight:700;
  letter-spacing:1.5px;
  text-transform:uppercase;
  color:var(--a5);
  background:var(--surface);
  padding:8px 20px 4px;
  border-top:1px solid var(--border);
  opacity:0.8;
}
.ticker {
  border-bottom:1px solid var(--border);
  padding:13px 0; overflow:hidden; white-space:nowrap; background:var(--surface);
}
.ticker-inner { display:inline-flex; animation:tick 35s linear infinite; }
.ticker-item { display:inline-flex; align-items:center; gap:10px; padding:0 24px; font-size:13px; font-weight:500; color:var(--muted); }
.ticker-dot { width:5px; height:5px; border-radius:50%; flex-shrink:0; }
@keyframes tick { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

.hero {
  position: relative;
  width: 100%;
  height: calc(100vh - var(--nav-h, 57px));
  min-height: 480px;
  overflow: hidden;
}

#world-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: #B8D4DC;
}
#map-pins-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(44,42,37,0.1) 0%, transparent 25%, transparent 100%);
  pointer-events: none;
}

/* hero subtitle — whisper pill */
.hero-subtitle {
  position: absolute;
  top: 56px; left: 50%; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50px;
  padding: 7px 18px 7px 12px;
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  font-weight: 400;
  font-style: italic;
  color: rgba(44,42,37,0.82);
  letter-spacing: 0.2px;
  z-index: 10;
  pointer-events: none;
  white-space: nowrap;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}

/* stats card — bottom right */
.hero-stats-card {
  position: absolute;
  bottom: 28px; right: 24px;
  background: rgba(247,243,236,0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(44,42,37,0.12);
  border-radius: 16px;
  padding: 18px 22px;
  display: flex; flex-direction: row; gap: 24px;
  z-index: 10;
  align-items: center;
}
.hero-stats-card .stat { text-align: center; }
.hero-stats-card .stat-num {
  font-family:'Playfair Display',serif; font-weight:700;
  font-size:24px; letter-spacing:-1px; line-height:1; display:block;
}
.hero-stats-card .stat-label {
  font-size:10px; color:var(--muted); font-weight:700;
  letter-spacing:1.5px; text-transform:uppercase; margin-top:2px; display:block;
}
/* stat divider */
.hero-stats-card .stat + .stat {
  padding-left: 24px;
  border-left: 1px solid var(--border);
}

.map-hint {
  position: absolute;
  bottom: 100px; right: 24px;
  font-size: 11px; color: var(--muted); font-weight: 500;
  background: rgba(247,243,236,0.82); padding: 4px 10px;
  border-radius: 12px; border: 1px solid var(--border); z-index: 10;
  white-space: nowrap;
  font-style: italic;
}

.zoom-controls {
  position: absolute;
  left: 24px; bottom: 28px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 6px;
  z-index: 10;
}
.zoom-toggle-btn {
  display: flex; align-items: center; gap: 3px;
  width: auto !important; padding: 0 8px;
  font-size: 10px; font-weight: 700;
  border-radius: 20px; height: 30px !important;
  font-family: 'Lato', sans-serif;
  letter-spacing: 0.2px;
  position: relative;
  white-space: nowrap;
}
.zoom-toggle-btn.active {
  background: var(--a5); border-color: var(--a5); color: #fff;
}
.zoom-toggle-btn.active:hover { background: #a855f7; border-color: #a855f7; }
.zoom-toggle-label { font-size: 9px; line-height: 1.2; text-align: center; }
.zoom-toggle-btn .zoom-tooltip {
  display: none;
  position: absolute;
  top: 50%;
  left: calc(100% + 10px);
  transform: translateY(-50%);
  background: rgba(30,30,30,.88);
  color: #fff;
  font-size: 10px;
  font-weight: 500;
  white-space: nowrap;
  text-align: left;
  padding: 6px 9px;
  border-radius: 6px;
  pointer-events: none;
  z-index: 20;
  line-height: 1.5;
}
.zoom-toggle-btn .zoom-tooltip::after {
  content:'';
  position:absolute;
  top:50%;
  right:100%;
  transform:translateY(-50%);
  border:5px solid transparent;
  border-right-color:rgba(30,30,30,.88);
}
.zoom-toggle-btn:hover .zoom-tooltip { display: block; }
.zoom-sub-controls {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.zoom-btn {
  width: 36px; height: 36px;
  background: rgba(247,243,236,0.92); border: 1px solid var(--border);
  border-radius: 10px; font-size: 18px; font-weight: 700;
  cursor: pointer; color: var(--text);
  display: flex; align-items: center; justify-content: center;
  transition: all .2s; line-height: 1;
  backdrop-filter: blur(8px);
}
.zoom-btn:hover { background: var(--a1); border-color: var(--a1); }
.zoom-reset { font-size: 14px; }
.zoom-level {
  font-size: 11px; font-weight: 700; color: var(--muted);
  background: rgba(247,243,236,0.88); padding: 3px 6px;
  border-radius: 6px; border: 1px solid var(--border);
  font-family: 'Lato', sans-serif;
}

/* ── HERO INTRO: text section directly below map ── */
.hero-intro {
  background: var(--bg);
  padding: 56px 52px 0;
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  align-items: start;
  gap: 0;
  border-bottom: none;
}
.hero-intro-divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
  margin: 0 48px;
}
.hero-intro-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: 0 40px 0 0;
}
.hero-intro-left .hero-tag { align-self: flex-start; }
.hero-intro-left .hero-title { text-align: left; }
.hero-intro-left .hero-sub { text-align: left; max-width: 480px; }
.hero-intro-right { padding-left: 0; }

/* buttons row: full width, centered */
.hero-cta-row {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-top: 48px;
  padding: 28px 52px;
  display: flex;
  justify-content: center;
  gap: 16px;
  background: var(--bg);
}

.vibes-label {
  font-size: 10px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--a5);
  margin-bottom: 20px; display: block;
}
.vibe-item {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 16px;
}
.vibe-icon {
  width: 32px; height: 32px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; flex-shrink: 0; margin-top: 1px;
}
.vibe-text strong { display: block; font-size: 13px; font-weight: 700; margin-bottom: 2px; }
.vibe-text span { font-size: 12px; color: var(--muted); line-height: 1.4; }

.vibe-disclaimer {
  margin-top: 24px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 18px;
}
.vibe-disclaimer p {
  font-size: 13px; line-height: 1.6; color: var(--text);
}
.vibe-disclaimer p strong { color: var(--a5); }

.section-label { font-size:11px; font-weight:700; letter-spacing:2px; text-transform:uppercase; color:var(--a5); margin-bottom:12px; }
.section-title {
  font-family:'Playfair Display',serif; font-weight:700;
  font-size: clamp(22px,3.5vw,48px); letter-spacing:-1px; margin-bottom:48px; line-height:1.1;
}

/* Pin bubbles */
.map-pin {
  position:absolute; display:flex; flex-direction:column; align-items:center;
  cursor:pointer; transform:translate(-50%,-100%); transition:transform .2s, opacity .2s;
  pointer-events:auto;
}
.map-pin:hover { transform:translate(-50%,-100%) scale(1.12); }
.map-pin--inactive { opacity:.65; cursor:default; transform:translate(-50%,-100%) scale(.70); }
.map-pin--inactive:hover { transform:translate(-50%,-100%) scale(.70); }
.pin-bubble {
  color:var(--text); font-family:'Lato',sans-serif; font-weight:700;
  font-size:11px; padding:4px 9px; border-radius:16px; white-space:nowrap;
  display:flex; align-items:center; gap:4px;
  box-shadow:0 3px 12px rgba(0,0,0,.15);
}
.pin-stem { width:2px; height:8px; }
.pin-dot { width:6px; height:6px; border-radius:50%; }

/* Tooltip */
.map-tooltip {
  position:fixed; z-index:500; pointer-events:none;
  background:var(--text); color:var(--bg); border-radius:10px;
  padding:8px 14px; font-size:13px; font-weight:500;
  white-space:nowrap; opacity:0; transition:opacity .15s;
  box-shadow:0 6px 20px rgba(0,0,0,.2);
}

/* ── COUNTRIES CAROUSEL ── */
.countries-section { padding:60px 48px 90px; position:relative; }
.carousel-wrapper { position:relative; }
.carousel-track-outer { overflow:hidden; }
.carousel-track {
  display:grid;
  grid-template-rows: 1fr 1fr;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 3 * 18px) / 4);
  gap:18px;
  transition: transform 0.45s cubic-bezier(0.25,0.46,0.45,0.94);
}
.country-card {
  background:var(--surface); border:1px solid var(--border); border-radius:18px;
  overflow:hidden; cursor:pointer; transition:all .3s; position:relative;
  color:inherit; text-decoration:none; display:block;
}
.country-card:not(.has-link) { cursor:default; }
.country-card:not(.has-link):hover { transform:translateY(-4px); box-shadow:0 16px 48px rgba(0,0,0,.1); border-color:rgba(232,197,71,.35); }
.country-card.has-link:hover { transform:translateY(-4px); box-shadow:0 16px 48px rgba(0,0,0,.1); border-color:rgba(232,197,71,.35); }
/* Global floating tooltip for non-clickable country cards */
#countryFloatTip {
  display:none;
  position:fixed;
  background:rgba(20,20,20,.92);
  color:#fff;
  font-size:12px;
  font-family:'Lato',sans-serif;
  font-weight:500;
  white-space:normal;
  max-width:240px;
  text-align:center;
  padding:8px 12px;
  border-radius:10px;
  pointer-events:none;
  z-index:9999;
  line-height:1.5;
  box-shadow:0 4px 16px rgba(0,0,0,.25);
  transform:translateX(-50%);
}
#countryFloatTip::after {
  content:'';
  position:absolute;
  top:100%;
  left:50%;
  transform:translateX(-50%);
  border:6px solid transparent;
  border-top-color:rgba(20,20,20,.92);
}
.country-img { height:160px; position:relative; overflow:hidden; }
.country-img img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; display:block; transition:transform .4s ease; z-index:0; }
.country-card:hover .country-img img { transform:scale(1.06); }
/* Fallback gradients per country if image fails */
.country-img.tr { background: linear-gradient(135deg, #C0392B, #E74C3C 50%, #E67E22); }
.country-img.es { background: linear-gradient(135deg, #F39C12, #E74C3C 50%, #C0392B); }
.country-img.it { background: linear-gradient(135deg, #27AE60, #2980B9 50%, #C0392B); }
.country-img.nl { background: linear-gradient(135deg, #E74C3C, #ECF0F1 50%, #2980B9); }
.country-img.gr { background: linear-gradient(135deg, #2980B9, #ECF0F1 50%, #2980B9); }
.country-img.de { background: linear-gradient(135deg, #2C3E50, #E74C3C 50%, #F39C12); }
.country-img.be { background: linear-gradient(135deg, #2C3E50, #F39C12 50%, #E74C3C); }
.country-img.fr { background: linear-gradient(135deg, #2C3E50, #3498DB 50%, #E74C3C); }
.country-img.gb { background: linear-gradient(135deg, #C0392B, #ECF0F1 50%, #2980B9); }
.country-img.at { background: linear-gradient(135deg, #C0392B, #ECF0F1 50%, #C0392B); }
.country-img.dk { background: linear-gradient(135deg, #C0392B, #ECF0F1 50%, #C0392B); }
.country-img.no { background: linear-gradient(135deg, #C0392B, #ECF0F1 50%, #2980B9); }
.country-img.rs { background: linear-gradient(135deg, #C0392B, #2980B9 50%, #FFFFFF); }
.country-img.bg { background: linear-gradient(135deg, #FFFFFF, #009B77 50%, #D62612); }
.country-img.ie { background: linear-gradient(135deg, #169B62, #FFFFFF 50%, #FF883E); }
.country-img.lk { background: linear-gradient(135deg, #8D153A, #F5A623 50%, #8D153A); }
.country-img.sk { background: linear-gradient(135deg, #FFFFFF, #0B4EA2 50%, #EE1C25); }
.country-img.ba { background: linear-gradient(135deg, #002395, #FFCD00 50%, #002395); }
.country-img-overlay { position:absolute; inset:0; background:linear-gradient(to bottom,transparent 30%,rgba(0,0,0,.45)); }
.country-flag-big { position:absolute; top:12px; right:12px; font-size:28px; filter:drop-shadow(0 2px 8px rgba(0,0,0,.4)); }
.country-info { padding:16px; }
.country-name { font-family:'Playfair Display',serif; font-weight:700; font-size:18px; letter-spacing:-.3px; margin-bottom:5px; }
.country-meta { display:flex; align-items:center; justify-content:space-between; gap:6px; }
.city-count { font-size:12px; color:var(--muted); }
.place-count-badge {
  background:var(--surface2); border:1px solid var(--border); border-radius:10px;
  padding:2px 8px; font-size:11px; font-weight:700; color:var(--a3);
}
.unlocked-badge {
  background:var(--surface2); border:1px solid var(--border); border-radius:10px;
  padding:2px 8px; font-size:10px; font-weight:700; color:var(--a3);
}
.launching-badge {
  font-size:10px; font-weight:600; color:var(--muted); font-style:italic; opacity:.7;
}
.meta-right { display:flex; align-items:center; gap:5px; margin-left:auto; }
.score-bar { margin-top:10px; height:3px; background:var(--surface2); border-radius:2px; overflow:hidden; }
.score-fill { height:100%; background:linear-gradient(90deg,var(--a1),var(--a5)); border-radius:2px; }
.score-label { display:flex; justify-content:space-between; margin-top:5px; font-size:11px; color:var(--muted); }
.score-label span:last-child { font-family:'Playfair Display',serif; font-weight:700; color:var(--a1); font-size:14px; }

/* carousel arrows */
.carousel-btn {
  position:absolute; top:50%; transform:translateY(-50%);
  width:44px; height:44px; border-radius:50%;
  background:var(--surface); border:1.5px solid var(--border);
  display:flex; align-items:center; justify-content:center;
  cursor:pointer; z-index:10; transition:all .2s;
  box-shadow:0 4px 16px rgba(0,0,0,.1);
  font-size:18px; color:var(--text);
}
.carousel-btn:hover { background:var(--a1); border-color:var(--a1); transform:translateY(-50%) scale(1.08); }
.carousel-btn.prev { left:-22px; }
.carousel-btn.next { right:-22px; }
.carousel-btn:disabled { opacity:0.3; cursor:default; }
.carousel-btn:disabled:hover { background:var(--surface); border-color:var(--border); transform:translateY(-50%); }

/* dots */
.carousel-dots { display:flex; gap:7px; justify-content:center; margin-top:24px; }
.carousel-dot {
  width:7px; height:7px; border-radius:50%;
  background:var(--border); cursor:pointer; transition:all .2s;
}
.carousel-dot.active { background:var(--a5); transform:scale(1.3); }

/* ── TOP LISTS ── */
.top-section { padding:60px 48px 90px; background:var(--surface); border-top:1px solid var(--border); }
.top-tabs { display:flex; gap:6px; margin-bottom:36px; background:var(--surface2); border-radius:12px; padding:4px; width:fit-content; flex-wrap:wrap; }
.top-tab {
  padding:9px 18px; border-radius:8px; font-size:13px; font-weight:700;
  cursor:pointer; transition:all .2s; border:none; background:transparent;
  color:var(--muted); font-family:'Lato',sans-serif;
}
.top-tab.active { background:var(--a1); color:var(--text); }
.top-list { display:flex; flex-direction:column; gap:10px; }
.top-item {
  display:flex; align-items:center; gap:18px; padding:16px 18px;
  background:var(--bg); border:1px solid var(--border); border-radius:14px;
  cursor:pointer; transition:all .2s;
}
.top-item:hover { border-color:rgba(232,197,71,.3); background:var(--surface2); }
.top-rank { font-family:'Playfair Display',serif; font-weight:700; font-size:20px; color:var(--border); width:28px; text-align:center; flex-shrink:0; }
.top-item:nth-child(1) .top-rank { color:var(--a1); }
.top-item:nth-child(2) .top-rank { color:var(--muted); }
.top-item:nth-child(3) .top-rank { color:#cd7f32; }
.top-flag { font-size:26px; flex-shrink:0; }
.top-details { flex:1; min-width:0; }
.top-name { font-family:'Playfair Display',serif; font-weight:700; font-size:16px; }
.top-sub { font-size:12px; color:var(--muted); margin-top:2px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.top-score { font-family:'Playfair Display',serif; font-weight:700; font-size:22px; color:var(--a3); flex-shrink:0; }
.top-score span { font-size:12px; font-weight:400; color:var(--muted); }
.top-info-note { font-size:11px; color:var(--muted); margin-top:14px; padding-left:4px; letter-spacing:.3px; opacity:.75; }

/* ── TIKTOK SECTION ── */
.tiktok-section { padding:60px 48px 90px; background:var(--surface); border-top:1px solid var(--border); }
.tiktok-desc { font-size:15px; color:var(--muted); margin-bottom:36px; font-weight:300; }

.map-coming-soon .icon { font-size:44px; margin-bottom:10px; display:block; }
.map-coming-soon strong { display:block; font-family:'Playfair Display',serif; font-size:17px; font-weight:700; margin-bottom:5px; }
.map-coming-soon p { font-size:13px; color:var(--muted); }
.mini-pin {
  position:absolute; width:30px; height:30px; background:var(--a1);
  border-radius:50% 50% 50% 0; transform:rotate(-45deg);
  display:flex; align-items:center; justify-content:center;
  cursor:pointer; box-shadow:0 3px 12px rgba(0,0,0,.2); transition:transform .2s;
}
.mini-pin:hover { transform:rotate(-45deg) scale(1.2); }
.mini-pin.green { background:var(--a2); }
.mini-pin.blue { background:var(--a3); }
.mini-pin span { transform:rotate(45deg); font-size:12px; }

/* ── FOOTER ── */
footer { padding:40px 48px; border-top:1px solid var(--border); display:flex; align-items:center; justify-content:space-between; }
.footer-logo { font-family:'Playfair Display',serif; font-weight:700; font-size:17px; }
.footer-logo span { color:var(--a1); }
.footer-copy { font-size:13px; color:var(--muted); }

/* ── MOBILE ── */
@media (max-width: 768px) {
  nav { padding:14px 20px; }
  .nav-links { display:none; }
  .hamburger { display:flex; }
  .mobile-menu { top:53px; }

  .hero { height: calc(100dvh - var(--nav-h, 49px)); min-height: 480px; }
  .hero-subtitle { font-size:11px; padding:5px 12px 5px 9px; top:62px; max-width:90vw; }
  .hero-stats-card { bottom:calc(16px + env(safe-area-inset-bottom, 0px)); right:12px; left:12px; padding:12px 16px; gap:0; border-radius:12px; justify-content:space-around; }
  .hero-stats-card .stat + .stat { padding-left:0; border-left:none; padding-top:0; }
  .hero-stats-card .stat-num { font-size:20px; }
  .hero-stats-card .stat-label { font-size:9px; }
  .map-hint { display:none; }
  .zoom-controls { left:12px; bottom:calc(104px + env(safe-area-inset-bottom, 0px)); gap:3px; }
  .zoom-btn { width:44px; height:44px; font-size:16px; border-radius:10px; }

  .hero-intro { padding:32px 20px 0; grid-template-columns:1fr; }
  .hero-intro-divider { display:none; }
  .hero-intro-left { align-items:flex-start; text-align:left; padding-bottom:0; }
  .hero-intro-right { padding-top:20px; }
  .hero-title { font-size:clamp(30px,7vw,52px) !important; }
  .hero-sub { font-size:15px !important; max-width:100% !important; }
  .hero-cta-row { padding:20px; flex-direction:column; align-items:center; gap:10px; }
  .hero-cta-row .btn-primary, .hero-cta-row .btn-ghost { width:100%; max-width:320px; text-align:center; }

  .countries-section { padding:40px 20px 60px; }
  .carousel-btn.prev { left:-14px; }
  .carousel-btn.next { right:-14px; }
  .carousel-btn { width:36px; height:36px; font-size:14px; }
  /* Show 2 cards at a time on mobile instead of 4 */
  .carousel-track { grid-auto-columns: calc((100% - 12px) / 2); gap:12px; }
  .country-card { border-radius:14px; }
  .country-img { height:120px; }
  .country-flag-big { font-size:22px; top:8px; right:8px; }
  .country-name { font-size:14px; margin-bottom:3px; }
  .country-info { padding:10px 12px; }
  .city-count { font-size:11px; }
  .country-meta { flex-wrap:wrap; gap:4px; }
  .city-count { font-size:10px; width:100%; }
  .meta-right { margin-left:0; gap:3px; }
  .place-count-badge { font-size:9px; padding:1px 5px; }
  .unlocked-badge { font-size:9px; padding:1px 5px; }
  .launching-badge { font-size:9px; }
  .score-label span:last-child { font-size:12px; }

  .top-section { padding:48px 20px 60px; }
  .top-tabs { width:fit-content; }
  .top-tab { padding:8px 12px; font-size:12px; }
  .top-item { padding:12px 14px; gap:12px; }
  .top-flag { font-size:20px; }
  .top-name { font-size:14px; }
  .top-score { font-size:18px; }

  .tiktok-section { padding:48px 20px 60px; }
  .tiktok-grid { grid-template-columns: 1fr 1fr; gap:12px; }

  footer { flex-direction:column; gap:12px; text-align:center; padding:28px 20px; }
  .section-title { margin-bottom:28px; }
}

@media (max-width: 480px) {
  nav { padding:12px 16px; }
  .mobile-menu { top:49px; }
  .city-filter-bar { gap:5px; }
  .filter-chip { padding:4px 10px; font-size:11px; }
}
@media (max-width: 400px) {
  .tiktok-grid { grid-template-columns: 1fr; }
  /* Single card per row on very small phones */
  .carousel-track { grid-auto-columns: calc(100% - 16px); }
}
/* ── MEGA DROPDOWN NAV ── */
.nav-has-dropdown { position: relative; }
.nav-has-dropdown > a {
  display: flex; align-items: center; gap: 5px;
}
.nav-has-dropdown > a::after {
  content: '▾'; font-size: 10px; opacity: 0.5; transition: transform .2s;
}
.nav-has-dropdown:hover > a::after { transform: rotate(180deg); }

.mega-menu {
  display: none;
  position: absolute;
  top: calc(100% + 2px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  min-width: 680px;
  box-shadow: 0 20px 60px rgba(44,42,37,0.12);
  z-index: 300;
  gap: 0;
}
.nav-has-dropdown:hover .mega-menu { display: flex; }
.nav-has-dropdown .mega-menu:hover { display: flex; }
/* Bridge gap so moving mouse from nav item to menu doesn't close it */
.nav-has-dropdown > a::before {
  content: ''; position: absolute;
  bottom: -12px; left: 0; right: 0; height: 12px;
}

/* small arrow tip pointing up */
.mega-menu::before {
  content: '';
  position: absolute;
  top: -7px; left: 50%; transform: translateX(-50%);
  width: 14px; height: 14px;
  background: var(--surface);
  border-left: 1px solid var(--border);
  border-top: 1px solid var(--border);
  transform: translateX(-50%) rotate(45deg);
}

.mega-region {
  flex: 1;
  padding: 0 16px;
  border-right: 1px solid var(--border);
}
.mega-region:last-child { border-right: none; }

.mega-region-title {
  font-family: 'Playfair Display', serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--muted); margin-bottom: 12px;
  display: flex; align-items: center; gap: 6px;
}

.mega-country { margin-bottom: 10px; }
.mega-country-name {
  font-size: 13px; font-weight: 700; color: var(--text);
  display: flex; align-items: center; gap: 6px;
  cursor: pointer; padding: 4px 6px; border-radius: 7px;
  transition: background .15s;
}
.mega-country-name:hover { background: var(--surface2); }
.mega-country-name .flag { font-size: 15px; }

.mega-cities {
  padding-left: 26px;
  display: flex; flex-direction: column; gap: 1px;
  margin-top: 3px;
}
.mega-city {
  font-size: 12px; color: var(--muted); text-decoration: none;
  padding: 3px 8px; border-radius: 6px; transition: all .15s;
  display: block;
}
.mega-city:hover { color: var(--a5); background: rgba(192,132,252,0.08); }

nav { z-index: 1000 !important; }
.mega-menu { z-index: 1001 !important; }
.mobile-menu { z-index: 999 !important; }
