.intro-section {
  margin-top: 100px;
  position: relative;
  height: 100vh;
  background-color: #121212;
  overflow: hidden;
}

.intro-section .container {
  z-index: 2;
  position: relative;
}

.main-title {
  font-size: 2.8rem;
  color: #BCFB6C;
  animation: fadeInDown 1.2s ease-in-out;
}

.sub-text {
  color: #ccc;
  font-size: 1.2rem;
  animation: fadeInUp 1.2s ease-in-out;
}

.start-btn {
  background-color: #BCFB6C;
  color: #000;
  font-weight: 600;
  border-radius: 30px;
  padding: 12px 30px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  animation: fadeIn 1.5s ease-in-out;
}

.start-btn:hover {
  background-color: #a5e85a;
  transform: scale(1.05);
}

.decor {
  position: absolute;
  border-radius: 50%;
  background: rgba(188, 251, 108, 0.1);
  animation: float 6s infinite ease-in-out;
  z-index: 1;
}

.decor-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  left: 5%;
}

.decor-2 {
  width: 300px;
  height: 300px;
  bottom: 10%;
  right: 10%;
}

.decor-3 {
  width: 150px;
  height: 150px;
  top: 50%;
  right: 30%;
}

@keyframes float {
  0% { transform: translateY(0); opacity: 0.7; }
  50% { transform: translateY(-20px); opacity: 1; }
  100% { transform: translateY(0); opacity: 0.7; }
}

@keyframes fadeInDown {
  0% { opacity: 0; transform: translateY(-30px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.store-btn {
  background-color: #000;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 12px;
  padding: 10px 18px;
  min-width: 150px;
  text-decoration: none;
  transition: 0.3s;
}

.store-btn:hover {
  background-color: #BCFB6C;
  color: #000;
  transform: scale(1.05);
}

.store-btn i {
  font-size: 1.3rem;
}

.badge-soon {
  position: absolute;
  top: -8px;
  right: -10px;
  background-color: #BCFB6C;
  color: #000;
  font-weight: bold;
  font-size: 0.6rem;
  padding: 3px 8px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}
