* {
  user-select: none;
  -webkit-user-drag: none;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  background-color: #0a0f0c;
  color: #ffffff;
}

.hero-section {
  padding: 4rem 5rem;
  background: radial-gradient(circle at 20% 20%, rgba(99, 255, 78, 0.129), transparent 40%), #0a0f0c;
}

.hero-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 3rem;
}

.hero-content {
  flex: 1;
  text-align: left;
}

.intro {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  margin-left: 5px;
}

.wave {
  display: inline-block;
  animation: wave-animation 2s infinite;
}

@keyframes wave-animation {
  0% { transform: rotate(0deg); }
  10% { transform: rotate(14deg); }
  20% { transform: rotate(-8deg); }
  30% { transform: rotate(14deg); }
  40% { transform: rotate(-4deg); }
  50% { transform: rotate(10deg); }
  60% { transform: rotate(0deg); }
  100% { transform: rotate(0deg); }
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1rem;
  width: auto;
  background: linear-gradient(90deg, #00ff73, #00ff73);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.highlight {
  color: #238afb;
}

.description {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: 7px;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.btn {
  text-decoration: none;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  transition: background-color 0.3s, color 0.3s;
  display: inline-block;
}

.primary-btn {
  background-color: #238afb;
  color: #ffffff;
}

.primary-btn:hover {
  background-color: #1666bb;
}

.secondary-btn {
  background-color: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
}

.secondary-btn:hover {
  background-color: #ffffff;
  color: #0d1117;
}

.stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  width: auto;
}

.stat-item {
  text-align: center;
  border-radius: 10px;
  padding: 5px;
  transition-duration: 200ms;
}

.stat-value {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.9rem;
  color: #bcbcbc;
}

.stat-item p {
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: scale(1.2);
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  transition: transform 0.3s ease-in-out;
  animation: float 2s infinite ease-in-out;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s ease-in-out;
}

.hero-image:hover img {
  transform: scale(1.1);
  animation: none;
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0); }
}

.scroll-arrow-wrapper {
  margin-top: 0;
  text-align: center;
}

.scroll-arrow {
  font-size: 2.5rem;
  color: #1AFF08;
  animation: bounce 2s infinite;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: transparent;
  border: none;
}

::-webkit-scrollbar-thumb {
  background-color: #72FF5F;
  border-radius: 5px;
  border: 0 none #2f2f2f;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #72FF5F;
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.9rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1rem;
  background: linear-gradient(90deg, #00ff73, #00ff73);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .stats {
    gap: 2rem;
    justify-content: center;
  }

  .hero-inner {
    flex-direction: column;
    text-align: center;
  }

  .hero-image {
    display: none;
  }

  .hero-section {
    padding: 3rem 2rem;
    text-align: center;
  }

  .scroll-arrow {
    font-size: 2rem;
    margin-top: 30px;
  }
}
