* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  color: #ffffff;
  background:
    radial-gradient(circle at top, rgba(255, 170, 0, 0.28), transparent 35%),
    linear-gradient(135deg, #050505, #1a0d00 55%, #050505);
}

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

.card {
  width: min(430px, 100%);
  text-align: center;
  padding: 38px 28px 30px;
  border-radius: 28px;
  background: rgba(10, 7, 0, 0.9);
  border: 1px solid rgba(255, 170, 0, 0.45);
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.6),
    0 0 38px rgba(255, 140, 0, 0.18);
}

.logo {
  width: 74px;
  height: 74px;
  margin: 0 auto 20px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  font-size: 34px;
  font-weight: 900;
  color: #111111;
  background: linear-gradient(135deg, #ffd86b, #ff9f1c, #c26a00);
  box-shadow:
    0 0 34px rgba(255, 170, 0, 0.48),
    inset 0 0 10px rgba(255, 255, 255, 0.35);
}

h1 {
  margin: 0;
  font-size: 32px;
  color: #ffd86b;
  text-shadow: 0 0 18px rgba(255, 170, 0, 0.45);
}

p {
  color: #e7e0d4;
  line-height: 1.6;
}

.loader {
  width: 48px;
  height: 48px;
  margin: 26px auto;
  border: 5px solid rgba(255, 255, 255, 0.16);
  border-top-color: #ffae22;
  border-right-color: #ffd86b;
  border-radius: 50%;
  animation: spin 0.85s linear infinite;
  box-shadow: 0 0 22px rgba(255, 170, 0, 0.28);
}

.small {
  margin: 0;
  font-size: 13px;
  color: #cfc3ae;
}

a {
  color: #ffb733;
  font-weight: 700;
  word-break: break-all;
  text-decoration: none;
}

a:hover {
  color: #ffd86b;
  text-decoration: underline;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}