/* ==============================================
   GTA SAN ANDREAS CHEAT CODES - Visual effects
   ============================================== */

/* =====================
   NOTIFICATION TOAST
   ===================== */

.cheat-toast {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-100%);
  z-index: 10000;
  padding: 10px 20px;
  background: var(--color-blue, #0022FF);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1),
              opacity 300ms ease;
}

.cheat-toast.is-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* =====================
   HESOYAM - Gold canvas
   ===================== */

.cheat-canvas {
  position: fixed;
  inset: 0;
  z-index: 998;
  pointer-events: none;
}

/* =====================
   AEZAKMI - Invisible mode (hide everything)
   ===================== */

body.cheat-aezakmi .main {
  opacity: 0 !important;
}

/* =====================
   SPEEDITUP - Fast mode
   ===================== */

body.cheat-speeditup *,
body.cheat-speeditup *::before,
body.cheat-speeditup *::after {
  animation-duration: 0.1s !important;
  transition-duration: 0.05s !important;
}

/* =====================
   SLOWITDOWN - Slow-motion
   ===================== */

body.cheat-slowitdown *,
body.cheat-slowitdown *::before,
body.cheat-slowitdown *::after {
  animation-duration: 5s !important;
  transition-duration: 2s !important;
}
