:root {
  color-scheme: dark;
  --bg: #070a10;
  --surface: #101722;
  --surface-2: #151f2e;
  --text: #f5f7fb;
  --muted: #9aacbd;
  --line: rgba(79, 140, 255, 0.22);
  --accent: #00aeef;
  --accent-2: #23d3a2;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: "Rajdhani", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(0, 174, 239, 0.14), transparent 34rem),
    linear-gradient(180deg, #05070c, var(--bg));
  color: var(--text);
}

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

.admin-shell {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: clamp(1rem, 4vw, 2rem);
}

.hero-panel {
  width: min(100%, 780px);
  padding: clamp(1.25rem, 5vw, 3rem);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(16, 23, 34, 0.94), rgba(21, 31, 46, 0.84));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
}

.eyebrow {
  color: var(--accent-2);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h1 {
  margin-top: 0.4rem;
  font-family: "Orbitron", sans-serif;
  font-size: clamp(2rem, 7vw, 4.5rem);
  line-height: 1.04;
}

p {
  margin-top: 0.8rem;
  max-width: 42rem;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.8rem 1.05rem;
  border-radius: 10px;
  font-weight: 700;
}

.primary-action {
  background: var(--accent);
  color: white;
  box-shadow: 0 0 24px rgba(0, 174, 239, 0.24);
}

.secondary-action {
  border: 1px solid var(--line);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.035);
}
