:root {
  color-scheme: dark;
  --bg: #07111f;
  --bg-soft: #0b1625;
  --panel: rgba(13, 28, 48, 0.88);
  --panel-strong: rgba(17, 35, 58, 0.96);
  --text: #f5f8ff;
  --muted: #aebbd0;
  --line: rgba(146, 183, 230, 0.22);
  --accent: #3b82f6;
  --accent-2: #20d0bd;
  --danger: #c23b45;
  --gold: #f3c451;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
}

body.light {
  color-scheme: light;
  --bg: #eef4fb;
  --bg-soft: #f8fbff;
  --panel: rgba(255, 255, 255, 0.86);
  --panel-strong: rgba(255, 255, 255, 0.98);
  --text: #0f1a2a;
  --muted: #576579;
  --line: rgba(42, 81, 130, 0.18);
  --accent: #2563eb;
  --accent-2: #0d9488;
  --danger: #b4232d;
  --gold: #a66f00;
  --shadow: 0 24px 70px rgba(24, 54, 91, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at 10% 0%, rgba(59, 130, 246, 0.18), transparent 28%),
    linear-gradient(180deg, var(--bg), var(--bg-soft));
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  margin: 0;
  min-width: 320px;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(5, 13, 24, 0.78);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 22px;
  justify-content: space-between;
  left: 0;
  padding: 14px clamp(18px, 4vw, 64px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 20;
}

body.light .site-header {
  background: rgba(247, 251, 255, 0.82);
}

.brand,
.nav-links,
.header-actions {
  align-items: center;
  display: flex;
}

.brand {
  flex: 0 0 190px;
  height: 96px;
  min-width: 190px;
  overflow: hidden;
  position: relative;
}

.brand-logo {
  display: block;
  height: auto;
  left: 0;
  max-width: none;
  position: absolute;
  top: -82px;
  width: 190px;
}

.brand-mark {
  align-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-radius: 7px;
  color: #ffffff;
  display: inline-flex;
  font-weight: 900;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1;
}

.brand small {
  color: var(--muted);
  font-size: 0.72rem;
  margin-top: 5px;
}

.nav-links {
  color: var(--muted);
  gap: clamp(14px, 3vw, 34px);
  font-size: 0.94rem;
  font-weight: 750;
}

.nav-links a:hover {
  color: var(--text);
}

.header-actions {
  gap: 10px;
}

select,
.theme-toggle {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 750;
  min-height: 40px;
}

select {
  max-width: 176px;
  padding: 0 12px;
}

.theme-toggle {
  cursor: pointer;
  padding: 0 14px;
}

.visually-hidden {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.language-control {
  align-items: center;
  border: 2px solid rgba(243, 196, 81, 0.46);
  border-radius: 999px;
  cursor: pointer;
  display: flex;
  gap: 10px;
  height: 52px;
  justify-content: center;
  min-width: 122px;
  padding: 5px 17px 5px 7px;
  position: relative;
}

.language-control select {
  cursor: pointer;
  inset: 0;
  max-width: none;
  opacity: 0;
  position: absolute;
  width: 100%;
}

.language-control:focus-within,
.theme-toggle:focus-visible {
  border-color: var(--gold);
  outline: 3px solid rgba(243, 196, 81, 0.18);
  outline-offset: 3px;
}

.language-control strong {
  color: var(--text);
  font-size: 1.05rem;
  letter-spacing: 0;
}

.language-flag {
  align-items: center;
  background-color: rgba(255, 255, 255, 0.1);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.28);
  display: inline-flex;
  font-size: 1.35rem;
  height: 36px;
  justify-content: center;
  line-height: 1;
  overflow: hidden;
  width: 36px;
}

#google_translate_element,
.goog-te-banner-frame,
.goog-te-balloon-frame,
iframe.goog-te-banner-frame,
iframe.skiptranslate,
iframe[class*="VIpgJd-ZVi9od-ORHb"],
.VIpgJd-ZVi9od-ORHb,
.VIpgJd-ZVi9od-aZ2wEe-wOHMyf {
  display: none !important;
  height: 0 !important;
  visibility: hidden !important;
}

html,
body {
  margin-top: 0 !important;
  padding-top: 0 !important;
  top: 0 !important;
}

.goog-text-highlight {
  background: transparent !important;
  box-shadow: none !important;
}

.theme-toggle {
  align-items: center;
  background: transparent;
  border: 2px solid rgba(243, 196, 81, 0.46);
  border-radius: 50%;
  display: inline-flex;
  height: 52px;
  justify-content: center;
  min-height: 52px;
  padding: 0;
  transition: background 180ms ease, transform 180ms ease;
  width: 52px;
}

.theme-toggle:hover {
  background: rgba(243, 196, 81, 0.09);
  transform: rotate(12deg);
}

.sun-icon {
  color: var(--text);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
}

.hero {
  display: grid;
  gap: clamp(28px, 6vw, 80px);
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  min-height: 100vh;
  overflow: hidden;
  padding: 118px clamp(20px, 6vw, 110px) 76px;
  position: relative;
}

.hero::before {
  background:
    linear-gradient(rgba(146, 183, 230, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(146, 183, 230, 0.08) 1px, transparent 1px);
  background-size: 44px 44px;
  content: "";
  inset: 0;
  opacity: 0.36;
  position: absolute;
}

.hero::after {
  background: linear-gradient(110deg, rgba(7, 17, 31, 0.96), rgba(7, 17, 31, 0.72) 46%, rgba(16, 76, 135, 0.2));
  content: "";
  inset: 0;
  position: absolute;
}

body.light .hero::after {
  background: linear-gradient(110deg, rgba(238, 244, 251, 0.97), rgba(238, 244, 251, 0.82) 54%, rgba(59, 130, 246, 0.18));
}

.hero-content,
.hero-media {
  position: relative;
  z-index: 1;
}

.hero-content {
  align-self: center;
  max-width: 780px;
}

.hero-media {
  align-self: center;
  display: grid;
  gap: 18px;
}

.media-card {
  animation: rise 7s ease-in-out infinite;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent),
    linear-gradient(120deg, rgba(59, 130, 246, 0.48), rgba(12, 25, 42, 0.92)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 18px);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  min-height: 130px;
  overflow: hidden;
  position: relative;
}

.media-card::before,
.media-card::after {
  content: "";
  position: absolute;
}

.media-card::before {
  background: rgba(255, 255, 255, 0.16);
  height: 2px;
  left: 18px;
  right: 18px;
  top: 30px;
}

.media-card::after {
  border: 2px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  height: 74px;
  right: 22px;
  top: 28px;
  width: 74px;
}

.media-card-two {
  animation-delay: -2s;
  margin-left: 46px;
}

.media-card-three {
  animation-delay: -4s;
  margin-right: 34px;
}

.eyebrow {
  color: var(--muted);
  font-size: clamp(0.76rem, 1.4vw, 0.92rem);
  font-weight: 850;
  letter-spacing: 0.16em;
  margin: 0 0 22px;
  text-transform: uppercase;
}

h1,
h2 {
  letter-spacing: 0;
  margin: 0;
}

h1 {
  font-size: clamp(3.6rem, 9vw, 8rem);
  line-height: 0.94;
}

h2 {
  font-size: clamp(2rem, 4.8vw, 4.1rem);
  line-height: 1;
}

.hero-copy,
.section-heading p,
.info-panel p {
  color: var(--muted);
  font-size: clamp(1rem, 1.45vw, 1.2rem);
  line-height: 1.72;
}

.hero-copy {
  margin: 28px 0 34px;
  max-width: 680px;
}

.hero-dashboard {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 720px;
}

.hero-dashboard article,
.ticket,
.schedule-shell,
.info-panel,
.detail-cards article {
  background: var(--panel-strong);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.event-card {
  overflow: hidden;
  padding: 22px;
  position: relative;
}

.event-card::before {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.28), rgba(32, 208, 189, 0.08));
  content: "";
  inset: 0;
  opacity: 0.7;
  position: absolute;
}

