/* =========================================================
   ETIHAD STADIUM ARCHIVE - MANCHESTER DERBY STYLESHEET
   Colors:
   - City Sky Blue: #6CABDD, Deep Blue: #001838, Etihad Navy: #0C2340
   - United Red: #DA291C, Dark Red: #8B0000
   - Dark Pitch BG: #080E18, Neon Gold: #FFD700
   ========================================================= */

:root {
  --city-sky: #6CABDD;
  --city-sky-light: #9ad5ff;
  --city-navy: #0c2340;
  --city-deep: #1C2C5B;
  --utd-red: #da291c;
  --utd-red-dark: #8f120a;
  --bg-dark: #f0f7fb; 
  --bg-card: rgba(255, 255, 255, 0.8);
  --bg-glass: rgba(255, 255, 255, 0.6);
  --border-glass: rgba(108, 171, 221, 0.3);
  --border-glass-hover: rgba(108, 171, 221, 0.8);
  --text-main: #112233;
  --text-muted: #4a5c70;
  --text-gold: #cba832;
  --font-display: 'Teko', 'Bebas Neue', 'Noto Sans KR', sans-serif;
  --font-body: 'Montserrat', 'Noto Sans KR', sans-serif;
  --bg-gradient: linear-gradient(135deg, #6CABDD 0%, #FFFFFF 100%);
}


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

body {
  background: var(--bg-gradient);
  color: var(--city-navy);
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #060b13;
}
::-webkit-scrollbar-thumb {
  background: var(--city-sky);
  border-radius: 4px;
}

/* =========================================================
   GLOBAL HEADER & NAVIGATION
   ========================================================= */
#global-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: rgba(7, 13, 23, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-glass);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.nav-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.stadium-badge {
  background: linear-gradient(135deg, var(--city-sky), #1a6fb0);
  color: #051426;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 1px;
  padding: 4px 8px;
  border-radius: 4px;
  text-transform: uppercase;
}

.brand-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 1.5px;
  color: var(--city-navy);
}

.accent-vs {
  color: var(--city-sky);
}

.nav-menu {
  display: flex;
  gap: 8px;
}

.nav-link {
  background: transparent;
  border: none;
  color: #333333;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.25s ease;
  letter-spacing: 0.5px;
}

.nav-link:hover {
  color: #ffffff;
  background: rgba(108, 171, 221, 0.15);
}

.nav-link.active {
  color: #ffffff;
  background: linear-gradient(135deg, rgba(108, 171, 221, 0.3), rgba(12, 35, 64, 0.7));
  border: 1px solid var(--border-glass-hover);
  box-shadow: 0 0 15px rgba(108, 171, 221, 0.2);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-action-replay {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #184b7a, var(--city-navy));
  border: 1px solid var(--city-sky);
  color: var(--city-navy);
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-action-replay:hover {
  background: var(--city-sky);
  color: #051426;
  box-shadow: 0 0 15px rgba(108, 171, 221, 0.5);
  transform: translateY(-1px);
}

.btn-sound-toggle {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-glass);
  color: var(--city-navy);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.2s ease;
}

.btn-sound-toggle:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* =========================================================
   HERO INTERACTIVE STAGE (ETIHAD COUNTER ATTACK)
   ========================================================= */
#interactive-stage {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 680px;
  background: #02070e;
  overflow: hidden;
  padding-top: 70px;
}

.stage-overlay {
  position: relative;
  width: 100%;
  height: 100%;
}

/* HUD Top Scoreboard */
.hud-top {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
}

