/* =====================================================
   SkyCast — Dynamic Weather Website
   Design: Immersive Glassmorphism + Weather Themes
   Fonts: Bricolage Grotesque + DM Serif Display
   ===================================================== */

/* ── THEME VARIABLES (weather-reactive) ── */
:root {
  --accent:       #60CFFF;
  --accent2:      #A78BFA;
  --bg-from:      #0A1628;
  --bg-to:        #0D2137;
  --glass-bg:     rgba(255,255,255,0.07);
  --glass-border: rgba(255,255,255,0.12);
  --glass-hover:  rgba(255,255,255,0.11);
  --text-1:       #F0F6FF;
  --text-2:       rgba(240,246,255,0.6);
  --text-3:       rgba(240,246,255,0.35);
  --shadow:       0 8px 40px rgba(0,0,0,0.35);
  --glow:         0 0 40px rgba(96,207,255,0.15);
  --radius-sm:    10px;
  --radius-md:    18px;
  --radius-lg:    26px;
  --radius-xl:    36px;
  --font-display: 'DM Serif Display', serif;
  --font-body:    'Bricolage Grotesque', sans-serif;
  --transition:   all 0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ── WEATHER THEMES ── */
[data-theme="clear-day"] {
  --accent: #FFD060; --accent2: #FF8C42;
  --bg-from: #0A1A3A; --bg-to: #1A3A6A;
  --glow: 0 0 60px rgba(255,208,96,0.12);
}
[data-theme="clear-night"] {
  --accent: #A78BFA; --accent2: #60CFFF;
  --bg-from: #050A1A; --bg-to: #0A1230;
  --glow: 0 0 60px rgba(167,139,250,0.12);
}
[data-theme="clouds"] {
  --accent: #94A3B8; --accent2: #CBD5E1;
  --bg-from: #1A2030; --bg-to: #2A3040;
  --glow: 0 0 40px rgba(148,163,184,0.1);
}
[data-theme="rain"] {
  --accent: #60CFFF; --accent2: #3B82F6;
  --bg-from: #0A1520; --bg-to: #0F2035;
  --glow: 0 0 50px rgba(96,207,255,0.15);
}
[data-theme="thunderstorm"] {
  --accent: #C084FC; --accent2: #818CF8;
  --bg-from: #080A18; --bg-to: #120A28;
  --glow: 0 0 60px rgba(192,132,252,0.2);
}
[data-theme="snow"] {
  --accent: #E0F2FE; --accent2: #BAE6FD;
  --bg-from: #0F1A2A; --bg-to: #1A2A3A;
  --glow: 0 0 50px rgba(224,242,254,0.1);
}
[data-theme="mist"] {
  --accent: #94A3B8; --accent2: #64748B;
  --bg-from: #141820; --bg-to: #1E2430;
  --glow: 0 0 40px rgba(148,163,184,0.08);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg-from);
  color: var(--text-1);
  min-height: 100vh;
  overflow-x: hidden;
  transition: background 1.5s ease, color 0.5s ease;
}

/* ── SCENE BACKGROUND ── */
.scene-bg {
  position: fixed; inset: 0; z-index: 0;
  overflow: hidden;
}
#weatherCanvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}
.scene-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, var(--bg-from) 0%, var(--bg-to) 100%);
  transition: background 2s ease;
}
.scene-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(255,255,255,0.03) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 80%, rgba(0,0,0,0.3) 0%, transparent 60%);
}

/* ── APP SHELL ── */
.app-shell {
  position: relative; z-index: 2;
  min-height: 100vh;
  display: flex; flex-direction: column;
}

/* ── TOP NAV ── */
.top-nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 2rem;
  background: rgba(0,0,0,0.2);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  position: sticky; top: 0; z-index: 100;
  gap: 1rem;
  flex-wrap: wrap;
}

.nav-brand {
  display: flex; align-items: center; gap: 0.6rem;
  flex-shrink: 0;
}
.brand-dot {
  width: 10px; height: 10px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--accent);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.7; }
}
.brand-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text-1);
  letter-spacing: -0.01em;
}