.event-card > * {
  position: relative;
}

.main-event-card {
  grid-row: span 2;
  padding: 22px;
}

.main-event-card::after {
  background:
    linear-gradient(90deg, transparent 0 42%, rgba(255, 255, 255, 0.16) 42% 43%, transparent 43%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 14px);
  border: 1px solid var(--line);
  border-radius: 8px;
  bottom: 22px;
  content: "";
  height: 82px;
  left: 22px;
  position: absolute;
  right: 22px;
}

.hero-dashboard span {
  color: var(--muted);
  display: block;
  font-weight: 800;
}

.hero-dashboard strong {
  color: var(--accent-2);
  display: block;
  font-size: clamp(1.6rem, 3vw, 2.7rem);
  line-height: 1;
  margin: 16px 0 12px;
}

.main-event-card strong {
  font-size: clamp(2.5rem, 5vw, 4.4rem);
  line-height: 0.95;
}

.hero-dashboard small {
  color: var(--muted);
  line-height: 1.55;
}

.activity-card {
  transition: opacity 180ms ease, transform 180ms ease;
}

.activity-card.is-changing {
  opacity: 0.45;
  transform: translateY(6px);
}

.countdown {
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  grid-template-columns: repeat(4, minmax(76px, 1fr));
  margin-top: 22px;
  max-width: 720px;
  overflow: hidden;
}

.countdown div {
  background: rgba(28, 55, 92, 0.5);
  min-height: 86px;
  padding: 16px;
  text-align: center;
}

body.light .countdown div {
  background: rgba(255, 255, 255, 0.68);
}

.countdown div + div {
  border-left: 1px solid var(--line);
}

.countdown strong,
.metric {
  display: block;
  font-size: clamp(2rem, 4vw, 2.9rem);
  line-height: 1;
}

.countdown span {
  color: var(--muted);
  display: block;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  margin-top: 8px;
  text-transform: uppercase;
}

.section {
  padding: 92px clamp(20px, 6vw, 110px);
}

.ticket-section,
.details-section {
  background: var(--bg-soft);
}

.section-heading {
  margin-bottom: 36px;
  max-width: 760px;
}

.ticket-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  margin-inline: auto;
  max-width: 1120px;
}

.ticket,
.detail-cards article {
  padding: 26px;
}

.ticket.featured {
  outline: 2px solid rgba(59, 130, 246, 0.42);
}

.ticket-top {
  display: grid;
  gap: 10px;
}