.hud-scoreboard {
  display: flex;
  align-items: center;
  background: rgba(8, 16, 28, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  padding: 8px 24px;
  gap: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hud-scoreboard .team {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 1.1rem;
}

.hud-scoreboard .team.mcfc {
  color: var(--city-sky);
}

.hud-scoreboard .team.mufc {
  color: var(--utd-red);
}

.team-score {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--city-navy);
}

.match-time {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 14px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.time-min {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--city-deep);
}

.stage-status-text {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: #8da4be;
}

/* Instruction Banner */
.instruction-banner {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 680px;
  background: rgba(7, 18, 33, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid var(--city-sky);
  border-radius: 16px;
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 20;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(108, 171, 221, 0.25);
  transition: all 0.3s ease;
}

.instruction-text-box {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
}

.instruction-text-box h3 {
  font-size: 1.25rem;
  color: var(--city-navy);
  font-weight: 800;
}

.instruction-text-box p {
  font-size: 0.9rem;
  color: #333333;
}

.drag-progress-bar {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.drag-progress-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--city-sky), #ffd700);
  border-radius: 4px;
  transition: width 0.1s linear;
}

/* Canvas */
#derby-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: grab;
}

#derby-canvas:active {
  cursor: grabbing;
}

/* Goal Modal Overlay */
.goal-modal {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 9, 18, 0.88);
  backdrop-filter: blur(16px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.goal-modal.show {
  opacity: 1;
  pointer-events: auto;
}

.goal-content {
  text-align: center;
  max-width: 640px;
  padding: 40px;
  background: linear-gradient(180deg, rgba(16, 36, 64, 0.9), rgba(6, 14, 25, 0.95));
  border: 2px solid var(--city-sky);
  border-radius: 24px;
  box-shadow: 0 0 60px rgba(108, 171, 221, 0.4);
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.goal-modal.show .goal-content {
  transform: scale(1);
}

.goal-super-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 2px;
  color: var(--city-deep);
  margin-bottom: 8px;
}

.goal-main-title {
  font-family: var(--font-display);
  font-size: 5.5rem;
  line-height: 0.9;
  letter-spacing: 4px;
  background: linear-gradient(180deg, #ffffff, var(--city-sky));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px rgba(108, 171, 221, 0.6);
  margin-bottom: 20px;
}

.scorer-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}

.scorer-info .number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--city-sky);
  background: rgba(108, 171, 221, 0.15);
  padding: 4px 14px;
  border-radius: 8px;
  border: 1px solid var(--border-glass-hover);
}

.scorer-info .name {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--city-navy);
  letter-spacing: 1px;
}

.scorer-info .detail {
  font-size: 0.85rem;
  font-weight: 700;
  color: #8ea8c5;
}

.goal-quote {
  font-size: 1.05rem;
  color: var(--city-navy);
  line-height: 1.6;
  margin-bottom: 30px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
}

.goal-modal-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.btn-primary-glow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--city-sky), #1967a5);
  color: #04101e;
  border: none;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 6px 25px rgba(108, 171, 221, 0.5);
  transition: all 0.25s ease;
}

.btn-primary-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 35px rgba(108, 171, 221, 0.7);
  background: linear-gradient(135deg, #8ad1ff, var(--city-sky));
}

.btn-secondary-dark {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-glass);
  color: var(--city-navy);
  padding: 14px 24px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-secondary-dark:hover {
  background: rgba(255, 255, 255, 0.18);
}

/* =========================================================
   MAIN ARCHIVE CONTAINER & SECTIONS
   ========================================================= */
.archive-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 60px 24px 100px 24px;
}

/* Hero banner inside archive */
.archive-hero-banner {
  background: linear-gradient(135deg, rgba(12, 35, 64, 0.9), rgba(218, 41, 28, 0.15));
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 50px;
  text-align: center;
}

.archive-hero-banner .tags {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.archive-hero-banner .tag {
  font-size: 0.8rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 4px;
}

.archive-hero-banner .tag.skyblue {
  background: rgba(108, 171, 221, 0.2);
  color: var(--city-sky);
  border: 1px solid var(--border-glass);
}

.archive-hero-banner .tag.red {
  background: rgba(218, 41, 28, 0.2);
  color: #ff6b60;
  border: 1px solid rgba(218, 41, 28, 0.3);
}

.archive-hero-banner .tag-vs {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--city-deep);
}

