/* ============================================
  7 CITIES - Professional Modern Design
  ============================================ */

:root {
  --primary: #1a1a2e;
  --secondary: #0f3460;
  --accent: #e94560;
  --accent-light: #f1a208;
  --text-dark: #1a1a2e;
  --text-light: #ffffff;
  --text-muted: #6c757d;
  --bg-white: #ffffff;
  --bg-light: #f8f9fa;
  --bg-dark: #1a1a2e;
  --border-color: #e0e0e0;
  --border-radius: 12px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Segoe UI', 'Roboto', sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.16);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
}

h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.875rem;
}

p {
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-dark);
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: var(--transition);
  font-weight: 500;
}

a:hover {
  color: var(--accent-light);
}

/* Header & Navigation */

header {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 1.25rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-md);
}

nav {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--text-light);
  transition: var(--transition);
}

.logo:hover {
  color: var(--accent-light);
}

.nav-right {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.nav-link {
  color: var(--text-light);
  font-weight: 500;
  transition: var(--transition);
  position: relative;
  padding-bottom: 0.25rem;
}

.nav-link:hover {
  color: var(--accent-light);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-light);
  transition: var(--transition);
}

.nav-link:hover::after {
  width: 100%;
}

.lang-selector {
  display: flex;
  gap: 0.75rem;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  padding-left: 2rem;
}

.lang-btn {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: var(--text-light);
  padding: 0.5rem 0.875rem;
  cursor: pointer;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  transition: var(--transition);
}

.lang-btn:hover {
  border-color: var(--accent-light);
  color: var(--accent-light);
  background: rgba(241, 162, 8, 0.1);
}

.lang-btn.active {
  background: var(--accent-light);
  border-color: var(--accent-light);
  color: var(--bg-dark);
}

/* Main Content */

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.homepage main {
  max-width: none;
  padding: 2.75rem 0 3.25rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Hero Section */

.hero {
  text-align: center;
  margin-bottom: 3rem;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  border-radius: 0;
  color: var(--text-light);
}

.hero h1 {
  color: var(--text-light);
  margin-bottom: 1rem;
  font-size: 4rem;
}

.hero p {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto 0;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
}

/* Homepage Map */

.map-section {
  margin-bottom: 2.25rem;
}

.map-section-full {
  position: relative;
  margin: 0 -2rem 2.5rem;
  padding: 0 2rem;
}

.homepage .map-section-full {
  margin: 0;
  padding: 0 3vw 3rem;
}

.map-shell {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(0, 2.4fr) minmax(220px, 1fr);
  gap: 1.5rem;
  align-items: stretch;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.04), rgba(15, 52, 96, 0.04));
  border-radius: 24px;
  padding: 1rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(15, 52, 96, 0.12);
  position: relative;
  overflow: hidden;
}

.map-shell::before,
.map-shell::after {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 2px dashed rgba(233, 69, 96, 0.25);
  top: -140px;
  right: -160px;
  transform: rotate(-12deg);
  pointer-events: none;
}

.map-shell::after {
  width: 520px;
  height: 520px;
  border-color: rgba(15, 52, 96, 0.22);
  top: auto;
  bottom: -220px;
  left: -200px;
  right: auto;
  transform: rotate(18deg);
}

.map-shell .map-panel {
  position: relative;
  z-index: 2;
}

.map-shell .map-canvas {
  position: relative;
  z-index: 2;
}

.map-canvas {
  position: relative;
  height: 620px;
  border-radius: 18px;
  overflow: hidden;
  background-color: #e9f0f6;
  border: 1px solid rgba(15, 52, 96, 0.12);
  box-shadow: var(--shadow-lg);
}

.map-instance {
  width: 100%;
  height: 100%;
}

.map-canvas .leaflet-container {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  font-family: var(--font-body);
}

.map-overlay {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  display: flex;
  gap: 0.75rem;
  z-index: 500;
}

