/* Custom Styles for Portfolio */

/* Skeleton Loading Animation */
@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }

  100% {
    background-position: 1000px 0;
  }
}

.skeleton-card {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 2000px 100%;
  animation: shimmer 2s infinite;
}


.theme-dark .skeleton-card {
  background: linear-gradient(90deg, #2a2a2a 25%, #1a1a1a 50%, #2a2a2a 75%);
  background-size: 2000px 100%;
}

/* Blob Animation */
@keyframes blob {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  25% {
    transform: translate(20px, -50px) scale(1.1);
  }

  50% {
    transform: translate(-20px, 20px) scale(0.9);
  }

  75% {
    transform: translate(50px, 50px) scale(1.05);
  }
}

.animate-blob {
  animation: blob 7s infinite;
}

.animation-delay-2000 {
  animation-delay: 2s;
}

.animation-delay-4000 {
  animation-delay: 4s;
}

/* Typing Cursor Blink */
@keyframes blink {

  0%,
  50% {
    opacity: 1;
  }

  51%,
  100% {
    opacity: 0;
  }
}

.animate-blink {
  animation: blink 1s infinite;
}

/* Bubble Animation */
.bubbles-container {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.bubble {
  position: absolute;
  bottom: -100px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.15) 0%, rgba(139, 92, 246, 0.05) 100%);
  border-radius: 50%;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  animation: float linear infinite;
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    transform: translateY(-120vh) rotate(360deg);
    opacity: 0;
  }
}


/* Dark Mode Glow Pulse */
@keyframes glowPulse {

  0%,
  100% {
    box-shadow: 0 0 5px rgba(59, 130, 246, 0.2), 0 0 10px rgba(59, 130, 246, 0.1);
  }

  50% {
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.4), 0 0 30px rgba(59, 130, 246, 0.2);
  }
}

/* Navbar Link Hover Underline */
.nav-link {
  position: relative;
  padding: 0.5rem 1rem;
  transition: color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: currentColor;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: translateX(-50%);
}

.nav-link:hover::after {
  width: 80%;
}

/* Tech Card Hover */
.tech-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  border-radius: 1rem;
  background: white;
  border: 2px solid transparent;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-decoration: none;
  min-height: 150px;
}

.theme-dark .tech-card {
  background: #1e1e1e;
  border-color: #333;
}

.tech-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.theme-dark .tech-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.tech-card span {
  color: inherit;
  letter-spacing: 0.025em;
  margin-top: 0.75rem;
}

/* Specific Tech Card Hover Glows */
.tech-card:hover i.text-orange-500 {
  text-shadow: 0 0 20px rgba(249, 115, 22, 0.4);
}

/* HTML */
.tech-card:hover i.text-blue-500 {
  text-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
}

/* CSS */
.tech-card:hover i.text-yellow-500 {
  text-shadow: 0 0 20px rgba(234, 179, 8, 0.4);
}

/* JS */
.tech-card:hover div.text-purple-600 {
  text-shadow: 0 0 20px rgba(147, 51, 234, 0.4);
}

/* .NET */
.tech-card:hover i.text-indigo-500 {
  text-shadow: 0 0 20px rgba(99, 102, 241, 0.4);
}

/* PHP */
.tech-card:hover i.text-blue-600 {
  text-shadow: 0 0 20px rgba(37, 99, 235, 0.4);
}

/* Python */
.tech-card:hover i.text-red-500 {
  text-shadow: 0 0 20px rgba(239, 68, 68, 0.4);
}

/* Java/Security */
.tech-card:hover i.text-blue-400 {
  text-shadow: 0 0 20px rgba(96, 165, 250, 0.4);
}

/* MySQL */
.tech-card:hover i.text-purple-500 {
  text-shadow: 0 0 20px rgba(168, 85, 247, 0.4);
}

/* Bootstrap */
.tech-card:hover i.text-teal-500 {
  text-shadow: 0 0 20px rgba(20, 184, 166, 0.4);
}

/* Wireshark */
.tech-card:hover i.theme-hacker\:text-green-500 {
  text-shadow: 0 0 20px rgba(34, 197, 94, 0.6);
}

/* Nmap */

/* Cert Card */
.cert-card {
  padding: 2rem;
  border-radius: 1rem;
  background: white;
  border: 2px solid transparent;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-align: center;
}

.theme-dark .cert-card {
  background: #1e1e1e;
  border-color: #333;
}

.cert-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.theme-dark .cert-card:hover,
.theme-dark .service-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(96, 165, 250, 0.2);
  border-color: rgba(96, 165, 250, 0.4);
}

