/* DasLab Logo Styles with Split Apart Effect */
.daslab-logo {
  position: relative;
  font-family: 'Orbitron', 'Rajdhani', 'Segoe UI', monospace;
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: 3px;
  cursor: pointer;
  user-select: none;
  display: inline-block;
  padding: 10px 0;
}

.logo-text-main {
  display: inline-block;
  position: relative;
  z-index: 2;
}

.logo-text-main .das {
  display: inline-block;
  color: #00d9ff;
  text-shadow: 
    0 0 10px rgba(0, 217, 255, 0.8),
    0 0 20px rgba(0, 217, 255, 0.5),
    0 0 30px rgba(0, 217, 255, 0.3);
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.logo-text-main .lab {
  display: inline-block;
  color: #ff006e;
  text-shadow: 
    0 0 10px rgba(255, 0, 110, 0.8),
    0 0 20px rgba(255, 0, 110, 0.5),
    0 0 30px rgba(255, 0, 110, 0.3);
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Split Apart Effect on Hover */
.daslab-logo:hover .das {
  transform: translateX(-15px) translateY(-5px) rotate(-5deg) scale(1.1);
  filter: brightness(1.3) contrast(1.2);
  text-shadow: 
    0 0 15px rgba(0, 217, 255, 1),
    0 0 30px rgba(0, 217, 255, 0.8),
    0 0 45px rgba(0, 217, 255, 0.6),
    -5px 5px 20px rgba(0, 217, 255, 0.4);
}

.daslab-logo:hover .lab {
  transform: translateX(15px) translateY(5px) rotate(5deg) scale(1.1);
  filter: brightness(1.3) contrast(1.2);
  text-shadow: 
    0 0 15px rgba(255, 0, 110, 1),
    0 0 30px rgba(255, 0, 110, 0.8),
    0 0 45px rgba(255, 0, 110, 0.6),
    5px -5px 20px rgba(255, 0, 110, 0.4);
}

/* Split Apart Animation with Particles */
.daslab-logo::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(ellipse at center,
    transparent 0%,
    transparent 30%,
    rgba(0, 217, 255, 0.05) 50%,
    rgba(255, 0, 110, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: -1;
}

.daslab-logo:hover::after {
  opacity: 1;
  animation: split-glow 0.5s ease-out;
}

@keyframes split-glow {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }
}

/* Particle effect spans */
.daslab-logo {
  overflow: visible;
}

.daslab-logo:hover {
  animation: logo-shake 0.5s ease-out;
}

@keyframes logo-shake {
  0%, 100% {
    transform: translateX(0);
  }
  10%, 30%, 50%, 70% {
    transform: translateX(-2px);
  }
  20%, 40%, 60%, 80% {
    transform: translateX(2px);
  }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .daslab-logo {
    font-size: 2rem;
    letter-spacing: 2px;
  }
}

/* Import Google Font for better gaming look */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Rajdhani:wght@500;600;700&display=swap');