/* =================================================================
   ORAS Lietuva - Ekspertinio lygio orų informacijos sistema
   Sukurta: Asociacija "Varliukai"
   ================================================================= */

/* ================= RESET & BASE ================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

/* WebGL Sky Canvas Container */
.sky-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.sky-canvas canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

/* HTML Moon Overlay (replaces Three.js moon for better texture support) */
.sky-moon-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.sky-moon-overlay img {
  position: absolute;
  width: 70px;
  height: 70px;
  object-fit: contain;
  /* No glow filter - natural moon appearance */
  transition: opacity 0.3s ease;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background: var(--bg-base);
  color: var(--text-primary);
  transition: background-color 0.5s ease, color 0.5s ease;
}

/* ================= SPACING SYSTEM ================= */
:root {
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-8: 3rem;
  --space-10: 4rem;
  --space-12: 6rem;

  /* Safe areas for mobile */
  --safe-area-top: env(safe-area-inset-top, 0);
  --safe-area-bottom: env(safe-area-inset-bottom, 0);
}

/* ================= MODE RADIUS (tik forma, ne spalvos) ================= */
/* Spalvos ateina iš themes.css pagal paros laiką */
:root, [data-mode="classic"] {
  --radius-sm: 0;
  --radius-md: 4px;
  --radius-lg: 8px;
}

/* ================= TYPOGRAPHY ================= */
.text-display {
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: 200;
  line-height: 1;
  letter-spacing: -0.02em;
}

.text-headline {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.2;
}

.text-title {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.4;
}

.text-body {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
}

.text-caption {
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.5;
}

.text-overline {
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ================= LAYOUT ================= */
.app {
  background: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 35vh,
    var(--bg-base) 55vh,
    var(--bg-base) 100%
  );
  color: var(--text-primary);
  min-height: 100vh;
  padding-bottom: calc(24px + var(--safe-area-bottom));
  position: relative;
  z-index: 10;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-4);
}

.grid {
  display: grid;
  gap: var(--space-4);
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }
}

/* ================= HEADER ================= */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--header-bg, rgba(255, 255, 255, 0.85));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 6px 12px;
  padding-top: calc(6px + var(--safe-area-top));
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 8px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-primary);
  text-decoration: none;
}

.logo-icon {
  width: 28px;
  height: 28px;
}

.logo-svg {
  width: 78px;
  height: 24px;
  color: var(--text-primary);
  transition: transform 0.2s ease;
}

.logo:hover .logo-svg {
  transform: scale(1.02);
}

.logo-text {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.btn-about {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: transparent;
  color: var(--text-secondary);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.btn-about:hover {
  background: var(--bg-elevated);
  color: var(--text-primary);
}

.mode-switcher {
  display: flex;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2px;
}

.mode-btn {
  padding: 4px 8px;
  border: none;
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 500;
  transition: all 0.15s ease;
}

.mode-btn:hover {
  color: var(--text-primary);
  background: var(--bg-surface);
}

.mode-btn.active {
  background: var(--accent);
  color: #fff;
  font-weight: 600;
}

/* ================= CITY PICKER ================= */

/* Trigger Button in Header */
.city-picker-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text-primary);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.city-picker-btn:hover {
  background: var(--bg-elevated);
  border-color: var(--accent);
}

.city-picker-btn:active {
  transform: scale(0.97);
}

.city-picker-btn[aria-expanded="true"] {
  background: var(--accent-muted);
  border-color: var(--accent);
}

.city-picker-btn[aria-expanded="true"] .city-picker-chevron {
  transform: rotate(180deg);
}

.city-picker-icon {
  flex-shrink: 0;
  color: var(--accent);
}

.city-picker-name {
  max-width: 100px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.city-picker-chevron {
  flex-shrink: 0;
  opacity: 0.5;
  transition: transform 0.2s ease;
}

/* Very small screens */
@media (max-width: 359px) {
  .city-picker-btn {
    padding: 6px 8px;
    gap: 4px;
  }
  .city-picker-name {
    max-width: 60px;
    font-size: 0.8125rem;
  }
  .city-picker-icon {
    width: 16px;
    height: 16px;
  }
}

/* Overlay */
.city-picker-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0);
  visibility: hidden;
  transition: background 0.3s ease, visibility 0.3s ease;
}

