        body { background-color: #5a5050; color: #685e5e; font-family: 'Inter', sans-serif; overflow-x: hidden; }
        .serif { font-family: 'Playfair Display', serif; }
        
        /* Cinematic Aesthetics */
.film-grain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background-image: url('https://i.pinimg.com/736x/9f/66/e7/9f66e789f2509f0db0636c56f44d918c.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;

    opacity: 0.03;
    pointer-events: none;
    z-index: 999;
}
        
        .gold-gradient {
            background: linear-gradient(135deg, #D4AF37 0%, #F7E7CE 50%, #D4AF37 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .btn-premium {
            position: relative; overflow: hidden;
            transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
            border: 1px solid rgba(212, 175, 55, 0.3);
        }
        .btn-premium:hover {
            background: #D4AF37; color: #0A0A0A;
            box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
            transform: translateY(-2px);
        }

        /* Layout & Transitions */
        .page-section { display: none; opacity: 0; transition: opacity 0.8s ease; }
        .page-section.active { display: block; opacity: 1; }

        .drawer { transform: translateX(100%); transition: transform 0.6s cubic-bezier(0.82, 0.085, 0.395, 1); }
        .drawer.open { transform: translateX(0); }

        .glass-dark { background: rgba(10, 10, 10, 0.8); backdrop-filter: blur(15px); border: 1px solid rgba(255, 255, 255, 0.1); }
        
        .nav-link { letter-spacing: 0.2em; font-size: 0.7rem; font-weight: 600; text-transform: uppercase; color: rgba(255,255,255,0.6); transition: all 0.3s; }
        .nav-link:hover, .nav-link.active { color: #D4AF37; }

        /* Custom Scrollbar */
        ::-webkit-scrollbar { width: 4px; }
        ::-webkit-scrollbar-track { background: #0A0A0A; }
        ::-webkit-scrollbar-thumb { background: #D4AF37; }

        @keyframes letterFade {
            from { opacity: 0; letter-spacing: 0.5em; filter: blur(10px); }
            to { opacity: 1; letter-spacing: normal; filter: blur(0); }
        }
        .animate-cinematic { animation: letterFade 2s cubic-bezier(0.16, 1, 0.3, 1) forwards; }

        #policyModal {
    animation: fadeIn .5s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
