
.hover\:border-green-400\/40:hover {
  border-color: rgb(74 222 128 / 0.4);
}
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Rajdhani:wght@500;600;700&family=Orbitron:wght@400;500;600;700;800;900&display=swap');

@tailwind base;
@tailwind components;
@tailwind utilities;

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

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  background: #000000;
  color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Orbitron', 'Rajdhani', sans-serif;
  font-weight: 700;
}

/* Premium Scrollbar - Blue Green */
::-webkit-scrollbar {
  width: 10px;
}

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

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #1E88E5, #00E676);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #00E676, #1E88E5);
}

::selection {
  background: rgba(0, 230, 118, 0.3);
  color: #ffffff;
}

/* Canvas */
canvas {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  outline: none;
}

/* ========================================
   GLASSMORPHISM - Blue Green Theme
   ======================================== */
.glass {
  background: rgba(30, 136, 229, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 230, 118, 0.1);
  box-shadow: 0 8px 32px 0 rgba(30, 136, 229, 0.15);
}

.glass-strong {
  background: rgba(13, 71, 161, 0.2);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(0, 230, 118, 0.15);
  box-shadow: 
    0 8px 32px 0 rgba(0, 230, 118, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* ========================================
   GLOW EFFECTS - Blue Green
   ======================================== */
.glow-blue {
  box-shadow: 
    0 0 20px rgba(30, 136, 229, 0.6),
    0 0 40px rgba(30, 136, 229, 0.4),
    0 0 60px rgba(30, 136, 229, 0.2);
}

.glow-green {
  box-shadow: 
    0 0 20px rgba(0, 230, 118, 0.6),
    0 0 40px rgba(0, 230, 118, 0.4),
    0 0 60px rgba(0, 230, 118, 0.2);
}

.glow-brand {
  box-shadow: 
    0 0 30px rgba(30, 136, 229, 0.5),
    0 0 60px rgba(0, 230, 118, 0.3);
}

/* ========================================
   CINEMATIC ANIMATIONS
   ======================================== */

/* Float Animation */
@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  25% { transform: translateY(-10px) rotate(1deg); }
  50% { transform: translateY(-20px) rotate(0deg); }
  75% { transform: translateY(-10px) rotate(-1deg); }
}

/* Pulse Glow */
@keyframes pulse-glow {
  0%, 100% { 
    opacity: 1; 
    filter: drop-shadow(0 0 20px rgba(0, 230, 118, 0.6)); 
  }
  50% { 
    opacity: 0.8; 
    filter: drop-shadow(0 0 40px rgba(0, 230, 118, 0.9)); 
  }
}

/* Particle Float */
@keyframes particle-float {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100vh) scale(1); opacity: 0; }
}

/* Light Beam */
@keyframes light-beam {
  0% { transform: translateY(-100%) rotate(45deg); opacity: 0; }
  50% { opacity: 0.6; }
  100% { transform: translateY(200%) rotate(45deg); opacity: 0; }
}

/* Gradient Flow */
@keyframes gradient-flow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Orbit Animation */
@keyframes orbit {
  from { transform: rotate(0deg) translateX(150px) rotate(0deg); }
  to { transform: rotate(360deg) translateX(150px) rotate(-360deg); }
}

/* Network Pulse */
@keyframes network-pulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.5); opacity: 0.3; }
}

/* Shimmer Effect */
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* Slide Animations */
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-60px); }
  to { opacity: 1; transform: translateX(0); }
}

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

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Wave Animation */
@keyframes wave {
  0%, 100% { transform: translateX(0) scaleY(1); }
  25% { transform: translateX(-5%) scaleY(1.05); }
  50% { transform: translateX(-10%) scaleY(1); }
  75% { transform: translateX(-5%) scaleY(0.95); }
}

/* Rotate 3D */
@keyframes rotate3d {
  from { transform: perspective(1000px) rotateY(0deg) rotateX(5deg); }
  to { transform: perspective(1000px) rotateY(360deg) rotateX(5deg); }
}

/* ========================================
   ANIMATION CLASSES
   ======================================== */
.animate-float {
  animation: float 6s ease-in-out infinite;
}

.animate-pulse-glow {
  animation: pulse-glow 2s ease-in-out infinite;
}

.animate-gradient-flow {
  background-size: 200% 200%;
  animation: gradient-flow 8s ease infinite;
}

.animate-slide-in-left {
  animation: slideInLeft 0.8s ease-out forwards;
}

.animate-slide-in-right {
  animation: slideInRight 0.8s ease-out forwards;
}

.animate-slide-in-up {
  animation: slideInUp 0.8s ease-out forwards;
}

.animate-fade-in {
  animation: fadeIn 1s ease-out forwards;
}

.animate-shimmer {
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  background-size: 200% 100%;
  animation: shimmer 2s infinite;
}

/* ========================================
   GRADIENT TEXT - Blue Green Theme
   ======================================== */
.gradient-text {
  background: linear-gradient(135deg, #1E88E5, #00E676, #69F0AE);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-blue {
  background: linear-gradient(135deg, #42A5F5, #1E88E5, #0D47A1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-green {
  background: linear-gradient(135deg, #69F0AE, #00E676, #00C853);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* For backwards compatibility - gold now maps to green */
.gradient-text-gold {
  background: linear-gradient(135deg, #69F0AE, #00E676, #00C853);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ========================================
   BUTTON STYLES - Blue Green Theme
   ======================================== */
.btn-primary {
  background: linear-gradient(135deg, #1E88E5, #0D47A1);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(30, 136, 229, 0.4);
  border-color: rgba(0, 230, 118, 0.5);
}

.btn-secondary {
  background: linear-gradient(135deg, #00E676, #00C853);
  color: #000;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s;
}

.btn-secondary:hover::before {
  left: 100%;
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 230, 118, 0.4);
}

/* ========================================
   PARTICLE SYSTEM
   ======================================== */
.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: radial-gradient(circle, rgba(0, 230, 118, 0.8) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.particle-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(30, 136, 229, 0.3), transparent);
  transform-origin: left center;
}

/* ========================================
   SECTION UTILITIES
   ======================================== */
html {
  scroll-behavior: smooth;
}

.section-padding {
  padding: 120px 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 80px 0;
  }
}

/* Divider Line */
.divider-glow {
  height: 2px;
  background: linear-gradient(90deg, transparent, #00E676, transparent);
  box-shadow: 0 0 20px rgba(0, 230, 118, 0.5);
}

/* ========================================
   CSS VARIABLES
   ======================================== */
@layer base {
  :root {
    --background: 0 0% 0%;
    --foreground: 0 0% 100%;
    --primary: 210 79% 46%;
    --primary-foreground: 0 0% 100%;
    --secondary: 145 100% 45%;
    --accent: 145 100% 55%;
    --border: 0 0% 15%;
    --input: 0 0% 10%;
    --ring: 210 79% 46%;
    --radius: 0.75rem;
  }
}

/* ========================================
   CINEMATIC BACKGROUND OVERLAY
   ======================================== */
.cinematic-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
  background: 
    radial-gradient(ellipse at 20% 20%, rgba(30, 136, 229, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(0, 230, 118, 0.1) 0%, transparent 50%);
}

/* Noise Texture Overlay */
.noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 2;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}
.hover\:border-green-400\/40:hover {
  border-color: rgb(74 222 128 / 0.4);
}