/* kotovzhukh_loader.css */
#kotovzhukh-modal {
  position: fixed;
  z-index: 10000;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(1.5px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s;
}
#kotovzhukh-modal .kotovzhukh-inner {
  position: relative;
  text-align: center;
  width: 550px;
  max-width: 95vw;
  padding: 32px 16px 24px 16px;
  background: #fff;
  border-radius: 36px;
  box-shadow: 0 8px 48px rgba(48,48,48,0.08),0 2px 6px rgba(0,0,0,0.02);
}
.kotovzhukh-image-container {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}
#kotovzhukh-cat {
  width: 100%;
  height: auto;
  display: block;
  max-width: 500px;
  margin: 0 auto;
  user-select: none;
  -webkit-user-drag: none;
}
/* Анимация свечения для текста ВЖУХ */
@keyframes kotovzhukh-glow {
  0%, 100% {
    text-shadow: 
      0 0 10px rgba(207, 198, 97, 0.8),
      0 0 20px rgba(207, 198, 97, 0.6),
      0 0 30px rgba(207, 198, 97, 0.4),
      0 0 40px rgba(207, 198, 97, 0.3);
    transform: scale(1);
  }
  50% {
    text-shadow: 
      0 0 20px rgba(207, 198, 97, 1),
      0 0 40px rgba(207, 198, 97, 0.8),
      0 0 60px rgba(207, 198, 97, 0.6),
      0 0 80px rgba(207, 198, 97, 0.4);
    transform: scale(1.05);
  }
}
#kotovzhukh-vzhukh-text {
  color: #CFC661; 
  font-weight: 700; 
  margin-top: 24px;
  font-size: 3.2rem; 
  letter-spacing: 4px; 
  opacity: 1;
  animation: kotovzhukh-glow 1.5s ease-in-out infinite;
  text-shadow: 
    0 0 10px rgba(207, 198, 97, 0.8),
    0 0 20px rgba(207, 198, 97, 0.6),
    0 0 30px rgba(207, 198, 97, 0.4);
}
#kotovzhukh-kpi-text {
  margin-top: 16px; 
  color: #333; 
  font-size: 1.3rem;
  font-weight: 500; 
  opacity: 1; 
  transition: opacity 0.5s, transform 0.5s;
  line-height: 1.5;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}
#kotovzhukh-modal.vzhukh-ready #kotovzhukh-vzhukh-text {
  animation: kotovzhukh-glow 1.2s ease-in-out infinite;
  transform: scale(1.1);
}
#kotovzhukh-modal.vzhukh-ready #kotovzhukh-kpi-text {
  opacity: 1; 
  transform: translateY(0);
  color: #CFC661;
  font-weight: 600;
}
