/* Google Fonts - Inter for modern athletic feel */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* CSS Variables - Fresh Athletic Palette */
:root {
  /* Primary colors */
  --primary-color: #0A4D4A;
  --primary-dark: #063633;
  --primary-light: #0F6B67;

  /* Accent colors */
  --accent-color: #FF6B5B;
  --accent-dark: #E55A4A;
  --accent-light: #FF8577;

  /* Secondary */
  --secondary-color: #FFB940;
  --secondary-light: #FFCA6A;

  /* Status colors */
  --success-color: #10B981;
  --warning-color: #F59E0B;
  --danger-color: #EF4444;

  /* Neutrals */
  --text-color: #1C2833;
  --text-light: #64748B;
  --text-muted: #94A3B8;
  --bg-color: #FAF8F5;
  --bg-dark: #F1EDE8;
  --card-bg: #ffffff;
  --border-color: #E2E8F0;

  /* Effects */
  --shadow: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.08), 0 4px 6px rgba(0,0,0,0.05);
  --shadow-hover: 0 20px 25px rgba(0,0,0,0.1), 0 10px 10px rgba(0,0,0,0.04);

  /* Borders */
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--bg-color);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 { font-size: 2.75rem; font-weight: 800; }
h2 { font-size: 1.875rem; }
h3 { font-size: 1.25rem; font-weight: 600; }

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--primary-dark);
}

/* Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 2rem 0;
  margin-bottom: 2rem;
}

header h1 {
  margin-bottom: 0.5rem;
}

header p {
  opacity: 0.9;
  font-size: 1.1rem;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.header-nav a {
  color: white;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  transition: background-color 0.2s;
}

.header-nav a:hover {
  background-color: rgba(255,255,255,0.1);
  color: white;
}

/* Hero Section - Running Track Design */
.hero {
  text-align: center;
  padding: 4rem 0 3rem;
  background: #B44D4D; /* Maroon track color */
  color: white;
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
}

/* Track lane lines */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  right: -50%;
  bottom: 0;
  background:
    /* Curved lane lines using radial gradients */
    repeating-radial-gradient(
      ellipse 200% 100% at 50% 150%,
      transparent 0px,
      transparent 58px,
      rgba(255,255,255,0.25) 58px,
      rgba(255,255,255,0.25) 62px,
      transparent 62px,
      transparent 120px
    );
  pointer-events: none;
}

/* Subtle texture overlay */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 30% 0%, rgba(255,255,255,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 100%, rgba(0,0,0,0.15) 0%, transparent 50%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 3.25rem;
  margin-bottom: 0.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.hero .subtitle {
  font-size: 1.125rem;
  opacity: 0.85;
  max-width: 520px;
  margin: 0 auto;
  font-weight: 400;
}

/* Compact Hero (with map below) */
.hero.hero-compact {
  padding: 2.5rem 0 2rem;
}

.hero.hero-compact h1 {
  font-size: 2.5rem;
  margin-bottom: 0.25rem;
}

.hero.hero-compact .chinese-title {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.hero.hero-compact .subtitle {
  font-size: 1rem;
}

.back-link-hero {
  display: inline-block;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  transition: color 0.2s;
}

.back-link-hero:hover {
  color: #fff;
}

/* ===========================================
   Map + Timetable Section
   =========================================== */
.map-timetable-section {
  padding: 2rem 0;
  background: var(--bg-color);
}

.map-timetable-section .container {
  max-width: 1400px;
}

.map-timetable-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

/* Map Panel */
.map-panel {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

#stadium-map {
  height: 600px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  z-index: 1;
}

.map-legend {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  padding: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-light);
}

.legend-marker {
  display: inline-block;
  width: 14px;
  height: 18px;
  margin-right: 0.375rem;
  vertical-align: middle;
  position: relative;
}

.legend-marker::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  border: 2px solid white;
  box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.legend-marker.active::before {
  background: #FF6B5B;
}

.legend-marker.available::before {
  background: #22c55e;
}

.legend-marker.unavailable::before {
  background: #9ca3af;
}

/* Timetable Panel */
.timetable-panel {
  display: flex;
  flex-direction: column;
}

#daily-timetable-container {
  max-height: 630px;
  overflow-y: auto;
}