.ticket-top span,
.detail-cards span {
  color: var(--accent-2);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.ticket-top strong {
  font-size: clamp(1.45rem, 2.6vw, 2.1rem);
}

.price {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  margin: 24px 0 16px;
}

.price small {
  color: var(--muted);
  display: block;
  font-size: 1rem;
}

.free {
  color: var(--accent-2);
}

.ticket ul {
  color: var(--muted);
  display: grid;
  gap: 12px;
  line-height: 1.55;
  margin: 0 0 22px;
  padding-left: 20px;
}

.text-link {
  align-items: center;
  background: linear-gradient(135deg, #2563eb, #1673e6);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 7px;
  box-shadow: 0 12px 26px rgba(37, 99, 235, 0.28);
  color: #ffffff;
  display: flex;
  font-weight: 900;
  justify-content: center;
  margin: 26px auto 0;
  min-height: 50px;
  padding: 13px 24px;
  text-align: center;
  transition: box-shadow 180ms ease, transform 180ms ease, filter 180ms ease;
  width: min(100%, 240px);
}

.ticket:not(.featured) .text-link {
  background: linear-gradient(135deg, #0d9488, #16b8a7);
  box-shadow: 0 12px 26px rgba(13, 148, 136, 0.28);
}

.text-link:hover,
.text-link:focus-visible {
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.42);
  filter: brightness(1.08);
  transform: translateY(-3px);
}

.ticket:not(.featured) .text-link:hover,
.ticket:not(.featured) .text-link:focus-visible {
  box-shadow: 0 16px 34px rgba(13, 148, 136, 0.42);
}

.text-link:focus-visible {
  outline: 3px solid rgba(96, 165, 250, 0.42);
  outline-offset: 3px;
}

.stats-panel {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 76px auto 0;
  max-width: 1440px;
}

.stats-heading {
  grid-column: 1 / -1;
  margin-bottom: 10px;
}

.stats-heading .eyebrow {
  margin-bottom: 10px;
}

.stats-heading h3 {
  font-size: clamp(1.8rem, 3.6vw, 3rem);
  margin: 0;
}

.stat-card {
  background: var(--panel-strong);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 26px;
  min-width: 0;
  padding: 24px;
}

.stat-summary {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
  text-align: center;
}

.stat-summary .metric {
  color: #a4cafc;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
}

.stat-summary p {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.35;
  margin: 0;
  text-align: center;
}

.trend-chart {
  align-items: end;
  border-bottom: 2px solid rgba(243, 211, 81, 0.48);
  display: grid;
  gap: 7px;
  grid-template-columns: repeat(6, minmax(24px, 1fr));
  height: 172px;
}

.exhibitors-stat .trend-chart {
  grid-template-columns: repeat(5, minmax(28px, 1fr));
}

.trend-chart > span {
  align-items: center;
  background: linear-gradient(180deg, #fff4a8, #f1c933);
  border-radius: 4px 4px 0 0;
  display: flex;
  height: var(--bar);
  justify-content: center;
  min-height: 42px;
  position: relative;
}

.trend-chart i {
  color: #174d9c;
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 900;
  padding: 4px;
}

.trend-chart b {
  bottom: -24px;
  color: #dbeafe;
  font-size: 0.65rem;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
}

.trend-chart .current {
  background: linear-gradient(180deg, #fff4a8, #f1c933);
}

.trend-chart .current i {
  color: #174d9c;
}

.trend-chart .current b {
  background: #d3b67c;
  border-radius: 999px;
  color: #174d9c;
  padding: 3px 6px;
}

body.light .stat-card {
  background: #ffffff;
  border-color: rgba(25, 45, 66, 0.2);
  box-shadow: 0 18px 44px rgba(25, 55, 82, 0.12);
}

body.light .stat-summary .metric,
body.light .trend-chart b {
  color: #245ca8;
}

.schedule-section {
  background:
    linear-gradient(180deg, rgba(11, 22, 37, 0.96), rgba(7, 17, 31, 0.98)),
    radial-gradient(circle at 80% 20%, rgba(32, 208, 189, 0.16), transparent 28%);
}

.schedule-update {
  align-items: center;
  color: #f4d768;
  display: flex;
  font-size: 0.9rem;
  gap: 10px;
  letter-spacing: 0.08em;
  margin: -8px 0 20px;
  text-transform: uppercase;
}

.schedule-update span {
  animation: updatePulse 1.6s ease-in-out infinite;
  background: #f4d768;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(244, 215, 104, 0.42);
  flex: 0 0 9px;
  height: 9px;
  width: 9px;
}

body.light .schedule-update {
  color: #8a5b00;
}

body.light .schedule-update span {
  background: #b77900;
}

@keyframes updatePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(244, 215, 104, 0.42); opacity: 0.72; }
  50% { box-shadow: 0 0 0 9px rgba(244, 215, 104, 0); opacity: 1; }
}

body.light .schedule-section {
  background: #eef4fb;
}

.schedule-shell {
  background:
    linear-gradient(135deg, rgba(13, 28, 48, 0.98), rgba(7, 17, 31, 0.98)),
    radial-gradient(circle at 15% 25%, rgba(59, 130, 246, 0.16), transparent 28%);
  color: var(--text);
  overflow: hidden;
  padding: clamp(18px, 3vw, 30px);
}

body.light .schedule-shell {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 252, 0.98)),
    radial-gradient(circle at 15% 25%, rgba(15, 23, 42, 0.08), transparent 28%);
  color: #101828;
}

.day-tabs {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  margin-bottom: 24px;
}

.day-tab {
  background: rgba(17, 35, 58, 0.96);
  border: 2px solid rgba(146, 183, 230, 0.32);
  border-radius: 8px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.22);
  color: var(--text);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  min-height: 76px;
  padding: 14px;
  text-align: center;
  transition: background 180ms ease, transform 180ms ease, border-color 180ms ease;
}

body.light .day-tab {
  background: #ffffff;
  border: 2px solid rgba(16, 24, 40, 0.42);
  box-shadow: 6px 7px 0 rgba(13, 148, 136, 0.28);
  color: #101828;
}

