:root {
  --bg-start: #02030a;
  --bg-end: #050818;
  --accent: #4f7dff;
  --accent-soft: rgba(79, 125, 255, 0.16);
  --text-primary: #ffffff;
  --text-secondary: #b4bfdc;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --shadow-soft: 0 22px 55px rgba(0, 0, 0, 0.75);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Roboto', 'Segoe UI',
    sans-serif;
  color: var(--text-primary);
  background: #000000;
}

.page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.card {
  width: 100%;
  max-width: 460px;
  background: radial-gradient(circle at top left, rgba(79, 125, 255, 0.12), transparent 55%),
    radial-gradient(circle at bottom right, rgba(138, 92, 255, 0.16), transparent 55%),
    rgba(3, 5, 18, 0.98);
  border-radius: 24px;
  border: 1px solid rgba(116, 150, 255, 0.38);
  padding: 24px 22px 22px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(20px);
}

.title {
  margin: 0 0 6px;
  font-size: 26px;
  letter-spacing: 0.02em;
}

.subtitle {
  margin: 0 0 16px;
  font-size: 15px;
  color: var(--text-secondary);
}

.status {
  font-size: 13px;
  color: var(--text-secondary);
  padding: 10px 12px;
  border-radius: 12px;
  background: radial-gradient(circle at top left, rgba(79, 125, 255, 0.2), transparent 70%),
    var(--accent-soft);
  border: 1px solid rgba(79, 125, 255, 0.42);
  margin-bottom: 18px;
}

.actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.store-buttons {
  display: flex;
  gap: 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 14px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 550;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.08s ease;
}

.button.primary {
  background: var(--accent);
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--text-primary);
}

.button.primary:hover {
  background: #648aff;
  transform: translateY(-1px);
}

.button.secondary {
  flex: 1;
  background: radial-gradient(circle at top, rgba(79, 125, 255, 0.18), transparent 65%),
    rgba(5, 9, 26, 0.96);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--text-secondary);
}

.button.secondary:hover {
  background: radial-gradient(circle at top, rgba(108, 149, 255, 0.24), transparent 65%),
    rgba(9, 14, 35, 0.98);
}

@media (max-width: 480px) {
  .card {
    border-radius: 20px;
    padding: 20px 18px 18px;
  }

  .title {
    font-size: 22px;
  }

  .subtitle {
    font-size: 14px;
  }

  .status {
    font-size: 12px;
  }
}
