/* Custom animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

/* Base styles */
body {
  font-family: 'Space Grotesk', sans-serif;
  background-color: #000000;
  color: #ffffff;
  animation: fadeInUp 0.6s ease-out;
}

html {
  scroll-behavior: smooth;
}

/* Logo Animation */
.logo {
  animation: slideInRight 0.8s ease-out;
}

/* Hero content animation */
.hero-content {
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

/* Hero tag animation */
.hero-tag {
  animation: fadeInUp 0.6s ease-out 0.4s backwards;
}

/* Navigation link with underline effect */
.nav-link {
  position: relative;
  transition: color 0.2s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #C8FF33;
  transition: width 0.3s;
}

.nav-link:hover::after {
  width: 100%;
}

/* Button styles */
.neon-button {
  padding: 0.75rem 1.5rem;
  border: 2px solid #C8FF33;
  color: #C8FF33;
  border-radius: 0.5rem;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  white-space: nowrap;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
}

@media (max-width: 640px) {
  .neon-button {
    font-size: 0.875rem;
    padding: 0.625rem 1rem;
  }
}

.neon-button:hover {
  background-color: #C8FF33;
  color: black;
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(200, 255, 51, 0.3);
}

.neon-button:active {
  transform: scale(0.95);
}

.primary-button {
  padding: 0.75rem 1.5rem;
  background-color: #3A1EFF;
  color: white;
  border-radius: 0.5rem;
  transition: all 0.3s;
  display: inline-block;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.primary-button:hover {
  background-color: #2b16b3;
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(58, 30, 255, 0.3);
}

.primary-button:active {
  transform: scale(0.95);
}

/* Feature card */
.feature-card {
  transition: all 0.3s;
}

.feature-card:hover {
  transform: translateY(-4px);
}

/* Section animations */
.section-animate {
  opacity: 0;
  transform: translateY(1rem);
  transition: all 0.7s ease-out;
}

.section-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hover link effect */
.hover-link {
  transition: all 0.2s;
}

.hover-link:hover {
  color: #C8FF33;
  transform: translateX(0.25rem);
}

/* Country search dropdown */
.country-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  max-height: 200px;
  overflow-y: auto;
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 0.5rem;
  z-index: 50;
}

.country-option {
  padding: 0.75rem 1rem;
  cursor: pointer;
  transition: background 0.2s;
}

.country-option:hover,
.country-option.highlighted {
  background: #2a2a2a;
}

/* Wizard steps */
.wizard-step {
  animation: fadeInUp 0.4s ease-out;
}

/* Award badge hover */
.award-badge {
  transition: transform 0.3s;
}

.award-badge:hover {
  transform: scale(1.05);
}
