:root {
  --bg: #08080a;
  --surface: #111316;
  --surface-soft: rgba(20, 20, 24, 0.9);
  --text: #f0f6fc;
  --text-muted: rgba(255, 255, 255, 0.56);
  --border: rgba(255, 255, 255, 0.11);
  --accent: #818cf8;
  --event: #ffb300;
  --club: #2e7bff;
  --live: #22c55e;
  --danger: #ff6b6b;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: inherit;
  -webkit-font-smoothing: antialiased;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

img {
  max-width: 100%;
}

[hidden] {
  display: none !important;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 9999;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: 10px;
  background: #fff;
  color: #111316;
  font-weight: 800;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

body > main {
  display: flex;
  flex-direction: column;
}

body.map-fullscreen-open {
  overflow: hidden;
  overscroll-behavior: none;
}

.radar-shell {
  position: relative;
  order: 2;
  isolation: isolate;
  width: 100%;
  height: clamp(420px, 62svh, 680px);
  min-height: 420px;
  overflow: hidden;
  background:
    radial-gradient(circle at 40% 45%, rgba(46, 123, 255, 0.08), transparent 36%),
    #121416;
}

.radar-shell.is-fullscreen {
  position: fixed;
  z-index: 2000;
  inset: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  min-height: 0;
}

.radar-map {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #121416;
}

.map-shade {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  pointer-events: none;
}

.map-shade--top {
  top: 0;
  height: 130px;
  background: linear-gradient(to bottom, rgba(4, 5, 8, 0.42), transparent);
}

.map-shade--bottom {
  bottom: 0;
  height: 150px;
  background: linear-gradient(to top, rgba(4, 5, 8, 0.35), transparent);
}

.map-open-overlay {
  position: absolute;
  z-index: 480;
  inset: 0;
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  border: 0;
  background:
    radial-gradient(circle at center, rgba(8, 8, 10, 0.08), rgba(8, 8, 10, 0.48)),
    transparent;
  color: #fff;
  cursor: pointer;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.map-open-overlay__content {
  display: grid;
  min-width: min(280px, calc(100% - 40px));
  place-items: center;
  gap: 7px;
  padding: 18px 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  background: rgba(8, 8, 10, 0.82);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: border-color 160ms ease, transform 160ms ease;
}

.map-open-overlay__icon {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 3px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, #2e7bff, #1755c7);
  box-shadow: 0 8px 24px rgba(46, 123, 255, 0.3);
}

.map-open-overlay__icon svg,
.map-close-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.map-open-overlay__content strong {
  font-size: 16px;
}

.map-open-overlay__content small {
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
}

.map-open-overlay:hover .map-open-overlay__content,
.map-open-overlay:focus-visible .map-open-overlay__content {
  border-color: rgba(46, 123, 255, 0.55);
  transform: translateY(-2px);
}

.radar-shell.is-fullscreen .map-open-overlay {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.map-close-button {
  position: absolute;
  z-index: 510;
  top: calc(22px + var(--safe-top));
  right: 22px;
  display: none;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  padding: 0 15px;
  border-radius: 999px;
  color: #fff;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
}

.radar-shell.is-fullscreen .map-close-button {
  display: flex;
}

.radar-shell:not(.is-fullscreen) .filter-controls,
.radar-shell:not(.is-fullscreen) .quick-actions,
.radar-shell:not(.is-fullscreen) .location-controls,
.radar-shell:not(.is-fullscreen) .map-count {
  opacity: 0;
  pointer-events: none;
}

.leaflet-container {
  background: #111316;
  font: inherit;
}

.leaflet-control-zoom {
  display: none;
}

.leaflet-control-attribution {
  margin: 0 6px 5px 0 !important;
  padding: 2px 5px !important;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.45) !important;
  color: rgba(255, 255, 255, 0.56) !important;
  font-size: 8px !important;
  backdrop-filter: blur(8px);
}

.leaflet-control-attribution a {
  color: rgba(255, 255, 255, 0.74);
}

.leaflet-div-icon,
.radar-leaflet-icon {
  border: 0;
  background: transparent;
}

.radar-marker {
  position: relative;
  width: 42px;
  height: 51px;
  transform-origin: 50% 92%;
  filter: drop-shadow(0 5px 6px rgba(0, 0, 0, 0.46));
  transition: transform 150ms ease, filter 150ms ease;
}

.radar-marker img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.radar-marker::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -2px;
  width: 13px;
  height: 5px;
  border-radius: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.34);
  filter: blur(2px);
  z-index: -1;
}

.radar-marker.is-selected {
  transform: scale(1.18) translateY(-2px);
  filter: drop-shadow(0 8px 9px rgba(0, 0, 0, 0.6));
}

.radar-flame-wrap {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 80px;
  height: 80px;
  pointer-events: none;
}

.radar-flame-animation {
  position: absolute;
  left: 50%;
  bottom: 10px;
  width: 80px;
  height: 80px;
  transform: translateX(-50%);
  pointer-events: none;
}

.user-location-marker {
  position: relative;
  width: 20px;
  height: 20px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: #2e7bff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.user-location-marker::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: rgba(46, 123, 255, 0.25);
  animation: user-pulse 1.8s ease-out infinite;
}

.filter-controls {
  position: absolute;
  z-index: 500;
  top: calc(var(--safe-top) + 2px);
  left: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border-radius: 18px;
}

.glass-control,
.glass-panel {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(8, 10, 15, 0.56);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
}

.glass-control {
  overflow: hidden;
}

.search-control {
  min-width: 0;
  flex: 1;
  height: 40px;
  border-radius: 12px;
}

.search-open-button,
.search-input-wrap {
  width: 100%;
  height: 100%;
  border: 0;
  background: rgba(255, 255, 255, 0.04);
}

.search-open-button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  font-weight: 650;
}