.archive-hero-banner h2 {
  font-family: var(--font-display);
  font-size: 2.6rem;
  letter-spacing: 1px;
  color: var(--city-navy);
  margin-bottom: 10px;
}

.archive-hero-banner p {
  font-size: 1.05rem;
  color: #333333;
}

/* Common Section Header */
.section-header {
  margin-bottom: 36px;
}

.sec-label {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 2px;
  color: var(--city-sky);
  margin-bottom: 4px;
}

.sec-title {
  font-size: 4rem;
  color: var(--city-deep);
  line-height: 1.1;
  margin-bottom: 10px;
}

.sec-subtitle {
  font-size: 1.2rem;
  color: var(--city-navy);
  font-weight: 500;
}

/* Glass Card */
.card-glass {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(15px);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(12, 35, 64, 0.1);
}

.card-glass:hover {
  border-color: var(--border-glass-hover);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.card-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--city-sky);
  background: rgba(108, 171, 221, 0.12);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 14px;
}

/* =========================================================
   CHAPTER 1: DERBY GRID & STATS
   ========================================================= */
.derby-grid-two {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  margin-bottom: 30px;
}

.divide-card h3, .map-preview-card h3, .stats-center-card h3 {
  font-size: 1.4rem;
  color: var(--city-navy);
  margin-bottom: 12px;
}

.local-fact-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 20px;
}

.fact-col {
  padding: 16px;
  border-radius: 12px;
}

.fact-col.mcfc {
  background: rgba(12, 35, 64, 0.6);
  border: 1px solid var(--border-glass);
}

.fact-col.mufc {
  background: rgba(45, 12, 12, 0.6);
  border: 1px solid rgba(218, 41, 28, 0.3);
}

.fact-col h4 {
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.fact-col p {
  font-size: 0.85rem;
  color: #333333;
  margin-bottom: 6px;
}

.map-preview-card .image-wrapper {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 10px;
  background: #000;
  max-height: 280px;
}

.map-preview-card .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.img-caption {
  font-size: 0.8rem;
  color: #333333;
}

/* Head to head Visual Bar */
.h2h-visual-bar {
  display: flex;
  height: 38px;
  border-radius: 8px;
  overflow: hidden;
  margin: 20px 0 28px 0;
  font-weight: 800;
  font-size: 0.85rem;
  text-align: center;
  line-height: 38px;
}

.bar-segment.mufc {
  background: var(--utd-red);
  color: #ffffff;
}

.bar-segment.draw {
  background: #475569;
  color: #cbd5e1;
}

.bar-segment.mcfc {
  background: var(--city-sky);
  color: #041427;
}

/* Stats Table */
.stats-table-wrapper {
  overflow-x: auto;
  margin-bottom: 30px;
}

.derby-data-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.derby-data-table th {
  background: rgba(16, 32, 58, 0.8);
  color: #9cb3ce;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-glass);
}

.derby-data-table td {
  padding: 14px 16px;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.derby-data-table tr.total-row {
  background: rgba(108, 171, 221, 0.08);
  font-weight: 800;
}

.text-skyblue {
  color: var(--city-sky);
}

.text-red {
  color: #ff6b60;
}

/* Trophy Comparison */
.trophy-compare-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
  background: rgba(6, 13, 23, 0.6);
  padding: 24px;
  border-radius: 16px;
  border: 1px solid var(--border-glass);
}

.trophy-box h4 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.trophy-box.mcfc h4 {
  color: var(--city-sky);
}

.trophy-box.mufc h4 {
  color: #ff6b60;
}

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

.trophy-box li {
  font-size: 0.9rem;
  color: #333333;
  margin-bottom: 6px;
}

.trophy-vs-divider .vs-circle {
  font-family: var(--font-display);
  font-size: 1.2rem;
  background: rgba(255, 255, 255, 0.1);
  color: var(--city-deep);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border-glass);
}

/* =========================================================
   CHAPTER 2: FIGURES (ICONS)
   ========================================================= */
