/* =========================================================
   Afrika — Bir kıtanın hikâyesi
   v1 styles
   ========================================================= */

:root {
  /* Default (neutral / intro) palette */
  --bg: #0e0e14;
  --bg-soft: #15151e;
  --accent: #d4a574;
  --accent-2: #e8c89c;
  --text: #f7f3e9;
  --text-mute: #a8a3994d;
  --text-mute-solid: #a8a399;
  --line: #ffffff14;

  /* Easing */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --t-fast: 0.4s;
  --t-med: 0.8s;
  --t-slow: 1.4s;
}

/* Country palettes — set on <body data-country="..."> */
body[data-country="nigeria"] {
  --bg: #082818;
  --bg-soft: #0e3a23;
  --accent: #f4c430;
  --accent-2: #c8553d;
  --text: #f7f3e9;
}

body[data-country="ethiopia"] {
  --bg: #2a1810;
  --bg-soft: #3e2723;
  --accent: #fcd116;
  --accent-2: #078930;
  --text: #fdf6e3;
}

body[data-country="algeria"] {
  --bg: #0a1828;
  --bg-soft: #15263d;
  --accent: #d4a574;
  --accent-2: #1b9aaa;
  --text: #f0e6d2;
}

body[data-country="southafrica"] {
  --bg: #131340;
  --bg-soft: #1f1f5a;
  --accent: #f0b323;
  --accent-2: #e94e77;
  --text: #fef9e7;
}

body[data-country="kenya"] {
  --bg: #2d1b3d;
  --bg-soft: #3d2a52;
  --accent: #e94e3c;
  --accent-2: #f0a830;
  --text: #fef3e7;
}

body[data-country="mauritania"] {
  --bg: #1a1208;
  --bg-soft: #2a1f10;
  --accent: #e0b87a;
  --accent-2: #4a6fa5;
  --text: #f5ecd9;
}

body[data-country="angola"] {
  --bg: #1f0d0a;
  --bg-soft: #341a14;
  --accent: #e6b85a;
  --accent-2: #c83434;
  --text: #fef3e0;
}

/* ----------- Base ----------- */
* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  line-height: 1.55;
  overflow-x: hidden;
  transition: background-color var(--t-slow) var(--ease),
              color var(--t-slow) var(--ease);
}

body {
  min-height: 100vh;
  position: relative;
}

/* ----------- Ambient continent silhouette ----------- */
.ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  display: grid;
  place-items: center;
  opacity: 0.06;
  transition: opacity var(--t-slow) var(--ease);
}
.ambient-svg {
  width: 80vmin;
  height: 80vmin;
  fill: var(--accent);
  animation: slow-float 30s ease-in-out infinite;
  transition: fill var(--t-slow) var(--ease);
}
@keyframes slow-float {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-20px) rotate(2deg); }
}

/* ----------- Rooms ----------- */
#rooms {
  position: relative;
  z-index: 1;
  min-height: 100vh;
}

.room {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px) scale(0.985);
  transition: opacity var(--t-med) var(--ease),
              transform var(--t-med) var(--ease),
              visibility 0s linear var(--t-med);
  padding: 6vh 6vw 8vh;
  overflow-y: auto;
}

.room.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  transition: opacity var(--t-med) var(--ease),
              transform var(--t-med) var(--ease),
              visibility 0s linear 0s;
}

.room.exiting {
  opacity: 0;
  transform: translateY(-20px) scale(0.99);
}

.room-inner {
  max-width: 1100px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.room-inner.center {
  text-align: center;
  align-items: center;
}

/* ----------- Typography ----------- */
.overline {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.85;
}

.display {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(4rem, 12vw, 9rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--text);
}
.display-sm {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 1.05;
}
.display .muted { color: var(--text-mute-solid); font-style: italic; }

.title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--text);
}

.country-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(3.5rem, 10vw, 7rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--accent);
}

.lede {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  font-weight: 300;
  line-height: 1.6;
  max-width: 60ch;
  color: var(--text);
  opacity: 0.92;
}
.lede.small { font-size: clamp(0.98rem, 1.4vw, 1.15rem); }

