@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Inter:wght@300;400;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #000;
  color: #fff;
  overflow-x: hidden;
}

.font-orbitron {
  font-family: 'Orbitron', sans-serif;
}

.glow-text {
  text-shadow: 
    0 0 10px rgba(16, 124, 16, 0.8),
    0 0 20px rgba(16, 124, 16, 0.6),
    0 0 30px rgba(16, 124, 16, 0.4);
}

.glow-text-strong {
  text-shadow: 
    0 0 10px rgba(16, 124, 16, 1),
    0 0 20px rgba(16, 124, 16, 0.8),
    0 0 40px rgba(16, 124, 16, 0.6),
    0 0 60px rgba(16, 124, 16, 0.4);
}

.glow-button {
  box-shadow: 
    0 0 20px rgba(16, 124, 16, 0.6),
    0 0 40px rgba(16, 124, 16, 0.3);
  transition: all 0.3s ease;
}

.glow-button:hover {
  box-shadow: 
    0 0 30px rgba(16, 124, 16, 0.8),
    0 0 60px rgba(16, 124, 16, 0.5);
}

.glass-card {
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(16, 124, 16, 0.2);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.glass-card:hover {
  background: rgba(16, 124, 16, 0.1);
  border: 1px solid rgba(16, 124, 16, 0.4);
  box-shadow: 
    0 8px 32px 0 rgba(16, 124, 16, 0.2),
    0 0 20px rgba(16, 124, 16, 0.3);
}

.glass-nav {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(16, 124, 16, 0.2);
}

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

section {
  animation: fadeInUp 0.8s ease-out;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
  background: #107C10;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #0E7A0D;
}

/* Responsive images */
img {
  max-width: 100%;
  height: auto;
}

/* Loading animation */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}