.filter-controls-panel {
  background: var(--card-bg);
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  margin-bottom: 1.5rem;
}

.filter-row {
  display: flex;
  gap: 1.5rem;
  align-items: flex-end;
  justify-content: center;
}

.filter-controls-panel .filter-group {
  min-width: 120px;
}

.filter-controls-panel .filter-group-stadium {
  flex: 0 1 500px;
}

.filter-controls-panel .filter-group-date {
  flex: 0 0 180px;
}

.filter-controls-panel .filter-group label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.375rem;
}

.filter-controls-panel .filter-select,
.filter-controls-panel .filter-date {
  width: 100%;
  padding: 0.625rem 0.875rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  background: white;
  color: var(--text-color);
}

.filter-controls-panel .filter-select:focus,
.filter-controls-panel .filter-date:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(10, 77, 74, 0.1);
}

/* Responsive Map Layout */
@media (max-width: 1024px) {
  .map-timetable-grid {
    grid-template-columns: 1fr;
  }

  #stadium-map {
    height: 400px;
  }

  #daily-timetable-container {
    max-height: none;
  }
}

@media (max-width: 768px) {
  .filter-row {
    flex-direction: column;
  }

  .filter-controls-panel .filter-group-stadium,
  .filter-controls-panel .filter-group-date {
    flex: 1 1 100%;
    min-width: 100%;
    max-width: none;
  }
}

/* Custom Map Markers */
.stadium-marker {
  background: transparent !important;
}

.user-location-marker {
  background: transparent !important;
}

/* Leaflet popup customization */
.leaflet-popup-content-wrapper {
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
}

.leaflet-popup-content {
  margin: 0.75rem 1rem;
  font-family: inherit;
}

.stadium-popup h4,
.map-popup strong {
  margin: 0 0 0.25rem;
  font-size: 0.95rem;
  color: var(--text-color);
  display: block;
}

.stadium-popup .chinese-name,
.map-popup .popup-chinese {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.map-popup .popup-status {
  display: inline-block;
  font-size: 0.75rem;
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-xs);
  margin-top: 0.25rem;
}

.map-popup .popup-status.available {
  background: rgba(34, 197, 94, 0.15);
  color: #16a34a;
}

.map-popup .popup-status.unavailable {
  background: rgba(156, 163, 175, 0.15);
  color: #6b7280;
}

.stadium-popup .popup-btn {
  display: block;
  width: 100%;
  padding: 0.5rem;
  background: var(--accent-color);
  color: white;
  border: none;
  border-radius: var(--radius-xs);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 0.5rem;
}

.stadium-popup .popup-btn:hover {
  background: var(--accent-dark);
}

.hero .chinese-title {
  font-size: 1.375rem;
  opacity: 0.7;
  margin-top: 0.25rem;
  margin-bottom: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}

/* Stats Bar */
.stats-bar {
  display: flex;
  justify-content: center;
  gap: 3rem;
  padding: 1.25rem 0;
  margin-top: 1.5rem;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 2.25rem;
  font-weight: 800;
  display: block;
  color: white;
  line-height: 1;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.stat-label {
  font-size: 0.8rem;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

/* Filter Section */
.filter-section {
  background: var(--card-bg);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
}

.filter-section h3 {
  margin-bottom: 1rem;
  color: var(--text-color);
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.filter-btn {
  padding: 0.5rem 1rem;
  border: 2px solid var(--border-color);
  background: white;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.2s;
  color: var(--text-color);
}

.filter-btn:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.filter-btn.active {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
}

/* Stadium Grid */
.stadium-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
  padding-bottom: 2rem;
}

/* Stadium Card - Modern Minimal Design */
.stadium-card {
  background: var(--card-bg);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: all 0.2s ease;
  border: 1px solid var(--border-color);
}

.stadium-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-color);
}