.search-open-button svg,
.search-input-wrap > svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: rgba(255, 255, 255, 0.56);
  stroke-width: 2;
  stroke-linecap: round;
}

.search-input-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 7px 0 12px;
}

.search-input-wrap input {
  min-width: 0;
  flex: 1;
  height: 100%;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  font-size: 14px;
  font-weight: 550;
}

.search-input-wrap input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.square-control,
.icon-button {
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--border);
  background: rgba(8, 10, 15, 0.56);
  cursor: pointer;
}

.square-control {
  position: relative;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-color: rgba(255, 255, 255, 0.18);
  border-radius: 12px;
}

.square-control svg,
.icon-button svg,
.seo-marker-button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: #fff;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.report-control svg {
  stroke: var(--danger);
}

.report-control .svg-fill {
  fill: var(--danger);
  stroke: none;
}

.filter-count {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border: 2px solid #0a0a0e;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 9px;
  font-weight: 900;
  line-height: 14px;
}

.square-control.is-active {
  border-color: #fff;
  background: #fff;
}

.square-control.is-active svg {
  stroke: #111316;
}

.quick-actions {
  position: absolute;
  z-index: 490;
  top: calc(var(--safe-top) + 58px);
  left: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}

.quick-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  cursor: pointer;
  font-size: 12px;
  font-weight: 550;
  letter-spacing: 0.2px;
  pointer-events: auto;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.quick-pill__trophy {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: var(--event);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.quick-pill--muted {
  color: rgba(255, 255, 255, 0.6);
}

.quick-pill--muted.is-active {
  color: #fff;
  background: rgba(0, 0, 0, 0.65);
  font-weight: 650;
}

.live-dot {
  position: relative;
  display: grid;
  place-items: center;
  width: 7px;
  height: 7px;
}

.live-dot::before,
.live-dot span {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  content: "";
}

.quick-pill.is-active .live-dot::before {
  background: var(--live);
  animation: live-pulse 1.6s ease-out infinite;
}

.quick-pill.is-active .live-dot span {
  width: 5px;
  height: 5px;
  background: var(--live);
}

.map-status {
  position: absolute;
  z-index: 480;
  top: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: calc(100% - 40px);
  padding: 11px 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  transform: translate(-50%, -50%);
  background: rgba(14, 15, 19, 0.9);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.36);
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 700;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.map-status.is-error {
  flex-wrap: wrap;
  justify-content: center;
  border-radius: 18px;
  color: #fff;
  text-align: center;
}

.map-status.is-error .spinner {
  display: none;
}

.map-status button,
.map-empty button {
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: #111316;
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
}

.map-status button {
  padding: 7px 10px;
}

.spinner {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 700ms linear infinite;
}

.map-empty {
  position: absolute;
  z-index: 470;
  top: 50%;
  left: 50%;
  display: grid;
  width: min(300px, calc(100% - 40px));
  gap: 7px;
  padding: 20px;
  border-radius: 18px;
  transform: translate(-50%, -50%);
  background: rgba(17, 19, 22, 0.88);
  text-align: center;
}

.map-empty strong {
  font-size: 15px;
}

.map-empty span {
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.45;
}

.map-empty button {
  justify-self: center;
  margin-top: 6px;
  padding: 9px 13px;
}

.marker-teaser {
  position: absolute;
  z-index: 510;
  right: 12px;
  bottom: calc(96px + var(--safe-bottom));
  left: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  background: rgba(20, 20, 24, 0.92);
  box-shadow: 0 7px 18px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(22px) saturate(120%);
  -webkit-backdrop-filter: blur(22px) saturate(120%);
  animation: teaser-in 200ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.marker-teaser__button {
  display: flex;
  width: 100%;
  align-items: stretch;
  gap: 12px;
  padding: 14px;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  text-align: left;
}

.marker-teaser__photo-wrap {
  position: relative;
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  align-self: center;
}

.marker-teaser__photo {
  display: block;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  object-fit: cover;
}

.hot-badge {
  position: absolute;
  top: -3px;
  right: -3px;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ff7a00;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
}

.hot-badge svg {
  width: 12px;
  height: 12px;
  fill: #fff;
}

.marker-teaser__content {
  display: grid;
  min-width: 0;
  flex: 1;
  align-content: center;
  gap: 9px;
}

.marker-teaser__title {
  overflow: hidden;
  color: var(--text);
  font-size: 16px;
  font-weight: 750;
  letter-spacing: 0.1px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.marker-teaser__divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.14);
}

.marker-teaser__stats {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.teaser-stat {
  display: grid;
  flex: 0 1 auto;
  text-align: center;
}

.teaser-stat strong {
  color: var(--text);
  font-size: 13px;
  font-weight: 750;
}

.teaser-stat small {
  margin-top: 1px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 10px;
  font-weight: 550;
}

.teaser-stat-divider {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.14);
}

.teaser-type {
  flex: 0 0 auto;
  padding: 5px 10px;
  border-radius: 8px;
  background: var(--event);
  color: #111316;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.35px;
}

.teaser-type.is-club {
  background: var(--club);
  color: #fff;
}

.location-controls {
  position: absolute;
  z-index: 460;
  bottom: calc(28px + var(--safe-bottom));
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  pointer-events: none;
}

.location-pill {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 24px;
  color: #e6eaf2;
  cursor: pointer;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.1px;
  pointer-events: auto;
}

.location-pill:disabled {
  cursor: wait;
  opacity: 0.52;
}

.person-icon {
  position: relative;
  display: grid;
  width: 17px;
  height: 17px;
  justify-items: center;
}

.person-icon__head {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--club);
}