.city-picker-overlay[aria-hidden="false"] {
  visibility: visible;
  background: rgba(0, 0, 0, 0.5);
}

/* Bottom Sheet */
.city-picker-sheet {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  max-height: 90vh;
  max-height: 90dvh;
  background: var(--bg-surface);
  border-radius: 20px 20px 0 0;
  display: flex;
  flex-direction: column;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
  box-shadow: 0 -4px 32px rgba(0, 0, 0, 0.25);
}

.city-picker-overlay[aria-hidden="false"] .city-picker-sheet {
  transform: translateY(0);
}

/* Drag Handle */
.city-picker-handle {
  width: 36px;
  height: 4px;
  margin: 12px auto 8px;
  background: var(--border);
  border-radius: 2px;
  flex-shrink: 0;
}

/* Header */
.city-picker-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 16px 12px;
  flex-shrink: 0;
}

.city-picker-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

.city-picker-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  background: var(--bg-elevated);
  border: none;
  border-radius: 50%;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.15s ease;
  -webkit-tap-highlight-color: transparent;
}

.city-picker-close:hover {
  background: var(--bg-hover);
  color: var(--text-primary);
}

.city-picker-close:active {
  transform: scale(0.92);
}

/* Search */
.city-picker-search {
  position: relative;
  padding: 0 16px 12px;
  flex-shrink: 0;
}

.city-picker-search-icon {
  position: absolute;
  left: 28px;
  top: 50%;
  transform: translateY(calc(-50% - 6px));
  color: var(--text-muted);
  pointer-events: none;
}

.city-picker-input {
  width: 100%;
  padding: 12px 12px 12px 40px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text-primary);
  font-size: 1rem;
  -webkit-appearance: none;
  appearance: none;
}

.city-picker-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-muted);
}

.city-picker-input::placeholder {
  color: var(--text-muted);
}

/* Quick Actions */
.city-picker-actions {
  display: flex;
  gap: 8px;
  padding: 0 16px 12px;
  flex-shrink: 0;
}

.city-picker-action {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 8px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text-primary);
  font-size: 0.8125rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s ease;
  -webkit-tap-highlight-color: transparent;
}

.city-picker-action svg {
  flex-shrink: 0;
  color: var(--accent);
}

.city-picker-action:hover {
  background: var(--accent-muted);
  border-color: var(--accent);
}

.city-picker-action:active {
  transform: scale(0.97);
}

.city-picker-action.loading {
  opacity: 0.6;
  pointer-events: none;
}

/* Cities List */
.city-picker-list {
  flex: 1;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding-bottom: env(safe-area-inset-bottom, 16px);
}

.city-picker-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  cursor: pointer;
  transition: background 0.12s ease;
  border-bottom: 1px solid var(--border-subtle, rgba(255,255,255,0.06));
  -webkit-tap-highlight-color: transparent;
}

.city-picker-item:hover {
  background: var(--bg-elevated);
}

.city-picker-item:active {
  background: var(--bg-hover);
}

.city-picker-item[aria-selected="true"] {
  background: var(--accent-muted);
}

.city-picker-item[aria-selected="true"] .city-picker-item-name {
  color: var(--accent);
}

.city-picker-item-check {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  opacity: 0;
  color: var(--accent);
}

.city-picker-item[aria-selected="true"] .city-picker-item-check {
  opacity: 1;
}

.city-picker-item-info {
  flex: 1;
  min-width: 0;
}