/* Service Card */
.service-card {
  padding: 2rem;
  border-radius: 1rem;
  background: white;
  border: 2px solid transparent;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.theme-dark .service-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 15px rgba(96, 165, 250, 0.15);
}

/* Glassmorphism for Dark & Hacker Themes */
.theme-dark .project-card,
.theme-dark .cert-card,
.theme-dark .service-card,
.theme-dark .tech-card {
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(59, 130, 246, 0.2);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.theme-dark .project-card:hover {
  animation: glowPulse 2s infinite ease-in-out;
  border-color: var(--accent);
  transform: translateY(-12px) scale(1.03);
  background: rgba(15, 23, 42, 0.9);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(56, 189, 248, 0.3);
}

.theme-hacker .project-card,
.theme-hacker .cert-card,
.theme-hacker .service-card,
.theme-hacker .tech-card {
  background: rgba(0, 10, 0, 0.95);
  border: 1px solid #00ff99;
  box-shadow: 0 0 15px rgba(0, 255, 153, 0.2);
  position: relative;
  overflow: hidden;
}

.theme-hacker .project-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(0, 255, 0, 0.1);
  animation: scanline 4s linear infinite;
  z-index: 10;
  pointer-events: none;
}

.theme-hacker .project-card:hover h3 {
  animation: glitch 0.3s cubic-bezier(.25, .46, .45, .94) both infinite;
  color: #00ff00;
  text-shadow: 2px 0 #ff00ff, -2px 0 #00ffff;
}


/* Project Cards - Zig-Zag Layout */
.project-wrapper {
  opacity: 1 !important;
  /* Force visibility - animations will still work */
  visibility: visible !important;
}

/* Project Cards - Grid Layout Enhancements */
.project-wrapper {
  opacity: 1 !important;
  visibility: visible !important;
}

/* Card glassmorphism for dark/hacker themes */
.theme-dark .project-card,
.theme-hacker .project-card {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.theme-cloud .project-card {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}





/* Smooth Transitions */
* {
  transition: background-color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    border-color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Remove these redundant broad overrides that reduce contrast */
/* .theme-dark span, .theme-dark div ... were here */

.theme-dark a.nav-link {
  color: var(--text-secondary);
}

.theme-dark a:hover:not(.nav-link) {
  color: var(--accent);
}



/* Prevent Text Selection on Theme Toggle Animation */
#theme-toggle {
  user-select: none;
  -webkit-user-select: none;
}

/* Mobile Optimizations */
@media (max-width: 640px) {
  #theme-toggle {
    transform: scale(0.8);
  }

  .project-card {
    padding: 1.5rem;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus Styles */
a:focus-visible,
button:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
  border-radius: 0.25rem;
}

/* ============================================
   COMPREHENSIVE THEME STYLES
   ============================================ */

/* Light Theme (Default) */
.theme-light {
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-tertiary: #f1f5f9;
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-tertiary: #64748b;
  --accent: #3b82f6;
  --accent-secondary: #8b5cf6;
  --border: #e2e8f0;
  position: relative;
}

/* Light Theme Subtle Animations */
.theme-light::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
  animation: lightFloat 12s ease-in-out infinite;
}

@keyframes lightFloat {

  0%,
  100% {
    opacity: 0.3;
    transform: translateY(0);
  }

  50% {
    opacity: 0.5;
    transform: translateY(-20px);
  }
}

.theme-light #main-content {
  position: relative;
  z-index: 2;
}

.theme-light body {
  background: var(--bg-primary);
  color: var(--text-primary);
}

.theme-light #loader-screen {
  background: #ffffff;
}

.theme-light #navbar {
  background: rgba(255, 255, 255, 0.8);
  border-color: #e2e8f0;
}

.theme-light .nav-link {
  color: var(--text-secondary);
}

.theme-light .nav-link:hover {
  color: var(--accent);
}

.theme-light section {
  background: var(--bg-primary);
  padding-top: 4rem;
  padding-bottom: 4rem;
}

#home.theme-light {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
  min-height: auto;
}

.theme-light section:nth-child(even) {
  background: var(--bg-secondary);
}

.theme-light h1,
.theme-light h2,
.theme-light h3 {
  color: var(--text-primary);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.theme-light p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Dark Theme: Professional Deep Navy */
.theme-dark {
  --bg-primary: #0a1122;
  --bg-secondary: #0f172a;
  --bg-tertiary: #1e293b;
  --text-primary: #f8fafc;
  --text-secondary: #cbd5e1;
  --text-tertiary: #94a3b8;
  --accent: #38bdf8;
  --border: rgba(56, 189, 248, 0.2);
}

.theme-dark body {
  background: var(--bg-primary);
  color: var(--text-primary);
}

.theme-dark #loader-screen {
  background: #0a1122;
}