.nav-center {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.85rem; font-weight: 500;
  color: var(--text-2);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 6px 14px; border-radius: 999px;
}
.nav-center i { color: var(--accent); }

.nav-actions {
  display: flex; align-items: center; gap: 0.75rem;
  flex-shrink: 0;
}
.live-dt {
  font-size: 0.8rem; font-weight: 500;
  color: var(--text-2); letter-spacing: 0.03em;
}
.pill-btn {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-1);
  font-family: var(--font-body);
  font-size: 0.8rem; font-weight: 600;
  padding: 7px 16px; border-radius: 999px;
  cursor: pointer; transition: var(--transition);
  letter-spacing: 0.04em;
}
.pill-btn:hover {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(96,207,255,0.3);
}
.icon-btn {
  width: 36px; height: 36px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--accent);
  border-radius: var(--radius-sm);
  cursor: pointer; transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.icon-btn:hover {
  background: var(--accent);
  color: #000;
  box-shadow: 0 0 20px rgba(96,207,255,0.3);
}

/* ── SEARCH ZONE ── */
.search-zone {
  padding: 1.5rem 2rem 0.5rem;
  max-width: 700px; margin: 0 auto; width: 100%;
  position: relative;
}
.search-pill {
  display: flex; align-items: center; gap: 0.75rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 0.6rem 0.6rem 0.6rem 1.25rem;
  transition: var(--transition);
}
.search-pill:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(96,207,255,0.1), var(--glow);
}
.search-pill > i { color: var(--text-3); font-size: 1rem; flex-shrink: 0; }
.search-pill input {
  flex: 1; background: transparent; border: none; outline: none;
  color: var(--text-1); font-family: var(--font-body);
  font-size: 0.95rem; font-weight: 400;
}
.search-pill input::placeholder { color: var(--text-3); }
.search-pill button {
  background: var(--accent); border: none;
  color: #000; width: 38px; height: 38px;
  border-radius: 999px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; transition: var(--transition); flex-shrink: 0;
}
.search-pill button:hover { transform: scale(1.1); box-shadow: 0 0 20px rgba(96,207,255,0.4); }

.autocomplete-box {
  position: absolute; top: calc(100% - 4px);
  left: 2rem; right: 2rem;
  background: rgba(10,20,40,0.97);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  overflow: hidden; z-index: 300;
  display: none;
  box-shadow: var(--shadow);
}
.ac-item {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  cursor: pointer; transition: var(--transition);
  font-size: 0.9rem; color: var(--text-2);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.ac-item:last-child { border-bottom: none; }
.ac-item:hover { background: rgba(96,207,255,0.08); color: var(--accent); }
.ac-item i { color: var(--text-3); }

/* ── STATE SCREENS ── */
.state-screen {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 3rem 2rem; text-align: center;
  min-height: 60vh;
}
.state-icon { font-size: 3.5rem; margin-bottom: 1rem; }
.state-label {
  font-size: 1rem; color: var(--text-2);
  letter-spacing: 0.05em; margin-top: 1rem;
}

/* Loader */
.loader-orb {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,0.1);
  border-top-color: var(--accent);
  animation: spin 0.9s linear infinite;
  box-shadow: 0 0 30px rgba(96,207,255,0.2);
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Welcome */
.welcome-hero { max-width: 560px; }
.welcome-orb {
  font-size: 5rem; margin-bottom: 1.5rem;
  display: inline-block;
  animation: float 4s ease-in-out infinite;
  filter: drop-shadow(0 0 30px rgba(255,208,96,0.4));
}
@keyframes float {
  0%,100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(-14px) rotate(3deg); }
}
.welcome-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.15; margin-bottom: 1rem;
  color: var(--text-1);
}
.welcome-title em { color: var(--accent); font-style: italic; }
.welcome-sub {
  font-size: 1rem; color: var(--text-2);
  line-height: 1.7; margin-bottom: 2rem;
}
.welcome-chips {
  display: flex; flex-wrap: wrap; gap: 0.6rem;
  justify-content: center; margin-bottom: 2rem;
}
.welcome-chips span {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--accent);
  background: rgba(96,207,255,0.08);
  border: 1px solid rgba(96,207,255,0.2);
  padding: 5px 14px; border-radius: 999px;
}
.cta-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--accent); color: #000;
  font-family: var(--font-body); font-weight: 700;
  font-size: 0.95rem; letter-spacing: 0.04em;
  padding: 12px 28px; border-radius: 999px;
  border: none; cursor: pointer; transition: var(--transition);
  box-shadow: 0 0 30px rgba(96,207,255,0.3);
}
.cta-btn:hover { transform: translateY(-2px) scale(1.03); box-shadow: 0 0 50px rgba(96,207,255,0.5); }

