body {
      font-family: 'Outfit', 'Inter', sans-serif;
      touch-action: none;
    }
    
    /* Cursor auto-hiding utility */
    .hide-cursor {
      cursor: none !important;
    }

    /* Smooth opacity crossfade transition for slides */
    .slide-fade-enter {
      opacity: 0;
      transform: scale(1.02);
    }
    .slide-fade-active {
      opacity: 1;
      transform: scale(1);
      transition: opacity 1.8s ease-in-out, transform 1.8s ease-out;
    }
    .slide-fade-exit {
      opacity: 0;
      transform: scale(0.98);
      transition: opacity 1.8s ease-in-out, transform 1.8s ease-in;
    }

    /* Ambient background blur transition */
    .bg-blur-transition {
      transition: background-image 1.8s ease-in-out;
    }

    /* Subtle text shadow for high contrast over any photo */
    .text-ambient-shadow {
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.75), 0 0 20px rgba(0, 0, 0, 0.5);
    }

    /* Custom scrollbar for settings modal */
    ::-webkit-scrollbar {
      width: 6px;
    }
    ::-webkit-scrollbar-track {
      background: rgba(255, 255, 255, 0.05);
    }
    ::-webkit-scrollbar-thumb {
      background: rgba(255, 255, 255, 0.2);
      border-radius: 3px;
    }