/* Стилизация логотипа BonkyoPrinter в стиле Super Mario Bros */
.bonkyo-logo {
  font-family: 'Orbitron', 'Space Mono', monospace;
  font-weight: 900;
  font-size: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
  text-shadow: 
    3px 3px 0 #000,
    6px 6px 0 rgba(0,0,0,0.3);
  background: linear-gradient(45deg, 
    #ff0000 0%, 
    #ff6b35 15%, 
    #ffff00 30%, 
    #00ff00 45%, 
    #0000ff 60%, 
    #ff00ff 75%, 
    #ff6b35 90%, 
    #ff0000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: bonkyo-glow 3s ease-in-out infinite alternate;
}

.bonkyo-logo::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, 
    #ff0000 0%, 
    #ff6b35 15%, 
    #ffff00 30%, 
    #00ff00 45%, 
    #0000ff 60%, 
    #ff00ff 75%, 
    #ff6b35 90%, 
    #ff0000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: blur(8px);
  opacity: 0.7;
  z-index: -1;
  animation: bonkyo-glow 3s ease-in-out infinite alternate-reverse;
}

@keyframes bonkyo-glow {
  0% {
    filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.8)) blur(0px);
  }
  50% {
    filter: drop-shadow(0 0 20px rgba(255, 255, 0, 0.9)) blur(2px);
  }
  100% {
    filter: drop-shadow(0 0 15px rgba(0, 255, 0, 0.8)) blur(1px);
  }
}

/* Альтернативный стиль с более яркими цветами */
.bonkyo-logo-bright {
  font-family: 'Orbitron', 'Space Mono', monospace;
  font-weight: 900;
  font-size: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
  text-shadow: 
    4px 4px 0 #000,
    8px 8px 0 rgba(0,0,0,0.4);
  background: linear-gradient(45deg, 
    #ff0000 0%, 
    #ff8800 12.5%, 
    #ffff00 25%, 
    #00ff00 37.5%, 
    #00ffff 50%, 
    #0000ff 62.5%, 
    #ff00ff 75%, 
    #ff0080 87.5%, 
    #ff0000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: bonkyo-bright 4s ease-in-out infinite;
}

@keyframes bonkyo-bright {
  0%, 100% {
    filter: drop-shadow(0 0 15px rgba(255, 0, 0, 0.8));
  }
  14% {
    filter: drop-shadow(0 0 15px rgba(255, 136, 0, 0.8));
  }
  28% {
    filter: drop-shadow(0 0 15px rgba(255, 255, 0, 0.8));
  }
  42% {
    filter: drop-shadow(0 0 15px rgba(0, 255, 0, 0.8));
  }
  56% {
    filter: drop-shadow(0 0 15px rgba(0, 255, 255, 0.8));
  }
  70% {
    filter: drop-shadow(0 0 15px rgba(0, 0, 255, 0.8));
  }
  84% {
    filter: drop-shadow(0 0 15px rgba(255, 0, 255, 0.8));
  }
}

/* Стиль для мобильных устройств */
@media (max-width: 768px) {
  .bonkyo-logo,
  .bonkyo-logo-bright {
    font-size: 1.8rem;
    letter-spacing: 1px;
    text-shadow: 
      2px 2px 0 #000,
      4px 4px 0 rgba(0,0,0,0.3);
  }
} 