@layer utilities {
      .content-auto {
        content-visibility: auto;
      }
      .text-shadow {
        text-shadow: 0 2px 4px rgba(0,0,0,0.1);
      }
      .bg-gradient-custom {
        background: linear-gradient(135deg, #BE77FF 0%, #ADFEDC 70%, #FFA042 100%);
      }
      .card-hover {
        transition: all 0.3s ease;
      }
      .card-hover:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
      }
      .btn-gradient {
        background: linear-gradient(90deg, #BE77FF 0%, #FFA042 100%);
        transition: all 0.3s ease;
      }
      .btn-gradient:hover {
        background: linear-gradient(90deg, #FFA042 0%, #BE77FF 100%);
        transform: scale(1.03);
      }
      .nav-sticky {
        backdrop-filter: blur(8px);
        background-color: rgba(255, 255, 255, 0.8);
      }
    }