.person-icon__body {
  width: 13px;
  height: 7px;
  margin-top: 1px;
  border-radius: 7px 7px 5px 5px;
  background: var(--club);
}

.center-icon {
  display: grid;
  width: 17px;
  height: 17px;
  place-items: center;
  border: 2px solid #ff8a00;
  border-radius: 50%;
}

.center-icon span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff8a00;
}

.map-count {
  position: absolute;
  z-index: 455;
  right: 8px;
  bottom: calc(8px + var(--safe-bottom));
  margin: 0;
  padding: 3px 7px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.44);
  color: rgba(255, 255, 255, 0.56);
  font-size: 9px;
  backdrop-filter: blur(8px);
}

.today-summary {
  position: relative;
  order: 1;
  background:
    radial-gradient(circle at 85% 8%, rgba(129, 140, 248, 0.12), transparent 28rem),
    radial-gradient(circle at 4% 35%, rgba(46, 123, 255, 0.1), transparent 28rem),
    #08080a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding: 76px 20px 100px;
}

.content-width {
  width: min(1080px, 100%);
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 11px;
  color: #a9b0ff;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.summary-heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
}

.summary-heading-row h1 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 6vw, 66px);
  font-weight: 850;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.summary-intro {
  max-width: 700px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.63);
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.65;
}

.app-jump-link {
  display: inline-flex;
  max-width: 440px;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  padding: 9px 12px 9px 9px;
  border: 1px solid rgba(255, 173, 0, 0.2);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.1), rgba(46, 123, 255, 0.08));
  color: #fff;
  text-decoration: none;
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.app-jump-link:hover {
  border-color: rgba(255, 173, 0, 0.48);
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.16), rgba(46, 123, 255, 0.12));
  transform: translateY(-2px);
}

.app-jump-link:focus-visible,
.app-primary-cta:focus-visible {
  outline: 3px solid rgba(255, 214, 10, 0.7);
  outline-offset: 3px;
}

.app-jump-link__icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: #111316;
}

.app-jump-link__icon img {
  width: 31px;
  height: 31px;
  object-fit: contain;
}

.app-jump-link > span:nth-child(2) {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.app-jump-link strong {
  font-size: 13px;
  line-height: 1.25;
}

.app-jump-link small {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.app-jump-link > svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-left: auto;
  fill: none;
  stroke: #ffd60a;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.activity-badge {
  display: flex;
  min-width: 220px;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-radius: 18px;
  background: rgba(34, 197, 94, 0.08);
}

.activity-badge__pulse {
  position: relative;
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--live);
}

.activity-badge__pulse::before {
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.22);
  content: "";
  animation: live-pulse 1.8s ease-out infinite;
}

.activity-badge span:last-child {
  display: grid;
  gap: 2px;
}

