:root {
  --bg: #120b0b;
  --accent: #ff4d4d;
  --muted: rgba(255, 255, 255, 0.65);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI",
    Roboto, "Helvetica Neue", Arial;
}
* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
  margin: 0;
}
body {
  background: radial-gradient(
      1000px 600px at 10% 20%,
      rgba(255, 77, 77, 0.05),
      transparent
    ),
    radial-gradient(
      800px 500px at 90% 80%,
      rgba(200, 50, 50, 0.04),
      transparent
    ),
    var(--bg);
  color: #f6e6e6;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.card {
  width: 100%;
  max-width: 900px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.02),
    rgba(255, 255, 255, 0.01)
  );
  border: 1px solid rgba(255, 77, 77, 0.04);
  border-radius: 14px;
  padding: 36px;
  box-shadow: 0 8px 30px rgba(23, 2, 2, 0.6);
  backdrop-filter: blur(6px) saturate(120%);
  text-align: center;
}

header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}
.logo {
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}
h1 {
  font-size: 20px;
  margin: 0;
}
p.lead {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.buttons {
  display: flex;
  gap: 18px;
  margin-top: 28px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  min-width: 220px;
  padding: 18px 22px;
  border-radius: 12px;
  text-align: center;
  text-decoration: none;
  color: var(--accent);
  background: linear-gradient(
    180deg,
    rgba(28, 11, 11, 0.35),
    rgba(28, 11, 11, 0.25)
  );
  border: 2px solid rgba(255, 77, 77, 0.8);
  box-shadow: 0 0 12px rgba(255, 77, 77, 0.6);
  font-weight: 600;
  letter-spacing: 0.4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: transform 0.18s ease, box-shadow 0.25s ease,
    border-color 0.18s ease;
}
.btn:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 28px rgba(255, 77, 77, 0.85);
  border-color: rgba(255, 77, 77, 1);
}

.btn .kicker {
  display: block;
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
}
.btn .title {
  font-size: 16px;
  color: #fff5f5;
}

@media (max-width: 600px) {
  .btn {
    min-width: 100%;
    padding: 14px;
  }
  .card {
    padding: 22px;
  }
  .logo {
    width: 54px;
    height: 54px;
  }
}