.day-tab:hover {
  transform: translateY(-2px);
}

.day-tab span {
  color: var(--muted);
  display: block;
  font-size: 0.9rem;
  font-weight: 650;
  line-height: 1.35;
  margin-top: 4px;
}

body.light .day-tab span {
  color: #344054;
}

.day-tab.active {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.72), rgba(32, 208, 189, 0.36));
  border-color: rgba(255, 255, 255, 0.46);
  color: #ffffff;
  transform: translateY(-3px);
}

.day-tab.active span {
  color: rgba(255, 255, 255, 0.82);
}

body.light .day-tab.active {
  background: #f8fbff;
  border-color: #0f172a;
  color: #101828;
}

body.light .day-tab.active span {
  color: #1d4ed8;
}

.schedule-board {
  animation: tabIn 260ms ease both;
  display: grid;
  gap: 12px;
}

.schedule-note {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
}

body.light .schedule-note {
  background: rgba(239, 244, 250, 0.9);
  border: 1px solid rgba(16, 24, 40, 0.16);
}

.schedule-note span {
  color: var(--accent-2);
  display: block;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.schedule-note strong {
  display: block;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}

.schedule-note p {
  color: var(--muted);
  line-height: 1.6;
  margin: 8px 0 0;
}

.schedule-note em {
  background: rgba(59, 130, 246, 0.13);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--accent-2);
  display: inline-block;
  font-style: normal;
  font-weight: 800;
  line-height: 1.45;
  margin-top: 12px;
  padding: 10px 12px;
}

body.light .schedule-note em {
  background: rgba(37, 99, 235, 0.08);
  color: #1d4ed8;
}

.program-list {
  display: grid;
  gap: 14px;
}

.program-card {
  align-items: center;
  background: rgba(17, 35, 58, 0.98);
  border: 1px solid rgba(146, 183, 230, 0.3);
  border-radius: 8px;
  box-shadow: 6px 6px 0 rgba(37, 99, 235, 0.78);
  color: var(--text);
  display: grid;
  gap: 18px;
  grid-template-columns: 150px minmax(0, 1fr) auto;
  min-height: 92px;
  padding: 18px;
  position: relative;
  transition: transform 180ms ease, box-shadow 180ms ease;
  z-index: 1;
}

body.light .program-card {
  background: #ffffff;
  border: 2px solid #101828;
  color: #101828;
  box-shadow: 8px 8px 0 rgba(37, 99, 235, 0.7), 12px 12px 0 rgba(15, 23, 42, 0.18);
}

.program-card.business {
  box-shadow: 6px 6px 0 rgba(151, 34, 44, 0.84);
}

.program-card.flight {
  box-shadow: 6px 6px 0 rgba(37, 99, 235, 0.86);
}

.program-card.culture {
  box-shadow: 6px 6px 0 rgba(234, 218, 41, 0.9);
}

.program-card.nascar {
  border-style: dashed;
  box-shadow: 6px 6px 0 rgba(220, 38, 38, 0.84);
}

body.light .program-card.business,
body.light .program-card.flight,
body.light .program-card.culture,
body.light .program-card.nascar {
  box-shadow: 8px 8px 0 rgba(37, 99, 235, 0.34), 12px 12px 0 rgba(15, 23, 42, 0.12);
}

.program-card .time {
  align-items: center;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  display: flex;
  font-weight: 900;
  justify-content: center;
  min-height: 56px;
  text-align: center;
}

body.light .program-card .time {
  background: #f2f4f7;
  border: 1px solid #d0d5dd;
  color: #101828;
}

.time {
  color: var(--muted);
  font-weight: 900;
}

.program-card strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.badge {
  background: rgba(59, 130, 246, 0.16);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--accent-2);
  font-size: 0.76rem;
  font-weight: 900;
  padding: 8px 12px;
  text-transform: uppercase;
  white-space: nowrap;
}

.program-card .badge {
  color: var(--accent-2);
}

body.light .program-card .badge {
  color: #0f766e;
}

.program-tooltip {
  background: #103b4a;
  border: 2px solid #37c7b6;
  border-radius: 8px;
  bottom: calc(100% + 16px);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.42);
  color: #f4fffd;
  font-size: 1.05rem;
  font-weight: 700;
  left: 110px;
  line-height: 1.65;
  max-width: min(720px, 78vw);
  min-width: min(520px, 72vw);
  opacity: 0;
  padding: 20px 22px;
  pointer-events: none;
  position: absolute;
  transform: translateY(12px) scale(0.98);
  transition: opacity 180ms ease, transform 180ms ease, box-shadow 180ms ease;
  visibility: hidden;
  z-index: 20;
}

body.light .program-tooltip {
  background: #173c55;
  border-color: #55d4c2;
  box-shadow: 0 22px 50px rgba(16, 45, 66, 0.3);
  color: #ffffff;
}

.program-card:hover .program-tooltip,
.program-card:focus-visible .program-tooltip {
  opacity: 1;
  transform: translateY(0) scale(1);
  visibility: visible;
}