.theme-dark #navbar {
  background: rgba(10, 17, 34, 0.9);
  border-bottom: 1px solid rgba(56, 189, 248, 0.2);
  backdrop-filter: blur(12px);
}

.theme-dark section {
  background: var(--bg-primary);
  padding: 5rem 1rem;
}

#home.theme-dark {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
  min-height: auto;
}

.theme-dark section:nth-child(even) {
  background: var(--bg-secondary);
}

.theme-dark h1,
.theme-dark h2,
.theme-dark h3 {
  color: var(--text-primary);
  text-shadow: 0 0 30px rgba(96, 165, 250, 0.15), 0 2px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.theme-dark p,
.theme-dark span,
.theme-dark li {
  color: var(--text-secondary);
  line-height: 1.7;
  font-weight: 500;
}

.theme-dark strong,
.theme-dark b {
  color: var(--text-primary);
  font-weight: 600;
}




/* Hacker Theme: The Cyber HUD (Professional Web Builder Style) */
.theme-hacker {
  --bg-primary: #050a0a;
  --bg-secondary: #0a1414;
  --bg-tertiary: #0f1e1e;
  --text-primary: #00ffcc;
  /* Cyber Cyan-Green */
  --text-secondary: #00cca3;
  --text-tertiary: #008f7a;
  --accent: #00ff99;
  --border: rgba(0, 255, 204, 0.4);
}

/* Azure Cloud Theme: Cloud Engineering Style */
.theme-cloud {
  --bg-primary: #001e3c;
  --bg-secondary: #002d56;
  --bg-tertiary: #003a6f;
  --text-primary: #ffffff;
  --text-secondary: #e0f2fe;
  --text-tertiary: #b3dbf4;
  --accent: #00bcf2;
  --border: rgba(0, 188, 242, 0.3);
}

.theme-cloud body {
  background: var(--bg-primary);
  color: var(--text-primary);
}

.theme-cloud #navbar {
  background: rgba(0, 30, 60, 0.85);
  border-bottom: 1px solid rgba(0, 188, 242, 0.3);
}

.theme-cloud .project-card,
.theme-cloud .cert-card,
.theme-cloud .service-card,
.theme-cloud .tech-card {
  background: rgba(0, 30, 60, 0.95) !important;
  border: 1px solid rgba(0, 188, 242, 0.3) !important;
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.6);
}

.theme-cloud p,
.theme-cloud span,
.theme-cloud li {
  color: var(--text-secondary);
  font-weight: 500;
  line-height: 1.6;
}

.theme-cloud strong,
.theme-cloud b {
  color: var(--text-primary);
  font-weight: 600;
}

.theme-cloud .project-card:hover {
  border-color: var(--accent) !important;
  box-shadow: 0 0 25px rgba(0, 188, 242, 0.4) !important;
  transform: translateY(-8px) scale(1.02);
}

.theme-cloud h1,
.theme-cloud h2,
.theme-cloud h3 {
  color: var(--text-primary);
  text-shadow: 0 0 20px rgba(0, 188, 242, 0.4), 0 2px 4px rgba(0, 0, 0, 0.5);
}

.theme-cloud p {
  color: var(--text-secondary);
  font-weight: 450;
}

.theme-hacker section {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

/* Digital Grid Background */
.theme-hacker section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 255, 204, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 204, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.theme-hacker body {
  background: #000;
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
}

/* HUD Header Style */
.theme-hacker h1,
.theme-hacker h2,
.theme-hacker h3 {
  font-family: 'JetBrains Mono', monospace !important;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-shadow: 0 0 15px rgba(0, 255, 204, 0.4);
}

.theme-hacker h2::before {
  content: "// SECURE_SHELL > ";
  font-size: 0.5em;
  opacity: 0.6;
}

.theme-hacker .project-card,
.theme-hacker .cert-card,
.theme-hacker .service-card,
.theme-hacker .tech-card {
  background: rgba(0, 10, 10, 0.9) !important;
  border: 1px solid var(--border) !important;
  border-radius: 4px;
  backdrop-filter: blur(12px);
}

.theme-hacker .project-card:hover {
  border-color: var(--accent) !important;
  box-shadow: 0 0 30px rgba(0, 255, 204, 0.2), inset 0 0 20px rgba(0, 255, 204, 0.1) !important;
  transform: translateY(-8px);
}

/* Apply theme colors to all elements */
.theme-light .project-card {
  background: white;
  border-color: #e2e8f0;
}

.theme-dark .project-card {
  background: #1e1e1e;
  border-color: #374151;
}

.theme-game .project-card {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(236, 72, 153, 0.15) 100%);
  border-color: rgba(236, 72, 153, 0.3);
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.2),
    0 10px 15px -3px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(236, 72, 153, 0.1);
}

