:root {
  color-scheme: light dark;
  --bg: #f6f3ee;
  --ink: #19201c;
  --muted: #647067;
  --line: rgba(25, 32, 28, 0.16);
  --panel: rgba(255, 255, 255, 0.74);
  --panel-strong: #ffffff;
  --accent: #247c5f;
  --accent-dark: #1f6d54;
  --accent-2: #b66b27;
  --danger: #a43d32;
  --shadow: 0 20px 70px rgba(27, 38, 32, 0.16);
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(135deg, rgba(36, 124, 95, 0.13), transparent 36%),
    linear-gradient(225deg, rgba(182, 107, 39, 0.12), transparent 34%),
    var(--bg);
  color: var(--ink);
}

a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }

.page {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 24px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 44px;
  margin-bottom: 28px;
}

.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 750; }

.mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-strong);
  color: var(--accent);
  box-shadow: 0 8px 24px rgba(36, 124, 95, 0.12);
}

.nav { display: flex; min-width: 0; align-items: center; gap: 8px; color: var(--muted); font-size: 0.93rem; }
.nav a { padding: 10px 12px; border-radius: 8px; }
.nav a:hover, .nav a[aria-current="page"], .link-card:hover { background: rgba(255, 255, 255, 0.72); color: var(--ink); }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(320px, 1.02fr);
  gap: 34px;
  align-items: center;
  min-height: min(680px, calc(100vh - 138px));
  padding-bottom: 30px;
}

.hero-copy { min-width: 0; max-width: 620px; }
h1 { margin: 0; font-size: clamp(3.25rem, 6.5vw, 5.5rem); line-height: 0.9; }
.hero h1 { max-width: 100%; }

.intro {
  max-width: 56ch;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.06rem, 2vw, 1.22rem);
  line-height: 1.65;
}

.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

.button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-strong);
  color: var(--ink);
  font-weight: 720;
  box-shadow: 0 10px 24px rgba(27, 38, 32, 0.09);
  cursor: pointer;
}

.button:hover { border-color: var(--accent); color: var(--accent); }

.hero-media {
  position: relative;
  margin: 0;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background: #dde4dc;
  box-shadow: var(--shadow);
}

.hero-media img { display: block; width: 100%; height: 100%; min-height: 420px; object-fit: cover; }

.service-strip {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.mini-stat {
  min-width: 0;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  background: rgba(18, 25, 22, 0.72);
  color: #fff;
  backdrop-filter: blur(14px);
}

.mini-stat span { display: block; color: rgba(255, 255, 255, 0.68); font-size: 0.75rem; }
.mini-stat strong { display: block; margin-top: 4px; overflow: hidden; font-size: 0.98rem; text-overflow: ellipsis; white-space: nowrap; }

.sections { display: grid; min-width: 0; gap: 18px; padding: 18px 0 34px; }

.panel {
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 12px 34px rgba(27, 38, 32, 0.08);
}

.panel h2 { margin: 0 0 16px; font-size: 1rem; }

.page-intro { padding: 44px 0 24px; }
.page-intro h1 { font-size: clamp(2.5rem, 7vw, 5.5rem); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 750;
  text-transform: uppercase;
}

.status-dot { width: 9px; height: 9px; border-radius: 50%; background: #2fb47c; box-shadow: 0 0 0 5px rgba(47, 180, 124, 0.15); }

.joke-panel { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 16px; align-items: start; }
.joke-mark { display: grid; width: 44px; height: 44px; place-items: center; border-radius: 8px; background: rgba(182, 107, 39, 0.13); color: var(--accent-2); font-size: 1.3rem; }
.joke-copy h2 { margin-bottom: 8px; }
.joke-copy p { margin: 0; line-height: 1.6; }
.joke-answer { margin-top: 8px !important; color: var(--accent); font-weight: 720; }
.source-note { margin-top: 10px !important; color: var(--muted); font-size: 0.78rem; }

.services-section { padding: 24px 0 10px; border-top: 1px solid var(--line); }
.services-section h2 { margin: 0 0 14px; font-size: 1rem; }
.link-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }

.link-card {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 62px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.48);
}

