@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

:root {
  --bg: #050712;
  --panel: #0f1433;
  --accent: #f5c542;
  --danger: #ff4d4d;
  --text: #e6e6e6;
  --muted: #9aa0c3;
  --border: #000;
}

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

body {
  font-family: 'Press Start 2P', monospace;
  background: radial-gradient(circle at top, #0b1028, #02030a);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 40px 20px;
  font-size: 12px;
}

header {
  text-align: center;
  margin-bottom: 40px;
}

header h1 {
  font-size: 24px;
  color: var(--accent);
  text-shadow: 3px 3px 0 #000;
  margin-bottom: 20px;
}

header p {
  color: var(--muted);
  font-size: 10px;
  max-width: 500px;
  margin: auto;
}

section {
  max-width: 500px;
  width: 100%;
  margin-bottom: 30px;
}

h2 {
  font-size: 14px;
  color: var(--accent);
  margin-bottom: 15px;
  text-shadow: 2px 2px 0 #000;
}

.card {
  background: var(--panel);
  padding: 20px;
  border: 4px solid var(--border);
  box-shadow: 4px 4px 0 #000;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 20px;
}

.cta, button {
  display: inline-block;
  margin-top: 10px;
  padding: 12px 14px;
  background: var(--accent);
  color: #000;
  text-decoration: none;
  border: 4px solid var(--border);
  box-shadow: 4px 4px 0 #000;
  cursor: pointer;
  font-size: 10px;
  text-align: center;
}

.cta:hover, button:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 #000;
}

input {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 4px solid var(--border);
  background: #fff;
  font-family: 'Press Start 2P', monospace;
  font-size: 10px;
}

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

a:hover {
  text-decoration: underline;
}

footer {
  margin-top: auto;
  font-size: 8px;
  color: var(--muted);
  padding-top: 20px;
}

.center {
  text-align: center;
}
