:root {
  color-scheme: dark;
  --bg: #07090d;
  --panel: rgba(255, 255, 255, 0.045);
  --panel-2: rgba(255, 255, 255, 0.085);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.68);
  --accent: #f2c84b;
  --accent-2: #35f2d0;
  --danger: #ff506a;
  --ok: #2ce67c;
  --shadow: 0 18px 70px rgba(0, 0, 0, 0.65);
  --radius: 20px;
}

@font-face {
  font-family: "OnePiece";
  src: url("/font/one%20piece%20font.ttf") format("truetype");
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji",
    "Segoe UI Emoji";
  background: radial-gradient(1100px 850px at 50% 18%, rgba(242, 200, 75, 0.12), transparent 55%),
    radial-gradient(900px 650px at 18% 85%, rgba(53, 242, 208, 0.1), transparent 55%),
    radial-gradient(900px 650px at 80% 75%, rgba(255, 80, 106, 0.08), transparent 58%), var(--bg);
  color: var(--text);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.03) 0 1px,
      rgba(255, 255, 255, 0) 1px 6px
    ),
    radial-gradient(900px 400px at 50% 0%, rgba(255, 255, 255, 0.045), transparent 60%);
  mix-blend-mode: overlay;
  opacity: 0.55;
  animation: drift 10s ease-in-out infinite;
}

.app {
  min-height: 100%;
  padding: max(18px, env(safe-area-inset-top)) 16px max(20px, env(safe-area-inset-bottom));
  display: grid;
  place-items: center;
}

.panel {
  width: min(560px, 100%);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02) 55%, rgba(0, 0, 0, 0) 130%),
    var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px 18px 18px;
  backdrop-filter: blur(10px);
}

.panel.sync .tag {
  border-color: rgba(242, 200, 75, 0.22);
  background: rgba(242, 200, 75, 0.08);
  color: rgba(242, 200, 75, 0.95);
}

.panel.sync .radar {
  background: radial-gradient(circle at 50% 50%, rgba(242, 200, 75, 0.16), rgba(242, 200, 75, 0.03) 50%,
      rgba(255, 255, 255, 0.02) 70%, rgba(255, 255, 255, 0.01));
  border-color: rgba(242, 200, 75, 0.18);
}

.panel.sync .sweep {
  background: conic-gradient(from 0deg, rgba(242, 200, 75, 0.0), rgba(242, 200, 75, 0.08), rgba(242, 200, 75, 0.55),
      rgba(242, 200, 75, 0.0) 55%);
}

.syncScreen {
  width: min(560px, 100%);
  display: grid;
  place-items: center;
}

.poiScreen {
  width: min(560px, 100%);
  display: grid;
  place-items: center;
}

.waitScreen {
  width: min(560px, 100%);
  display: grid;
  place-items: center;
  gap: 12px;
}

.finalScreen {
  width: min(560px, 100%);
  display: grid;
  place-items: center;
  gap: 14px;
}

.finalMessage {
  width: 100%;
  padding: 18px 16px;
  border-radius: 18px;
  border: 1px solid rgba(242, 200, 75, 0.24);
  background: rgba(0, 0, 0, 0.22);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.6);
  text-align: center;
  font-family: "OnePiece", ui-serif, Georgia, "Times New Roman", serif;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.9);
}

.transitionOut {
  animation: screenOut 420ms ease forwards;
}

@keyframes screenOut {
  to {
    opacity: 0;
    transform: translateY(10px);
    filter: blur(2px);
  }
}

.mapWrap {
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(242, 200, 75, 0.22);
  background: rgba(0, 0, 0, 0.22);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.6);
  position: relative;
}

.pirateMap .mapFrame {
  height: 340px;
  filter: sepia(0.55) contrast(1.12) saturate(0.9) hue-rotate(-10deg) brightness(0.92);
}

.mapHud {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  pointer-events: none;
}

.mapOverlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.mapOverlaySvg {
  width: 100%;
  height: 100%;
  display: block;
}

