:root {
  --bg: #0f172a;
  --card: #111827;
  --accent: #ef4444;
  --text: #e5e7eb;
  --muted: #9ca3af;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background: linear-gradient(135deg, #020617, #0f172a);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
}

.container {
  background: var(--card);
  padding: 40px 32px;
  border-radius: 14px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.subtitle {
  color: var(--muted);
  margin-bottom: 25px;
  font-size: 0.95rem;
}

.badge {
  display: inline-block;
  background: rgba(239, 68, 68, 0.15);
  color: var(--accent);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 18px;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.btn {
  background: #020617;
  border: 1px solid #1f2933;
  color: var(--text);
  padding: 14px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.ip {
  font-family: monospace;
  font-size: 0.95rem;
}

footer {
  margin-top: 25px;
  font-size: 0.75rem;
  color: var(--muted);
}