.stadium-card .card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.stadium-card .card-content {
  padding: 1.25rem;
}

.stadium-card .card-header {
  margin-bottom: 0.75rem;
}

.stadium-card .card-header h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 0.125rem;
  line-height: 1.3;
}

.stadium-card:hover .card-header h3 {
  color: var(--primary-color);
}

.stadium-card .card-header .chinese-name {
  font-size: 0.85rem;
  color: var(--text-light);
}

.stadium-card .card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.875rem;
}

.stadium-card .district {
  font-size: 0.8rem;
  color: var(--text-light);
}

.stadium-card .track-info {
  display: inline-block;
  background: var(--bg-color);
  color: var(--text-color);
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-xs);
  font-size: 0.75rem;
  font-weight: 500;
}

.stadium-card .card-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border-color);
}

.stadium-card .status-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #94A3B8;
  flex-shrink: 0;
}

.stadium-card .status-text {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* Status states */
.stadium-card .card-status[data-status="open"] .status-indicator {
  background: #22C55E;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
}

.stadium-card .card-status[data-status="open"] .status-text {
  color: #16A34A;
  font-weight: 500;
}

.stadium-card .card-status[data-status="partial"] .status-indicator {
  background: #F59E0B;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2);
}

.stadium-card .card-status[data-status="partial"] .status-text {
  color: #D97706;
  font-weight: 500;
}

.stadium-card .card-status[data-status="closed"] .status-indicator {
  background: #EF4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2);
}

.stadium-card .card-status[data-status="closed"] .status-text {
  color: #DC2626;
  font-weight: 500;
}

.stadium-card .card-status[data-status="loading"] .status-indicator {
  background: #94A3B8;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.125rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--accent-color);
  color: white;
}

.btn-primary:hover {
  background: var(--accent-dark);
  color: white;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--border-color);
  color: var(--text-color);
}

.btn-outline:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  background: rgba(10, 77, 74, 0.05);
}

.btn-sm {
  padding: 0.5rem 0.875rem;
  font-size: 0.8rem;
}

/* Stadium Detail Page */
.stadium-detail {
  max-width: 900px;
  margin: 0 auto;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.back-link:hover {
  color: var(--primary-color);
}

.detail-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  color: white;
  padding: 2.5rem;
  border-radius: var(--radius) var(--radius) 0 0;
}

.detail-header h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.detail-header .chinese-name {
  font-size: 1.5rem;
  opacity: 0.9;
  margin-bottom: 1rem;
}

.detail-header .district-tag {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  padding: 0.35rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
}

.detail-body {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow);
}

.detail-section {
  margin-bottom: 2rem;
}

.detail-section:last-child {
  margin-bottom: 0;
}