.filter-bar {
  display: flex;
  gap: 10px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.filter-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  color: #333333;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--city-navy);
}

.filter-btn.active {
  background: var(--city-sky);
  color: #04101e;
  border-color: var(--city-sky);
  box-shadow: 0 0 12px rgba(108, 171, 221, 0.4);
}

.figures-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.figure-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.figure-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-glass-hover);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5);
}

.figure-img-wrap {
  position: relative;
  width: 100%;
  height: 240px;
  background: #02070e;
  overflow: hidden;
}

.figure-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.4s ease;
}

.figure-card:hover .figure-img-wrap img {
  transform: scale(1.05);
}

.tag-club {
  position: absolute;
  bottom: 12px;
  right: 12px;
  font-size: 0.75rem;
  font-weight: 900;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.tag-club.mcfc {
  background: var(--city-sky);
  color: #04101e;
}

.tag-club.mufc {
  background: var(--utd-red);
  color: #ffffff;
}

.tag-club.dual {
  background: linear-gradient(90deg, var(--city-sky) 50%, var(--utd-red) 50%);
  color: #ffffff;
}

.figure-info {
  padding: 20px;
}

.figure-info h3 {
  font-size: 1.2rem;
  color: var(--city-navy);
  margin-bottom: 4px;
}

.figure-info .role {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--city-sky);
  margin-bottom: 12px;
}

.figure-info p {
  font-size: 0.88rem;
  color: #333333;
  line-height: 1.5;
}

/* =========================================================
   CHAPTER 3: MATCHES TIMELINE
   ========================================================= */
.matches-timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.match-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 20px;
  align-items: start;
}

.match-date-badge {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--city-deep);
  background: rgba(16, 32, 58, 0.6);
  border: 1px solid var(--border-glass);
  padding: 10px;
  border-radius: 10px;
  text-align: center;
}

.match-card {
  padding: 20px 24px;
}

.match-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.score-display {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--city-navy);
  letter-spacing: 1px;
}

.match-card .venue {
  font-size: 0.8rem;
  color: var(--city-sky);
  font-weight: 700;
}

.match-card h4 {
  font-size: 1.15rem;
  color: var(--city-navy);
  margin-bottom: 6px;
}

.match-card p {
  font-size: 0.9rem;
  color: #333333;
}

/* =========================================================
   CHAPTER 4: INCIDENTS (LORE)
   ========================================================= */
.incidents-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 24px;
}

.incident-card {
  padding: 24px;
  border-left: 4px solid var(--city-sky);
}

.incident-tag {
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 1px;
  color: var(--city-deep);
  margin-bottom: 8px;
}

.incident-card h3 {
  font-size: 1.2rem;
  color: var(--city-navy);
  margin-bottom: 10px;
}

.incident-card p {
  font-size: 0.9rem;
  color: #333333;
  line-height: 1.6;
}

/* =========================================================
   GLOBAL FOOTER
   ========================================================= */
#global-footer {
  background: #040912;
  border-top: 1px solid var(--border-glass);
  padding: 40px 24px;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-brand h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 1.5px;
  color: var(--city-sky);
  margin-bottom: 4px;
}

.footer-brand p, .footer-meta p {
  font-size: 0.85rem;
  color: #333333;
}

/* Section visibility */
.content-section {
  display: none;
}

.content-section.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================= */
@media (max-width: 992px) {
  .derby-grid-two {
    grid-template-columns: 1fr;
  }
  
  .trophy-compare-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .trophy-vs-divider {
    display: none;
  }
  
  .match-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .match-date-badge {
    display: inline-block;
    width: auto;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none; /* simple mobile fallback or togglable */
  }
  
  .brand-title {
    font-size: 1.2rem;
  }
  
  .goal-main-title {
    font-size: 4rem;
  }
  
  .goal-content {
    padding: 24px;
  }
  
  .local-fact-box {
    grid-template-columns: 1fr;
  }
}