.theme-game .project-card:hover {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.25) 0%, rgba(236, 72, 153, 0.25) 100%);
  box-shadow:
    0 25px 50px -12px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(236, 72, 153, 0.4),
    0 0 60px rgba(236, 72, 153, 0.3);
  border-color: rgba(236, 72, 153, 0.6);
}

.theme-game .project-card::before {
  background: linear-gradient(90deg,
      rgba(236, 72, 153, 0.8) 0%,
      rgba(139, 92, 246, 0.8) 50%,
      rgba(236, 72, 153, 0.8) 100%);
}

.theme-hacker .project-card {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 20, 0, 0.6) 100%);
  border-color: rgba(0, 255, 0, 0.3);
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.5),
    0 10px 15px -3px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(0, 255, 0, 0.2),
    0 0 10px rgba(0, 255, 0, 0.1);
}

.theme-hacker .project-card:hover {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 30, 0, 0.7) 100%);
  box-shadow:
    0 25px 50px -12px rgba(0, 0, 0, 0.8),
    0 0 0 1px rgba(0, 255, 0, 0.5),
    0 0 60px rgba(0, 255, 0, 0.4);
  border-color: rgba(0, 255, 0, 0.7);
}

.theme-hacker .project-card::before {
  background: linear-gradient(90deg,
      rgba(0, 255, 0, 0.8) 0%,
      rgba(0, 255, 136, 0.8) 50%,
      rgba(0, 255, 0, 0.8) 100%);
}

.theme-light .cert-card {
  background: white;
  border-color: #e2e8f0;
}

.theme-dark .cert-card {
  background: #1e1e1e;
  border-color: #374151;
}



.theme-hacker .cert-card {
  background: rgba(0, 0, 0, 0.5);
}

.theme-light .service-card {
  background: white;
  border-color: #e2e8f0;
}

.theme-dark .service-card {
  background: #1e1e1e;
  border-color: #374151;
}



.theme-hacker .service-card {
  background: rgba(0, 0, 0, 0.5);
}

.theme-light .tech-card {
  background: white;
  border-color: #e2e8f0;
}

.theme-dark .tech-card {
  background: #1e1e1e;
  border-color: #333;
}



.theme-hacker .tech-card {
  background: rgba(0, 0, 0, 0.5);
  border-color: rgba(0, 255, 0, 0.3);
}

/* Text colors for each theme */
.theme-light .tech-card span,
.theme-light .cert-card h3,
.theme-light .service-card h3 {
  color: var(--text-primary);
}

.theme-dark .tech-card span,
.theme-dark .cert-card h3,
.theme-dark .service-card h3,
.theme-dark .cert-card p,
.theme-dark .service-card p,
.theme-dark .project-card p,
.theme-dark .project-card h3 {
  color: inherit;
}

.theme-dark .cert-card h3,
.theme-dark .service-card h3,
.theme-dark .project-card h3 {
  color: var(--text-primary);
}



.theme-hacker .tech-card span,
.theme-hacker .cert-card h3,
.theme-hacker .service-card h3 {
  color: var(--text-primary);
}

/* Form inputs */
.theme-light input,
.theme-light textarea {
  background: white;
  border-color: #e2e8f0;
  color: var(--text-primary);
}

.theme-light input::placeholder,
.theme-light textarea::placeholder {
  color: var(--text-tertiary);
}

.theme-dark input,
.theme-dark textarea {
  background: #1e1e1e;
  border-color: #374151;
  color: var(--text-primary);
}

.theme-dark input::placeholder,
.theme-dark textarea::placeholder {
  color: var(--text-tertiary);
}



.theme-hacker input,
.theme-hacker textarea {
  background: rgba(0, 0, 0, 0.5);
  border-color: rgba(0, 255, 0, 0.3);
  color: var(--text-primary);
}

.theme-hacker input::placeholder,
.theme-hacker textarea::placeholder {
  color: rgba(0, 255, 0, 0.5);
}

/* Footer */
.theme-light footer {
  background: white;
  border-color: #e2e8f0;
}

.theme-dark footer {
  background: #1e1e1e;
  border-color: #374151;
}



/* Contact section text visibility */
.theme-dark #contact span,
.theme-dark #contact a {
  color: var(--text-secondary);
}