.caption {
  font-size: 0.95rem;
  color: var(--text);
  opacity: 0.7;
}
.caption strong { color: var(--accent); font-weight: 600; }

.hint {
  font-size: 0.9rem;
  font-style: italic;
  color: var(--text);
  opacity: 0.6;
  margin-top: 1rem;
}
.hint strong { color: var(--accent); font-weight: 600; font-style: normal; }
.hint em { color: var(--accent-2); font-weight: 500; }

/* ----------- CTA Button ----------- */
.cta {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.95rem 1.8rem;
  background: var(--accent);
  color: var(--bg);
  border: none;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform var(--t-fast) var(--ease-bounce),
              background var(--t-fast) var(--ease),
              box-shadow var(--t-fast) var(--ease);
  margin-top: 0.5rem;
  align-self: flex-start;
  box-shadow: 0 8px 28px -8px var(--accent);
}
.center .cta { align-self: center; }

.cta:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 36px -8px var(--accent);
}
.cta:active { transform: translateY(0) scale(0.99); }

.cta .arrow {
  transition: transform var(--t-fast) var(--ease);
  display: inline-block;
}
.cta:hover .arrow { transform: translateX(4px); }

.cta.secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--accent);
  box-shadow: none;
}
.cta.secondary:hover {
  background: var(--accent);
  color: var(--bg);
}

.small-btn {
  padding: 0.65rem 1.3rem;
  font-size: 0.88rem;
}

/* ----------- Choices (multi-button question) ----------- */
.choices {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.8rem;
  margin-top: 1.2rem;
  width: 100%;
  max-width: 700px;
}
.choice {
  padding: 1.1rem 1.4rem;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  cursor: pointer;
  transition: all var(--t-fast) var(--ease);
}
.choice:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--bg);
  transform: translateY(-2px);
}
.choice.selected {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--bg);
}

.response {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  line-height: 1.4;
  color: var(--text);
  max-width: 50ch;
  margin-top: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) forwards;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ----------- Reveal animations on welcome ----------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s var(--ease) forwards;
}
.reveal.delay-1 { animation-delay: 0.2s; }
.reveal.delay-2 { animation-delay: 0.5s; }
.reveal.delay-3 { animation-delay: 0.9s; }

/* Welcome display extra */
.room[data-room="welcome"] .display {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2, var(--accent)) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ----------- Map ----------- */
.map-header {
  text-align: center;
  margin-bottom: 1rem;
}
.map-wrap {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  place-items: center;
}
.map-svg {
  width: 100%;
  height: auto;
  max-height: 65vh;
}
.map-continent {
  fill: var(--bg-soft);
  stroke: var(--accent);
  stroke-width: 2;
  stroke-opacity: 0.4;
  transition: fill var(--t-med) var(--ease), stroke var(--t-med) var(--ease);
}
.map-dot { cursor: pointer; }
.map-dot .dot-pulse {
  fill: var(--accent);
  opacity: 0.18;
  transform-origin: center;
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(0.8); opacity: 0.18; }
  50% { transform: scale(1.15); opacity: 0.35; }
}
.map-dot .dot-core {
  fill: var(--accent);
  transition: r 0.3s var(--ease-bounce);
}
.map-dot:hover .dot-core { r: 18; }
.map-dot:hover .dot-pulse { animation-duration: 1s; }
.map-dot .dot-label {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 500;
  fill: var(--text);
  letter-spacing: 0.04em;
  opacity: 0.85;
  pointer-events: none;
  transition: opacity 0.3s, font-size 0.3s;
}
.map-dot:hover .dot-label {
  opacity: 1;
  font-size: 28px;
  fill: var(--accent);
}

/* ----------- Stats (country arrival) ----------- */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
  list-style: none;
  margin: 1rem 0;
  max-width: 700px;
  width: 100%;
}
.stats li {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1rem;
  border-top: 1px solid var(--line);
  text-align: center;
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 3.6rem);
  font-weight: 500;
  color: var(--accent);
  line-height: 1;
}
.stat-unit {
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-2);
  opacity: 0.9;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--text);
  opacity: 0.6;
  margin-top: 0.3rem;
}

