
@keyframes slow-zoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}

.animate-slow-zoom {
  animation: slow-zoom 20s linear infinite alternate;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.dopamine-fade-in {
  animation: fadeInScale 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* REVEAL ON SCROLL - OPTIMIZED FOR GPU */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: transform 0.8s ease-out, opacity 0.8s ease-out;
}

.reveal-on-scroll.active {
  opacity: 1;
  transform: translateY(0);
  will-change: transform, opacity;
}

/* SATISFYING BUTTONS */
button,
a[role="button"],
.interactive-element {
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease;
}

button:active,
a[role="button"]:active {
  transform: scale(0.92);
}

.video-container {
  border-radius: 30px;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-container:hover {
  transform: scale(0.99);
}

.yellow-glow {
  box-shadow: 0 0 50px rgba(201, 168, 76, 0.15);
}

/* PRINT STYLES - DEFINITELY NON-CRITICAL */
@media print {
  body * {
    visibility: hidden !important;
  }

  body::before {
    content: '© Citydez. Все права защищены. Копирование запрещено.';
    visibility: visible !important;
    display: block;
    font-size: 24px;
    text-align: center;
    margin-top: 40vh;
    color: #121212;
  }
}
