:root {
  color-scheme: dark;
  font-family: "Segoe UI Variable Text", "Segoe UI", Arial, sans-serif;
  background: #040603;
  color: #eef1ed;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 15% 10%, rgba(255, 196, 0, 0.12), transparent 32%),
    radial-gradient(circle at 82% 18%, rgba(162, 255, 19, 0.08), transparent 24%),
    linear-gradient(145deg, #040603, #0a0f0b);
}

.route-shell {
  display: grid;
  place-items: center;
  min-height: calc(100vh - 74px);
  padding: 28px;
}

.route-card {
  width: min(760px, 100%);
  padding: clamp(28px, 6vw, 60px);
  border: 1px solid rgba(255, 196, 0, 0.22);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 196, 0, 0.08), transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,.035), rgba(3, 5, 3, 0.94)),
    rgba(7, 10, 7, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.03),
    0 28px 90px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(16px);
}

.route-card small {
  color: #a2ff13;
  font: 800 11px/1.2 "Cascadia Code", Consolas, monospace;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.route-card h1 {
  margin: 18px 0;
  font-family: "Segoe UI Variable Display", "Segoe UI", Arial, sans-serif;
  font-weight: 780;
  letter-spacing: -0.04em;
  font-size: clamp(38px, 8vw, 70px);
  line-height: 0.96;
}

.route-card p {
  color: #c2c8bf;
  font-size: 18px;
  line-height: 1.72;
}

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

.route-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(255, 196, 0, 0.34);
  border-radius: 14px;
  color: #f2db9e;
  background: rgba(6, 8, 6, 0.86);
  text-decoration: none;
  font: 800 12px/1 "Cascadia Code", Consolas, monospace;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.route-actions a:focus-visible {
  outline: 3px solid #f1d98e;
  outline-offset: 4px;
}
