:root {
  color-scheme: dark;
  --bg: #070908;
  --text: #f7f7f2;
  --muted: rgba(247, 247, 242, .50);
  --line: rgba(255, 255, 255, .13);
  --gold: #ffd84a;
  --green: #50ef43;
  --button: #65f13f;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% -8%, rgba(255, 216, 74, .20), transparent 22rem),
    radial-gradient(circle at 18% 94%, rgba(80, 239, 67, .13), transparent 13rem),
    linear-gradient(120deg, #03100a 0%, var(--bg) 52%, #101006 100%);
  color: var(--text);
  font-family: "Manrope", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at center, transparent 0 54%, rgba(0,0,0,.60) 100%),
    repeating-linear-gradient(0deg, rgba(255,255,255,.018) 0 1px, transparent 1px 5px);
}

a {
  color: inherit;
  text-decoration: none;
}

.wrap {
  position: relative;
  z-index: 1;
  width: min(100%, 430px);
  padding: max(20px, env(safe-area-inset-top)) 22px max(24px, env(safe-area-inset-bottom));
  text-align: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 28px;
  padding: 8px 15px;
  border: 1px solid rgba(255, 216, 74, .30);
  border-radius: 999px;
  color: var(--gold);
  background: rgba(255, 216, 74, .075);
  box-shadow: 0 0 24px rgba(255, 216, 74, .10);
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.badge::before,
.badge::after {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
}

h1 {
  margin: 28px 0 8px;
  font-size: 38px;
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0;
}

.subtitle {
  margin: 0 0 24px;
  color: rgba(247, 247, 242, .70);
  font-size: 15px;
  line-height: 1.35;
  font-weight: 800;
}

.cards {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
}

.card {
  min-height: 72px;
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 15px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-left-color: rgba(255, 216, 74, .42);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.025));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 14px 34px rgba(0,0,0,.25);
  text-align: left;
}

.icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 216, 74, .10);
  border: 1px solid rgba(255, 216, 74, .18);
  font-size: 20px;
}

.card strong {
  display: block;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 900;
  letter-spacing: 0;
}

.gold {
  color: var(--gold);
}

.green {
  color: var(--green);
}

.line {
  width: 62px;
  height: 2px;
  margin: 0 auto 20px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--green), transparent);
  box-shadow: 0 0 14px rgba(80, 239, 67, .45);
}

.telegram-note {
  margin: 0 0 13px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 900;
}

.cta {
  width: 100%;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 15px 22px;
  border-radius: 17px;
  color: #10170e;
  background: linear-gradient(180deg, #78ff51 0%, var(--button) 55%, #43dc31 100%);
  box-shadow: 0 18px 40px rgba(67, 220, 49, .26), inset 0 1px 0 rgba(255,255,255,.35);
  font-size: 18px;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: 0;
  transition: transform .18s ease, filter .18s ease;
}

.cta span {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(16, 23, 14, .13);
}

.cta:active {
  transform: scale(.985);
  filter: brightness(.96);
}

.cta:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 4px;
}

.small {
  margin: 12px 0 0;
  color: rgba(247,247,242,.28);
  font-size: 10px;
  line-height: 1.35;
  font-weight: 700;
}

@media (max-width: 390px) {
  .wrap {
    padding-left: 14px;
    padding-right: 14px;
  }

  .badge {
    font-size: 10px;
    padding-left: 12px;
    padding-right: 12px;
  }

  h1 {
    margin-top: 24px;
    font-size: 30px;
  }

  .subtitle {
    font-size: 14px;
  }

  .card {
    grid-template-columns: 40px 1fr;
    gap: 13px;
    padding: 13px;
  }

  .icon {
    width: 40px;
    height: 40px;
  }

  .card strong {
    font-size: 15px;
  }

  .cta {
    font-size: 16px;
  }
}

@media (min-width: 720px) {
  .wrap {
    width: min(100%, 464px);
  }

  .card {
    min-height: 76px;
  }
}
