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

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: #050505;
  color: #fdfdfd;
  line-height: 1.6;
}

.page-wrapper {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

/* Animated fiery background */
.background-fire {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 20% 0%, rgba(255, 200, 0, 0.25), transparent 55%),
              radial-gradient(circle at 80% 100%, rgba(255, 0, 0, 0.35), transparent 55%),
              radial-gradient(circle at 50% 50%, rgba(255, 80, 0, 0.3), #050505 70%);
  z-index: -1;
  animation: fireGlow 10s ease-in-out infinite alternate;
}

@keyframes fireGlow {
  0% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.2);
  }
  100% {
    filter: brightness(0.9);
  }
}

.hero {
  padding: 80px 16px 60px;
  display: flex;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  max-width: 720px;
  padding: 24px 18px 32px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 0, 0, 0.9), rgb(45 6 6 / 95%));
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.8);
  position: relative;
  z-index: 1;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.6);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  border: 1px solid rgba(255, 215, 0, 0.6);
}

.title-3d {
  font-size: clamp(38px, 7vw, 56px);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #ffd700;
  text-shadow:
    0 2px 0 #c59b00,
    0 4px 0 #947300,
    0 6px 12px rgba(0, 0, 0, 0.7),
    0 0 18px rgba(255, 230, 120, 0.7);
}

.subtitle {
  font-size: 16px;
  max-width: 520px;
  margin: 14px auto 22px;
  color: #ffe9c9;
}

.hero-note {
  margin-top: 18px;
  font-size: 13px;
  color: #ffddd0;
  opacity: 0.9;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}

.btn-gold {
  background: linear-gradient(135deg, #ffd700, #ffb400);
  color: #3b2500;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.65);
}

.btn-gold:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.85);
}

.btn-outline {
  background: rgba(0, 0, 0, 0.15);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.75);
}

.btn-outline:hover {
  background: rgba(0, 0, 0, 0.5);
  transform: translateY(-1px);
}

.btn-dark {
  background: rgba(10, 10, 10, 0.9);
  color: #ffe6b3;
  border-color: rgba(255, 230, 179, 0.5);
}

.btn-dark:hover {
  background: rgba(0, 0, 0, 1);
  transform: translateY(-1px);
}

.btn-big {
  padding-inline: 32px;
  padding-block: 14px;
  font-size: 16px;
}

/* Floating icons */
.floating-icon {
  position: absolute;
  font-size: 28px;
  opacity: 0.75;
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.7));
  animation: floatUp 12s linear infinite;
}

.coin-1 {
  left: 8%;
  bottom: -40px;
  animation-delay: 0s;
}

.coin-2 {
  right: 14%;
  top: 10%;
  animation-delay: 3s;
}

.coin-3 {
  right: 4%;
  bottom: -50px;
  animation-delay: 6s;
}

@keyframes floatUp {
  0% {
    transform: translateY(40px) translateX(0);
    opacity: 0;
  }
  25% {
    opacity: 0.8;
  }
  50% {
    transform: translateY(-40px) translateX(10px);
  }
  75% {
    opacity: 0.8;
  }
  100% {
    transform: translateY(-120px) translateX(-10px);
    opacity: 0;
  }
}

/* Sections */
.section {
  padding: 40px 16px;
}

.section-title {
  text-align: center;
  font-size: 22px;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ffdca2;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.feature-card {
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.08), rgba(10, 10, 10, 0.95));
  border-radius: 18px;
  padding: 18px 16px 20px;
  border: 1px solid rgba(255, 220, 162, 0.18);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);
}

.feature-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
  color: #ffe6b3;
}

.feature-card p {
  margin: 0;
  font-size: 14px;
  color: #f7f0e6;
}

/* Stats */
.stats {
  padding-top: 10px;
}

.stats-grid {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.stat-card {
  text-align: center;
  padding: 18px 10px;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(40, 0, 0, 0.9), rgba(10, 0, 0, 0.95));
  border: 1px solid rgba(255, 128, 0, 0.4);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.75);
}

.stat-number {
  font-size: 24px;
  font-weight: 700;
  color: #ffd700;
}

.stat-label {
  font-size: 13px;
  color: #f7d7c3;
}

/* About text */
.about {
  padding-top: 28px;
}

.about-text {
  max-width: 820px;
  margin: 0 auto;
  font-size: 14px;
  color: #f6e9dc;
}

.about-text p + p {
  margin-top: 10px;
}

/* Steps */
.steps-list {
  list-style: none;
  padding: 0;
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.steps-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 14px;
  border-radius: 16px;
  background: rgba(15, 0, 0, 0.95);
  border: 1px solid rgba(255, 180, 120, 0.35);
}

.step-number {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  background: linear-gradient(135deg, #ffd700, #ff9a00);
  color: #3b2500;
  font-size: 15px;
  margin-top: 4px;
}

.steps-list h3 {
  margin: 0 0 4px;
  font-size: 15px;
  color: #ffe6b3;
}

.steps-list p {
  margin: 0;
  font-size: 13px;
  color: #f8e8db;
}

/* Final CTA */
.final-cta {
  text-align: center;
}

.final-text {
  max-width: 700px;
  margin: 0 auto 18px;
  font-size: 14px;
  color: #f9e7d2;
}

/* Footer */
.footer {
  padding: 18px 16px 26px;
  text-align: center;
  font-size: 12px;
  color: #e8d8c5;
  background: radial-gradient(circle at top, rgba(255, 120, 0, 0.35), rgba(0, 0, 0, 1));
  border-top: 1px solid rgba(255, 200, 140, 0.22);
}

.footer-note {
  margin-top: 6px;
  opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    padding-top: 64px;
  }

  .hero-inner {
    padding-inline: 18px;
  }

  .feature-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .cta-group {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .stats-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .steps-list li {
    grid-template-columns: 1fr;
  }

  .step-number {
    margin-bottom: 4px;
  }
}