.program-tooltip span {
  color: #6ee7d8;
  display: block;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.program-tooltip p {
  margin: 0;
}

.program-card:hover,
.program-card:focus-visible {
  transform: translateY(-3px);
  z-index: 10;
}

@media (max-width: 760px) {
  .program-tooltip {
    bottom: calc(100% + 10px);
    font-size: 0.96rem;
    left: 0;
    max-width: none;
    min-width: 0;
    padding: 16px;
    width: 100%;
  }
}

.details-section {
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
}

.info-panel {
  padding: clamp(28px, 5vw, 56px);
}

.detail-cards {
  display: grid;
  gap: 16px;
}

.detail-cards strong {
  display: block;
  font-size: 1.45rem;
  margin-top: 8px;
}

dl {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
}

dl div {
  display: grid;
  column-gap: 24px;
  grid-template-columns: max-content minmax(0, 1fr);
  row-gap: 6px;
}

dt {
  color: var(--text);
  font-weight: 850;
  white-space: nowrap;
}

dd {
  color: var(--muted);
  margin: 0;
  min-width: 0;
  overflow-wrap: anywhere;
}

.site-footer {
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  padding: 28px clamp(20px, 6vw, 110px);
}

@keyframes rise {
  50% {
    transform: translateY(-12px);
  }
}

@keyframes tabIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1040px) {
  .hero,
  .ticket-grid,
  .details-section {
    grid-template-columns: 1fr;
  }

  .hero-media {
    grid-template-columns: repeat(3, 1fr);
  }

  .media-card {
    min-height: 110px;
  }

  .media-card-two,
  .media-card-three {
    margin: 0;
  }

  .day-tabs {
    grid-template-columns: repeat(3, minmax(150px, 1fr));
  }

  .stats-panel {
    grid-template-columns: 1fr;
    max-width: 720px;
  }
}

@media (max-width: 760px) {
  .site-header {
    flex-wrap: wrap;
    padding: 12px 16px;
  }

  .nav-links {
    order: 3;
    width: 100%;
  }

  .brand {
    min-width: auto;
  }

  .hero {
    padding-top: 152px;
  }

  .hero-dashboard,
  .hero-media,
  .day-tabs,
  .program-card {
    grid-template-columns: 1fr;
  }

  .main-event-card {
    grid-row: auto;
    min-height: 220px;
  }

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

  .countdown div:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .countdown div:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .badge {
    justify-self: start;
  }
}

@media (max-width: 520px) {
  .brand span:last-child {
    display: none;
  }

  .header-actions {
    flex: 1;
    justify-content: flex-end;
  }

  select {
    max-width: 126px;
  }

  .theme-toggle {
    padding: 0 10px;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.3rem);
  }

  dl div {
    grid-template-columns: 1fr;
  }

  .stat-card {
    padding: 18px 14px 28px;
  }

  .stat-summary {
    align-items: start;
    flex-direction: column;
    gap: 6px;
  }

  .trend-chart {
    gap: 4px;
    height: 150px;
  }

  .trend-chart i {
    font-size: 0.68rem;
  }

  .trend-chart b {
    font-size: 0.56rem;
  }
}

/* Portada de deteccion FAMEX */
.radar-hero {
  display: block;
  min-height: 100svh;
  padding: 124px 0 0;
  position: relative;
}

.radar-hero::after {
  background: linear-gradient(90deg, rgba(4, 13, 24, 0.62), transparent 42%, rgba(4, 13, 24, 0.18));
  pointer-events: none;
}

body.light .radar-hero::after {
  background: linear-gradient(90deg, rgba(232, 242, 250, 0.42), transparent 45%, rgba(232, 242, 250, 0.12));
}

.radar-stage {
  background: #06121f;
  min-height: calc(100svh - 124px);
  overflow: hidden;
  position: relative;
}

body.light .radar-stage {
  background: #e8f4f8;
}

.radar-screen {
  aspect-ratio: 1;
  left: 25%;
  max-width: 900px;
  position: absolute;
  top: 43%;
  transform: translate(-50%, -50%);
  width: min(72vw, 900px);
}