.icon { display: grid; width: 36px; height: 36px; place-items: center; border-radius: 8px; background: rgba(36, 124, 95, 0.13); color: var(--accent); }
.link-card strong, .link-card span { display: block; overflow-wrap: anywhere; }
.link-card span { margin-top: 2px; color: var(--muted); font-size: 0.91rem; }
.service-end, .service-state { display: inline-flex !important; align-items: center; }
.service-end { gap: 10px; }
.service-state { gap: 6px; font-size: 0.76rem !important; white-space: nowrap; }
.service-state::before { width: 8px; height: 8px; border-radius: 50%; background: #9aa39c; content: ""; }
.service-state[data-state="available"]::before { background: #2fb47c; box-shadow: 0 0 0 3px rgba(47, 180, 124, 0.13); }
.service-state[data-state="unavailable"]::before { background: #c45b4d; }
.arrow { color: var(--muted); }

.weather-heading { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; align-items: center; margin-bottom: 16px; }
.weather-heading h2 { margin: 0; }
.weather-controls { display: flex; flex-wrap: wrap; gap: 8px; }
.location-search { display: flex; min-width: 0; }

.location-search input {
  width: 190px;
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-right: 0;
  border-radius: 8px 0 0 8px;
  background: var(--panel-strong);
  color: var(--ink);
  font-size: 0.82rem;
}

.location-search input:focus { position: relative; outline: 2px solid var(--accent); outline-offset: -2px; }
.search-button { display: grid; width: 36px; min-height: 34px; place-items: center; border: 1px solid var(--accent); border-radius: 0 8px 8px 0; background: var(--accent); color: #fff; cursor: pointer; }
.search-button:hover { background: var(--accent-dark); }
.search-button:disabled, .location-button:disabled, .button:disabled { cursor: wait; opacity: 0.65; }

.location-button, .month-button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-strong);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 720;
  cursor: pointer;
}

.location-button:hover, .month-button:hover { border-color: var(--accent); color: var(--accent); }
.weather-notice:empty, .alerts:empty { display: none; }
.weather-notice { margin: -6px 0 12px; color: var(--muted); font-size: 0.82rem; line-height: 1.45; }

.alerts { display: grid; gap: 8px; margin-bottom: 16px; }
.alert-card { padding: 14px 16px; border: 1px solid rgba(164, 61, 50, 0.3); border-radius: 8px; background: rgba(164, 61, 50, 0.09); }
.alert-card strong { display: block; color: var(--danger); }
.alert-card span { display: block; margin-top: 4px; color: var(--muted); font-size: 0.82rem; line-height: 1.45; }
.alert-card a { color: var(--danger); font-size: 0.78rem; font-weight: 720; }

.weather-summary { display: grid; grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.28fr); gap: 28px; align-items: center; }
.weather-current { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 18px; align-items: center; min-height: 98px; }
.weather-symbol { display: grid; width: 72px; height: 72px; place-items: center; border-radius: 8px; background: rgba(182, 107, 39, 0.13); color: var(--accent-2); font-size: 2.3rem; }
.weather-reading { display: flex; flex-wrap: wrap; gap: 4px 14px; align-items: baseline; }
.weather-temp { font-size: 2.65rem; font-weight: 780; line-height: 1; }
.weather-condition { font-weight: 720; }
.weather-meta, .weather-status { margin: 7px 0 0; color: var(--muted); font-size: 0.9rem; line-height: 1.5; }
.weather-meta a { color: var(--accent); font-weight: 700; }
.forecast { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; padding-left: 28px; border-left: 1px solid var(--line); }
.forecast-day span, .forecast-day strong { display: block; }
.forecast-day span { color: var(--muted); font-size: 0.78rem; }
.forecast-day strong { margin-top: 4px; font-size: 0.95rem; }
.weather-detail { min-width: 0; margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--line); }
.weather-subheading { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 12px; }
.weather-subheading h3 { margin: 0; font-size: 0.9rem; }

.hourly-forecast { display: grid; width: 100%; min-width: 0; grid-auto-columns: minmax(82px, 1fr); grid-auto-flow: column; overflow-x: auto; scrollbar-width: thin; }
.hourly-item { min-width: 0; padding: 4px 12px 6px; border-right: 1px solid var(--line); text-align: center; }
.hourly-item:first-child { padding-left: 0; }
.hourly-item:last-child { border-right: 0; }
.hourly-item span, .hourly-item strong { display: block; }
.hourly-time, .hourly-rain { color: var(--muted); font-size: 0.75rem; }
.hourly-icon { min-height: 31px; margin: 7px 0 3px; color: var(--accent-2); font-size: 1.35rem; }
.hourly-temp { font-size: 0.95rem; }
.hourly-rain { margin-top: 3px; }

