:root {
  --neon-cyan: #00ffff;
  --neon-pink: #ff0080;
  --neon-purple: #8000ff;
  --neon-blue: #0080ff;
  --dark-bg: #0a0a0f;
  --dark-card: #1a1a2e;
  --dark-secondary: #16213e;
}

.font-orbitron {
  font-family: "Orbitron", monospace;
}

.font-exo {
  font-family: "Exo 2", sans-serif;
}

/* Neon Text Effects */
.neon-text {
  text-shadow: 0 0 1px currentColor, 0 0 10px currentColor, 0 0 1px currentColor,
    0 0 20px currentColor;
}

.neon-cyan {
  color: var(--neon-cyan);
  text-shadow: 0 0 1px var(--neon-cyan), 0 0 1px var(--neon-cyan),
    0 0 1px var(--neon-cyan), 0 0 5px var(--neon-cyan);
}

.neon-pink {
  color: var(--neon-pink);
  text-shadow: 0 0 1px var(--neon-pink), 0 0 1px var(--neon-pink),
    0 0 1px var(--neon-pink), 0 0 5px var(--neon-pink);
}

/* Animated Gradients */
.gradient-animated {
  background: linear-gradient(45deg, #00ffff, #ff0080, #8000ff, #0080ff);
  background-size: 400% 400%;
  animation: gradientShift 4s ease-in-out infinite;
}

@keyframes gradientShift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* Glowing Borders */
.glow-border {
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.3),
    inset 0 0 20px rgba(0, 255, 255, 0.1);
  border: 1px solid rgba(0, 255, 255, 0.5);
}

.glow-border-pink {
  box-shadow: 0 0 20px rgba(255, 0, 128, 0.3),
    inset 0 0 20px rgba(255, 0, 128, 0.1);
  border: 1px solid rgba(255, 0, 128, 0.5);
}

/* Floating Animation */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.float-animation {
  animation: float 6s ease-in-out infinite;
}

/* Pulse Animation */
@keyframes neonPulse {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3),
      inset 0 0 20px rgba(0, 255, 255, 0.1);
  }
  50% {
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.6),
      inset 0 0 30px rgba(0, 255, 255, 0.2);
  }
}

.neon-pulse {
  animation: neonPulse 2s ease-in-out infinite;
}

/* Hexagon Shapes */
.hexagon {
  clip-path: polygon(30% 0%, 70% 0%, 100% 50%, 70% 100%, 30% 100%, 0% 50%);
}

/* Holographic Effect */
.holographic {
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 70%
  );
  background-size: 200% 200%;
  animation: holographicShine 3s ease-in-out infinite;
}

@keyframes holographicShine {
  0% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 100%;
  }
  100% {
    background-position: 0% 0%;
  }
}

/* Tab Styling */
.tab-button {
  transition: all 0.3s ease;
  background: rgba(26, 26, 46, 0.8);
  border: 1px solid rgba(0, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.tab-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 255, 255, 0.3);
  border-color: rgba(0, 255, 255, 0.8);
}

.tab-button.active {
  background: linear-gradient(
    45deg,
    rgba(0, 255, 255, 0.2),
    rgba(255, 0, 128, 0.2)
  );
  border-color: var(--neon-cyan);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
}

/* Glitch Effect */
@keyframes glitch {
  0%,
  100% {
    transform: translate(0);
  }
  10% {
    transform: translate(-2px, 2px);
  }
  20% {
    transform: translate(2px, -2px);
  }
  30% {
    transform: translate(-2px, -2px);
  }
  40% {
    transform: translate(2px, 2px);
  }
}

.glitch-hover:hover {
  animation: glitch 0.3s ease-in-out;
}

/* Particle Background */
.particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--neon-cyan);
  border-radius: 50%;
  animation: particleFloat 15s linear infinite;
  box-shadow: 0 0 10px var(--neon-cyan);
}

@keyframes particleFloat {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100px) rotate(360deg);
    opacity: 0;
  }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, var(--neon-cyan), var(--neon-pink));
  border-radius: 4px;
}

.heart {
  position: relative;
  width: 40px;
  height: 36px;
  transform: rotate(-45deg);
}
/* rgba(255, 0, 128, 0.2) */
.heart:before,
.heart:after {
  content: "";
  width: 20px;
  height: 32px;
  position: absolute;
  left: 20px;
  /* background: rgb(6, 182, 212); */
  background: rgba(255, 0, 128, 212); /* cyan-500 */
  border-radius: 20px 20px 0 0;
  transform: rotate(-45deg);
  transform-origin: 0 100%;
  box-shadow: 0 0 20px rgba(255, 0, 128, 0.6);
  /* box-shadow: 0 0 20px rgba(6, 182, 212, 0.6); */
}

.heart:after {
  left: 0;
  transform: rotate(45deg);
  transform-origin: 100% 100%;
}

.glow-heart {
  filter: drop-shadow(0 0 10px rgba(255, 0, 128, 0.8));
  /* filter: drop-shadow(0 0 10px rgba(6, 182, 212, 0.8)); */
}

@keyframes heartbeat {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

.animate-heartbeat {
  animation: heartbeat 1.5s ease-in-out infinite;
}
