*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #0b0a11;
  --card: #16141f;
  --card-border: #2a2535;
  --gold: #fdb813;
  --gold-dim: #c99a0f;
  --red: #e22d2d;
  --red-dark: #b82222;
  --text: #f0eef5;
  --text-muted: #9a94a8;
  --telegram: #0088cc;
  --telegram-hover: #006da3;
  --radius: 14px;
  --max-width: 480px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  min-height: 100vh;
  padding-bottom: 90px;
  -webkit-font-smoothing: antialiased;
}

.alert-bar {
  background: var(--red);
  color: #fff;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 8px 12px;
  letter-spacing: 0.02em;
  line-height: 1.35;
}

.header {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 16px 16px 8px;
  text-align: center;
  position: relative;
}

.region-badge {
  display: inline-block;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.reward-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.reward-amount {
  font-size: clamp(3.5rem, 18vw, 5rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
}

.reward-sub {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-top: 8px;
}

.main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 8px 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 16px;
}

.info-card {
  border-color: rgba(253, 184, 19, 0.35);
}

.info-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 10px;
  line-height: 1.35;
}

.info-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.info-text .highlight {
  color: var(--gold);
  font-weight: 700;
}

.scarcity-card {
  border-color: rgba(226, 45, 45, 0.5);
  text-align: center;
}

.scarcity-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.scarcity-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
}

.scarcity-number {
  font-size: 2.8rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.flame {
  font-size: 1.5rem;
}

.progress-bar {
  height: 10px;
  background: #2a1520;
  border-radius: 999px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 85%;
  background: linear-gradient(90deg, var(--red-dark), var(--red));
  border-radius: 999px;
  transition: width 0.6s ease;
}

.timer-card {
  text-align: center;
}

.timer-label {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.timer-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 72px;
}

.timer-value {
  background: #0e0c14;
  border: 1px solid var(--card-border);
  border-radius: 10px;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold);
  padding: 10px 14px;
  min-width: 64px;
  display: block;
  font-variant-numeric: tabular-nums;
}

.timer-unit {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 4px;
}

.timer-sep {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--gold);
  padding-bottom: 18px;
}

.section-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.step {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 14px 14px 14px 52px;
  font-size: 0.88rem;
  font-weight: 500;
  position: relative;
  line-height: 1.45;
}

.step::before {
  content: attr(data-step);
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background: var(--gold);
  color: #0b0a11;
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  text-align: center;
}

.stat {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 14px 6px;
}

.stat-value {
  display: block;
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1.2;
  margin-bottom: 4px;
}

.stat-label {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.3;
}

.reviews {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.review-author {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 6px;
}

.review-text {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 8px;
}

.stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.final-warning {
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1.45;
  padding: 4px 8px 0;
}

.cta-button {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--telegram);
  color: #fff;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 18px 20px;
  z-index: 100;
  box-shadow: 0 -4px 24px rgba(0, 136, 204, 0.35);
  transition: background 0.2s;
  max-width: var(--max-width);
  margin: 0 auto;
}

.cta-button:hover,
.cta-button:active {
  background: var(--telegram-hover);
}

@media (min-width: 481px) {
  .cta-button {
    border-radius: var(--radius) var(--radius) 0 0;
  }
}