.air-quality-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.air-quality-card { min-width: 0; padding: 16px; border: 1px solid var(--line); border-radius: 8px; background: rgba(255, 255, 255, 0.38); }
.air-quality-card span, .air-quality-card strong { display: block; }
.air-quality-card span { color: var(--muted); font-size: 0.78rem; }
.air-quality-card strong { margin-top: 5px; font-size: 1.15rem; }

.fishing-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.fishing-card { min-width: 0; padding: 16px; border: 1px solid var(--line); border-radius: 8px; background: rgba(255, 255, 255, 0.38); }
.fishing-card span, .fishing-card strong, .fishing-card small { display: block; }
.fishing-card span { color: var(--muted); font-size: 0.78rem; }
.fishing-card strong { margin-top: 5px; font-size: 1rem; line-height: 1.35; overflow-wrap: anywhere; }
.fishing-card small { margin-top: 6px; color: var(--muted); font-size: 0.75rem; line-height: 1.4; }
.fishing-rating strong { color: var(--accent); }
.marine-conditions { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); }
.marine-conditions .weather-subheading h4 { margin: 0; font-size: 0.86rem; }
.marine-conditions .weather-subheading span { color: var(--muted); font-size: 0.75rem; }

.radar-details { padding-bottom: 2px; }
.radar-summary { display: flex; align-items: center; justify-content: space-between; gap: 14px; cursor: pointer; list-style: none; }
.radar-summary::-webkit-details-marker { display: none; }
.radar-summary > span:first-child { font-size: 0.9rem; font-weight: 720; }
.radar-toggle { display: inline-flex; align-items: center; gap: 6px; color: var(--accent); font-size: 0.82rem; font-weight: 720; }
.radar-toggle svg { transition: transform 160ms ease; }
.radar-details[open] .radar-toggle svg { transform: rotate(180deg); }
.radar-content { margin-top: 14px; }
.radar-actions { margin-bottom: 10px; text-align: right; }
.radar-actions a { color: var(--accent); font-size: 0.82rem; font-weight: 720; }
.radar-frame { position: relative; width: 100%; overflow: hidden; border: 1px solid var(--line); border-radius: 8px; aspect-ratio: 16 / 7; background: #dce4df; }
.radar-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.privacy-note { display: flex; gap: 8px; align-items: flex-start; margin: 14px 0 0; padding-top: 14px; border-top: 1px solid var(--line); color: var(--muted); font-size: 0.78rem; line-height: 1.5; }
.privacy-note svg { flex: 0 0 auto; margin-top: 1px; }

.access-panel { display: grid; max-width: 720px; grid-template-columns: auto minmax(0, 1fr); gap: 18px; align-items: start; margin: 12px 0 52px; }
.access-mark { display: grid; width: 48px; height: 48px; place-items: center; border-radius: 8px; background: rgba(36, 124, 95, 0.13); color: var(--accent); }
.access-panel h2 { margin-bottom: 7px; font-size: 1.2rem; }
.access-panel p { margin: 0; color: var(--muted); line-height: 1.55; }
.access-form { margin-top: 18px; }
.access-form label { display: block; margin-bottom: 7px; color: var(--muted); font-size: 0.78rem; font-weight: 720; }
.access-row { display: flex; gap: 9px; }
.access-row input { min-width: 0; flex: 1; padding: 0 12px; border: 1px solid var(--line); border-radius: 8px; background: var(--panel-strong); color: var(--ink); }
.access-row input:focus { outline: 2px solid var(--accent); outline-offset: 1px; }
.form-message { min-height: 1.5em; margin-top: 10px !important; color: var(--danger) !important; font-size: 0.82rem; }

.air-map-panel { padding-bottom: 20px; }
.air-toolbar { display: flex; justify-content: space-between; gap: 16px; align-items: flex-start; margin-bottom: 16px; }
.air-toolbar h2 { margin-bottom: 0; font-size: 1rem; }
.air-toolbar .weather-notice { margin: 6px 0 0; }
.air-actions { display: flex; min-width: 0; flex-wrap: wrap; justify-content: flex-end; gap: 8px; }
.radius-control { display: inline-flex; min-height: 34px; align-items: center; border: 1px solid var(--line); border-radius: 8px; background: var(--panel-strong); overflow: hidden; }
.radius-control > span { padding: 0 8px 0 10px; color: var(--muted); font-size: 0.75rem; font-weight: 720; }
.radius-control select { height: 100%; padding: 0 26px 0 8px; border: 0; border-left: 1px solid var(--line); background: var(--panel-strong); color: var(--ink); cursor: pointer; }
.air-stats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; margin-bottom: 14px; }
.air-stats > div { min-width: 0; padding: 12px 14px; border: 1px solid var(--line); border-radius: 8px; background: rgba(255, 255, 255, 0.38); }
.air-stats span, .air-stats strong { display: block; overflow-wrap: anywhere; }
.air-stats span { color: var(--muted); font-size: 0.75rem; }
.air-stats strong { margin-top: 4px; font-size: 0.95rem; }
.air-stats small { display: block; margin-top: 6px; color: var(--muted); font-size: 0.72rem; line-height: 1.35; }
.provider-status::before { display: inline-block; width: 8px; height: 8px; margin-right: 7px; border-radius: 50%; background: #9aa39c; content: ""; }
.provider-status[data-state="authenticated"]::before { background: #2fb47c; box-shadow: 0 0 0 3px rgba(47, 180, 124, 0.13); }
.provider-status[data-state="fallback"]::before { background: var(--accent-2); }
.air-map { width: 100%; height: clamp(400px, 62vh, 620px); overflow: hidden; border: 1px solid var(--line); border-radius: 8px; background: #dce4df; }
.air-map .leaflet-control-attribution { font-size: 10px; }
.aircraft-icon-shell { border: 0; background: transparent; }
.aircraft-icon { display: grid; width: 30px; height: 30px; place-items: center; transform: rotate(calc(var(--aircraft-heading) - 45deg)); border: 2px solid rgba(255, 255, 255, 0.9); border-radius: 50%; background: var(--accent); color: #fff; font-size: 17px; line-height: 1; box-shadow: 0 4px 14px rgba(25, 32, 28, 0.36); }
.aircraft-icon.on-ground { background: var(--accent-2); }
.air-popup { display: grid; min-width: 190px; gap: 4px; color: #19201c; line-height: 1.35; }
.air-popup strong { font-size: 0.95rem; }
.air-popup span, .air-popup small { color: #526057; font-size: 0.76rem; }
.nearby-aircraft { margin-top: 18px; }
.nearby-aircraft .weather-subheading h2 { margin: 0; }
.nearby-aircraft .weather-subheading > span { color: var(--muted); font-size: 0.78rem; }
.aircraft-list { display: grid; }
.aircraft-row { display: grid; grid-template-columns: 38px minmax(0, 1fr) minmax(90px, auto); gap: 12px; align-items: center; padding: 12px 2px; border-top: 1px solid var(--line); }
.aircraft-row:first-child { border-top: 0; }
.aircraft-row-icon { display: grid; width: 34px; height: 34px; place-items: center; transform: rotate(calc(var(--aircraft-heading) - 45deg)); border-radius: 50%; background: rgba(36, 124, 95, 0.13); color: var(--accent); }
.aircraft-row div:last-child { text-align: right; }
.aircraft-row strong, .aircraft-row span { display: block; overflow-wrap: anywhere; }
.aircraft-row strong { font-size: 0.9rem; }
.aircraft-row span { margin-top: 3px; color: var(--muted); font-size: 0.76rem; }

.calendar-panel { padding: 24px; border: 1px solid var(--line); border-radius: 8px; background: var(--panel); box-shadow: 0 12px 34px rgba(27, 38, 32, 0.08); }
.calendar-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 18px; }
.calendar-toolbar h2 { margin: 0; font-size: clamp(1.25rem, 3vw, 1.8rem); }
.month-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.month-button { min-height: 38px; padding: 0 13px; }
.calendar-scroll { overflow-x: auto; padding-bottom: 3px; }
.calendar { display: grid; min-width: 720px; grid-template-columns: repeat(7, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.weekday { padding: 10px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); color: var(--muted); font-size: 0.75rem; font-weight: 750; text-align: center; text-transform: uppercase; }
.calendar-day { min-height: 116px; padding: 9px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255, 255, 255, 0.25); }
.calendar-day.outside { color: var(--muted); background: transparent; opacity: 0.55; }
.calendar-day.today { box-shadow: inset 0 0 0 2px var(--accent); }
.day-number { display: grid; width: 27px; height: 27px; place-items: center; margin-bottom: 6px; border-radius: 50%; font-size: 0.82rem; font-weight: 750; }
.today .day-number { background: var(--accent); color: #fff; }
.event { display: block; margin-top: 5px; padding: 5px 7px; border-radius: 6px; background: rgba(36, 124, 95, 0.13); color: var(--accent); font-size: 0.72rem; font-weight: 720; line-height: 1.25; }
.event.holiday { background: rgba(182, 107, 39, 0.14); color: var(--accent-2); }
.calendar-note { margin: 14px 0 0; color: var(--muted); font-size: 0.8rem; line-height: 1.5; }

footer { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; padding: 18px 0 0; border-top: 1px solid var(--line); color: var(--muted); font-size: 0.9rem; }

@media (max-width: 820px) {
  .page { width: min(100% - 24px, 680px); padding-top: 18px; }
  .topbar { align-items: flex-start; margin-bottom: 18px; }
  .nav { justify-content: flex-end; flex-wrap: wrap; }
  .nav a { padding: 8px 9px; }
  .hero { grid-template-columns: 1fr; gap: 26px; min-height: auto; }
  .hero-media, .hero-media img { min-height: 330px; }
  .weather-summary { grid-template-columns: 1fr; gap: 18px; }
  .forecast { padding-top: 18px; padding-left: 0; border-top: 1px solid var(--line); border-left: 0; }
  .radar-frame { aspect-ratio: 4 / 3; }
  .air-toolbar { flex-direction: column; }
  .air-actions { width: 100%; justify-content: flex-start; }
  .air-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .air-map { height: 500px; }
}

@media (max-width: 560px) {
  .page { width: calc(100% - 20px); }
  .topbar { display: grid; }
  .nav { display: grid; width: 100%; grid-template-columns: repeat(3, max-content); gap: 2px 6px; justify-content: flex-start; margin-left: -9px; font-size: 0.86rem; }
  .hero h1 { max-width: 100%; font-size: clamp(3rem, 14vw, 4.2rem); overflow-wrap: anywhere; }
  .actions { display: grid; }
  .button { justify-content: center; }
  .hero-media, .hero-media img { min-height: 270px; }
  .service-strip { grid-template-columns: 1fr; }
  .mini-stat:nth-child(2) { display: none; }
  .joke-panel { grid-template-columns: 1fr; }
  .link-grid, .air-quality-grid, .fishing-grid { grid-template-columns: 1fr; }
  .weather-heading, .weather-controls { align-items: stretch; flex-direction: column; }
  .location-search input { width: auto; min-width: 0; flex: 1; }
  .access-panel { grid-template-columns: 1fr; }
  .access-row { align-items: stretch; flex-direction: column; }
  .access-row input { min-height: 44px; }
  .air-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .air-actions .location-search { grid-column: 1 / -1; }
  .air-actions .location-button, .air-actions .radius-control { justify-content: center; }
  .air-stats { grid-template-columns: 1fr; }
  .air-map { height: 430px; }
  .aircraft-row { grid-template-columns: 34px minmax(0, 1fr); }
  .aircraft-row div:last-child { grid-column: 2; text-align: left; }
  .calendar-panel { padding: 16px; }
  .calendar-toolbar { align-items: flex-start; flex-direction: column; }
}

@media (prefers-color-scheme: dark) {
  :root { --bg: #151915; --ink: #eef3ed; --muted: #aab5ab; --line: rgba(238, 243, 237, 0.16); --panel: rgba(31, 38, 33, 0.72); --panel-strong: #202820; --danger: #ff958a; }
  .nav a:hover, .nav a[aria-current="page"], .link-card:hover { background: rgba(255, 255, 255, 0.08); }
  .link-card, .air-quality-card, .fishing-card, .air-stats > div, .calendar-day { background: rgba(255, 255, 255, 0.04); }
}