/* Badge/Tag visibility */
.theme-dark .px-3.py-1,
.theme-dark span[class*="px-3"],
.theme-dark span[class*="rounded-full"] {
  color: #60a5fa !important;
  /* Bright blue for tags in dark mode */
  background: rgba(96, 165, 250, 0.1) !important;
  border: 1px solid rgba(96, 165, 250, 0.3);
}

.theme-hacker .px-3.py-1,
.theme-hacker span[class*="px-3"],
.theme-hacker span[class*="rounded-full"] {
  color: #00ff00 !important;
  background: rgba(0, 255, 0, 0.1) !important;
  border: 1px solid rgba(0, 255, 0, 0.5);
}



/* Ensure icons are visible */
.theme-dark i:not([class*="text-"]) {
  color: var(--text-secondary);
}



.theme-hacker footer {
  background: rgba(0, 0, 0, 0.8);
  border-color: rgba(0, 255, 0, 0.5);
}

/* Loader Screen Theme Styles */
.theme-light #loader-screen {
  background: #ffffff;
}

.theme-dark #loader-screen {
  background: #0f0f0f;
}



.theme-hacker #loader-screen {
  background: #000000;
}

.theme-light .loader-icon {
  color: #1f2937;
}

.theme-dark .loader-icon {
  color: #ffffff;
}

.theme-game .loader-icon {
  color: #fbcfe8;
}

.theme-hacker .loader-icon {
  color: #00ff00;
}

.theme-light .loader-title {
  color: #111827;
}

.theme-dark .loader-title {
  color: #ffffff;
}

.theme-game .loader-title {
  color: #fce7f3;
}

.theme-hacker .loader-title {
  color: #00ff00;
}

.theme-light .loader-subtitle {
  color: #4b5563;
}

.theme-dark .loader-subtitle {
  color: #f1f5f9;
}



.theme-hacker .loader-subtitle {
  color: #00ff00;
}

.theme-light .loader-bar-bg {
  background: #e5e7eb;
}

.theme-dark .loader-bar-bg {
  background: #374151;
}



.theme-hacker .loader-bar-bg {
  background: rgba(0, 0, 0, 0.5);
}

.theme-light .loader-bar-progress {
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
}

.theme-dark .loader-bar-progress {
  background: linear-gradient(90deg, #60a5fa, #a78bfa);
}



.theme-hacker .loader-bar-progress {
  background: linear-gradient(90deg, #00ff99, #00ffcc);
  box-shadow: 0 0 15px rgba(0, 255, 153, 0.6);
}

.theme-light .loader-text {
  color: #6b7280;
}

.theme-dark .loader-text {
  color: #cbd5e1;
}



.theme-hacker .loader-text {
  color: #00ff00;
}

.theme-hacker #matrix-canvas {
  display: block !important;
}

/* Canvas animations for dark and game themes */
#dark-particles-canvas,
#game-particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.theme-dark #dark-particles-canvas {
  display: block;
}



/* Navbar Theme Styles */
.theme-light #navbar {
  background: rgba(255, 255, 255, 0.8);
  border-color: #e2e8f0;
}

.theme-dark #navbar {
  background: rgba(30, 30, 30, 0.8);
  border-color: #374151;
}



.theme-hacker #navbar {
  background: rgba(0, 0, 0, 0.9);
  border-color: rgba(0, 255, 0, 0.5);
}

.theme-light #navbar .text-xl {
  color: #111827;
}

.theme-dark #navbar .text-xl {
  color: #ffffff;
}



.theme-hacker #navbar .text-xl {
  color: #00ff00;
}

.theme-light #mobile-menu-btn {
  color: #374151;
}

.theme-dark #mobile-menu-btn {
  color: #d1d5db;
}



.theme-hacker #mobile-menu-btn {
  color: #00ff00;
}

.theme-light #mobile-menu {
  background: #ffffff;
}

.theme-dark #mobile-menu {
  background: #1e1e1e;
}



.theme-hacker #mobile-menu {
  background: #000000;
}

/* Theme Toggle Button */
.theme-light #theme-toggle {
  background: #f3f4f6;
  border-color: #d1d5db;
}

.theme-dark #theme-toggle {
  background: #1f2937;
  border-color: #374151;
}



.theme-hacker #theme-toggle {
  background: rgba(0, 0, 0, 0.8);
  border-color: rgba(0, 255, 0, 0.5);
}

/* Hero Section */
.theme-light #home {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.theme-dark #home {
  background: linear-gradient(135deg, #0f0f0f 0%, #1e1e1e 100%);
}

/* End of File */