.city-picker-item-name {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.city-picker-item-region {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.city-picker-item-pop {
  font-size: 0.75rem;
  color: var(--text-secondary);
  flex-shrink: 0;
}

/* Empty State */
.city-picker-empty {
  padding: 40px 16px;
  text-align: center;
  color: var(--text-muted);
}

/* Desktop Styles */
@media (min-width: 600px) {
  .city-picker-sheet {
    position: fixed;
    bottom: auto;
    top: 64px;
    right: 16px;
    left: auto;
    width: 360px;
    max-height: min(560px, calc(100vh - 100px));
    border-radius: 16px;
    transform: translateY(-12px);
    opacity: 0;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .city-picker-overlay[aria-hidden="false"] .city-picker-sheet {
    transform: translateY(0);
    opacity: 1;
  }

  .city-picker-handle {
    display: none;
  }

  .city-picker-header {
    padding: 16px 16px 12px;
  }

  .city-picker-list {
    max-height: 320px;
  }
}

/* ================= COORDINATES MODAL ================= */
.coords-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0);
  visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  transition: background 0.25s ease, visibility 0.25s ease;
}

.coords-modal-overlay[aria-hidden="false"] {
  visibility: visible;
  background: rgba(0, 0, 0, 0.6);
}

.coords-modal {
  width: 100%;
  max-width: 340px;
  background: var(--bg-surface);
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  transform: scale(0.9);
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.coords-modal-overlay[aria-hidden="false"] .coords-modal {
  transform: scale(1);
  opacity: 1;
}

.coords-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border-bottom: 1px solid var(--border);
}

.coords-modal-header h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.coords-modal-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  background: var(--bg-elevated);
  border: none;
  border-radius: 50%;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.15s ease;
}

.coords-modal-close:hover {
  background: var(--bg-hover);
  color: var(--text-primary);
}

.coords-modal-body {
  padding: 16px;
}

.coords-field {
  margin-bottom: 12px;
}

.coords-field label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.coords-field input {
  width: 100%;
  padding: 12px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text-primary);
  font-size: 1rem;
  -webkit-appearance: none;
}

.coords-field input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-muted);
}

.coords-hint {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin: 0 0 16px;
}

.coords-submit {
  width: 100%;
  padding: 14px;
  background: var(--accent);
  border: none;
  border-radius: 10px;
  color: white;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s ease;
}

.coords-submit:hover {
  filter: brightness(1.1);
}

.coords-submit:active {
  transform: scale(0.98);
}

/* ================= FLOATING SECTION NAVIGATION ================= */
.section-nav {
  position: fixed;
  bottom: calc(24px + var(--safe-area-bottom));
  right: 16px;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  pointer-events: none;
}

.section-nav > * {
  pointer-events: auto;
}