/* ── GLASS CARD ── */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.glass-card::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, transparent 50%);
  pointer-events: none;
}
.glass-card:hover {
  background: var(--glass-hover);
  border-color: rgba(255,255,255,0.18);
  box-shadow: var(--glow);
  transform: translateY(-2px);
}

/* ── DASHBOARD ── */
.weather-dashboard {
  padding: 1.5rem 2rem 0;
  display: flex; flex-direction: column; gap: 1.5rem;
  animation: fadeUp 0.5s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── HERO ROW ── */
.hero-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
@media (max-width: 900px) { .hero-row { grid-template-columns: 1fr; } }

/* Hero Temp Card */
.hero-temp-card {
  background: linear-gradient(135deg,
    rgba(255,255,255,0.08) 0%,
    rgba(255,255,255,0.04) 100%);
  border-color: rgba(255,255,255,0.15);
}
.htc-top {
  display: flex; justify-content: space-between;
  align-items: flex-start; margin-bottom: 0.75rem;
}
.htc-city {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  line-height: 1.1; color: var(--text-1);
}
.htc-country {
  font-size: 0.85rem; color: var(--text-2);
  font-weight: 500; margin-top: 0.2rem;
  letter-spacing: 0.05em;
}
.htc-date {
  font-size: 0.75rem; color: var(--text-3);
  margin-top: 0.2rem; letter-spacing: 0.06em;
}
.htc-icon {
  font-size: 4.5rem; line-height: 1;
  filter: drop-shadow(0 0 20px rgba(255,208,96,0.5));
  animation: float 5s ease-in-out infinite;
}
.htc-temp-row {
  display: flex; align-items: flex-start; gap: 0.2rem;
  margin: 0.25rem 0;
}
.htc-temp {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 10vw, 7.5rem);
  line-height: 1; letter-spacing: -0.04em;
  color: var(--text-1);
}
.htc-unit {
  font-size: 2rem; color: var(--text-2);
  font-weight: 300; margin-top: 0.8rem;
}
.htc-desc {
  font-size: 1rem; font-weight: 500;
  color: var(--accent); text-transform: capitalize;
  letter-spacing: 0.04em; margin-bottom: 0.75rem;
}
.htc-meta {
  display: flex; gap: 1.5rem;
  font-size: 0.85rem; color: var(--text-2);
  margin-bottom: 0.75rem;
}
.htc-meta strong { color: var(--text-1); }
.htc-meta i { color: var(--accent); margin-right: 0.3rem; }
.htc-refresh {
  font-size: 0.72rem; color: var(--text-3);
  letter-spacing: 0.05em;
}
.htc-refresh i { margin-right: 0.3rem; }

/* Hero Stats Grid */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
@media (max-width: 600px) { .hero-stats { grid-template-columns: repeat(2, 1fr); } }

