:root {
  --bg: #29141a;
  --bg-700: #3e2028;
  --bg-modal: #371c24;
  --gold: #caa549;
  --gold-light: #e3bf60;
  --main: #ff9533;
  --secondary: #ffb26b;
  --text: #ffffff;
  --text-dim: rgba(255, 255, 255, 0.65);
  --border: rgba(202, 165, 73, 0.35);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 48px 20px;
  font-family: "Sora", sans-serif;
  color: var(--text);
  background-color: var(--bg);
  background-image: radial-gradient(
      120% 140% at 15% -10%,
      rgba(255, 149, 51, 0.16) 0%,
      rgba(255, 149, 51, 0) 45%
    ),
    linear-gradient(135deg, #29141a 0%, #3e2028 55%, #29141a 100%);
}

.logo {
  display: flex;
  align-items: center;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.35));
  margin-bottom: 30px;
}

.logo svg {
  width: 152px;
  height: auto;
}

.card {
  width: 100%;
  max-width: 560px;
  background: var(--bg-modal);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 36px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.badge {
  display: inline-block;
  padding: 6px 16px;
  margin-bottom: 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #2b1810;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--main) 100%);
}

h1 {
  margin: 0 0 18px;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.3;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

p {
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-dim);
}

p.lead {
  color: var(--text);
  font-size: 17px;
}

p:last-of-type {
  margin-bottom: 28px;
}

.support-btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  color: #2b1810;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  transition: filter 0.2s ease, transform 0.2s ease;
}

.support-btn:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

@media screen and (max-width: 640px) {
  body {
    gap: 22px;
    padding: 36px 16px;
  }

  .card {
    padding: 32px 22px;
    border-radius: 16px;
  }

  h1 {
    font-size: 21px;
  }

  p,
  p.lead {
    font-size: 15px;
  }

  .support-btn {
    width: 100%;
  }
}
