:root {
  --bg: #0b0d10;
  --card: #12161c;
  --card2: #0f1319;
  --text: #e6e8eb;
  --muted: #a7afb9;
  --line: rgba(255, 255, 255, 0.08);
  --accent: #7dd3fc;
  --danger: #fb7185;
  --ok: #34d399;
  --emerald: #10b981;
  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
    "Courier New", monospace;
  --sans: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial,
    "Noto Sans", "Liberation Sans", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  background: radial-gradient(1200px 600px at 20% -10%, rgba(125, 211, 252, 0.14), transparent),
    radial-gradient(900px 500px at 90% 10%, rgba(52, 211, 153, 0.1), transparent),
    var(--bg);
  color: var(--text);
  font-family: var(--sans);
}

code,
pre {
  font-family: var(--mono);
}

.top {
  display: block;
  align-items: stretch;
  justify-content: flex-start;
  gap: 16px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  background: rgba(11, 13, 16, 0.92);
  backdrop-filter: blur(8px);
  z-index: 10;
}

.hamburger {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 120;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(18, 22, 28, 0.9);
  color: var(--text);
  font-size: 18px;
  cursor: pointer;
}

.hamburger:hover {
  border-color: rgba(125, 211, 252, 0.6);
}

.hamburgerMenu {
  position: fixed;
  top: 58px;
  left: 10px;
  z-index: 120;
  width: 260px;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 55%), var(--card);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  display: none;
}

.hamburgerMenu.is-open {
  display: block;
}

.hamburgerMenu__title {
  font-weight: 700;
  margin-bottom: 8px;
}

.hamburgerMenu__label {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-top: 10px;
  margin-bottom: 6px;
}

.hamburgerMenu__row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
}

.hamburgerMenu input[type="range"] {
  width: 100%;
}

.hamburgerMenu__value {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  min-width: 52px;
  text-align: right;
}

.hamburgerMenu__hint {
  color: var(--muted);
  font-size: 12px;
  margin-top: 10px;
}

.brand__title {
  font-weight: 700;
  letter-spacing: 0.3px;
  line-height: 1.15;
  width: 100%;
}

.brand__tagline {
  font-size: 0.7em;
  display: block;
  width: 100%;
}

.brand__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
  width: 100%;
}

.brand {
  margin-left: 40px; /* keep clear of the fixed hamburger button */
  width: 100%;
  display: block;
  margin-bottom: 8px;
}

.brandHelpLink {
  margin-left: 0;
  color: rgba(125, 211, 252, 0.95);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.7em;
  white-space: nowrap;
}

.brandHelpLink:hover {
  text-decoration: underline;
}

.brandLink {
  color: var(--accent);
  text-decoration: none;
}

.brandLink:hover {
  text-decoration: underline;
}

.controls {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  flex-wrap: wrap;
}

.controls__label {
  color: var(--muted);
  font-size: 12px;
}

.controls__input {
  width: min(340px, 50vw);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 12px;
  color: var(--text);
  outline: none;
}

.controls__input:focus {
  border-color: rgba(125, 211, 252, 0.6);
  box-shadow: 0 0 0 4px rgba(125, 211, 252, 0.12);
}

.controls__select {
  width: min(340px, 50vw);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 12px;
  color: var(--text);
  outline: none;
  height: 40px;
}

.controls__select:focus {
  border-color: rgba(125, 211, 252, 0.6);
  box-shadow: 0 0 0 4px rgba(125, 211, 252, 0.12);
}

.controls__btn {
  background: linear-gradient(180deg, rgba(125, 211, 252, 0.25), rgba(125, 211, 252, 0.1));
  color: var(--text);
  border: 1px solid rgba(125, 211, 252, 0.35);
  padding: 10px 12px;
  border-radius: 10px;
  cursor: pointer;
}

.controls__btn:hover {
  border-color: rgba(125, 211, 252, 0.6);
}

.donateBtn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-color: rgba(250, 204, 21, 0.55);
  background: linear-gradient(180deg, rgba(250, 204, 21, 0.35), rgba(250, 204, 21, 0.12));
  box-shadow: 0 0 0 4px rgba(250, 204, 21, 0.06), 0 18px 40px rgba(0, 0, 0, 0.35);
  font-weight: 900;
  letter-spacing: 0.06em;
  text-decoration: none;
  animation: donateGlow 2.4s ease-in-out infinite;
}

.donateBtn--compact {
  padding: 0 8px !important;
  height: 20px !important;
  min-height: 20px;
  border-radius: 7px;
  font-size: 0.65em;
  line-height: 20px;
}

.donateBtn__text {
  position: relative;
  z-index: 1;
  color: rgba(2, 6, 23, 0.95);
}

