:root {
  color-scheme: dark;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  background: #070a0d;
  color: #eef1ed;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  background: radial-gradient(circle at 15% 10%, rgba(194, 151, 50, 0.12), transparent 32%), linear-gradient(145deg, #07090c, #0b1117);
}

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

.route-card {
  width: min(680px, 100%);
  padding: clamp(30px, 7vw, 70px);
  border: 1px solid rgba(194, 151, 50, 0.32);
  border-radius: 28px;
  background: rgba(9, 13, 17, 0.9);
  box-shadow: 0 25px 90px rgba(0, 0, 0, 0.4);
}

.route-card small {
  color: #d2ae57;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.route-card h1 {
  margin: 18px 0;
  font-size: clamp(38px, 8vw, 70px);
  line-height: 0.96;
}

.route-card p {
  color: #abb5bd;
  font-size: 17px;
  line-height: 1.7;
}

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

.route-actions a {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid #d2ae57;
  border-radius: 999px;
  color: #f2db9e;
  text-decoration: none;
}

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