/* Section indicator pill - positioned to the left of buttons */
.section-nav-indicator {
  position: absolute;
  right: 60px;
  bottom: 44px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 8px 16px;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.section-nav-indicator.visible {
  opacity: 1;
  transform: translateX(0);
}

.section-indicator-text {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
}

/* Main button container - vertical stack */
.section-nav-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 4px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Arrows container inside main stack */
.section-nav-arrows {
  display: flex;
  flex-direction: column;
}

/* Navigation buttons */
.section-nav-btn {
  width: 46px;
  height: 46px;
  border: none;
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all 0.2s ease;
}

.section-nav-btn svg {
  width: 22px;
  height: 22px;
}

.section-nav-btn:hover {
  background: var(--bg-hover);
  color: var(--text-primary);
}

.section-nav-btn:active {
  transform: scale(0.92);
}

.section-nav-btn:disabled {
  opacity: 0.25;
  cursor: not-allowed;
}

.section-nav-btn:disabled:hover {
  background: transparent;
  transform: none;
}

/* Divider between home and arrows */
.section-nav-divider {
  width: 28px;
  height: 1px;
  background: var(--border);
  margin: 2px 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Home button - top of the stack */
.section-nav-home {
  color: var(--text-muted);
  opacity: 0;
  height: 0;
  padding: 0;
  margin: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.section-nav-home.visible {
  opacity: 1;
  height: 46px;
}

.section-nav-home.visible ~ .section-nav-divider {
  opacity: 1;
}

.section-nav-home:hover {
  background: var(--accent);
  color: white;
}

/* Navigation group anchors - invisible anchors for scroll targets */
.nav-group-anchor {
  height: 0;
  margin: 0;
  padding: 0;
  scroll-margin-top: 80px;
}

/* Mobile optimizations */
@media (max-width: 480px) {
  .section-nav {
    bottom: calc(20px + var(--safe-area-bottom));
    right: 12px;
  }

  .section-nav-indicator {
    right: 54px;
    bottom: 40px;
    padding: 6px 12px;
  }

  .section-indicator-text {
    font-size: 0.7rem;
  }

  .section-nav-btn {
    width: 42px;
    height: 42px;
  }

  .section-nav-home.visible {
    height: 42px;
  }

  .section-nav-btn svg {
    width: 20px;
    height: 20px;
  }

  .section-nav-divider {
    width: 24px;
  }
}

/* Very small screens */
@media (max-width: 360px) {
  .section-nav {
    bottom: calc(16px + var(--safe-area-bottom));
    right: 10px;
  }

  .section-nav-btn {
    width: 38px;
    height: 38px;
  }

  .section-nav-home.visible {
    height: 38px;
  }

  .section-nav-btn svg {
    width: 18px;
    height: 18px;
  }

  .section-nav-divider {
    width: 22px;
  }
}

/* Hide nav when keyboard is open on mobile */
@media (max-height: 500px) {
  .section-nav {
    display: none;
  }
}

/* ================= HERO SECTIONS ================= */

/* Classic Hero */
.classic-hero {
  min-height: 60vh;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-10) var(--space-6);
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.classic-temp {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(6rem, 20vw, 14rem);
  font-weight: 200;
  color: var(--hero-text);
  text-shadow: var(--hero-text-shadow);
  letter-spacing: -0.04em;
  line-height: 1;
}

.classic-temp .minus {
  font-weight: 100;
  opacity: 0.7;
}

.classic-temp .degree {
  font-size: 0.3em;
  vertical-align: super;
  font-weight: 300;
  opacity: 0.6;
}

.classic-condition {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--hero-text);
  text-shadow: var(--hero-text-shadow);
  margin-top: var(--space-2);
  letter-spacing: 0.02em;
  opacity: 0.9;
}

/* ================= METRICS ================= */
.classic-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: var(--space-10);
  max-width: 600px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  border: 1px solid var(--border);
}

@media (max-width: 600px) {
  .classic-metrics {
    grid-template-columns: repeat(2, 1fr);
  }
}

.classic-metric {
  background: var(--bg-surface);
  padding: var(--space-5);
  text-align: center;
}

.classic-metric-value {
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--text-primary);
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: var(--space-1);
}

.classic-metric-value .unit {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-muted);
}

.classic-metric-value .trend {
  font-size: 0.75rem;
  color: var(--accent);
  margin-left: var(--space-1);
}

.classic-metric-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: var(--space-2);
}

/* ================= CARDS ================= */
.card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.card-header {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--border);
  margin-bottom: var(--space-5);
}

/* ================= FORECAST ================= */
.forecast-card {
  overflow: hidden;
}

.forecast {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0;
  text-align: center;
}

@media (max-width: 600px) {
  .forecast {
    grid-template-columns: repeat(4, 1fr);
  }
}

.forecast-day {
  padding: var(--space-3) var(--space-2);
  border-right: 1px solid var(--border-subtle);
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}

.forecast-day:last-child {
  border-right: none;
}

.forecast-day:hover {
  background: var(--bg-elevated);
}

.forecast-day.today .forecast-dayname {
  color: var(--accent);
}

.forecast-day.active {
  background: var(--accent-muted);
  border-radius: var(--radius-md);
}

.forecast-day.active .forecast-dayname,
.forecast-day.active .forecast-date {
  color: var(--accent);
  font-weight: 700;
}

.forecast-day.active .forecast-high {
  color: var(--text-primary);
}