.radar-grid {
  background-image:
    linear-gradient(rgba(76, 160, 201, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(76, 160, 201, 0.08) 1px, transparent 1px);
  background-size: 18px 18px;
  inset: -25vw;
  mask-image: radial-gradient(circle, #000 25%, transparent 72%);
  position: absolute;
}

.radar-ring {
  border: 1px solid rgba(104, 194, 236, 0.42);
  border-radius: 50%;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.ring-one { height: 30%; width: 30%; }
.ring-two { height: 60%; width: 60%; }
.ring-three { height: 90%; width: 90%; }

.radar-crosshair::before,
.radar-crosshair::after {
  background: rgba(104, 194, 236, 0.34);
  content: "";
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.radar-crosshair::before { height: 90%; width: 1px; }
.radar-crosshair::after { height: 1px; width: 90%; }

.radar-sweep {
  animation: radarSweep 3.4s linear infinite;
  background: conic-gradient(from 0deg, transparent 0deg 304deg, rgba(84, 196, 238, 0.03) 316deg, rgba(115, 213, 249, 0.5) 359deg, transparent 360deg);
  border-radius: 50%;
  inset: 5%;
  position: absolute;
  z-index: 2;
}

.radar-sweep::after {
  background: #b7efff;
  box-shadow: 0 0 14px rgba(146, 225, 255, 0.9);
  content: "";
  height: 45%;
  left: 50%;
  position: absolute;
  top: 5%;
  width: 1px;
}

.radar-degree,
.radar-location {
  color: rgba(109, 195, 235, 0.66);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  position: absolute;
  text-transform: uppercase;
}

.degree-north { left: 50%; top: 1%; transform: translateX(-50%); }
.degree-east { right: 1%; top: 50%; transform: translateY(-50%); }
.degree-south { bottom: 1%; left: 50%; transform: translateX(-50%); }
.degree-west { left: 1%; top: 50%; transform: translateY(-50%); }
.radar-location { left: calc(67% + 28px); top: calc(38% + 24px); }

.radar-blip {
  animation: blip 1.7s ease-in-out infinite;
  background: #72d8f7;
  border-radius: 50%;
  box-shadow: 0 0 12px #72d8f7;
  height: 6px;
  position: absolute;
  width: 6px;
}

.blip-one { left: 27%; top: 38%; }
.blip-two { animation-delay: -0.7s; left: 73%; top: 68%; }

.radar-history {
  inset: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  z-index: 1;
}

.radar-history li {
  animation: historyContact 3.4s var(--delay) linear infinite both;
  color: #9edff4;
  left: var(--x);
  opacity: 0;
  position: absolute;
  top: var(--y);
  transition: opacity 350ms ease;
  white-space: nowrap;
}

.radar-history .plane {
  color: #d9f6ff;
  display: inline-block;
  filter: drop-shadow(0 0 8px rgba(114, 216, 247, 0.92));
  font-size: clamp(1.55rem, 3vw, 2.6rem);
  margin-right: 9px;
  transform: rotate(var(--angle));
}

.radar-history strong,
.radar-history small {
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.radar-history strong {
  font-size: clamp(0.7rem, 1.25vw, 1rem);
}

.radar-history small {
  color: rgba(114, 216, 247, 0.52);
  display: block;
  font-size: 0.58rem;
  margin: 3px 0 0 clamp(2.3rem, 4vw, 3.5rem);
}

.radar-target {
  animation: targetApproach 4.8s cubic-bezier(0.45, 0, 0.2, 1) forwards;
  border: 1px solid rgba(243, 196, 81, 0.65);
  border-radius: 50%;
  height: 42px;
  left: 18%;
  position: absolute;
  top: 33%;
  width: 42px;
  z-index: 3;
}

.radar-target::before,
.radar-target::after {
  background: #f3c451;
  content: "";
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.radar-target::before { height: 2px; width: 58px; }
.radar-target::after { height: 58px; width: 2px; }
.radar-target i { background: #f8df98; border-radius: 50%; box-shadow: 0 0 22px #f3c451; height: 8px; left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 8px; }

.radar-target strong {
  animation: targetLabelPulse 3.4s linear infinite;
  color: #f8df98;
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: clamp(0.72rem, 1.25vw, 1rem);
  left: 54px;
  letter-spacing: 0.12em;
  opacity: 0.22;
  position: absolute;
  text-shadow: 0 0 12px rgba(243, 196, 81, 0.82);
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
}

.radar-status,
.radar-result {
  left: clamp(22px, 6vw, 110px);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
}

.radar-status { max-width: 460px; transition: opacity 400ms ease, transform 400ms ease; }
.status-kicker,
.result-label { color: #72d8f7; font-size: 0.76rem; font-weight: 850; letter-spacing: 0.16em; text-transform: uppercase; }
.event-date-highlight {
  color: #4de0c8;
  font-size: clamp(0.78rem, 1.25vw, 1rem);
  line-height: 1.45;
  max-width: 680px;
}
.search-message { color: #f5f8ff; font-size: clamp(2rem, 4.8vw, 4.8rem); font-weight: 800; line-height: 1.02; margin: 18px 0 28px; }
.loading-dots::after { animation: dots 1.2s steps(4, end) infinite; content: ""; }

.scan-progress { background: rgba(114, 216, 247, 0.18); height: 2px; max-width: 360px; overflow: hidden; }
.scan-progress span { animation: scanProgress 3.6s ease-out forwards; background: #72d8f7; display: block; height: 100%; width: 0; }

.radar-result { max-width: 680px; opacity: 0; pointer-events: none; transform: translateY(calc(-50% + 22px)); transition: opacity 700ms ease, transform 700ms ease; }
.radar-result h1 { color: #ffffff; font-size: clamp(3.5rem, 8vw, 8.4rem); line-height: 0.83; margin: 20px 0 26px; }
.radar-result h1 span { color: #72d8f7; display: block; font-size: clamp(1rem, 2vw, 1.5rem); letter-spacing: 0.08em; line-height: 1; margin-bottom: 20px; text-transform: uppercase; }
.radar-result > p:not(.result-label) { color: #c5d5e5; font-size: clamp(1rem, 1.6vw, 1.25rem); line-height: 1.6; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-actions a { border: 1px solid rgba(144, 203, 229, 0.34); border-radius: 6px; font-weight: 850; padding: 15px 20px; }
.primary-action { background: #2f79e9; color: #fff; }
.secondary-action { background: rgba(8, 25, 41, 0.74); color: #fff; }

.skip-scan { background: transparent; border: 0; bottom: 28px; color: rgba(197, 213, 229, 0.72); cursor: pointer; font: inherit; font-size: 0.8rem; font-weight: 700; position: absolute; right: clamp(22px, 4vw, 64px); text-decoration: underline; text-underline-offset: 5px; z-index: 4; }
.radar-stage.is-found .radar-status { opacity: 0; pointer-events: none; transform: translateY(calc(-50% - 18px)); }
.radar-stage.is-found .radar-result { opacity: 1; pointer-events: auto; transform: translateY(-50%); }
.radar-stage.is-found .radar-target { animation: targetLock 1.4s ease-in-out infinite; left: 67%; top: 38%; transform: translate(-50%, -50%); }
.radar-stage.is-found .radar-target strong { animation: lockedLabelPulse 1.4s ease-in-out infinite; }
.radar-stage.is-found .radar-history li { animation: none; opacity: 0; }
.radar-stage.is-found .skip-scan { display: none; }

.radar-countdown { bottom: 26px; left: clamp(22px, 6vw, 110px); margin: 0; opacity: 0; position: absolute; transition: opacity 600ms ease 500ms; z-index: 4; }
.radar-stage.is-found + .radar-countdown { opacity: 1; }
.radar-countdown div { min-height: 68px; padding: 12px 18px; }
.radar-countdown strong { font-size: 1.55rem; }

body.light .radar-screen { filter: saturate(0.9) contrast(1.05); }
body.light .search-message,
body.light .radar-result h1 { color: #0a2132; }
body.light .radar-result > p:not(.result-label) { color: #3c5668; }
body.light .secondary-action { background: rgba(255, 255, 255, 0.72); color: #0a2132; }
body.light .skip-scan { color: #34576a; }

.radar-result {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(-50%);
}

.hero-ticket-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  position: absolute;
  right: clamp(20px, 3vw, 52px);
  top: 47%;
  transform: translateY(-50%);
  width: min(50vw, 820px);
  z-index: 5;
}

.hero-ticket-grid .ticket {
  align-content: start;
  background: rgba(18, 34, 56, 0.97);
  display: grid;
  min-height: 430px;
  padding: clamp(20px, 2vw, 30px);
}

.hero-ticket-grid .ticket-top strong {
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.hero-ticket-grid .price {
  font-size: clamp(2.7rem, 4vw, 4.2rem);
  margin: 22px 0 16px;
}

.hero-ticket-grid .ticket ul {
  font-size: clamp(0.82rem, 1vw, 0.96rem);
}

.hero-ticket-grid .text-link {
  align-self: end;
}

.radar-result {
  left: clamp(22px, 3vw, 52px);
  max-width: 38vw;
  top: 10%;
  transform: none;
}

.radar-result h1 {
  font-size: clamp(3.5rem, 7vw, 7.6rem);
}

.metrics-section .stats-panel {
  margin-top: 0;
}

body.light .hero-ticket-grid .ticket {
  background: rgba(255, 255, 255, 0.96);
}

.radar-target {
  animation: targetLock 1.4s ease-in-out infinite;
  left: 67%;
  top: 38%;
  transform: translate(-50%, -50%);
}

.radar-target strong {
  animation: lockedLabelPulse 1.4s ease-in-out infinite;
}

.radar-countdown {
  bottom: auto;
  opacity: 1;
  grid-template-columns: repeat(4, minmax(96px, 1fr));
  max-width: 520px;
  top: 54%;
  width: min(34vw, 520px);
}

.radar-countdown div {
  min-height: 98px;
  padding: 17px 14px;
}

.radar-countdown strong {
  font-size: clamp(2.1rem, 3.2vw, 3.1rem);
  font-weight: 500;
}

.radar-countdown span {
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  margin-top: 9px;
}

body.light .radar-stage {
  background: #dcebf1;
}

body.light .radar-grid {
  background-image:
    linear-gradient(rgba(24, 78, 105, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 78, 105, 0.16) 1px, transparent 1px);
}

body.light .radar-ring {
  border-color: rgba(21, 72, 98, 0.58);
  border-width: 2px;
}

body.light .radar-crosshair::before,
body.light .radar-crosshair::after {
  background: rgba(18, 67, 92, 0.58);
}

body.light .radar-sweep {
  background: conic-gradient(from 0deg, transparent 0deg 304deg, rgba(11, 112, 151, 0.08) 316deg, rgba(16, 128, 170, 0.48) 359deg, transparent 360deg);
}

body.light .radar-sweep::after {
  background: #155f80;
  box-shadow: 0 0 12px rgba(21, 95, 128, 0.62);
}

body.light .radar-degree,
body.light .radar-location,
body.light .radar-history li,
body.light .radar-history small {
  color: #235f79;
}

body.light .radar-history .plane {
  color: #174f69;
  filter: drop-shadow(0 0 5px rgba(23, 79, 105, 0.46));
}

body.light .status-kicker,
body.light .result-label,
body.light .radar-result h1 span {
  color: #08789b;
}

body.light .event-date-highlight {
  color: #087466;
}

body.light .radar-target strong {
  color: #805800;
  text-shadow: 0 0 8px rgba(166, 111, 0, 0.34);
}

body.light .radar-countdown {
  border-color: rgba(17, 61, 84, 0.38);
}

/* Agenda cromatica */
body.light .schedule-section {
  background: #dfe8f2;
}

body.light .schedule-shell {
  background: #f7f9fc;
  border-color: rgba(30, 57, 82, 0.24);
}

body.light .day-tab {
  border-color: #81909f;
  box-shadow: 6px 7px 0 rgba(18, 121, 108, 0.22);
}

body.light .day-tab.active {
  background: #12324a;
  border-color: #12324a;
  color: #ffffff;
  box-shadow: 6px 7px 0 #2aa896;
}

body.light .day-tab.active span {
  color: #9ee6dc;
}

body.light .schedule-note {
  background: linear-gradient(110deg, #e1f3f0, #e8eef8 72%);
  border-color: rgba(18, 121, 108, 0.34);
  border-left: 7px solid #147d70;
}

body.light .schedule-note em {
  background: #d7e4fa;
  border-color: #9db8e3;
  color: #174d9c;
}

body.light .program-card {
  border: 1px solid rgba(25, 45, 66, 0.3);
  border-left-width: 7px;
  box-shadow: 5px 6px 0 rgba(25, 45, 66, 0.14);
}

body.light .program-card.business {
  background: linear-gradient(90deg, #fff1f2, #ffffff 30%);
  border-left-color: #b8334a;
  box-shadow: 5px 6px 0 rgba(184, 51, 74, 0.2);
}

body.light .program-card.flight {
  background: linear-gradient(90deg, #eaf3ff, #ffffff 30%);
  border-left-color: #286acb;
  box-shadow: 5px 6px 0 rgba(40, 106, 203, 0.22);
}

body.light .program-card.culture {
  background: linear-gradient(90deg, #fff8d9, #ffffff 30%);
  border-left-color: #c29413;
  box-shadow: 5px 6px 0 rgba(194, 148, 19, 0.22);
}

body.light .program-card.nascar {
  background: linear-gradient(90deg, #fff0eb, #ffffff 30%);
  border-color: rgba(159, 49, 30, 0.42);
  border-left: 7px solid #c64227;
  box-shadow: 5px 6px 0 rgba(198, 66, 39, 0.24);
}

body.light .program-card.business .badge { background: #f9dce1; border-color: #e8a9b5; color: #8e2639; }
body.light .program-card.flight .badge { background: #dceaff; border-color: #a9c7f2; color: #174d9c; }
body.light .program-card.culture .badge { background: #fff0b6; border-color: #e5cb69; color: #765700; }
body.light .program-card.nascar .badge { background: #fbded7; border-color: #e7aa9d; color: #932d19; }

body.light .program-card .time {
  background: #e9eef4;
  border-color: #c4ced8;
  color: #142b3d;
}

@keyframes radarSweep { to { transform: rotate(360deg); } }
@keyframes blip { 0%, 100% { opacity: 0.18; transform: scale(0.7); } 45% { opacity: 1; transform: scale(1.45); } }
@keyframes dots { 0% { content: ""; } 25% { content: "."; } 50% { content: ".."; } 75%, 100% { content: "..."; } }
@keyframes scanProgress { to { width: 100%; } }
@keyframes historyContact {
  0%, 100% { opacity: 0; transform: translate(-8px, 5px) scale(0.86); }
  4% { opacity: 1; transform: translate(0, 0) scale(1.08); }
  22% { opacity: 0.82; transform: translate(5px, -3px) scale(1); }
  42% { opacity: 0; transform: translate(11px, -7px) scale(0.94); }
}
@keyframes targetLabelPulse {
  0%, 76%, 100% { opacity: 0.2; transform: translateY(-50%) scale(0.96); }
  82%, 90% { opacity: 1; transform: translateY(-50%) scale(1.06); }
}
@keyframes lockedLabelPulse {
  0%, 100% { opacity: 0.58; }
  50% { opacity: 1; }
}
@keyframes targetApproach { 0% { left: 82%; top: 20%; transform: scale(0.65); } 40% { left: 31%; top: 66%; transform: scale(0.85); } 75% { left: 58%; top: 34%; transform: scale(1); } 100% { left: 67%; top: 38%; transform: translate(-50%, -50%) scale(1); } }
@keyframes targetLock { 0%, 100% { box-shadow: 0 0 0 0 rgba(243, 196, 81, 0.36); } 50% { box-shadow: 0 0 0 22px rgba(243, 196, 81, 0); } }

@media (max-width: 760px) {
  .brand { flex-basis: 140px; height: 72px; min-width: 140px; }
  .brand-logo { top: -61px; width: 140px; }
  .radar-hero { padding-top: 148px; }
  .radar-stage { min-height: calc(100svh - 148px); }
  .radar-screen { left: 67%; top: 45%; width: 150vw; }
  .radar-status,
  .radar-result { left: 20px; right: 20px; top: 44%; }
  .radar-result h1 { font-size: clamp(3.4rem, 19vw, 5.8rem); }
  .radar-result > p:not(.result-label) { max-width: 92%; }
  .radar-history small { display: none; }
  .radar-countdown { bottom: 24px; left: 20px; right: 20px; }
  .radar-countdown div { padding: 10px 8px; }
  .skip-scan { bottom: 112px; }
}

@media (max-width: 1120px) {
  .radar-stage {
    min-height: 1180px;
  }

  .radar-countdown {
    bottom: 24px;
    top: auto;
  }

  .radar-result {
    left: 24px;
    max-width: calc(100% - 48px);
    right: 24px;
    top: 190px;
    transform: none;
  }

  .hero-ticket-grid {
    left: 24px;
    right: 24px;
    top: 450px;
    transform: none;
    width: auto;
  }
}

@media (max-width: 760px) {
  .radar-stage {
    min-height: 1580px;
  }

  .radar-result {
    top: 90px;
  }

  .hero-ticket-grid {
    grid-template-columns: 1fr;
    top: 390px;
  }

  .hero-ticket-grid .ticket {
    min-height: 440px;
  }

  .radar-countdown {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: auto;
  }

  .radar-countdown div {
    min-height: 96px;
    padding: 18px 8px;
  }

  .radar-countdown div:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .radar-countdown div:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .radar-countdown strong {
    font-size: clamp(1.8rem, 9vw, 2.7rem);
  }

  .radar-countdown span {
    font-size: 0.62rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .radar-sweep,
  .radar-target,
  .radar-blip,
  .radar-history li,
  .radar-target strong,
  .scan-progress span,
  .loading-dots::after { animation: none; }
  .radar-stage.is-found .radar-target strong { opacity: 1; }
}



.currency {
  font-size: 17px;
  font-weight: bold;
}
