.gold-gradient {
    background: linear-gradient(135deg, #D4AF37 0%, #F3E5AB 50%, #D4AF37 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.btn-gold {
    background: linear-gradient(95deg, #D4AF37 0%, #C5A028 100%);
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
    background: linear-gradient(95deg, #E5C158 0%, #D4AF37 100%);
}

.card-dark {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(212, 175, 55, 0.25);
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.card-dark:hover {
    border-color: rgba(212, 175, 55, 0.7);
    transform: translateY(-6px);
    box-shadow: 0 20px 35px -12px rgba(212, 175, 55, 0.2);
}

.hero-pattern {
    background-image: radial-gradient(rgba(212, 175, 55, 0.08) 1px, transparent 1px);
    background-size: 40px 40px;
}

.fade-up {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.8s cubic-bezier(0.2, 0.9, 0.4, 1.1), transform 0.8s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.stat-number {
    font-feature-settings: "tnum";
    font-variant-numeric: tabular-nums;
    transition: all 0.2s;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: #D4AF37;
    border-radius: 10px;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }
}

.animate-bounce {
    animation: bounce 1.5s infinite;
}

#navbar {
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .hero-pattern {
        background-size: 25px 25px;
    }
}