.routeGlow {
  fill: none;
  stroke: rgba(242, 200, 75, 0.22);
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: blur(1.1px);
}

.routePath {
  fill: none;
  stroke: rgba(242, 200, 75, 0.95);
  stroke-width: 1.3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 3.2 2.4;
  animation: routeDash 2.2s linear infinite;
}

.routeDot {
  fill: rgba(53, 242, 208, 0.85);
  stroke: rgba(0, 0, 0, 0.55);
  stroke-width: 0.35;
}

.routeDot.end {
  fill: rgba(255, 80, 106, 0.85);
}

@keyframes routeDash {
  to {
    stroke-dashoffset: -18;
  }
}

.compass.mini {
  width: 160px;
  margin: 0;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.65));
}

.compass.mini .compassFace {
  inset: 8px;
}

.compass.mini .compassNeedle {
  width: 3px;
}

.mapWrap::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(70% 60% at 50% 40%, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.55)),
    linear-gradient(180deg, rgba(242, 200, 75, 0.08), rgba(0, 0, 0, 0));
  mix-blend-mode: multiply;
}

.actionRow {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 10px 0 10px;
}

.navStatus {
  width: 100%;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.18);
  color: rgba(255, 255, 255, 0.78);
  text-align: center;
  font-family: "OnePiece", ui-serif, Georgia, "Times New Roman", serif;
  letter-spacing: 0.4px;
}

.navStatus.on {
  border-color: rgba(53, 242, 208, 0.22);
  background: rgba(53, 242, 208, 0.05);
  color: rgba(53, 242, 208, 0.95);
}

@media (max-width: 420px) {
  .actionRow {
    grid-template-columns: 1fr;
  }
  .pirateMap .mapFrame {
    height: 300px;
  }
  .compass.mini {
    width: 132px;
  }
}

.pirateTitle,
.pirateSubtitle {
  font-family: "OnePiece", ui-serif, Georgia, "Times New Roman", serif;
  text-align: center;
  letter-spacing: 0.6px;
}

.pirateTitle {
  font-size: 42px;
  line-height: 1;
  margin: 6px 0 12px;
  color: rgba(242, 200, 75, 0.95);
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.7);
}

.pirateSubtitle {
  font-size: 22px;
  line-height: 1.1;
  margin: 10px 0 2px;
  color: rgba(255, 255, 255, 0.78);
}

.syncCard {
  display: grid;
  gap: 8px;
  padding: 12px 12px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.syncKicker {
  font-size: 11px;
  letter-spacing: 1.2px;
  font-weight: 800;
  color: rgba(53, 242, 208, 0.9);
  text-transform: uppercase;
  opacity: 0.9;
  animation: commFlicker 5.5s ease-in-out infinite;
}

.syncTitle {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.2px;
}

.syncBody {
  font-size: 13px;
  line-height: 1.45;
  color: var(--muted);
}

.title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin: 0 0 14px;
}

.title h1 {
  margin: 0;
  font-size: 20px;
  letter-spacing: 0.3px;
}

.tag {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
}

.tag.ok {
  color: rgba(242, 200, 75, 0.95);
  border-color: rgba(242, 200, 75, 0.4);
  background: rgba(242, 200, 75, 0.09);
}

.tag.bad {
  color: rgba(255, 80, 106, 0.95);
  border-color: rgba(255, 80, 106, 0.4);
  background: rgba(255, 80, 106, 0.08);
}

.panel.sealed {
  border-color: rgba(255, 80, 106, 0.22);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.75);
}

.seal {
  display: grid;
  gap: 6px;
  padding: 12px 12px;
  border-radius: 14px;
  background: rgba(255, 80, 106, 0.06);
  border: 1px solid rgba(255, 80, 106, 0.18);
  text-align: center;
}

.sealTitle {
  font-size: 12px;
  letter-spacing: 1.2px;
  font-weight: 800;
  color: rgba(255, 80, 106, 0.95);
}

.sealSub {
  font-size: 13px;
  color: var(--muted);
}