.donateBtn:hover {
  border-color: rgba(250, 204, 21, 0.9);
  box-shadow: 0 0 0 5px rgba(250, 204, 21, 0.09), 0 18px 40px rgba(0, 0, 0, 0.35);
}

/* Shimmer/iridescent effect (text + subtle sweep) */
.donateBtn::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: 0;
  background: linear-gradient(
    115deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.28) 18%,
    rgba(255, 255, 255, 0) 36%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: translateX(-120%);
  animation: donateSweep 2.8s linear infinite;
  pointer-events: none;
}

@supports (-webkit-background-clip: text) or (background-clip: text) {
  .donateBtn__text {
    background-image: linear-gradient(90deg, #22c55e, #60a5fa, #f59e0b, #22c55e);
    background-size: 320% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: donateTextShift 2.2s linear infinite;
  }
}

@keyframes donateTextShift {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

@keyframes donateSweep {
  0% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(120%);
  }
}

@keyframes donateGlow {
  0%,
  100% {
    box-shadow:
      0 0 0 4px rgba(250, 204, 21, 0.06),
      0 18px 40px rgba(0, 0, 0, 0.35),
      0 0 18px rgba(250, 204, 21, 0.08);
  }
  50% {
    box-shadow:
      0 0 0 5px rgba(250, 204, 21, 0.10),
      0 18px 40px rgba(0, 0, 0, 0.35),
      0 0 26px rgba(250, 204, 21, 0.18);
  }
}

@media (prefers-reduced-motion: reduce) {
  .donateBtn,
  .donateBtn::before,
  .donateBtn__text {
    animation: none !important;
  }
  .donateBtn::before {
    display: none;
  }
}

.controls__toggle {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--muted);
  font-size: 12px;
  user-select: none;
}

.grid {
  padding: 16px;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(12, 1fr);
}

.activity {
  display: grid;
  gap: 10px;
}

.activity__row {
  display: grid;
  grid-template-columns: 80px repeat(11, minmax(0, 1fr));
  gap: 10px;
  align-items: center;
}

.activity__row--head {
  padding-bottom: 6px;
  border-bottom: 1px solid var(--line);
}

.activity__label {
  color: var(--muted);
  font-size: 12px;
}

.activity__band {
  text-align: center;
  color: var(--muted);
  font-size: 12px;
  font-family: var(--mono);
}

.dot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  display: inline-block;
  margin: 0 auto;
  padding: 0;
  cursor: pointer;
  transition:
    background-color 140ms ease,
    border-color 140ms ease,
    box-shadow 140ms ease,
    transform 140ms ease;
}

/* Legend dots are not interactive */
.activity__legend .dot {
  cursor: default;
}

.dot--on {
  background: rgba(50, 255, 140, 0.95);
  border-color: rgba(50, 255, 140, 0.65);
  box-shadow: 0 0 0 3px rgba(50, 255, 140, 0.12);
}

.dot--recent {
  background: rgba(50, 255, 140, 0.95);
  border-color: rgba(50, 255, 140, 0.65);
  box-shadow: 0 0 0 3px rgba(50, 255, 140, 0.12);
}

.dot--history {
  background: rgba(234, 179, 8, 0.85);
  border-color: rgba(234, 179, 8, 0.55);
  box-shadow: 0 0 0 2px rgba(234, 179, 8, 0.1);
}

.dot--off {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
}

.dot--pulse {
  animation: dotPulseStrong 6s cubic-bezier(0.22, 1, 0.36, 1) 1;
}

@keyframes dotPulseStrong {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 3px rgba(50, 255, 140, 0.16), 0 0 22px rgba(50, 255, 140, 0.0);
  }
  6% {
    transform: scale(1.65);
    box-shadow: 0 0 0 7px rgba(50, 255, 140, 0.22), 0 0 28px rgba(50, 255, 140, 0.35);
  }
  14% {
    transform: scale(1);
    box-shadow: 0 0 0 3px rgba(50, 255, 140, 0.14), 0 0 14px rgba(50, 255, 140, 0.14);
  }
  30% {
    transform: scale(1.5);
    box-shadow: 0 0 0 6px rgba(50, 255, 140, 0.18), 0 0 26px rgba(50, 255, 140, 0.28);
  }
  42% {
    transform: scale(1);
    box-shadow: 0 0 0 3px rgba(50, 255, 140, 0.12), 0 0 14px rgba(50, 255, 140, 0.12);
  }
  58% {
    transform: scale(1.35);
    box-shadow: 0 0 0 5px rgba(50, 255, 140, 0.14), 0 0 22px rgba(50, 255, 140, 0.22);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 3px rgba(50, 255, 140, 0.10), 0 0 14px rgba(50, 255, 140, 0.10);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 3px rgba(50, 255, 140, 0.12);
  }
}

