/* Custom styles for retro-futuristic aesthetic */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=JetBrains+Mono:wght@400;700&display=swap');

body {
  background: linear-gradient(135deg, #1a2e1a 0%, #2d4a3d 50%, #1a2e1a 100%);
  background-attachment: fixed;
}

.warp-logo {
  background: linear-gradient(45deg, #4ade80, #22c55e, #16a34a);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  letter-spacing: 4px;
  filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.8));
  animation: subtleGlow 3s ease-in-out infinite alternate;
}

@keyframes subtleGlow {
  0% { filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.8)) brightness(1); }
  100% { filter: drop-shadow(2px 2px 8px rgba(34, 197, 94, 0.3)) brightness(1.1); }
}

/* Scrollbar styling for webkit browsers */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #374151;
}

::-webkit-scrollbar-thumb {
  background: #22c55e;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #16a34a;
}

/* Terminal-style text shadow for enhanced retro feel */
.text-green-400 {
  text-shadow: 0 0 2px rgba(34, 197, 94, 0.5);
}

.text-purple-400 {
  text-shadow: 0 0 2px rgba(168, 85, 247, 0.5);
}

/* Subtle scan lines effect */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(255, 255, 255, 0.02) 2px,
    rgba(255, 255, 255, 0.02) 4px
  );
  pointer-events: none;
  z-index: 1000;
}

/* Enhanced button hover effects */
button {
  transition: all 0.2s ease;
}

button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Pixelated image rendering for authentic retro feel */
img {
  image-rendering: -moz-crisp-edges;
  image-rendering: -webkit-crisp-edges;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
}

/* CRT monitor curvature effect (subtle) */
.bg-gray-800 {
  border-radius: 0px;
}

/* Enhanced brutalist borders */
.border-gray-700 {
  border-style: solid;
  border-width: 1px;
}

.border-gray-600 {
  border-style: solid;
  border-width: 1px;
}

/* Retro loading animation for future use */
@keyframes retro-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

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

/* Typography adjustments for better readability */
.font-mono {
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  letter-spacing: 0.025em;
}

/* Mobile responsiveness improvements */
@media (max-width: 768px) {
  .warp-logo {
    font-size: 3rem;
    letter-spacing: 2px;
  }
  
  .grid-cols-2 {
    grid-template-columns: 1fr;
  }
  
  .lg\\:col-span-3 {
    grid-template-columns: 1fr;
  }
}

/* Focus states for accessibility */
button:focus,
input:focus {
  outline: 2px solid #22c55e;
  outline-offset: 2px;
}

/* Enhanced contrast for better accessibility */
.text-gray-500 {
  color: #9ca3af;
}

.text-gray-400 {
  color: #d1d5db;
}