.activity-badge small {
  color: rgba(255, 255, 255, 0.45);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.activity-badge strong {
  color: #fff;
  font-size: 14px;
}

.activity-badge[data-level="CALM"] {
  border-color: rgba(46, 123, 255, 0.25);
  background: rgba(46, 123, 255, 0.08);
}

.activity-badge[data-level="CALM"] .activity-badge__pulse {
  background: var(--club);
}

.radar-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 48px 0 0;
}

.radar-stats > div {
  min-height: 118px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.035);
}

.radar-stat--events {
  border-color: rgba(255, 122, 0, 0.25) !important;
  background: linear-gradient(145deg, rgba(255, 122, 0, 0.12), rgba(255, 122, 0, 0.025)) !important;
}

.radar-stat--clubs {
  border-color: rgba(46, 123, 255, 0.25) !important;
  background: linear-gradient(145deg, rgba(46, 123, 255, 0.12), rgba(46, 123, 255, 0.025)) !important;
}

.radar-stat--today {
  border-color: rgba(255, 214, 10, 0.25) !important;
  background: linear-gradient(145deg, rgba(255, 214, 10, 0.12), rgba(255, 214, 10, 0.025)) !important;
}

.radar-stats dt {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-weight: 650;
}

.radar-stats dd {
  margin: 10px 0 0;
  color: #fff;
  font-size: 34px;
  font-weight: 850;
  letter-spacing: -0.04em;
}

.answer-card {
  margin-top: 18px;
  padding: 26px;
  border: 1px solid rgba(129, 140, 248, 0.16);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(129, 140, 248, 0.09), rgba(255, 255, 255, 0.025));
}

.answer-card h3,
.today-list-heading h3 {
  margin: 0;
  color: #fff;
  font-size: 23px;
}

.answer-card p {
  max-width: 820px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
}

.answer-card strong {
  color: #fff;
}

.answer-card .data-note {
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
}

.app-promo {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.72fr);
  align-items: center;
  gap: clamp(32px, 5vw, 76px);
  margin-top: 28px;
  padding: clamp(34px, 5vw, 64px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(24, 25, 30, 0.98), rgba(10, 11, 14, 0.98)),
    #0c0d10;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.26),
    inset 0 1px rgba(255, 255, 255, 0.04);
}

.app-promo::before {
  position: absolute;
  top: 0;
  right: 9%;
  left: 9%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 173, 0, 0.8), rgba(46, 123, 255, 0.75), transparent);
  content: "";
}

.app-promo__glow {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  filter: blur(85px);
  opacity: 0.16;
  pointer-events: none;
}

.app-promo__glow--orange {
  top: -190px;
  left: -130px;
  background: #ff7a00;
}

.app-promo__glow--blue {
  right: -150px;
  bottom: -180px;
  background: #2e7bff;
}

.app-promo__copy {
  position: relative;
  z-index: 1;
}

.app-promo__eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 16px;
  color: #ffd60a;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.app-promo__eyebrow > span {
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, #ff7a00, #ffd60a);
}

.app-promo h2 {
  max-width: 660px;
  margin: 0;
  color: #fff;
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.app-promo__lead {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 16px;
  line-height: 1.68;
}

.app-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.app-benefits li {
  display: flex;
  min-width: 0;
  align-items: flex-start;
  gap: 12px;
}

.app-benefits li > span:last-child {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.app-benefits strong {
  color: #fff;
  font-size: 13px;
  line-height: 1.35;
}

.app-benefits small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
  line-height: 1.5;
}

.app-benefit__icon {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
}

.app-benefit__icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.app-benefit__icon--orange {
  background: rgba(255, 122, 0, 0.1);
  color: #ff8a1f;
}

.app-benefit__icon--blue {
  background: rgba(46, 123, 255, 0.11);
  color: #619cff;
}

.app-benefit__icon--yellow {
  background: rgba(255, 214, 10, 0.1);
  color: #ffd60a;
}

.app-benefit__icon--violet {
  background: rgba(129, 140, 248, 0.1);
  color: #a9b0ff;
}

.app-promo__actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
}

.app-primary-cta {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid rgba(255, 200, 92, 0.45);
  border-radius: 15px;
  background: linear-gradient(135deg, #ff7a00, #ffb300);
  box-shadow: 0 12px 30px rgba(255, 122, 0, 0.2);
  color: #111316;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.app-primary-cta:hover {
  box-shadow: 0 16px 38px rgba(255, 122, 0, 0.32);
  transform: translateY(-2px);
}

.app-primary-cta svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.app-promo__actions p {
  display: grid;
  gap: 2px;
  margin: 0;
}

.app-promo__actions p strong {
  color: #fff;
  font-size: 12px;
}

.app-promo__actions p span {
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
}

.app-preview {
  position: relative;
  display: grid;
  min-height: 590px;
  place-items: center;
}

.app-preview__halo {
  position: absolute;
  width: 340px;
  height: 440px;
  border: 1px solid rgba(46, 123, 255, 0.14);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 38%, rgba(46, 123, 255, 0.2), transparent 50%),
    radial-gradient(circle at 50% 75%, rgba(255, 122, 0, 0.12), transparent 42%);
  filter: blur(3px);
  transform: rotate(-8deg);
}