.activity__legend {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding-top: 6px;
}

.legendItem {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
}

.legendItem--muted {
  opacity: 0.9;
}

.windowBar {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.windowBtn {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  border: 1px solid var(--line);
  padding: 8px 10px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 12px;
}

.windowBtn:hover {
  border-color: rgba(125, 211, 252, 0.6);
}

.windowBtn.is-active {
  border-color: rgba(16, 185, 129, 0.42);
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.08);
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}

.tabBtn {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  border: 1px solid var(--line);
  padding: 6px 10px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 12px;
}

.tabBtn:hover {
  border-color: rgba(125, 211, 252, 0.6);
}

.tabBtn.is-active {
  border-color: rgba(125, 211, 252, 0.65);
  box-shadow: 0 0 0 2px rgba(125, 211, 252, 0.12);
}

.windowHint {
  color: var(--muted);
  font-size: 12px;
  margin-left: auto;
}

.holdCard {
  position: fixed;
  left: 16px;
  top: 80px;
  z-index: 50;
  width: min(340px, calc(100vw - 32px));
  padding: 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 55%), var(--card);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  display: none;
}

.holdCard.is-open {
  display: block;
}

.holdCard__title {
  font-weight: 700;
  letter-spacing: 0.2px;
}

.holdCard__sub {
  color: var(--muted);
  font-size: 12px;
  margin-top: 4px;
}

.holdCard__list {
  margin-top: 10px;
  display: grid;
  gap: 8px;
  font-family: var(--mono);
  font-size: 12px;
}

.holdRow {
  display: grid;
  grid-template-columns: 86px 1fr 52px;
  gap: 10px;
  align-items: center;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.holdRow__date {
  color: var(--muted);
}

.holdRow__call {
  color: var(--text);
  overflow: hidden;
  text-overflow: ellipsis;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.holdRow__callMain {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.holdRow__freq {
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.holdRow__time {
  color: var(--muted);
  text-align: right;
}

.card {
  grid-column: span 4;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 40%), var(--card2);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
  min-width: 0;
}

.card--chart {
  height: 280px;
  display: flex;
  flex-direction: column;
}

.chartArea {
  flex: 1;
  min-height: 0;
}

.chartArea canvas {
  width: 100% !important;
  height: 100% !important;
}

.card--wide {
  grid-column: span 12;
}

.card--globe {
  grid-column: span 8;
  grid-row: span 2;
  display: flex;
  flex-direction: column;
}

.card--solar {
  grid-column: span 4;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.solarWidget {
  display: block;
  width: 100%;
}

.solarWidget img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.globeWrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  gap: 8px;
  min-height: 0;
}

.globeContainer {
  position: relative;
  width: 100%;
  flex: 1;
  height: 100%;
  max-height: none;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: radial-gradient(700px 320px at 40% 30%, rgba(125, 211, 252, 0.08), transparent),
    rgba(0, 0, 0, 0.18);
  touch-action: none;
}

.globeHud {
  position: absolute;
  left: 10px;
  right: 10px;
  top: 10px;
  z-index: 5;
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid rgba(250, 204, 21, 0.22);
  background: rgba(2, 6, 23, 0.45);
  backdrop-filter: blur(6px);
  pointer-events: auto;
  user-select: none;
  display: inline-flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: baseline;
  gap: 8px;
  white-space: nowrap;
}

.globeHud__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(250, 204, 21, 0.9) !important;
  text-transform: uppercase;
}

.globeHud__time {
  font-family: var(--mono);
  font-size: 34px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #fde047 !important;
  text-shadow:
    0 0 10px rgba(250, 204, 21, 0.35),
    0 0 24px rgba(250, 204, 21, 0.18);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.globeHud__news {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  margin-left: 10px;
  font-size: clamp(10px, 1.05vw, 12px);
  color: rgba(226, 232, 240, 0.92);
  cursor: pointer;
}

.globeHud__news.is-paused .globeHud__track {
  animation-play-state: paused;
}

.globeHud__news:hover .globeHud__track,
.globeHud__news:active .globeHud__track {
  animation-play-state: paused;
}

.globeHud__track {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  white-space: nowrap;
  will-change: transform;
  animation: dxNewsMarquee var(--dxmarquee-duration, 38s) linear infinite;
}

.dxLabel {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 6; /* above WebGL canvas + HUD */
  pointer-events: none;
  user-select: none;
  transform: translate(-50%, calc(-100% - 10px)); /* keep the dot visible under the label */
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.55));
}

.dxLabel__call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.55);
  background: linear-gradient(180deg, rgba(52, 211, 153, 0.95), rgba(34, 197, 94, 0.92));
  color: rgba(2, 6, 23, 0.95);
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.15;
  white-space: nowrap;
}

