/* CJC FORT Custom Stylesheet */
@tailwind base;
@tailwind components;
@tailwind utilities;

:root {
  --color-primary: #10b981;
  --color-primary-dark: #059669;
  --color-primary-glow: rgba(16, 185, 129, 0.25);
  --color-dark-bg: #070a0e;
  --color-dark-surface: #0f151d;
  --color-dark-border: rgba(30, 41, 59, 0.8);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: var(--color-dark-bg);
  color: #f1f5f9;
  overflow-x: hidden;
}

.heading-font {
  font-family: 'Outfit', sans-serif;
}

.mono-font {
  font-family: 'JetBrains Mono', monospace;
}

/* Tactical Background Grid Pattern */
.bg-tactical-grid {
  background-image: 
    linear-gradient(to right, rgba(16, 185, 129, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(16, 185, 129, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}

.bg-radial-glow {
  background: radial-gradient(circle at 50% 20%, rgba(16, 185, 129, 0.15), transparent 70%);
}

.glass-panel {
  background: rgba(15, 21, 29, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.glass-panel-hover {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-panel-hover:hover {
  border-color: rgba(16, 185, 129, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -10px rgba(16, 185, 129, 0.15);
}

.glow-emerald {
  box-shadow: 0 0 25px -5px rgba(16, 185, 129, 0.35);
}

.text-gradient {
  background: linear-gradient(135deg, #ffffff 0%, #a7f3d0 60%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-tactical {
  background: linear-gradient(135deg, #f8fafc 0%, #94a3b8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Pulse animation */
@keyframes softPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.02); }
}

.animate-pulse-slow {
  animation: softPulse 4s ease-in-out infinite;
}

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

::-webkit-scrollbar-track {
  background: #070a0e;
}

::-webkit-scrollbar-thumb {
  background: #1e293b;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #10b981;
}

/* Slider styling */
input[type=range] {
  accent-color: #10b981;
}
