/* Custom CSS for LuvEarn Website */

/* Fix any layout issues and additional styling */
.hero-section {
  position: relative;
  overflow: hidden;
}

/* Ensure buttons have proper hover effects */
.btn-neon:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 105, 180, 0.3);
}

/* Loading spinner for checkout buttons */
.spinner-border-sm {
  width: 1rem;
  height: 1rem;
}

/* Responsive fixes */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .presale-stats {
    flex-direction: column;
  }
}

/* Additional wallet modal styling */
.wallet-modal {
  backdrop-filter: blur(10px);
}

/* Price display styling */
.price-display {
  font-family: 'Space Grotesk', monospace;
  font-weight: bold;
}

/* Error message styling */
.error-message {
  color: #ff6b6b;
  background: rgba(255, 107, 107, 0.1);
  padding: 10px;
  border-radius: 5px;
  margin: 10px 0;
}

/* Success message styling */
.success-message {
  color: #51cf66;
  background: rgba(81, 207, 102, 0.1);
  padding: 10px;
  border-radius: 5px;
  margin: 10px 0;
}
