/* General Styles */
body {
  font-family: "Roboto", sans-serif;
  margin: 0;
  color: white;
  background: black;
  line-height: 1.6;
  font-size: 1.5rem;
}

p strong {
  color: lightblue;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* Hero Section */
.hero-section {
  padding: 60px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.logo {
  width: 150px;
  margin-bottom: 20px;
  animation: fadeInDown 1s ease-in-out;
}

.hero-section h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  animation: fadeInDown 1s ease-in-out;
}

.hero-section p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  animation: fadeInUp 1.2s ease-in-out;
}

.cta-button {
  background: white;
  color: black;
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition:
    background 0.3s ease,
    transform 0.2s ease;
  animation: bounce 2s infinite;
}

.cta-button:hover {
  background: #f0f0f0;
  transform: translateY(-3px);
}

#referral-code {
  margin-top: 20px;
  font-size: 1.2rem;
  animation: fadeInUp 1.5s ease-in-out;
}

.success-message {
  color: #4caf50;
  font-size: 1rem;
  margin-top: 10px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

/* Steps Section */
.steps-section,
.features-section {
  background: #1c1c1c;
  padding: 40px 20px;
  text-align: center;
}

.steps-section h2,
.features-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  animation: fadeInDown 1s ease-in-out;
}

.features {
  text-align: left;
  display: inline-block;
  max-width: 600px;
  margin: 0 auto;
}

.features p {
  margin: 10px 0;
}

/* Footer */
.footer {
  background: black;
  color: white;
  padding: 20px;
  font-size: 1rem;
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