/* ----------- Language cards ----------- */
.lang-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  width: 100%;
  margin-top: 1.5rem;
}
.lang-grid.single { max-width: 700px; margin-left: auto; margin-right: auto; }

.lang-card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  transition: transform var(--t-fast) var(--ease), border-color var(--t-fast);
}
.lang-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
}
.lang-card.wide { width: 100%; }

.lang-card header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.6rem;
  margin-bottom: 0.4rem;
}
.lang-card header h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--accent);
}
.lang-meta {
  font-size: 0.78rem;
  color: var(--text);
  opacity: 0.55;
  font-style: italic;
}

.phrase-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px dashed var(--line);
}
.phrase-row:last-child { border-bottom: none; }
.phrase {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  flex: 1;
}
.phrase .native {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text);
}
.phrase .native.script {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--accent);
}
.phrase .trans {
  font-size: 0.92rem;
  color: var(--text);
  opacity: 0.7;
}
.phrase .phonetic {
  font-size: 0.75rem;
  color: var(--accent-2);
  opacity: 0.75;
  font-style: italic;
  letter-spacing: 0.02em;
}

.speak {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: grid;
  place-items: center;
  transition: all var(--t-fast) var(--ease-bounce);
  flex-shrink: 0;
}
.speak:hover { background: var(--accent); transform: scale(1.1); }
.speak:active { transform: scale(0.92); }
.speak.speaking {
  background: var(--accent);
  animation: speakingPulse 1.2s ease-in-out infinite;
}
@keyframes speakingPulse {
  0%, 100% { box-shadow: 0 0 0 0 var(--accent); }
  50% { box-shadow: 0 0 0 10px transparent; }
}

.turkish-bridge {
  background: linear-gradient(90deg, var(--accent) 0%, transparent 100%);
  background-size: 200% 100%;
  background-position: -100% 0;
  padding-left: 0.8rem !important;
  border-left: 3px solid var(--accent);
  border-radius: 6px;
  margin-top: 0.5rem;
  opacity: 0.92;
}
.click-row .phrase .trans { color: var(--accent-2); font-weight: 500; }

/* ----------- Two-column layout (cloth / food) ----------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: center;
}
.two-col.reverse { grid-template-columns: 1.2fr 1fr; }
.two-col.reverse .col-image { order: 2; }
.two-col.reverse .col-text { order: 1; }

@media (max-width: 800px) {
  .two-col, .two-col.reverse {
    grid-template-columns: 1fr;
  }
  .two-col.reverse .col-image,
  .two-col.reverse .col-text { order: unset; }
}

.col-image {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 60px -20px #00000080;
  transform: perspective(1200px) rotateY(-4deg);
  transition: transform var(--t-med) var(--ease);
  cursor: zoom-in;
}
.two-col.reverse .col-image {
  transform: perspective(1200px) rotateY(4deg);
}
.col-image:hover {
  transform: perspective(1200px) rotateY(0deg) scale(1.02);
}
.art-svg {
  width: 100%;
  height: 100%;
  display: block;
}
.zoom-hint {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: #00000099;
  color: var(--text);
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  backdrop-filter: blur(8px);
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--t-fast);
}
.col-image:hover .zoom-hint { opacity: 1; }

.col-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.parallel {
  margin-top: 0.8rem;
  padding: 1.2rem 1.4rem;
  background: var(--bg-soft);
  border-left: 3px solid var(--accent);
  border-radius: 0 12px 12px 0;
}
.parallel-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.parallel p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.55;
}
.parallel strong {
  color: var(--accent);
  font-style: normal;
  font-weight: 600;
}
.parallel em {
  color: var(--accent-2);
}

/* ----------- Quote block (send-off) ----------- */
.quote-block {
  margin: 1rem 0;
  padding: 2rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  max-width: 700px;
  text-align: center;
}
.quote-block.ubuntu {
  background: linear-gradient(135deg, var(--bg-soft) 0%, transparent 100%);
  border: 1px solid var(--accent);
  border-radius: 20px;
}
.quote-native {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  color: var(--accent);
  margin-bottom: 0.7rem;
  line-height: 1.4;
}
.quote-trans {
  font-size: 1rem;
  color: var(--text);
  opacity: 0.85;
  font-style: italic;
  line-height: 1.5;
}