.map-overlay-chip {
  background: rgba(255, 255, 255, 0.9);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.map-panel {
  display: flex;
  align-items: stretch;
}

.map-panel-card {
  background: var(--bg-white);
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid rgba(15, 52, 96, 0.12);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.map-panel-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0;
}

.map-panel-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.map-panel-stat {
  background: rgba(15, 52, 96, 0.06);
  border-radius: 14px;
  padding: 0.9rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.map-panel-stat span {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
}

.map-panel-stat small {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.map-panel-lines {
  display: grid;
  gap: 0.5rem;
}

.map-panel-lines span {
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(15, 52, 96, 0.15), rgba(233, 69, 96, 0.18));
}

.mobile-city-list {
  display: none;
}

.mobile-city-item {
  width: 100%;
  border: 1px solid rgba(15, 52, 96, 0.12);
  background: #ffffff;
  border-radius: 14px;
  padding: 0.95rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-align: left;
  box-shadow: var(--shadow-sm);
  color: var(--text-dark);
}

.mobile-city-index {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: #fff;
  font-weight: 700;
  flex-shrink: 0;
}

.mobile-city-name {
  font-weight: 600;
}

.map-marker {
  position: absolute;
  left: var(--x);
  top: var(--y);
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 1;
}

.map-marker-button {
  width: clamp(52px, 6vw, 72px);
  height: clamp(52px, 6vw, 72px);
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.8);
  background: radial-gradient(circle at 30% 30%, #ffffff, var(--accent-light));
  color: var(--primary);
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.map-marker-button::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: rgba(233, 69, 96, 0.12);
  opacity: 0;
  transition: var(--transition);
  z-index: -1;
}

.map-marker-button:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: var(--shadow-lg);
}

.map-marker-button:hover::before,
.map-marker-button:focus-visible::before {
  opacity: 1;
}

.map-marker-button:focus-visible {
  outline: 3px solid rgba(233, 69, 96, 0.45);
  outline-offset: 6px;
}

.map-marker-index {
  position: relative;
  z-index: 1;
}

.map-marker-label {
  margin-top: 0.65rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary);
  background: rgba(255, 255, 255, 0.9);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  display: inline-block;
  position: relative;
  z-index: 2;
  pointer-events: none;
}

.city-card {
  background: var(--bg-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid var(--border-color);
  cursor: pointer;
}

.city-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.city-card-img {
  height: 200px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.city-card-img::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  transform: translate(50%, -50%);
}

.city-card-number {
  font-size: 4rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.1);
  position: absolute;
  top: -30px;
  right: 10px;
}