.stack {
  display: grid;
  gap: 12px;
}

.row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

@media (max-width: 420px) {
  .row {
    grid-template-columns: 1fr;
  }
}

label {
  display: grid;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
}

input {
  width: 100%;
  padding: 12px 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  color: var(--text);
  outline: none;
}

input:focus {
  border-color: rgba(53, 242, 208, 0.55);
  box-shadow: 0 0 0 3px rgba(53, 242, 208, 0.16);
}

input.shake {
  border-color: rgba(255, 80, 106, 0.55);
  box-shadow: 0 0 0 3px rgba(255, 80, 106, 0.18);
  animation: inputShake 320ms ease-in-out;
}

@keyframes inputShake {
  0% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(-6px);
  }
  40% {
    transform: translateX(6px);
  }
  60% {
    transform: translateX(-4px);
  }
  80% {
    transform: translateX(4px);
  }
  100% {
    transform: translateX(0);
  }
}

button {
  appearance: none;
  border: 0;
  cursor: pointer;
  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 650;
  letter-spacing: 0.2px;
  background: linear-gradient(180deg, rgba(242, 200, 75, 0.95), rgba(242, 200, 75, 0.72));
  color: rgba(0, 0, 0, 0.86);
}

button.secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.subline {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 13px;
  color: var(--muted);
}

.subline strong {
  color: var(--text);
  font-weight: 650;
}

.subline.ok {
  border-color: rgba(53, 242, 208, 0.22);
  background: rgba(53, 242, 208, 0.06);
}

.armory {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 8px 0 2px;
}

.chip {
  padding: 10px 12px;
  border-radius: 999px;
  font-weight: 650;
  letter-spacing: 0.2px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.chip.on {
  border-color: rgba(53, 242, 208, 0.35);
  background: rgba(53, 242, 208, 0.08);
  color: rgba(53, 242, 208, 0.95);
}

.compass {
  width: min(320px, 86vw);
  aspect-ratio: 1;
  margin: 14px auto 14px;
  position: relative;
  border-radius: 50%;
  display: grid;
  place-items: center;
  filter: drop-shadow(0 18px 48px rgba(0, 0, 0, 0.55));
}

.compass::before {
  content: "";
  position: absolute;
  inset: -10%;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0) 56%, rgba(242, 200, 75, 0.22) 58%, rgba(242, 200, 75, 0.06) 72%, rgba(0, 0, 0, 0) 74%),
    repeating-conic-gradient(from 0deg, rgba(242, 200, 75, 0.12) 0 7deg, rgba(0, 0, 0, 0) 7deg 45deg);
  opacity: 0.85;
  filter: drop-shadow(0 22px 44px rgba(0, 0, 0, 0.55));
}

.compassRing {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    rgba(242, 200, 75, 0.18),
    rgba(53, 242, 208, 0.12),
    rgba(255, 255, 255, 0.04),
    rgba(242, 200, 75, 0.18)
  );
  opacity: 0.9;
  animation: ringSpin 14s linear infinite;
}

.compassFace {
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02) 55%, rgba(0, 0, 0, 0) 72%),
    repeating-conic-gradient(
      from 0deg,
      rgba(255, 255, 255, 0.09) 0 2deg,
      rgba(255, 255, 255, 0) 2deg 10deg
    );
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.25);
}

.compassFace::before {
  content: "";
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  pointer-events: none;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.16;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2064%2064%27%3E%3Cpath%20d%3D%27M12%2044h40l-6%2010H18z%27%20fill%3D%27%23f2c84b%27%20fill-opacity%3D%270.9%27/%3E%3Cpath%20d%3D%27M32%2014v26%27%20stroke%3D%27%23f2c84b%27%20stroke-opacity%3D%270.9%27%20stroke-width%3D%273%27%20stroke-linecap%3D%27round%27/%3E%3Cpath%20d%3D%27M32%2016c-10%206-14%2014-14%2022h14z%27%20fill%3D%27%2335f2d0%27%20fill-opacity%3D%270.75%27/%3E%3Cpath%20d%3D%27M32%2018c10%206%2014%2014%2014%2020H32z%27%20fill%3D%27%23ffffff%27%20fill-opacity%3D%270.08%27/%3E%3Cpath%20d%3D%27M20%2044c6%203%2018%203%2024%200%27%20stroke%3D%27%2307090d%27%20stroke-opacity%3D%270.35%27%20stroke-width%3D%272%27%20fill%3D%27none%27/%3E%3C/svg%3E");
  mix-blend-mode: screen;
}

