* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Inter', 'Helvetica Neue', sans-serif;
  background: #0a0a0f;
  color: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 16px 48px;
}

.logo-wrap { margin-bottom: 8px; }
.logo-wrap img {
  width: 180px;
  height: 180px;
  object-fit: contain;
  border-radius: 24px;
}

h1 {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: 4px;
  text-transform: uppercase;
  background: linear-gradient(90deg, #fff 40%, #b46fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 6px;
}

.tagline {
  font-size: 13px;
  color: #8b5cf6;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.subtitle {
  font-size: 14px;
  color: #aaa;
  text-align: center;
  max-width: 300px;
  line-height: 1.6;
  margin-bottom: 32px;
}

.buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 360px;
  margin-bottom: 20px;
}

.btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-radius: 16px;
  background: #12122a;
  border: 1.5px solid #7b2fff44;
  text-decoration: none;
  color: #fff;
  transition: border-color 0.2s, background 0.2s;
}
.btn:hover {
  border-color: #7b2fff;
  background: #1a1a3a;
}

.btn-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, #4c1d95, #7b2fff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  box-shadow: 0 0 14px #7b2fff55;
}

.btn-text { flex: 1; }
.btn-title {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.btn-sub {
  font-size: 12px;
  color: #888;
  margin-top: 2px;
}

.btn-arrow {
  font-size: 18px;
  color: #7b2fff;
  font-weight: 700;
}

.promo-card {
  width: 100%;
  max-width: 360px;
  background: #0f0f22;
  border: 1.5px solid #7b2fff66;
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
  box-shadow: 0 0 24px #7b2fff22;
}

.promo-icon { font-size: 32px; flex-shrink: 0; }
.promo-text { flex: 1; }
.promo-label {
  font-size: 11px;
  font-weight: 700;
  color: #8b5cf6;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.promo-desc { font-size: 13px; color: #ccc; }
.promo-btn {
  background: linear-gradient(135deg, #5b21b6, #7b2fff);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 0 12px #7b2fff55;
  text-decoration: none;
}

.info-card {
  width: 100%;
  max-width: 360px;
  background: #0d0d1f;
  border: 1px solid #333;
  border-radius: 14px;
  padding: 14px 18px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 28px;
}
.info-icon { font-size: 18px; margin-top: 1px; flex-shrink: 0; color: #666; }
.info-text { font-size: 13px; color: #888; line-height: 1.6; }
.info-text span { color: #8b5cf6; }

footer {
  width: 100%;
  max-width: 360px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid #1e1e3a;
  padding-top: 24px;
}
.qr-box {
  width: 72px;
  height: 72px;
  background: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.qr-box img { width: 100%; height: 100%; border-radius: 10px; }
.footer-text { flex: 1; }
.footer-title { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.footer-sub { font-size: 12px; color: #666; line-height: 1.5; }
.socials { display: flex; flex-direction: column; gap: 4px; }
.social-item { font-size: 12px; color: #888; display: flex; align-items: center; gap: 6px; }
.social-item span { color: #fff; }