.speak-large {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.5rem;
  padding: 1.2rem 2rem;
  background: var(--accent);
  color: var(--bg);
  border: none;
  border-radius: 18px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  cursor: pointer;
  transition: transform var(--t-fast) var(--ease-bounce),
              box-shadow var(--t-fast);
  box-shadow: 0 12px 30px -10px var(--accent);
}
.speak-large:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 18px 40px -10px var(--accent);
}
.speak-large.speaking {
  animation: speakingPulse 1.2s ease-in-out infinite;
}
.speak-icon { font-size: 1.2rem; }
.speak-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-top: 0.2rem;
}

/* ----------- Finale grid ----------- */
.finale-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin: 2rem 0 1.5rem;
  max-width: 800px;
  width: 100%;
}
.finale-grid.seven {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  max-width: 1000px;
}

.finale-link {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 4px;
  font-weight: 500;
  cursor: pointer;
}
.finale-link:hover { color: var(--accent-2); }
.finale-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 1.4rem;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 16px;
  cursor: pointer;
  transition: all var(--t-fast) var(--ease);
  color: var(--text);
  font-family: inherit;
}
.finale-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  background: var(--bg);
}
.finale-name {
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.9;
}
.finale-word {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-style: italic;
  color: var(--text);
}

.footer-note {
  font-size: 0.78rem;
  color: var(--text);
  opacity: 0.45;
  margin-top: 1.5rem;
  font-style: italic;
  letter-spacing: 0.02em;
}

/* ----------- Progress dots ----------- */
.progress {
  position: fixed;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 50;
  opacity: 0;
  transition: opacity var(--t-med) var(--ease);
}
.progress.visible { opacity: 1; }
.progress-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text);
  opacity: 0.25;
  cursor: pointer;
  transition: all var(--t-fast) var(--ease-bounce);
}
.progress-dot:hover { opacity: 0.6; transform: scale(1.4); }
.progress-dot.current {
  background: var(--accent);
  opacity: 1;
  width: 6px;
  height: 18px;
  border-radius: 4px;
}

@media (max-width: 700px) {
  .progress { display: none; }
}

/* ----------- Lightbox (zoomable) ----------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: #00000088;
  backdrop-filter: blur(12px);
  z-index: 100;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t-fast) var(--ease), visibility 0s linear var(--t-fast);
}
.lightbox.open {
  opacity: 1;
  visibility: visible;
  transition: opacity var(--t-fast) var(--ease), visibility 0s linear 0s;
}
.lightbox-content {
  width: 90vmin;
  height: 90vmin;
  max-width: 800px;
  max-height: 800px;
  border-radius: 24px;
  overflow: hidden;
  transform: scale(0.9);
  transition: transform var(--t-fast) var(--ease-bounce);
  cursor: zoom-out;
}
.lightbox.open .lightbox-content { transform: scale(1); }
.lightbox-content svg { width: 100%; height: 100%; }
.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: var(--accent);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--bg);
  display: grid;
  place-items: center;
  line-height: 1;
}

/* ----------- Audio flash (subtle indicator when speech fails) ----------- */
.audio-flash {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--bg-soft);
  color: var(--text);
  border: 1px solid var(--accent);
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  font-size: 0.85rem;
  opacity: 0;
  visibility: hidden;
  z-index: 80;
  transition: all var(--t-fast) var(--ease);
  pointer-events: none;
  max-width: 80vw;
  text-align: center;
}
.audio-flash.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* ----------- Scrollbar ----------- */
.room::-webkit-scrollbar { width: 6px; }
.room::-webkit-scrollbar-track { background: transparent; }
.room::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; opacity: 0.4; }

/* ----------- Small screen tweaks ----------- */
@media (max-width: 600px) {
  .room { padding: 4vh 5vw 6vh; }
  .display { font-size: clamp(3rem, 14vw, 6rem); }
  .country-name { font-size: clamp(2.8rem, 12vw, 5rem); }
  .stats { gap: 0.5rem; }
  .stats li { padding: 0.6rem; }
  .map-dot .dot-label { font-size: 32px; }
}

/* ----------- Reduced motion ----------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.1s !important;
  }
}