.compassNeedle {
  position: absolute;
  width: 4px;
  height: 44%;
  top: 14%;
  left: 50%;
  transform: translateX(-50%) rotate(0deg);
  transform-origin: 50% calc(100% - 8px);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 80, 106, 0.95), rgba(255, 80, 106, 0.12));
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.35), 0 10px 24px rgba(0, 0, 0, 0.6);
  transition: transform 260ms ease-out;
}

.compassCenter {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(242, 200, 75, 0.95);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.3), 0 0 22px rgba(242, 200, 75, 0.35);
}

.compass.searching .compassNeedle {
  animation: needleSearch 2.8s ease-in-out infinite;
}

.compass.wild {
  animation: wildWobble 2.6s ease-in-out infinite;
}

.compass.wild .compassRing {
  animation: wildRing 3.8s ease-in-out infinite;
}

.compass.wild .compassFace {
  background: radial-gradient(circle at 50% 42%, rgba(242, 200, 75, 0.12), rgba(0, 0, 0, 0) 55%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015) 55%, rgba(0, 0, 0, 0) 74%),
    repeating-radial-gradient(circle at 50% 50%, rgba(242, 200, 75, 0.08) 0 1px, rgba(0, 0, 0, 0) 1px 18px);
}

.compass.wild .compassNeedle {
  animation: wildNeedle 1.25s linear infinite;
  transition: none;
  will-change: transform;
}

.compass.half {
  animation: wildWobble 3.4s ease-in-out infinite;
}

.compass.half .compassRing {
  animation: wildRing 6.2s ease-in-out infinite;
}

.compass.half .compassNeedle {
  animation: wildNeedle 2.4s linear infinite;
  transition: none;
  will-change: transform;
}

.compass.settled .compassNeedle {
  animation: none;
  transform: translateX(-50%) rotate(18deg);
  transition: transform 420ms ease-out;
}

@keyframes wildNeedle {
  0% {
    transform: translateX(-50%) rotate(-140deg);
  }
  8% {
    transform: translateX(-50%) rotate(60deg);
  }
  16% {
    transform: translateX(-50%) rotate(-10deg);
  }
  26% {
    transform: translateX(-50%) rotate(170deg);
  }
  35% {
    transform: translateX(-50%) rotate(-80deg);
  }
  48% {
    transform: translateX(-50%) rotate(220deg);
  }
  61% {
    transform: translateX(-50%) rotate(30deg);
  }
  72% {
    transform: translateX(-50%) rotate(-210deg);
  }
  84% {
    transform: translateX(-50%) rotate(120deg);
  }
  100% {
    transform: translateX(-50%) rotate(-140deg);
  }
}