.city-card-title {
  font-size: 1.5rem;
  color: var(--text-light);
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.city-card-content {
  padding: 2rem;
}

.city-card-content h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.city-card-content p {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.city-card-link {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  background: var(--accent);
  color: white;
  border-radius: 8px;
  font-weight: 600;
  transition: var(--transition);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

.city-card-link:hover {
  background: var(--accent-light);
  transform: translateX(4px);
}

/* City Page Styles */

.city-header {
  margin-bottom: 3.5rem;
  padding: 3rem;
  background: linear-gradient(135deg, var(--city-accent-3) 0%, var(--city-accent) 100%);
  border-radius: var(--border-radius);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.city-header::after {
  content: '';
  position: absolute;
  width: 260px;
  height: 260px;
  right: -80px;
  top: -80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 70%);
}

.city-header h1 {
  color: var(--text-light);
  margin-bottom: 1.25rem;
  font-size: 3.5rem;
}

.city-meta {
  display: flex;
  gap: 2.5rem;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 1rem;
}

.city-meta span {
  font-weight: 500;
}

/* Video Section */

.video-section {
  margin-bottom: 4rem;
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  background: #000;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Content Grid */

.content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.main-content {
  background: var(--bg-white);
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.main-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--city-accent);
  color: var(--text-dark);
}

.main-content h2:first-child {
  margin-top: 0;
}

.main-content h3 {
  margin-top: 2rem;
  color: var(--city-accent);
}

.main-content p {
  line-height: 1.8;
}

.main-content ul, .main-content ol {
  margin-left: 2rem;
  margin-bottom: 1.5rem;
}

.main-content li {
  margin-bottom: 0.75rem;
  line-height: 1.75;
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sidebar-box {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  border-left: 4px solid var(--city-accent);
}

.sidebar-box h3 {
  font-size: 1.25rem;
  margin-top: 0;
  margin-bottom: 1.25rem;
  color: var(--text-dark);
  font-weight: 600;
}

.sidebar-box ul {
  list-style: none;
}

.sidebar-box li {
  padding: 0.6rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-dark);
  font-weight: 500;
}

.sidebar-box li:before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--city-accent);
  font-weight: 700;
}

/* Adventure Section */

.adventure-section {
  background: linear-gradient(135deg, var(--city-soft-1) 0%, var(--city-soft-2) 100%);
  padding: 3.5rem 3rem;
  border-radius: var(--border-radius);
  margin-bottom: 3rem;
  border: 1px solid var(--border-color);
}

.adventure-section h2 {
  color: var(--text-dark);
  border-bottom-color: var(--city-accent);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1.5rem;
}

.page-city .choice-btn {
  background: var(--city-accent);
}

.page-city .choice-btn:hover {
  background: linear-gradient(135deg, var(--city-accent-2) 0%, var(--city-accent) 100%);
}

.page-city .main-content {
  border-top: 4px solid var(--city-accent);
}

.adventure-game {
  background: var(--bg-white);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.adventure-text {
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: var(--text-dark);
  min-height: 60px;
  font-style: italic;
  padding: 1.5rem;
  background: var(--bg-light);
  border-left: 4px solid var(--accent-light);
  border-radius: 6px;
}

.adventure-choices {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.choice-btn {
  padding: 1.25rem;
  background: linear-gradient(135deg, var(--accent) 0%, #c73244 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  text-align: left;
  font-weight: 600;
  box-shadow: var(--shadow-md);
}

.choice-btn:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
}

.adventure-result {
  margin-top: 2rem;
  padding: 2rem;
  background: linear-gradient(135deg, var(--bg-light) 0%, rgba(233, 69, 96, 0.05) 100%);
  border-left: 4px solid var(--accent);
  border-radius: 8px;
  font-size: 1.05rem;
  line-height: 1.8;
}

.article-cta {
  margin: 0 auto 2.75rem;
  max-width: 1200px;
  padding: 0 2rem;
  text-align: center;
}

.article-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.article-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.6rem;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.3px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.article-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: #ffffff;
}

/* Footer */

footer {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 5.5rem 2rem 3.5rem;
  margin-top: 3.5rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}


footer p {
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--accent-light);
  font-weight: 600;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--text-light);
}

/* Page uniqueness accents */