.stat-tile {
  text-align: center; padding: 1.1rem 0.75rem;
}
.st-icon {
  font-size: 1.4rem; color: var(--accent);
  margin-bottom: 0.4rem;
}
.st-val {
  font-family: var(--font-display);
  font-size: 1.25rem; color: var(--text-1);
  line-height: 1.2;
}
.st-lbl {
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-3); margin-top: 0.2rem;
}
.st-bar {
  height: 3px; background: rgba(255,255,255,0.08);
  border-radius: 2px; margin-top: 0.5rem; overflow: hidden;
}
.st-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  border-radius: 2px; transition: width 1s ease;
}
.wind-compass {
  font-size: 1.1rem; color: var(--accent2);
  margin-top: 0.4rem; transition: transform 0.6s ease;
}

/* ── SECTION HEADERS ── */
.dash-section { display: flex; flex-direction: column; gap: 0.75rem; }
.section-hdr {
  display: flex; align-items: center;
  justify-content: space-between;
}
.section-title {
  font-size: 0.95rem; font-weight: 700;
  color: var(--text-1); letter-spacing: 0.03em;
  display: flex; align-items: center; gap: 0.5rem;
}
.section-title i { color: var(--accent); }
.section-badge {
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.15em; color: var(--accent2);
  background: rgba(167,139,250,0.1);
  border: 1px solid rgba(167,139,250,0.2);
  padding: 3px 10px; border-radius: 4px;
}

/* ── HOURLY FORECAST ── */
.hourly-wrapper {
  overflow-x: auto; padding-bottom: 0.5rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.1) transparent;
}
.hourly-wrapper::-webkit-scrollbar { height: 4px; }
.hourly-wrapper::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.1); border-radius: 2px;
}
.hourly-track {
  display: flex; gap: 0.75rem;
  padding: 0.25rem 0.1rem 0.5rem;
  min-width: max-content;
}
.h-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 1rem 1.1rem;
  text-align: center; min-width: 88px;
  transition: var(--transition); cursor: default;
  position: relative;
}
.h-card.now {
  border-color: var(--accent);
  background: rgba(96,207,255,0.08);
  box-shadow: 0 0 20px rgba(96,207,255,0.1);
}
.h-card:hover {
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-4px);
  box-shadow: var(--glow);
}
.h-time {
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.1em; color: var(--text-3);
  text-transform: uppercase; margin-bottom: 0.5rem;
}
.h-card.now .h-time { color: var(--accent); }
.h-icon { font-size: 1.7rem; margin-bottom: 0.4rem; }
.h-temp {
  font-family: var(--font-display);
  font-size: 1.05rem; color: var(--text-1);
}
.h-pop {
  font-size: 0.68rem; color: #74B9FF;
  margin-top: 0.25rem;
}

/* ── WEEKLY FORECAST ── */
.weekly-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.75rem;
}
@media (max-width: 900px) { .weekly-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 500px) { .weekly-grid { grid-template-columns: repeat(2, 1fr); } }