.detail-section h2 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary-light);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.info-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.info-item .label {
  font-size: 0.85rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-item .value {
  font-size: 1.1rem;
  font-weight: 500;
}

.facilities-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.facility-tag {
  background: var(--bg-color);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
}

.jogging-status {
  padding: 1.25rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
}

.jogging-status.available {
  background: #d4edda;
  border-left: 4px solid var(--success-color);
}

.jogging-status.unavailable {
  background: #f8d7da;
  border-left: 4px solid var(--danger-color);
}

.jogging-status h3 {
  margin-bottom: 0.5rem;
}

.external-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

/* Region Sections */
.region-section {
  margin-bottom: 3.5rem;
}

.region-section h2 {
  color: var(--text-color);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.region-section h2::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 1.5rem;
  background: var(--accent-color);
  border-radius: 2px;
}

/* Footer */
footer {
  background: var(--text-color);
  color: white;
  padding: 2.5rem 0;
  margin-top: 4rem;
}

footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

footer p {
  font-size: 0.9rem;
  opacity: 0.85;
}

footer a {
  color: var(--secondary-color);
  font-weight: 500;
}

footer a:hover {
  color: white;
}

.footer-links {
  display: flex;
  gap: 1.75rem;
}

.footer-links a {
  font-size: 0.875rem;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.footer-links a:hover {
  opacity: 1;
}

/* Footer Stadium Links Grid */
.footer-stadiums {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 2rem;
  width: 100%;
}

.footer-region h4 {
  color: var(--secondary-color);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.footer-region ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-region li {
  margin-bottom: 0.4rem;
}

.footer-region a {
  font-size: 0.85rem;
  opacity: 0.8;
}

.footer-region a:hover {
  opacity: 1;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Responsive */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  .hero {
    padding: 2.5rem 0 2rem;
  }

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

  .hero .chinese-title {
    font-size: 1.125rem;
  }

  .stats-bar {
    gap: 1.25rem;
    flex-wrap: wrap;
  }

  .stat-number {
    font-size: 1.75rem;
  }

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

  .header-content {
    flex-direction: column;
    text-align: center;
  }

  footer .container {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 0.75rem;
  }

  .footer-stadiums {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .region-section h2::before {
    display: none;
  }
}

/* Timetable Styles */
.timetable-section {
  margin-top: 1.5rem;
}

.timetable-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}

.timetable-header h2 {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}

.timetable-meta {
  font-size: 0.85rem;
  color: var(--text-light);
}

.timetable-disclaimer {
  background: #fff3cd;
  border-left: 4px solid var(--warning-color);
  padding: 1rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.timetable-disclaimer p {
  margin: 0;
}

.timetable-grid {
  display: grid;
  gap: 1.5rem;
}

.timetable-card {
  background: var(--bg-color);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.timetable-card-header {
  background: var(--primary-color);
  color: white;
  padding: 0.75rem 1rem;
  font-weight: 600;
}

.timetable-card-body {
  padding: 0;
}

.timetable {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.timetable th,
.timetable td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.timetable th {
  background: var(--bg-color);
  font-weight: 600;
  color: var(--text-color);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.timetable tr:last-child td {
  border-bottom: none;
}

.timetable .time-col {
  font-weight: 500;
  white-space: nowrap;
}

.timetable .status-col {
  width: 100px;
}

.timetable .note-col {
  color: var(--text-light);
  font-size: 0.85rem;
}

.slot-status {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-xs);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: capitalize;
}

.slot-status.open {
  background: #D1FAE5;
  color: #065F46;
}

.slot-status.varies {
  background: #FEF3C7;
  color: #92400E;
}

.slot-status.reserved {
  background: #FEE2E2;
  color: #991B1B;
}

.slot-status.limited {
  background: #DBEAFE;
  color: #1E40AF;
}

.special-notice {
  background: #cce5ff;
  border-left: 4px solid #004085;
  padding: 1rem;
  border-radius: var(--radius-sm);
  margin-top: 1rem;
  font-size: 0.9rem;
}

.special-notice strong {
  color: #004085;
}

.timetable-actions {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

/* Responsive Timetable */
@media (max-width: 600px) {
  .timetable th,
  .timetable td {
    padding: 0.5rem;
    font-size: 0.85rem;
  }

  .timetable .note-col {
    display: none;
  }

  .timetable-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Print Styles */
@media print {
  header, footer, .filter-section, .btn, .timetable-actions {
    display: none;
  }

  .stadium-card {
    break-inside: avoid;
    box-shadow: none;
    border: 1px solid #ddd;
  }

  .timetable-card {
    break-inside: avoid;
  }
}

/* ===========================================
   Homepage Filter Controls - Modern Style
   =========================================== */
.filter-controls {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: center;
  margin-top: 2rem;
  padding: 1.5rem 2rem;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  backdrop-filter: blur(4px);
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
  min-width: 180px;
  max-width: 240px;
}

.filter-group label {
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: left;
  padding-left: 0.25rem;
}

.filter-select,
.filter-date {
  padding: 0.75rem 1rem;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  min-width: 180px;
  background: white;
  box-shadow: var(--shadow);
  color: var(--text-color);
  cursor: pointer;
  transition: all 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748B' d='M2 4l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.filter-date {
  background-image: none;
  padding-right: 1rem;
}

.filter-select:hover,
.filter-date:hover {
  border-color: var(--secondary-color);
}

.filter-select:focus,
.filter-date:focus {
  outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(255, 185, 64, 0.3);
}

/* ===========================================
   Daily Timetable (Homepage) - Modern Design
   =========================================== */
.daily-timetable {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  margin-top: 2rem;
  border: 1px solid var(--border-color);
}

.daily-timetable-header {
  background: var(--primary-color);
  color: white;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.daily-timetable-header h3 {
  font-size: 1.125rem;
  margin-bottom: 0.125rem;
}

.daily-timetable-header .subtitle {
  font-size: 0.85rem;
  opacity: 0.8;
}

.daily-timetable-body {
  padding: 0;
  max-height: 500px;
  overflow-y: auto;
}

.daily-timetable-empty {
  padding: 3rem;
  text-align: center;
  color: var(--text-light);
}

.daily-timetable-table {
  width: 100%;
  border-collapse: collapse;
}

.daily-timetable-table th,
.daily-timetable-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.daily-timetable-table th {
  background: var(--bg-color);
  font-weight: 600;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  position: sticky;
  top: 0;
  z-index: 1;
}

.daily-timetable-table tbody tr:hover {
  background: var(--bg-color);
}

.daily-timetable-table tr:last-child td {
  border-bottom: none;
}

.daily-timetable-table .time-cell {
  font-weight: 600;
  white-space: nowrap;
  font-size: 0.9rem;
  color: var(--text-color);
}

.daily-timetable-table .lanes-cell {
  font-weight: 700;
}

.daily-timetable-table .note-cell {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ===========================================
   NEW: Weekly Timetable Grid (Stadium Pages)
   =========================================== */
.weekly-timetable {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.weekly-timetable-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  color: white;
}

.weekly-timetable-header h2 {
  font-size: 1.25rem;
  margin: 0;
  border: none;
  padding: 0;
  color: white;
}

.weekly-timetable-nav {
  display: flex;
  gap: 0.5rem;
}

.weekly-timetable-nav button {
  background: rgba(255,255,255,0.2);
  border: none;
  color: white;
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background 0.2s;
}

.weekly-timetable-nav button:hover:not(:disabled) {
  background: rgba(255,255,255,0.3);
}

.weekly-timetable-nav button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.weekly-timetable-grid {
  display: grid;
  grid-template-columns: 90px repeat(7, 1fr);
  overflow-x: auto;
  position: relative;
}

/* 30-minute grid - more compact for 32 rows */
.weekly-timetable-grid-30min {
  grid-template-columns: 80px repeat(7, 1fr);
}

.weekly-header-cell {
  padding: 0.5rem;
  text-align: center;
  background: var(--bg-color);
  font-weight: 600;
  font-size: 0.75rem;
  border-right: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  color: var(--text-light);
}

.weekly-header-cell:first-child {
  position: sticky;
  left: 0;
  z-index: 2;
}

.weekly-header-cell.today {
  background: var(--primary-color);
  color: white;
}

.weekly-header-cell.no-data-day {
  opacity: 0.5;
  background: #f1f5f9;
}

.weekly-header-cell.no-data-day.today {
  opacity: 0.7;
}

.weekly-time-cell {
  padding: 0.3rem 0.5rem;
  text-align: right;
  background: var(--bg-color);
  font-weight: 500;
  font-size: 0.7rem;
  border-right: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  white-space: nowrap;
  position: sticky;
  left: 0;
  z-index: 1;
}

.weekly-timetable-cell {
  padding: 0.3rem 0.25rem;
  text-align: center;
  border-right: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  font-size: 0.85rem;
  min-height: 20px;
}

/* Cell background colors by status - Heat Map */
.weekly-timetable-cell.open {
  background: #D1FAE5;
}

.weekly-timetable-cell.partial {
  background: #FEF3C7;
}

.weekly-timetable-cell.reserved {
  background: #FEE2E2;
}

.weekly-timetable-cell.no-data {
  background: #F8FAFC;
}

.weekly-timetable-cell:last-child {
  border-right: none;
}

.weekly-timetable-cell.header {
  background: var(--bg-color);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-light);
}

.weekly-timetable-cell.time-label {
  background: var(--bg-color);
  font-weight: 500;
  text-align: right;
  padding-right: 1rem;
  white-space: nowrap;
  font-size: 0.8rem;
  position: sticky;
  left: 0;
  z-index: 1;
}

.weekly-timetable-cell.day-header {
  flex-direction: column;
}

.weekly-timetable-cell .day-name {
  font-weight: 600;
  font-size: 0.75rem;
}

.weekly-timetable-cell .day-date {
  font-size: 0.9rem;
  font-weight: 700;
}

/* ===========================================
   Lane Status Indicators - Heat Map Style
   =========================================== */
.lane-status {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.625rem;
  border-radius: var(--radius-xs);
  font-size: 0.75rem;
  font-weight: 600;
}

.lane-status.open {
  background: linear-gradient(135deg, #D1FAE5, #A7F3D0);
  color: #065F46;
}

.lane-status.partial {
  background: linear-gradient(135deg, #FEF3C7, #FDE68A);
  color: #92400E;
}

.lane-status.reserved {
  background: linear-gradient(135deg, #FEE2E2, #FECACA);
  color: #991B1B;
}

.lane-status-icon {
  font-size: 0.65rem;
}

.lane-count {
  font-weight: 700;
  font-size: 0.875rem;
}

.lane-count.open {
  color: #059669;
}

.lane-count.partial {
  color: #D97706;
}

.lane-count.reserved {
  color: #DC2626;
}

/* Compact lane status for weekly grid cells */
.weekly-cell-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.weekly-cell-content .status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.weekly-cell-content .status-dot.open {
  background: #28a745;
}

.weekly-cell-content .status-dot.partial {
  background: #ffc107;
}

.weekly-cell-content .status-dot.reserved {
  background: #dc3545;
}

.weekly-cell-content .lane-info {
  font-size: 0.75rem;
  font-weight: 600;
}

/* ===========================================
   NEW: Legend
   =========================================== */
.timetable-legend {
  display: flex;
  gap: 1.5rem;
  padding: 1rem 1.5rem;
  background: var(--bg-color);
  border-top: 1px solid var(--border-color);
  flex-wrap: wrap;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
}

.legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 4px;
}

.legend-dot.open { background: #10B981; }
.legend-dot.partial { background: #F59E0B; }
.legend-dot.reserved { background: #EF4444; }

/* ===========================================
   Responsive: Filter Controls
   =========================================== */
@media (max-width: 768px) {
  .filter-controls {
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    gap: 0.75rem;
  }

  .filter-group {
    max-width: none;
  }

  .filter-select,
  .filter-date {
    min-width: 100%;
  }

  .weekly-timetable-grid {
    grid-template-columns: 80px repeat(7, minmax(60px, 1fr));
    font-size: 0.75rem;
  }

  .weekly-timetable-cell {
    padding: 0.5rem 0.25rem;
  }

  .weekly-timetable-cell.time-label {
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  .weekly-timetable-header {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }

  .daily-timetable-table .note-cell {
    display: none;
  }
}

/* ===== NEW HOMEPAGE STYLES ===== */

/* Timetable Display Section */
.timetable-display {
  padding: 2.5rem 0 3rem;
  background: var(--bg-dark);
}

/* Select Stadium Prompt */
.select-stadium-prompt {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--card-bg);
  border-radius: var(--radius);
  border: 2px dashed var(--border-color);
  box-shadow: var(--shadow);
}

.select-stadium-prompt .prompt-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  filter: grayscale(0.3);
}

.select-stadium-prompt h3 {
  color: var(--text-color);
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.select-stadium-prompt p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Error Message */
.error-message {
  text-align: center;
  padding: 2rem;
  background: #fff5f5;
  border-radius: var(--radius);
  color: var(--danger-color);
}

.no-data-message {
  text-align: center;
  padding: 3rem 2rem;
  color: var(--text-light);
}

.no-data-message .hint {
  font-size: 0.9rem;
  margin-top: 0.5rem;
  opacity: 0.8;
}

/* Loading State */
.loading-timetable {
  text-align: center;
  padding: 3rem 2rem;
  color: var(--text-light);
  font-style: italic;
}

/* Region Navigation Section */
.region-nav-section {
  margin-bottom: 2rem;
  margin-top: -0.5rem;
}

.region-nav-bar {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.region-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 1.5rem;
  background: var(--card-bg);
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
  min-width: 140px;
  border: 1px solid var(--border-color);
}

.region-nav-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.region-nav-name {
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-color);
}

.region-nav-chinese {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 0.25rem;
}

.region-nav-count {
  font-size: 0.8rem;
  color: var(--primary-color);
  margin-top: 0.5rem;
  font-weight: 500;
}

@media (max-width: 600px) {
  .region-nav-bar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .region-nav-item {
    min-width: auto;
    padding: 0.75rem 1rem;
  }
}

/* All Stadiums Section */
.all-stadiums-section {
  margin-bottom: 3rem;
}

.all-stadiums-section h2 {
  margin-bottom: 0.5rem;
}

.section-subtitle {
  color: var(--text-light);
  margin-bottom: 2rem;
}

/* Region Group */
.region-group {
  margin-bottom: 2rem;
}

.region-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--border-color);
  margin-bottom: 0;
}

/* Stadium List */
.stadium-list {
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.stadium-list-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border-color);
  transition: background-color 0.2s;
  color: var(--text-color);
}

.stadium-list-item:last-child {
  border-bottom: none;
}

.stadium-list-item:hover {
  background-color: #f0f7f7;
}

.stadium-list-item.renovation {
  background-color: #fffbeb;
}

.stadium-list-item.renovation:hover {
  background-color: #fef3c7;
}

.stadium-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stadium-name {
  font-weight: 500;
  color: var(--text-color);
}

.stadium-name-chinese {
  font-size: 0.9rem;
  color: var(--text-light);
}

.status-note {
  font-size: 0.8rem;
  color: var(--warning-color);
  font-weight: 500;
}

.stadium-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.track-info {
  font-size: 0.85rem;
  color: var(--text-light);
  white-space: nowrap;
}

.stadium-meta .arrow {
  font-size: 1.5rem;
  color: var(--text-light);
  font-weight: 300;
}

/* Other Stadiums Section */
.other-stadiums-section {
  margin-bottom: 3rem;
}

.other-stadiums-section h2 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
}

.other-stadiums-section h2::before {
  display: none;
}

.other-stadiums-section .section-subtitle {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.other-stadiums-list {
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
}

.other-stadium-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.875rem 1.25rem;
  border-bottom: 1px solid var(--border-color);
}

.other-stadium-item:last-child {
  border-bottom: none;
}

.other-stadium-item .name {
  color: var(--text-light);
  font-size: 0.9rem;
}

.other-stadium-item .note {
  font-size: 0.8rem;
  color: var(--text-muted);
  background: var(--bg-color);
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius-xs);
}

/* Daily Timetable Enhanced Styles */
.daily-timetable {
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.daily-timetable-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: white;
}

.daily-timetable-title h3 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.daily-timetable-title .chinese-name {
  font-size: 0.9rem;
  opacity: 0.9;
}

.daily-timetable-date {
  text-align: right;
}

.daily-timetable-date .day-name {
  display: block;
  font-size: 0.9rem;
  opacity: 0.9;
}

.daily-timetable-date .date {
  font-weight: 600;
}

.daily-timetable-body {
  padding: 0;
}

.daily-timetable-table {
  width: 100%;
  border-collapse: collapse;
}

.daily-timetable-table th,
.daily-timetable-table td {
  padding: 0.875rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.daily-timetable-table th {
  background: #f8f9fa;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text-light);
}

.daily-timetable-table tbody tr:last-child td {
  border-bottom: none;
}

.daily-timetable-table .time-col {
  font-weight: 500;
  white-space: nowrap;
}

.daily-timetable-table .lanes-col {
  text-align: center;
}

.daily-timetable-table .note-col {
  color: var(--text-light);
  font-size: 0.9rem;
}

.daily-timetable-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  background: #f8f9fa;
  border-top: 1px solid var(--border-color);
  flex-wrap: wrap;
  gap: 1rem;
}

/* Responsive Homepage */
@media (max-width: 768px) {
  .stadium-list-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .stadium-meta {
    width: 100%;
    justify-content: space-between;
  }

  .daily-timetable-header {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .daily-timetable-date {
    text-align: center;
  }

  .daily-timetable-footer {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .other-stadium-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }
}

/* ===========================================
   Stadium Photo Carousel (Placeholder)
   =========================================== */
.stadium-photos {
  margin-bottom: 1.5rem;
}

.photo-carousel {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
}

.photo-carousel img {
  height: 150px;
  width: auto;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.photo-placeholder {
  background: linear-gradient(135deg, #e8e8e8 0%, #f5f5f5 100%);
  height: 150px;
  min-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
}

/* ===========================================
   Google Maps Button
   =========================================== */
.map-link-container {
  margin-top: 1.5rem;
}

.btn-map {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-map svg {
  flex-shrink: 0;
}

.btn-secondary {
  background: var(--bg-color);
  color: var(--text-color);
  border: 2px solid var(--border-color);
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* ===========================================
   Getting There (MTR Info) Section
   =========================================== */
.mtr-info {
  background: var(--bg-color);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  border-left: 4px solid #0068B7;
}

.mtr-station {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.mtr-icon {
  background: linear-gradient(135deg, #DC3545 0%, #B32D3A 100%);
  color: white;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-xs);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}

.mtr-details {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.mtr-details .station-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-color);
}

.mtr-details .station-name .chinese {
  font-weight: 400;
  color: var(--text-light);
  margin-left: 0.5rem;
}

.mtr-details .line-name {
  font-size: 0.9rem;
  color: var(--text-light);
}

.mtr-directions {
  display: flex;
  gap: 2rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border-color);
}

.mtr-directions .direction-item {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.mtr-directions .label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.mtr-directions .value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-color);
}

/* Bus/Ferry transport info (for stadiums without MTR) */
.transport-info {
  background: var(--bg-color);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  border-left: 4px solid #F59E0B;
}

.transport-info .transport-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.transport-icon {
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  color: white;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-xs);
  font-weight: 700;
  font-size: 0.75rem;
}

/* ===========================================
   Amenities Section
   =========================================== */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
}

.amenity-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background: var(--bg-color);
  border-radius: var(--radius-sm);
  text-align: center;
  transition: all 0.2s;
}

.amenity-item svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.5;
}

.amenity-item span {
  font-size: 0.85rem;
  font-weight: 500;
}

.amenity-item.available {
  background: #D1FAE5;
  color: #065F46;
}

.amenity-item.available svg {
  stroke: #059669;
}

.amenity-item.unavailable {
  background: #F1F5F9;
  color: #94A3B8;
}

.amenity-item.unavailable svg {
  stroke: #CBD5E1;
}

/* Responsive */
@media (max-width: 600px) {
  .mtr-station {
    flex-direction: column;
    align-items: flex-start;
  }

  .mtr-directions {
    flex-direction: column;
    gap: 1rem;
  }

  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