.page-home .hero {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.page-city .hero,
.page-city .city-header {
  background: linear-gradient(135deg, rgba(15, 52, 96, 0.95), rgba(26, 26, 46, 0.95));
}

/* City Theme Variables */

.page-city {
  --city-accent: #e94560;
  --city-accent-2: #f1a208;
  --city-accent-3: #0f3460;
  --city-soft-1: rgba(233, 69, 96, 0.14);
  --city-soft-2: rgba(15, 52, 96, 0.12);
}

.city-efes {
  --city-accent: #e94560;
  --city-accent-2: #f1a208;
  --city-accent-3: #1a1a2e;
  --city-soft-1: rgba(233, 69, 96, 0.16);
  --city-soft-2: rgba(241, 162, 8, 0.14);
}

.city-smirna {
  --city-accent: #2f80ed;
  --city-accent-2: #56ccf2;
  --city-accent-3: #0b2b4b;
  --city-soft-1: rgba(47, 128, 237, 0.16);
  --city-soft-2: rgba(86, 204, 242, 0.14);
}

.city-pergam {
  --city-accent: #6a4cff;
  --city-accent-2: #b59bff;
  --city-accent-3: #2c1a6b;
  --city-soft-1: rgba(106, 76, 255, 0.16);
  --city-soft-2: rgba(181, 155, 255, 0.14);
}

.city-tiatira {
  --city-accent: #c03aff;
  --city-accent-2: #ff7ab6;
  --city-accent-3: #3a1b5b;
  --city-soft-1: rgba(192, 58, 255, 0.16);
  --city-soft-2: rgba(255, 122, 182, 0.14);
}

.city-sardis {
  --city-accent: #27ae60;
  --city-accent-2: #6fcf97;
  --city-accent-3: #1e5631;
  --city-soft-1: rgba(39, 174, 96, 0.16);
  --city-soft-2: rgba(111, 207, 151, 0.14);
}

.city-filatelia {
  --city-accent: #f2994a;
  --city-accent-2: #f2c94c;
  --city-accent-3: #5a3a14;
  --city-soft-1: rgba(242, 153, 74, 0.16);
  --city-soft-2: rgba(242, 201, 76, 0.14);
}

.city-laodicea {
  --city-accent: #f2c94c;
  --city-accent-2: #f2994a;
  --city-accent-3: #6b4a12;
  --city-soft-1: rgba(242, 201, 76, 0.16);
  --city-soft-2: rgba(242, 153, 74, 0.14);
}

.page-demo .demo-container {
  position: relative;
}

.page-demo .demo-container::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(241, 162, 8, 0.18), transparent 65%);
  pointer-events: none;
}

/* Responsive Design */

@media (max-width: 768px) {
  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .hero {
    padding: 2.5rem 1.5rem;
  }

  .hero h1 {
    font-size: 2.25rem;
  }

  nav {
    flex-direction: column;
    gap: 1.5rem;
    padding: 0 1rem;
  }

  .nav-right {
    flex-direction: column;
    gap: 1.5rem;
    border-left: none;
    padding-left: 0;
    align-items: center;
    width: 100%;
  }

  .lang-selector {
    border-left: none;
    padding-left: 0;
  }

  main {
    padding: 2rem 1rem;
  }

  .map-section-full {
    margin: 0 0 3rem;
    padding: 0;
  }

  .map-shell {
    grid-template-columns: 1fr;
    padding: 0.75rem;
    gap: 0.75rem;
  }

  .map-panel {
    order: 2;
  }

  .map-panel-card {
    padding: 1rem;
    gap: 0.65rem;
  }

  .map-canvas {
    height: min(68vh, 560px);
    order: 1;
  }

  .mobile-city-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    order: 3;
  }

  .map-overlay {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    gap: 0.5rem;
    flex-wrap: wrap;
  }

  .map-overlay-chip {
    font-size: 0.78rem;
    padding: 0.35rem 0.7rem;
  }

  .map-canvas .leaflet-control-attribution {
    font-size: 9px;
  }

  .content-grid {
    grid-template-columns: 1fr;
  }

  .sidebar {
    order: -1;
  }

  .city-meta {
    flex-direction: column;
    gap: 0.75rem;
  }

  .adventure-section {
    padding: 2rem 1.5rem;
  }

  .choice-btn {
    padding: 1rem;
    font-size: 0.95rem;
  }

  .article-cta {
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.35rem;
  }

  p {
    font-size: 1rem;
  }

  .hero {
    padding: 1.5rem;
    margin-bottom: 2.5rem;
  }

  .map-canvas {
    height: min(72vh, 520px);
    min-height: 420px;
  }

  .mobile-city-list {
    grid-template-columns: 1fr;
  }

  .map-shell {
    border-radius: 18px;
    padding: 0.5rem;
  }

  .map-panel-left,
  .map-panel-right {
    display: none;
  }

  .main-content,
  .sidebar-box,
  .adventure-game {
    padding: 1.5rem;
  }

  .city-card-content {
    padding: 1.5rem;
  }

  .city-header {
    padding: 2rem 1.5rem;
  }

  .city-header h1 {
    font-size: 2rem;
  }

  .nav-link {
    font-size: 0.9rem;
  }
}