@keyframes wildRing {
  0% {
    transform: rotate(0deg);
  }
  45% {
    transform: rotate(-12deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

@keyframes wildWobble {
  0% {
    transform: rotate(0deg) translateY(0);
  }
  40% {
    transform: rotate(-1.2deg) translateY(-1px);
  }
  70% {
    transform: rotate(1.2deg) translateY(1px);
  }
  100% {
    transform: rotate(0deg) translateY(0);
  }
}

.compass.sealed {
  opacity: 0.82;
  filter: drop-shadow(0 18px 48px rgba(0, 0, 0, 0.65)) saturate(0.75);
}

.compass.noRoute .compassRing {
  opacity: 0.55;
}

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

@keyframes needleSearch {
  0% {
    transform: translateX(-50%) rotate(-35deg);
    opacity: 0.75;
  }
  50% {
    transform: translateX(-50%) rotate(35deg);
    opacity: 0.95;
  }
  100% {
    transform: translateX(-50%) rotate(-35deg);
    opacity: 0.75;
  }
}

@keyframes drift {
  0% {
    transform: translateY(-8px);
  }
  50% {
    transform: translateY(8px);
  }
  100% {
    transform: translateY(-8px);
  }
}

@keyframes commFlicker {
  0% {
    opacity: 0.88;
    text-shadow: 0 0 0 rgba(53, 242, 208, 0);
  }
  38% {
    opacity: 0.95;
    text-shadow: 0 0 14px rgba(53, 242, 208, 0.25);
  }
  41% {
    opacity: 0.65;
    text-shadow: 0 0 18px rgba(53, 242, 208, 0.18);
  }
  44% {
    opacity: 0.92;
    text-shadow: 0 0 10px rgba(53, 242, 208, 0.22);
  }
  100% {
    opacity: 0.88;
    text-shadow: 0 0 0 rgba(53, 242, 208, 0);
  }
}

button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.hint {
  font-size: 13px;
  line-height: 1.35;
  color: var(--muted);
}

.divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 8px 0;
}

.radar-wrap {
  display: grid;
  place-items: center;
  padding: 12px 0 2px;
}

.radar {
  width: 240px;
  aspect-ratio: 1;
  border-radius: 50%;
  position: relative;
  background: radial-gradient(circle at 50% 50%, rgba(53, 242, 208, 0.18), rgba(53, 242, 208, 0.03) 50%,
      rgba(255, 255, 255, 0.02) 70%, rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
}

.radar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 22px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 22px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 22px);
  opacity: 0.35;
  mix-blend-mode: screen;
}

.sweep {
  position: absolute;
  inset: -24%;
  background: conic-gradient(from 0deg, rgba(53, 242, 208, 0.0), rgba(53, 242, 208, 0.08), rgba(53, 242, 208, 0.55),
      rgba(53, 242, 208, 0.0) 55%);
  animation: sweep 2.1s linear infinite;
  filter: blur(0.2px);
}

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

.pulse {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 22px;
  height: 22px;
  transform: translate(-50%, -50%);
  animation: pulse 1.6s ease-in-out infinite;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.65));
}

.pulse::before {
  content: "";
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2064%2064%27%3E%3Cpath%20d%3D%27M12%2044h40l-6%2010H18z%27%20fill%3D%27%23f2c84b%27/%3E%3Cpath%20d%3D%27M32%2014v26%27%20stroke%3D%27%23f2c84b%27%20stroke-width%3D%273%27%20stroke-linecap%3D%27round%27/%3E%3Cpath%20d%3D%27M32%2016c-10%206-14%2014-14%2022h14z%27%20fill%3D%27%2335f2d0%27%20fill-opacity%3D%270.85%27/%3E%3Cpath%20d%3D%27M32%2018c10%206%2014%2014%2014%2020H32z%27%20fill%3D%27%23ffffff%27%20fill-opacity%3D%270.08%27/%3E%3Cpath%20d%3D%27M20%2044c6%203%2018%203%2024%200%27%20stroke%3D%27%2307090d%27%20stroke-opacity%3D%270.35%27%20stroke-width%3D%272%27%20fill%3D%27none%27/%3E%3C/svg%3E");
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) translateY(0);
    opacity: 0.85;
  }
  60% {
    transform: translate(-50%, -50%) translateY(-2px);
    opacity: 0.95;
  }
  100% {
    transform: translate(-50%, -50%) translateY(0);
    opacity: 0.85;
  }
}

.status {
  display: grid;
  gap: 6px;
  padding: 12px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.status .line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  color: var(--muted);
}

.status .line strong {
  color: var(--text);
  font-weight: 650;
}

.mapFrame {
  width: 100%;
  height: 320px;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
}

@media (max-width: 420px) {
  .mapFrame {
    height: 280px;
  }
}
