/**
 * Gaia Premium Popup Styles
 */

/* Smooth Entrance Animations */
@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-enter {
    animation: slideUpFade 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Glass Backdrop */
.backdrop-blur-custom {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    background: rgba(17, 48, 38, 0.5);
}

/* Gold Gradient Text */
.text-gold {
    background: linear-gradient(135deg, #C5A059 0%, #E5C585 50%, #C5A059 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
}

/* Paper Noise Texture */
.bg-paper-noise {
    background-color: #ffffff;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
}

/* Disable scroll when modal is open */
body.gaia-modal-open {
    overflow: hidden;
}

/* Ensure z-index works properly */
#gaia-promo-modal {
    z-index: 999999 !important;
}

#gaia-toast {
    z-index: 9999999 !important;
}