.forecast-day.active .forecast-low {
  color: var(--text-secondary);
}

.forecast-dayname {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: var(--space-2);
}

.forecast-date {
  font-size: 0.625rem;
  color: var(--text-muted);
  opacity: 0.7;
  margin-bottom: var(--space-2);
}

/* Forecast icon with precipitation overlay */
.forecast-icon-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: var(--space-2);
  cursor: help;
}

.forecast-icon {
  width: 36px;
  height: 36px;
  color: var(--text-secondary);
}

.forecast-precip-badge {
  position: absolute;
  bottom: -4px;
  right: -8px;
  background: var(--accent);
  color: white;
  font-size: 0.5625rem;
  font-weight: 700;
  padding: 2px 4px;
  border-radius: 4px;
  min-width: 24px;
}

.forecast-precip-badge.rain {
  background: #3B82F6;
}

.forecast-precip-badge.snow {
  background: #8B5CF6;
}

/* Temperature display */
.forecast-temps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  margin-bottom: var(--space-2);
}

.forecast-high {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}

.forecast-low {
  font-size: 0.75rem;
  color: var(--text-muted);
  opacity: 0.8;
}

/* Details with icons */
.forecast-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: var(--space-2);
  padding-top: var(--space-2);
  border-top: 1px solid var(--border-subtle);
}

.forecast-detail {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 0.6875rem;
  color: var(--text-secondary);
}

.forecast-detail .detail-icon {
  font-size: 0.75rem;
  line-height: 1;
  cursor: help;
}

/* Hide Leaflet attribution */
.leaflet-control-attribution {
  display: none !important;
}

.leaflet-control-zoom {
  display: none !important;
}

.forecast-detail .detail-value {
  font-weight: 500;
}

.forecast-detail.precip {
  color: #3B82F6;
}

.forecast-detail.precip .detail-value {
  font-weight: 600;
}

.forecast-day.active .forecast-details {
  border-top-color: var(--border);
}

.forecast-day.active .forecast-detail {
  color: var(--text-secondary);
}

.forecast-day.active .forecast-detail.precip {
  color: #3B82F6;
}

/* Expand Button */
.forecast-expand-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3);
  background: linear-gradient(to bottom, transparent, var(--bg-elevated));
  border: none;
  border-top: 1px solid var(--border-subtle);
  color: var(--accent);
  font-size: 0.8125rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.forecast-expand-btn:hover {
  background: var(--accent-muted);
}

.forecast-expand-icon {
  transition: transform 0.3s ease;
}

.forecast-card.expanded .forecast-expand-icon {
  transform: rotate(180deg);
}

.forecast-card.expanded .forecast-expand-btn span {
  display: none;
}

.forecast-card.expanded .forecast-expand-btn::before {
  content: 'Sutraukti';
}

/* Expanded Section */
.forecast-expanded {
  border-top: 1px solid var(--border);
  background: var(--bg-base);
}

.forecast-expanded.hidden {
  display: none;
}

/* Day Tabs */
.forecast-tabs {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  border-bottom: 1px solid var(--border);
  background: var(--bg-surface);
}

.forecast-tabs::-webkit-scrollbar {
  display: none;
}

.forecast-tab {
  flex: 0 0 auto;
  padding: var(--space-3) var(--space-4);
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-size: 0.8125rem;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: all 0.2s ease;
}

.forecast-tab:hover {
  color: var(--text-primary);
  background: var(--bg-elevated);
}

.forecast-tab.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.forecast-tab-date {
  font-size: 0.6875rem;
  opacity: 0.7;
  margin-left: var(--space-1);
}

/* Hourly Grid */
.forecast-hourly {
  display: flex;
  overflow-x: auto;
  padding: var(--space-4);
  gap: var(--space-1);
  scrollbar-width: thin;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-overflow-scrolling: touch;
}

.forecast-hourly.dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

.forecast-hourly * {
  user-select: none;
  -webkit-user-select: none;
}