.app-phone {
  position: relative;
  z-index: 1;
  width: min(292px, 100%);
  min-height: 570px;
  padding: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 43px;
  background: #050608;
  box-shadow:
    0 34px 55px rgba(0, 0, 0, 0.48),
    0 0 0 6px rgba(255, 255, 255, 0.025),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  transform: rotate(2.2deg);
}

.app-phone__top {
  position: relative;
  display: flex;
  height: 32px;
  align-items: center;
  justify-content: space-between;
  padding: 0 11px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 8px;
  font-weight: 700;
}

.app-phone__island {
  position: absolute;
  top: 4px;
  left: 50%;
  width: 72px;
  height: 21px;
  border-radius: 99px;
  background: #000;
  transform: translateX(-50%);
}

.app-phone__screen {
  padding: 10px 11px 12px;
}

.app-phone__brand {
  display: flex;
  align-items: center;
  gap: 9px;
}

.app-phone__brand img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.app-phone__brand > span {
  display: grid;
  gap: 1px;
}

.app-phone__brand small {
  color: rgba(255, 255, 255, 0.4);
  font-size: 7px;
  font-style: normal;
  font-weight: 750;
  letter-spacing: 0.12em;
}

.app-phone__brand strong {
  color: #fff;
  font-size: 15px;
  letter-spacing: -0.02em;
}

.app-mini-map {
  position: relative;
  height: 285px;
  margin-top: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 24px;
  background:
    linear-gradient(32deg, transparent 47%, rgba(255, 255, 255, 0.045) 48%, rgba(255, 255, 255, 0.045) 50%, transparent 51%),
    linear-gradient(118deg, transparent 44%, rgba(255, 255, 255, 0.035) 45%, rgba(255, 255, 255, 0.035) 48%, transparent 49%),
    radial-gradient(circle at 48% 38%, rgba(46, 123, 255, 0.09), transparent 35%),
    #101215;
}

.app-mini-map__street {
  position: absolute;
  display: block;
  height: 3px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.08);
  transform-origin: left center;
}

.app-mini-map__street--one {
  top: 78px;
  left: -20px;
  width: 290px;
  transform: rotate(18deg);
}

.app-mini-map__street--two {
  top: 225px;
  left: 20px;
  width: 280px;
  transform: rotate(-28deg);
}

.app-mini-map__street--three {
  top: -8px;
  left: 122px;
  width: 320px;
  transform: rotate(76deg);
}

.app-mini-pin {
  position: absolute;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 3px solid #fff;
  border-radius: 50% 50% 50% 8px;
  box-shadow: 0 7px 18px rgba(0, 0, 0, 0.36);
  color: #fff;
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  transform: rotate(-45deg);
}

.app-mini-pin::first-letter {
  transform: rotate(45deg);
}

.app-mini-pin--orange {
  top: 66px;
  left: 61px;
  background: #ff7a00;
}

.app-mini-pin--blue {
  top: 122px;
  right: 43px;
  background: #2e7bff;
}

.app-mini-pin--yellow {
  bottom: 51px;
  left: 91px;
  background: #e1b900;
}

.app-mini-map__location {
  position: absolute;
  top: 48%;
  left: 47%;
  width: 13px;
  height: 13px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: #2e7bff;
  box-shadow: 0 0 0 7px rgba(46, 123, 255, 0.22);
}

.app-mini-map__label {
  position: absolute;
  right: 15px;
  bottom: 13px;
  color: rgba(255, 255, 255, 0.27);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.app-phone__chips {
  display: flex;
  gap: 5px;
  margin-top: 9px;
  overflow: hidden;
}

.app-phone__chips span {
  flex: 0 0 auto;
  padding: 5px 8px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.64);
  font-size: 7px;
  font-weight: 750;
}

.app-phone__chips span:first-child {
  border-color: rgba(255, 214, 10, 0.28);
  color: #ffd60a;
}

.app-phone__card {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 9px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.1), rgba(46, 123, 255, 0.09));
}