.globeHud__run {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.globeHud__sep {
  color: rgba(250, 204, 21, 0.7);
}

@keyframes dxNewsMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-1 * var(--dxmarquee-distance, 800px)));
  }
}

.card__title {
  font-weight: 600;
  color: #f1f5f9;
  margin-bottom: 10px;
}

.titleMeta {
  margin-left: 10px;
  color: var(--muted);
  font-weight: 500;
  font-size: 12px;
  font-family: var(--mono);
}

.kv {
  display: grid;
  gap: 8px;
}

.kv__row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 10px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  border-radius: 10px;
}

.kv__row.is-hidden {
  display: none;
}

.kv__k {
  color: var(--muted);
  font-size: 12px;
}

.kv__v {
  font-family: var(--mono);
  font-size: 12px;
}

#vCall {
  color: #facc15;
  font-weight: 700;
  font-size: clamp(14px, 1.2vw, 18px);
}

.status {
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  color: var(--muted);
  font-size: 12px;
}

.status--ok {
  color: var(--ok);
  border-color: rgba(52, 211, 153, 0.25);
}

.status--err {
  color: var(--danger);
  border-color: rgba(251, 113, 133, 0.25);
}

.status--hint {
  color: #fde047;
  border-color: rgba(250, 204, 21, 0.35);
}

.status--blink {
  animation: statusBlink 0.9s steps(2, end) infinite;
}

@keyframes statusBlink {
  50% {
    opacity: 0.3;
  }
}

.toast {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2000;
  max-width: min(680px, calc(100vw - 24px));
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(251, 113, 133, 0.35);
  background: rgba(2, 6, 23, 0.9);
  color: #fca5a5;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  font: 800 16px/1.25 var(--sans);
  letter-spacing: 0.2px;
  display: none;
}

.toast.is-open {
  display: block;
}

.tableWrap {
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--mono);
  font-size: 12px;
}

.table thead th {
  position: sticky;
  top: 0;
  background: rgba(18, 22, 28, 0.95);
  backdrop-filter: blur(6px);
  text-align: left;
  padding: 10px 10px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-weight: 600;
}

.table td {
  padding: 8px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  white-space: nowrap;
}

.table tbody tr:hover td {
  background: rgba(125, 211, 252, 0.06);
}

.pre {
  margin: 0;
  padding: 12px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--line);
  overflow: auto;
  max-height: 360px;
  font-size: 12px;
}

.foot {
  padding: 12px 16px 18px;
  color: var(--muted);
  font-size: 12px;
}

.foot__row {
  margin-bottom: 10px;
}

.foot__row a {
  color: rgba(125, 211, 252, 0.95);
  text-decoration: none;
  font-weight: 700;
}

.foot__row a:hover {
  text-decoration: underline;
}

.bottomLinksContainer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.bottom-useful-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(2, 6, 23, 0.32);
  color: rgba(226, 232, 240, 0.92);
  text-decoration: none;
  font-size: 12px;
  line-height: 1;
  user-select: none;
}

.bottom-useful-link:hover {
  border-color: rgba(125, 211, 252, 0.35);
  background: rgba(2, 6, 23, 0.42);
}

.star-icon {
  font-size: 12px;
  line-height: 1;
}

.yellow-star {
  color: #fde047;
}

.red-star {
  color: #fb7185;
}

.white-star {
  color: #e2e8f0;
}

.share-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 18px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.02em;
  border: 1px solid rgba(148, 163, 184, 0.25);
}

.whatsapp-green {
  background: rgba(34, 197, 94, 0.18);
  color: rgba(34, 197, 94, 0.95);
  border-color: rgba(34, 197, 94, 0.28);
}

.email-yellow {
  background: rgba(250, 204, 21, 0.15);
  color: rgba(250, 204, 21, 0.95);
  border-color: rgba(250, 204, 21, 0.26);
}

@media (max-width: 900px) {
  .hamburger,
  .hamburgerMenu {
    display: none !important;
  }

  label[for="callInput"],
  #callInput {
    display: none;
  }

  .top {
    flex-direction: column;
    align-items: stretch;
    padding-left: 16px;
  }

  .brand {
    margin-left: 0;
  }

  .controls__input {
    width: 100%;
  }

  .card {
    grid-column: span 12;
  }

  .card--globe {
    display: none;
  }

  .globeContainer {
    width: 60%;
    margin-left: 0;
    margin-right: auto;
    height: auto;
    flex: 0 0 auto;
    aspect-ratio: 710 / 520;
    max-height: 380px;
  }

  .globeWrap {
    align-items: flex-start;
  }

  .activity__row {
    grid-template-columns: 80px repeat(11, minmax(0, 1fr));
    gap: 8px;
  }
}