.forecast-hourly::-webkit-scrollbar {
  height: 4px;
}

.forecast-hourly::-webkit-scrollbar-track {
  background: var(--bg-elevated);
}

.forecast-hourly::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 2px;
}

.forecast-hour {
  flex: 0 0 auto;
  width: 56px;
  padding: var(--space-3) var(--space-2);
  text-align: center;
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  transition: all 0.2s ease;
}

.forecast-hour:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.forecast-hour.now {
  background: var(--accent-muted);
  border-color: var(--accent);
}

.forecast-hour-time {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: var(--space-2);
}

.forecast-hour.now .forecast-hour-time {
  color: var(--accent);
}

.forecast-hour-icon {
  width: 28px;
  height: 28px;
  margin: 0 auto var(--space-2);
  color: var(--text-secondary);
}

.forecast-hour-temp {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
}

.forecast-hour-precip {
  font-size: 0.5625rem;
  color: var(--accent);
  margin-top: var(--space-1);
  min-height: 14px;
}

.forecast-hour-wind {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  font-size: 0.5625rem;
  color: var(--text-muted);
  margin-top: var(--space-1);
}

.forecast-hour-wind svg {
  width: 8px;
  height: 8px;
}

/* Hourly details tooltip */
.forecast-hour-details {
  display: none;
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-3);
  min-width: 140px;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.forecast-hour:hover .forecast-hour-details {
  display: block;
}

/* ================= VORONOI ICONS ================= */
.voronoi-icon {
  width: 24px;
  height: 24px;
  display: inline-block;
}

.voronoi-icon.sm { width: 16px; height: 16px; }
.voronoi-icon.md { width: 32px; height: 32px; }
.voronoi-icon.lg { width: 48px; height: 48px; }
.voronoi-icon.xl { width: 64px; height: 64px; }

.voronoi-icon use {
  color: inherit;
}

/* ================= PROGRESS BARS ================= */
.progress {
  margin: var(--space-5) 0;
}

.progress-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--space-3);
}