.app-phone__card-icon {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 11px;
  background: linear-gradient(145deg, #ff7a00, #ffb300);
  color: #111316;
  font-size: 15px;
}

.app-phone__card > span:last-child {
  display: grid;
  gap: 2px;
}

.app-phone__card small {
  color: #ffb300;
  font-size: 6px;
  font-style: normal;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.app-phone__card strong {
  color: #fff;
  font-size: 9px;
}

.app-phone__card em {
  color: rgba(255, 255, 255, 0.38);
  font-size: 6px;
  font-style: normal;
}

.app-phone__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 3px 10px 0;
  padding: 8px 3px 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.app-phone__nav > span {
  display: grid;
  place-items: center;
  gap: 2px;
  color: rgba(255, 255, 255, 0.32);
  font-size: 14px;
}

.app-phone__nav small {
  font-size: 6px;
  font-weight: 700;
}

.app-phone__nav .is-active {
  color: #ffd60a;
}

.app-faq {
  margin-top: 28px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.025);
}

.app-faq > h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(25px, 4vw, 38px);
  letter-spacing: -0.035em;
}

.app-faq__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.app-faq details {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.025);
}

.app-faq summary {
  color: #fff;
  cursor: pointer;
  font-size: 13px;
  font-weight: 780;
  line-height: 1.45;
}

.app-faq details p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  line-height: 1.6;
}

.today-list-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-top: 70px;
}

.today-list-heading .eyebrow {
  margin-bottom: 8px;
}

.back-to-map {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 750;
  text-decoration: none;
}

.today-event-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.today-event-card {
  display: flex;
  min-height: 132px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.035);
}

.event-kicker {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 9px;
}

.event-kicker span {
  padding: 3px 6px;
  border-radius: 3px;
  background: var(--event);
  color: #111316;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.event-kicker time {
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
  font-weight: 650;
}

.today-event-card h4 {
  margin: 0;
  color: #fff;
  font-size: 18px;
}

.today-event-card p:last-child {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
}

.seo-marker-button {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.seo-marker-button svg {
  stroke: var(--event);
}

.today-event-list-empty {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.5);
}

dialog {
  padding: 0;
  border: 0;
  color: var(--text);
}

dialog::backdrop {
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.detail-sheet {
  width: 100%;
  max-width: 560px;
  height: 100%;
  max-height: 100%;
  margin: 0 0 0 auto;
  overflow: hidden;
  background: #08080a;
}

.detail-sheet[open] {
  animation: detail-in 240ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.detail-shell {
  height: 100%;
  overflow: auto;
  overscroll-behavior: contain;
  background: #08080a;
}

.detail-hero {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  max-height: 64vh;
  overflow: hidden;
  background: #0f0f0f;
}

.detail-hero > img {
  display: block;
  width: 100%;
  height: 100%;
  background: #000;
  object-fit: cover;
}

.detail-hero__gradient {
  position: absolute;
  inset: 36% 0 0;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.86));
  pointer-events: none;
}

.detail-close {
  position: absolute;
  z-index: 2;
  top: calc(12px + var(--safe-top));
  right: 12px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.58);
}

.icon-button--small {
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  background: transparent;
}

.icon-button--small svg {
  width: 16px;
  height: 16px;
  stroke: rgba(255, 255, 255, 0.58);
}

.instagram-pill {
  position: absolute;
  z-index: 2;
  top: calc(15px + var(--safe-top));
  right: 65px;
  display: flex;
  max-width: 190px;
  align-items: center;
  gap: 7px;
  overflow: hidden;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.6);
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  text-decoration: none;
  text-overflow: ellipsis;
  white-space: nowrap;
  backdrop-filter: blur(10px);
}

.instagram-mark {
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(35deg, #f09433, #dc2743 55%, #bc1888);
  color: #fff;
  font-size: 18px;
  font-weight: 850;
}

.radar-stat--events dd {
  color: #ff7a00;
}

.radar-stat--clubs dd {
  color: var(--club);
}

.radar-stat--today dd {
  color: #ffd60a;
}

.detail-hero__content {
  position: absolute;
  z-index: 1;
  right: 16px;
  bottom: 26px;
  left: 16px;
}

.detail-hero__content h2 {
  overflow: hidden;
  margin: 0;
  color: #fff;
  font-size: clamp(25px, 7vw, 36px);
  font-weight: 850;
  letter-spacing: -0.02em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.detail-meta-row {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
  margin-top: 7px;
}

.detail-type-badge {
  padding: 3px 7px;
  border-radius: 3px;
  background: var(--event);
  color: #1a1a1a;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.detail-type-badge.is-club {
  background: var(--club);
  color: #fff;
}

.detail-price-tag {
  color: #d1d5db;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.05em;
}

.detail-address-pill {
  display: flex;
  min-width: 0;
  max-width: 55%;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  overflow: hidden;
  padding: 5px 9px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.52);
  color: rgba(255, 255, 255, 0.9);
  font-size: 11px;
  text-decoration: none;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.detail-address-pill > span:first-child {
  color: #ff3b30;
}

.detail-address-pill > span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
}

.detail-content {
  position: relative;
  min-height: 340px;
  margin-top: -12px;
  padding: 0 16px calc(48px + var(--safe-bottom));
  border-radius: 18px 18px 0 0;
  background: #08080a;
}

.detail-tabs {
  position: sticky;
  z-index: 3;
  top: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 -16px 16px;
  padding: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px 18px 0 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(15px);
}

.detail-tabs button {
  display: grid;
  min-height: 58px;
  place-items: center;
  gap: 3px;
  padding: 7px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: #555e6e;
  cursor: pointer;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.04em;
}

.detail-tabs button[aria-selected="true"] {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.detail-tabs svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.detail-panel {
  min-height: 180px;
  padding: 8px 0;
}

.detail-panel h3 {
  margin: 4px 0 16px;
  font-size: 17px;
}

.detail-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin: 0;
}

.detail-info-grid > div {
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.035);
}

