

@layer base {
  :root {
    --amber: #F59E0B;
    --amber-light: #FCD34D;
    --amber-dark: #D97706;
    --cyan-neon: #06B6D4;
    --emerald-neon: #10B981;
    --bg-dark: #07090E;
    --slate-card: #0D121F;
    --slate-border: #1E293B;
  }

  body {
    background-color: #07090E;
    color: #F1F5F9;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    overflow-x: hidden;
  }

  h1, h2, h3, h4, .font-heading {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  }
}

.font-mono-tech {
  font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

/* Futuristic Cyber Grid & Matrix Backgrounds */
.cyber-grid-bg {
  background-image: 
    linear-gradient(to right, rgba(245, 158, 11, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(245, 158, 11, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}

.cyber-dots-bg {
  background-image: radial-gradient(rgba(245, 158, 11, 0.15) 1px, transparent 1px);
  background-size: 24px 24px;
}

/* Hologram & Futuristic HUD Cards */
.hud-card {
  background: rgba(13, 18, 31, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(51, 65, 85, 0.7);
  border-radius: 1.25rem;
  position: relative;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hud-card:hover {
  border-color: rgba(245, 158, 11, 0.6);
  box-shadow: 0 0 30px -5px rgba(245, 158, 11, 0.18), 0 20px 40px -15px rgba(0, 0, 0, 0.8);
  transform: translateY(-2px);
}

.hud-card-active {
  background: linear-gradient(135deg, rgba(26, 35, 58, 0.95), rgba(13, 18, 31, 0.95));
  border: 1px solid rgba(245, 158, 11, 0.8);
  box-shadow: 0 0 25px rgba(245, 158, 11, 0.25);
}

/* Futuristic Gradients */
.amber-gradient-text {
  background: linear-gradient(135deg, #FFFBEB 0%, #FDE68A 25%, #F59E0B 70%, #D97706 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gold-gradient-text {
  background: linear-gradient(135deg, #FFFBEB 0%, #FDE68A 25%, #F59E0B 70%, #D97706 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cyber-cyan-gradient {
  background: linear-gradient(135deg, #A5F3FC 0%, #06B6D4 50%, #0284C7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Bento Card fallback */
.bento-card {
  background: rgba(13, 18, 31, 0.75);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(51, 65, 85, 0.6);
  border-radius: 1.25rem;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-card:hover {
  border-color: rgba(245, 158, 11, 0.45);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -10px rgba(0, 0, 0, 0.7);
}

.bento-card-dark {
  background-color: #0B0F19;
  border: 1px solid #1E293B;
  border-radius: 1.25rem;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-card-dark:hover {
  border-color: rgba(245, 158, 11, 0.35);
}

.gold-box-interactive {
  background-color: #0F172A;
  border: 1px solid #1E293B;
  border-radius: 1rem;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.gold-box-interactive:hover {
  border-color: rgba(245, 158, 11, 0.5);
  transform: translateY(-2px);
  background-color: #1E293B;
}

/* Animations */
@keyframes radarSweep {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.animate-radar-sweep {
  animation: radarSweep 6s linear infinite;
}

@keyframes scanline {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(1000%);
  }
}

.animate-scanline {
  animation: scanline 8s linear infinite;
}

@keyframes pulseGlow {
  0%, 100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 0.95;
    transform: scale(1.04);
  }
}

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

@keyframes spinSlow {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.animate-spin-slow {
  animation: spinSlow 30s linear infinite;
}

@keyframes marqueeSlide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.animate-marquee-slide {
  display: flex;
  width: max-content;
  animation: marqueeSlide 30s linear infinite;
}

.animate-marquee-slide:hover {
  animation-play-state: paused;
}

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

::-webkit-scrollbar-track {
  background: #07090E;
}

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

::-webkit-scrollbar-thumb:hover {
  background: #F59E0B;
}


/* WordPress editor content mode */
.ht-wp-editor-content{color:#cbd5e1;font-size:1rem;line-height:1.8}.ht-wp-editor-content h1,.ht-wp-editor-content h2,.ht-wp-editor-content h3,.ht-wp-editor-content h4{color:#fff;font-weight:800;line-height:1.2;margin:1.3em 0 .55em}.ht-wp-editor-content h2{font-size:2rem}.ht-wp-editor-content h3{font-size:1.5rem}.ht-wp-editor-content p{margin:0 0 1.15em}.ht-wp-editor-content a{color:var(--ht-primary);text-decoration:underline}.ht-wp-editor-content ul,.ht-wp-editor-content ol{padding-left:1.4rem;margin:0 0 1.2em}.ht-wp-editor-content img{max-width:100%;height:auto;border-radius:1rem}.ht-wp-editor-content blockquote{border-left:3px solid var(--ht-primary);padding-left:1rem;color:#e2e8f0}.ht-wp-editor-content .wp-block-button__link{background:var(--ht-primary);color:#000;text-decoration:none;font-weight:700}