.progress-label {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.progress-value {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.progress-bar {
  height: 4px;
  background: var(--bg-elevated);
  border-radius: 2px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
  transition: width 0.6s ease;
}

.progress-note {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: var(--space-3);
  line-height: 1.5;
}

/* ================= BUTTONS ================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-5);
  border: none;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--bg-elevated);
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: var(--bg-surface);
  border-color: var(--accent);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid transparent;
}

.btn-ghost:hover {
  background: var(--accent-muted);
  color: var(--accent);
}

/* ================= MAP CONTAINER ================= */
.map-card {
  padding: 0;
  overflow: hidden;
}

.map-card .card-header {
  padding: var(--space-4);
  margin: 0;
  border-bottom: 1px solid var(--border);
}

.map-wrapper {
  position: relative;
  width: 100%;
  height: 450px;
  background: var(--bg-elevated);
}

.map-container {
  width: 100%;
  height: 100%;
  background: var(--bg-elevated);
  z-index: 1;
}

/* Wind Canvas Overlay */
.wind-canvas-inline {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.wind-canvas-inline.active {
  opacity: 1;
}

/* Layer Filter Buttons */
.map-filters {
  display: flex;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-4);
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.map-filters::-webkit-scrollbar {
  display: none;
}

.map-filter {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-elevated);
  color: var(--text-secondary);
  font-size: 0.8125rem;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.map-filter svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.map-filter:hover {
  background: var(--bg-surface);
  border-color: var(--accent);
  color: var(--accent);
}

.map-filter.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.map-filter.active svg {
  stroke: #fff;
}

/* Wind Direction Indicator - White Rectangle Style */
.wind-indicator {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 25;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 8px 12px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.wind-arrow {
  width: 20px;
  height: 20px;
  color: #0EA5E9;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.wind-arrow svg {
  width: 100%;
  height: 100%;
}

.wind-info {
  display: flex;
  align-items: baseline;
  gap: 6px;
  line-height: 1;
}

.wind-info .wind-dir {
  font-size: 14px;
  font-weight: 600;
  color: #1e293b;
}

.wind-info .wind-deg {
  font-size: 12px;
  font-weight: 500;
  color: #64748b;
  font-variant-numeric: tabular-nums;
}

/* Inline Map Legend */
.map-legend-inline {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 4px;
  padding: 8px 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  z-index: 20;
  min-width: 120px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  pointer-events: none;
}

.map-legend-inline.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.legend-inline-title {
  font-size: 11px;
  font-weight: 600;
  color: #1e293b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.legend-inline-gradient {
  height: 8px;
  border-radius: 4px;
  margin-bottom: 4px;
}

.legend-inline-labels {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: #64748b;
}

/* Inline Map Controls */
.map-inline-controls {
  position: absolute;
  bottom: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  z-index: 20;
}

.map-inline-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  background: var(--bg-surface);
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: all 0.2s ease;
}

.map-inline-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.map-inline-btn:hover {
  background: var(--accent);
  color: #fff;
}

.map-inline-btn:active {
  transform: scale(0.95);
}

/* Fullscreen Map Link */
.map-fullscreen-link {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  font-size: 0.75rem;
  text-decoration: none;
  box-shadow: var(--shadow-md);
  z-index: 20;
  transition: all 0.2s ease;
}

.map-fullscreen-link svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.map-fullscreen-link:hover {
  background: var(--accent);
  color: #fff;
}

/* Map Loading State */
.map-loading-inline {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-elevated);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  z-index: 30;
  transition: opacity 0.3s ease;
}

.map-loading-inline.hidden {
  opacity: 0;
  pointer-events: none;
}

.map-loading-spinner {
  width: 32px;
  height: 32px;
  border: 3px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Map Toast Notifications */
.map-toast-inline {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--bg-surface);
  color: var(--text-primary);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  font-size: 0.8125rem;
  z-index: 100;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
}

.map-toast-inline.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Mobile Responsive */
@media (max-width: 640px) {
  .map-wrapper {
    height: 350px;
  }

  .map-filters {
    padding: var(--space-2) var(--space-3);
  }

  .map-filter {
    padding: var(--space-1) var(--space-2);
    font-size: 0.75rem;
  }

  .map-filter span {
    display: none;
  }

  .map-filter svg {
    width: 18px;
    height: 18px;
  }

  .map-legend-inline {
    bottom: 8px;
    left: 8px;
    min-width: 100px;
    padding: 6px 10px;
  }

  .map-inline-controls {
    bottom: 8px;
    right: 8px;
  }

  .map-inline-btn {
    width: 32px;
    height: 32px;
  }

  .wind-indicator {
    top: 8px;
    left: 8px;
    padding: 6px 10px;
    gap: 6px;
  }

  .wind-arrow {
    width: 16px;
    height: 16px;
  }

  .wind-info .wind-dir {
    font-size: 12px;
  }

  .wind-info .wind-deg {
    font-size: 10px;
  }
}

/* ================= QUESTS (Fun mode) ================= */
.quest {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4);
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-2);
  transition: all 0.2s ease;
}

.quest:hover {
  background: var(--accent-muted);
}

.quest.completed {
  background: var(--accent-light);
}

.quest-check {
  width: 24px;
  height: 24px;
  border: 2px solid var(--border);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.quest.completed .quest-check {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}

.quest-text {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.quest.completed .quest-text {
  color: var(--accent);
}

/* ================= ACHIEVEMENTS ================= */
.achievements {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3);
}

@media (max-width: 480px) {
  .achievements {
    grid-template-columns: repeat(2, 1fr);
  }
}

.achievement {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--space-4);
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
  text-align: center;
}

.achievement.locked {
  opacity: 0.5;
}

.achievement-icon {
  font-size: 1.5rem;
  margin-bottom: var(--space-2);
}