.w-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 1.1rem 0.75rem;
  text-align: center; transition: var(--transition);
}
.w-card:hover {
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-3px);
  box-shadow: var(--glow);
}
.w-day {
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.12em; color: var(--text-3);
  text-transform: uppercase; margin-bottom: 0.5rem;
}
.w-icon { font-size: 1.9rem; margin-bottom: 0.4rem; }
.w-desc {
  font-size: 0.65rem; color: var(--text-2);
  text-transform: capitalize; margin-bottom: 0.4rem;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.w-temps {
  display: flex; justify-content: center; gap: 0.4rem;
  font-size: 0.82rem; font-weight: 600;
}
.w-hi { color: #FF7675; }
.w-lo { color: #74B9FF; }
.w-pop { font-size: 0.65rem; color: #74B9FF; margin-top: 0.2rem; }

/* ── AIR QUALITY ── */
.aqi-pill {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; padding: 4px 12px;
  border-radius: 999px;
}
.aqi-good    { background: rgba(0,245,100,0.12); color: #00F564; border: 1px solid rgba(0,245,100,0.25); }
.aqi-fair    { background: rgba(255,215,0,0.12); color: #FFD700; border: 1px solid rgba(255,215,0,0.25); }
.aqi-moderate{ background: rgba(255,107,53,0.12); color: #FF6B35; border: 1px solid rgba(255,107,53,0.25); }
.aqi-poor    { background: rgba(255,60,172,0.12); color: #FF3CAC; border: 1px solid rgba(255,60,172,0.25); }
.aqi-hazardous{ background: rgba(180,0,0,0.15); color: #FF4444; border: 1px solid rgba(180,0,0,0.3); }

.aqi-gauge { margin: 0.5rem 0; }
.aqi-bar-track {
  height: 10px; border-radius: 5px;
  background: linear-gradient(90deg, #00F564, #FFD700, #FF6B35, #FF3CAC, #FF4444);
  position: relative; margin-bottom: 0.4rem;
}
.aqi-needle {
  position: absolute; top: 50%;
  transform: translate(-50%, -50%);
  width: 18px; height: 18px;
  background: white; border-radius: 50%;
  box-shadow: 0 0 10px rgba(255,255,255,0.6);
  transition: left 1s ease;
}
.aqi-labels {
  display: flex; justify-content: space-between;
  font-size: 0.62rem; color: var(--text-3);
  letter-spacing: 0.04em;
}
.aqi-components {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem;
}
.aqi-comp {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 0.5rem; text-align: center;
}
.aqi-comp-val {
  font-family: var(--font-display);
  font-size: 0.95rem; color: var(--text-1);
}
.aqi-comp-lbl {
  font-size: 0.6rem; color: var(--text-3);
  letter-spacing: 0.08em; text-transform: uppercase;
}

/* ── SUN ARC ── */
.sun-svg { width: 100%; height: auto; }
.sun-times-row {
  display: flex; justify-content: space-around;
  margin-top: 0.5rem;
}
.sun-time-item {
  display: flex; flex-direction: column;
  align-items: center; gap: 0.2rem;
}
.sun-time-item i { font-size: 1.3rem; }
.sun-time-item span {
  font-family: var(--font-display);
  font-size: 1rem; color: var(--text-1);
}
.sun-time-item small {
  font-size: 0.65rem; color: var(--text-3);
  letter-spacing: 0.08em; text-transform: uppercase;
}

/* ── EXTRA STATS ── */
.extra-stats-list { display: flex; flex-direction: column; gap: 0.5rem; }
.extra-stat-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.85rem;
}
.extra-stat-row:last-child { border-bottom: none; }
.esr-label { color: var(--text-2); display: flex; align-items: center; gap: 0.5rem; }
.esr-label i { color: var(--accent); font-size: 0.9rem; }
.esr-val { font-weight: 600; color: var(--text-1); }

/* ── FOOTER ── */
.dash-footer {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.5rem 0 2rem;
  font-size: 0.75rem; color: var(--text-3);
  border-top: 1px solid var(--glass-border);
  margin-top: 0.5rem;
}
.dash-footer a { color: var(--accent); text-decoration: none; }
.dash-footer a:hover { text-decoration: underline; }

/* ── ANIMATIONS ── */
.glass-card, .h-card, .w-card, .stat-tile {
  animation: fadeUp 0.4s ease both;
}
.stat-tile:nth-child(1) { animation-delay: 0.05s; }
.stat-tile:nth-child(2) { animation-delay: 0.1s; }
.stat-tile:nth-child(3) { animation-delay: 0.15s; }
.stat-tile:nth-child(4) { animation-delay: 0.2s; }
.stat-tile:nth-child(5) { animation-delay: 0.25s; }
.stat-tile:nth-child(6) { animation-delay: 0.3s; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.2); }

/* ── SELECTION ── */
::selection { background: rgba(96,207,255,0.2); color: var(--accent); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .top-nav { padding: 0.75rem 1rem; }
  .search-zone { padding: 1rem 1rem 0.5rem; }
  .weather-dashboard { padding: 1rem 1rem 0; }
  .live-dt { display: none; }
  .nav-center { display: none; }
}
@media (max-width: 480px) {
  .brand-text { font-size: 1.2rem; }
  .htc-temp { font-size: 4rem; }
}