.detail-info-grid dt {
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
  font-weight: 650;
  text-transform: uppercase;
}

.detail-info-grid dd {
  margin: 5px 0 0;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.detail-description {
  margin: 18px 2px 0;
  color: rgba(255, 255, 255, 0.63);
  font-size: 14px;
  line-height: 1.65;
  white-space: pre-line;
}

.primary-link,
.primary-button,
.secondary-button {
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 850;
  text-align: center;
}

.primary-link {
  display: block;
  padding: 14px 18px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
}

.detail-actions {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.primary-link--secondary {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

.genre-chips,
.option-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.genre-chip {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 12px;
  font-weight: 750;
}

.artist-list {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.artist-list li {
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
}

.detail-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.detail-stat {
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
}

.detail-stat strong {
  display: block;
  color: #fff;
  font-size: 22px;
}

.detail-stat span {
  color: rgba(255, 255, 255, 0.46);
  font-size: 11px;
}

.panel-empty {
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
  line-height: 1.55;
}

.bottom-sheet {
  width: min(600px, 100%);
  max-width: 100%;
  max-height: min(85vh, 820px);
  margin: auto auto 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-bottom: 0;
  border-radius: 24px 24px 0 0;
  background: var(--surface);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.42);
}

.bottom-sheet[open] {
  animation: sheet-in 230ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.bottom-sheet__shell {
  display: flex;
  max-height: min(85vh, 820px);
  flex-direction: column;
  margin: 0;
}

.sheet-handle {
  width: 36px;
  height: 4px;
  flex: 0 0 auto;
  align-self: center;
  margin: 10px 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.sheet-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.sheet-header h2 {
  margin: 0;
  color: #fff;
  font-size: 18px;
}

.sheet-header .icon-button {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.text-button {
  padding: 5px;
  border: 0;
  background: transparent;
  color: var(--accent);
  cursor: pointer;
  font-size: 13px;
  font-weight: 750;
}

.sheet-body {
  overflow: auto;
  overscroll-behavior: contain;
}

.filter-section {
  margin: 0;
  padding: 16px 20px 20px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.filter-section legend {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 10px;
  padding: 0 0 14px;
  color: #fff;
  font-size: 15px;
  font-weight: 750;
}

.filter-section__icon {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.filter-option {
  position: relative;
}

.filter-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.filter-option label {
  display: block;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  cursor: pointer;
  font-size: 12px;
  font-weight: 750;
}

.filter-option input:checked + label {
  border-color: #fff;
  background: #fff;
  color: #111316;
}

.filter-option input:focus-visible + label {
  outline: 3px solid rgba(129, 140, 248, 0.5);
  outline-offset: 2px;
}

.price-filter label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  font-weight: 700;
}

.price-filter output {
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: #fff;
  font-size: 13px;
}

.price-filter input[type="range"] {
  width: 100%;
  margin-top: 24px;
  accent-color: #fff;
}

.sheet-footer {
  flex: 0 0 auto;
  padding: 14px 20px calc(24px + var(--safe-bottom));
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  background: var(--surface);
}

.primary-button {
  width: 100%;
  padding: 16px;
  background: var(--accent);
  box-shadow: 0 6px 16px rgba(129, 140, 248, 0.25);
  color: #fff;
  font-size: 15px;
}

.compact-sheet {
  max-height: min(70vh, 620px);
}

.compact-sheet .bottom-sheet__shell {
  max-height: min(70vh, 620px);
}

.sheet-intro {
  margin: 0;
  padding: 18px 20px 4px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  line-height: 1.55;
}

.favourites-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 14px 20px calc(28px + var(--safe-bottom));
  list-style: none;
}

.favourite-button {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 12px;
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
  color: #fff;
  cursor: pointer;
  text-align: left;
}

.favourite-button img {
  width: 45px;
  height: 45px;
  flex: 0 0 45px;
  border-radius: 50%;
  object-fit: cover;
}

.favourite-button span {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.favourite-button strong,
.favourite-button small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.favourite-button small {
  color: rgba(255, 255, 255, 0.46);
}

.report-copy {
  display: grid;
  justify-items: center;
  gap: 16px;
  padding: 24px 24px calc(30px + var(--safe-bottom));
  text-align: center;
}

.report-copy p {
  max-width: 450px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.65;
}

.report-symbol {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(255, 107, 107, 0.3);
  border-radius: 50%;
  background: rgba(255, 107, 107, 0.1);
  color: var(--danger);
  font-size: 28px;
  font-weight: 850;
}

.secondary-button {
  padding: 12px 20px;
  background: #fff;
  color: #111316;
}

.noscript-banner {
  position: fixed;
  z-index: 9999;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 14px;
  border-radius: 12px;
  background: #fff;
  color: #111316;
  font-size: 13px;
  text-align: center;
}

:focus-visible {
  outline: 3px solid rgba(129, 140, 248, 0.72);
  outline-offset: 3px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes live-pulse {
  from {
    opacity: 0.7;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(2.1);
  }
}

@keyframes user-pulse {
  from {
    opacity: 0.65;
    transform: scale(0.7);
  }
  to {
    opacity: 0;
    transform: scale(1.55);
  }
}

@keyframes teaser-in {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.97);
  }
}

@keyframes sheet-in {
  from {
    opacity: 0;
    transform: translateY(70px);
  }
}

@keyframes detail-in {
  from {
    opacity: 0;
    transform: translateX(70px);
  }
}

@media (min-width: 720px) {
  .filter-controls {
    width: min(520px, calc(100% - 40px));
    right: auto;
    left: 20px;
  }

  .quick-actions {
    top: calc(var(--safe-top) + 64px);
    right: auto;
    left: 24px;
    width: min(500px, calc(100% - 48px));
  }

  .marker-teaser {
    right: auto;
    bottom: 34px;
    left: 24px;
    width: 430px;
  }

  .location-controls {
    right: 24px;
    bottom: 34px;
    left: auto;
  }

  .map-count {
    right: 24px;
    bottom: 10px;
  }
}

@media (max-width: 760px) {
  .today-summary {
    padding: 58px 18px 78px;
  }

  .summary-heading-row {
    display: grid;
    align-items: start;
  }

  .activity-badge {
    width: 100%;
    min-width: 0;
  }

  .radar-stats {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 30px;
  }

  .radar-stats > div:last-child {
    grid-column: 1 / -1;
  }

  .app-promo {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 34px 26px 0;
  }

  .app-benefits {
    grid-template-columns: 1fr;
  }

  .app-preview {
    min-height: 590px;
    overflow: hidden;
  }

  .app-faq {
    padding: 26px;
  }

  .app-faq__grid {
    grid-template-columns: 1fr;
  }

  .today-event-list {
    grid-template-columns: 1fr;
  }

  .today-list-heading {
    align-items: center;
  }

  .map-close-button {
    top: calc(112px + var(--safe-top));
    right: 12px;
  }
}

@media (max-width: 430px) {
  .filter-controls {
    gap: 8px;
    right: 6px;
    left: 6px;
    padding-right: 6px;
    padding-left: 6px;
  }

  .quick-actions {
    right: 12px;
    left: 12px;
  }

  .radar-shell {
    height: clamp(380px, 58svh, 560px);
    min-height: 380px;
  }

  .location-controls {
    gap: 7px;
  }

  .location-pill {
    gap: 8px;
    padding-right: 13px;
    padding-left: 13px;
    font-size: 12px;
  }

  .marker-teaser__stats {
    gap: 9px;
  }

  .teaser-stat-divider {
    display: none;
  }

  .radar-stats > div {
    min-height: 104px;
    padding: 16px;
  }

  .radar-stats dd {
    font-size: 29px;
  }

  .answer-card {
    padding: 20px;
  }

  .app-jump-link {
    max-width: 100%;
  }

  .app-promo {
    padding: 28px 20px 0;
    border-radius: 25px;
  }

  .app-promo h2 {
    font-size: 38px;
  }

  .app-promo__lead {
    font-size: 14px;
  }

  .app-promo__actions {
    display: grid;
  }

  .app-primary-cta {
    width: 100%;
  }

  .app-preview {
    min-height: 548px;
  }

  .app-phone {
    width: 266px;
    min-height: 530px;
  }

  .app-mini-map {
    height: 250px;
  }

  .app-faq {
    padding: 22px 18px;
    border-radius: 21px;
  }

  .today-list-heading {
    align-items: flex-end;
  }

  .back-to-map {
    padding: 8px 11px;
    font-size: 11px;
  }

  .detail-info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-height: 640px) {
  .marker-teaser {
    bottom: calc(82px + var(--safe-bottom));
  }

  .marker-teaser__button {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .marker-teaser__photo-wrap,
  .marker-teaser__photo {
    width: 50px;
    height: 50px;
  }

  .location-controls {
    bottom: calc(18px + var(--safe-bottom));
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}