.achievement-name {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

/* ================= ANIMATIONS ================= */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse {
  0%, 100% { opacity: 0.8; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

@keyframes fall {
  0% { transform: translateY(-8px); opacity: 0; }
  20% { opacity: 1; }
  100% { transform: translateY(8px); opacity: 0; }
}

.animate-fade { animation: fadeIn 0.3s ease; }
.animate-slide { animation: slideUp 0.4s ease; }
.animate-scale { animation: scaleIn 0.3s ease; }

.stagger-children > * {
  animation: slideUp 0.4s ease backwards;
}
.stagger-children > *:nth-child(1) { animation-delay: 0.05s; }
.stagger-children > *:nth-child(2) { animation-delay: 0.1s; }
.stagger-children > *:nth-child(3) { animation-delay: 0.15s; }
.stagger-children > *:nth-child(4) { animation-delay: 0.2s; }

.hover-lift {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.hover-lift:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Rain drops animation */
.drop { animation: fall 1s ease-in infinite; }
.drop:nth-child(1) { animation-delay: 0s; }
.drop:nth-child(2) { animation-delay: 0.2s; }
.drop:nth-child(3) { animation-delay: 0.4s; }
.drop:nth-child(4) { animation-delay: 0.6s; }

/* ================= LOADING STATES ================= */
.skeleton {
  background: linear-gradient(90deg,
    var(--bg-elevated) 0%,
    var(--border) 50%,
    var(--bg-elevated) 100%
  );
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.5s ease-in-out infinite;
  border-radius: var(--radius-sm);
}

@keyframes skeleton-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.skeleton-text {
  height: 1em;
  margin: var(--space-2) 0;
}

.skeleton-circle {
  border-radius: 50%;
}

/* ================= ERROR STATES ================= */
.error-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-10);
  text-align: center;
}

.error-icon {
  width: 64px;
  height: 64px;
  color: var(--danger);
  margin-bottom: var(--space-4);
}

.error-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}

.error-message {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-5);
}

/* ================= SECTIONS ================= */
.section {
  padding: var(--space-6) 0;
}

.section-title {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-4);
}

/* ================= UTILITIES ================= */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.hidden { display: none !important; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: var(--space-1); }
.gap-2 { gap: var(--space-2); }
.gap-3 { gap: var(--space-3); }
.gap-4 { gap: var(--space-4); }
.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.text-muted { color: var(--text-muted); }
.w-full { width: 100%; }

/* ================= DONATION BANNER ================= */
.donation-banner {
  background: var(--accent-muted);
  border: 1px solid var(--accent);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  margin: var(--space-4);
  text-align: center;
}

.donation-banner p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-3);
}

.donation-banner strong {
  color: var(--text-primary);
}

/* ================= ONBOARDING ================= */
.onboarding {
  position: fixed;
  inset: 0;
  background: var(--bg-base);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-6);
  text-align: center;
}

.onboarding-slide {
  max-width: 400px;
}

.onboarding-mascot {
  width: 120px;
  height: 120px;
  margin-bottom: var(--space-6);
}

.onboarding-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-3);
}

.onboarding-text {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-6);
}

.onboarding-dots {
  display: flex;
  gap: var(--space-2);
  justify-content: center;
  margin-bottom: var(--space-6);
}

.onboarding-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
}

.onboarding-dot.active {
  background: var(--accent);
}

/* ================= PRINT STYLES ================= */
@media print {
  .header,
  .bottom-nav,
  .mode-switcher,
  .donation-banner {
    display: none !important;
  }

  .app {
    padding-bottom: 0;
  }

  body {
    background: white;
    color: black;
  }
}

/* ========== STATION MARKERS (meteo.lt AMS) ========== */
.station-marker-container {
  background: transparent !important;
  border: none !important;
}

.station-marker {
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid currentColor;
  transition: transform 0.2s ease;
  cursor: pointer;
}

.station-marker:hover {
  transform: scale(1.2);
  z-index: 1000 !important;
}

.station-temp {
  font-size: 8px;
  font-weight: 700;
  line-height: 1;
}

/* Temperature marker colors set via inline styles matching legend gradient */
