:root {
  --bg: #080808;
  --panel: rgba(12, 12, 12, 0.76);
  --text: #fff6df;
  --muted: #d2c5aa;
  --gold: #ffd24a;
  --gold-deep: #ff9800;
  --blue: #0b7dff;
  --blue-deep: #0352bf;
  --green: #25c46b;
  --green-deep: #138d49;
  --red: #b71414;
  --shadow: 0 22px 48px rgba(0, 0, 0, 0.42);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100vh;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(186, 23, 23, 0.45), transparent 34%),
    radial-gradient(circle at 20% 20%, rgba(255, 197, 61, 0.18), transparent 24%),
    radial-gradient(circle at 80% 12%, rgba(11, 125, 255, 0.2), transparent 22%),
    linear-gradient(180deg, #221108 0%, #0a0a0a 55%, #050505 100%);
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255, 210, 74, 0.05), transparent 35%),
    linear-gradient(300deg, rgba(11, 125, 255, 0.04), transparent 30%);
}

.page {
  width: min(100%, 1180px);
  margin: auto;
  padding: 20px 20px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex: 1;
}

.logo-wrap {
  width: min(100%, 360px);
  animation: rise 0.8s ease-out;
}

.logo {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 24px rgba(255, 186, 40, 0.28));
}

.hero-wrap {
  width: min(100%, 980px);
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  animation: fade 0.9s ease-out;
}

.hero-image {
  display: block;
  width: 100%;
  height: auto;
}

.content {
  width: min(100%, 640px);
  text-align: center;
  padding: 24px 24px 20px;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  animation: rise 1s ease-out;
}

.promo-copy h1 {
  margin: 0 0 12px;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.promo-copy h1 span {
  color: #ff9c00;
  text-shadow: 0 0 18px rgba(255, 140, 0, 0.4);
}

.promo-copy p {
  margin: 0 0 10px;
  font-size: clamp(1rem, 2vw, 1.08rem);
  line-height: 1.45;
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
}

.vip-pill {
  display: inline-block;
  margin-right: 8px;
  padding: 5px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffc82f, #ff9300);
  color: #fff;
  box-shadow: 0 8px 18px rgba(255, 165, 0, 0.3);
}

.requirements {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin: 20px 0 22px;
}

.requirements p {
  margin: 0;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 0.95rem;
}

.cta-group {
  display: grid;
  gap: 12px;
}

.cta {
  display: inline-block;
  padding: 15px 28px;
  border-radius: 999px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #fff;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.cta:hover,
.cta:focus-visible,
.float-btn:hover,
.float-btn:focus-visible {
  transform: translateY(-2px) scale(1.02);
  filter: brightness(1.04);
}

.cta-primary {
  background: linear-gradient(135deg, var(--green), var(--green-deep));
}

.cta-secondary {
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
}

.floating-actions {
  position: fixed;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.float-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  animation: pulse 2s infinite;
}

.float-btn svg {
  width: 24px;
  height: 24px;
}

.support {
  background: linear-gradient(135deg, #ff7a18, #c42300);
}

.bonus {
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: #432100;
}

.chat {
  background: linear-gradient(135deg, #19a7ff, #0058cf);
}

.footer {
  padding: 14px 20px 22px;
  text-align: center;
  color: #b9ab8d;
  font-size: 0.9rem;
}

@keyframes fade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.25);
  }

  70% {
    box-shadow: 0 0 0 12px rgba(255, 255, 255, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

@media (max-width: 768px) {
  .page {
    padding-inline: 14px;
  }

  .content {
    padding: 20px 16px 16px;
  }

  .floating-actions {
    right: 8px;
  }

  .float-btn {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 480px) {
  .logo-wrap {
    width: min(100%, 240px);
  }

  .content {
    width: min(100%, 420px);
    padding: 22px 16px 18px;
  }

  .hero-wrap {
    padding: 0;
    border-radius: 0;
  }

  .requirements {
    gap: 10px;
  }

  .requirements p {
    font-size: 0.82rem;
    padding: 9px 12px;
  }

  .promo-copy h1 {
    margin-bottom: 14px;
    font-size: 1.18rem;
  }

  .promo-copy p {
    margin-bottom: 8px;
    font-size: 0.9rem;
    line-height: 1.35;
  }

  .vip-pill {
    margin-right: 6px;
    padding: 4px 12px;
  }

  .cta {
    padding: 14px 18px;
    font-size: 0.88rem;
  }

  .floating-actions {
    top: 50%;
    bottom: auto;
    left: auto;
    right: 6px;
    transform: translateY(-50%);
    flex-direction: column;
    gap: 10px;
  }

  .float-btn {
    width: 42px;
    height: 42px;
  }

  .float-btn svg {
    width: 21px;
    height: 21px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
