.mobile-menu { transform: translateX(100%); transition: transform 0.3s ease-in-out; }
.mobile-menu.active { transform: translateX(0); }
.text-glow { text-shadow: 0 0 15px rgba(212, 175, 55, 0.6); }
.hero-text-shadow { text-shadow: 2px 2px 10px rgba(0,0,0,0.5); }


.gold-particle {
    position: fixed;
    pointer-events: none;
    z-index: 0;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.gold-smoke-effect {
    position: fixed;
    pointer-events: none;
    z-index: 0;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    filter: blur(40px);
}

.gold-background {
    position: fixed;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
    opacity: 0;
}


.content-wrapper {
    position: relative;
    z-index: 10;
}


.bg-white-relative {
    position: relative;
    overflow: hidden;
}

.bg-white-relative::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.02) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}


.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #D4AF37, #F3E5AB);
    z-index: 9999;
    transition: width 0.1s ease;
}


::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #1e293b;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #D4AF37, #F3E5AB);
    border-radius: 5px;
    border: 2px solid #1e293b;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #F3E5AB, #D4AF37);
}

* {
    scrollbar-width: thin;
    scrollbar-color: #D4AF37 #1e293b;
}


.animated-border {
    position: relative;
    border: 2px solid transparent;
    background-clip: padding-box;
    background: linear-gradient(135deg, #1e293b, #0f172a, #020617);
}

.animated-border::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #D4AF37, #F3E5AB, #D4AF37);
    border-radius: inherit;
    z-index: -1;
    animation: borderGlow 3s linear infinite;
}

@keyframes borderGlow {
    0% { opacity: 0.5; }
    50% { opacity: 1; }
    100% { opacity: 0.5; }
}

.counter {
    font-variant-numeric: tabular-nums;
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2rem !important;
        line-height: 1.1 !important;
    }
    
    .mobile-center {
        text-align: center !important;
    }
    
    .mobile-stack {
        flex-direction: column !important;
    }
    
    .mobile-padding {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
    
    .mobile-full-width {
        width: 100% !important;
    }
    
    .gold-particle,
    .gold-smoke-effect {
        display: none;
    }
    
    .animate-pulse-slow {
        animation: pulse 4s infinite ease-in-out !important;
    }
}

html::-webkit-scrollbar,
body::-webkit-scrollbar,
*::-webkit-scrollbar {
    display: none;
}


html,
body,
* {
    -ms-overflow-style: none;  
    scrollbar-width: none;  
}


html,
body {
    overflow: -moz-scrollbars-none;
    -webkit-overflow-scrolling: touch;
    overflow-y: scroll;
}


.modal-content:hover::-webkit-scrollbar {
    display: block;
    width: 6px;
}

.modal-content:hover::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.5);
    border-radius: 3px;
}