.gold-gradient {
    background: linear-gradient(135deg, #f9e29c 0%, #d4af37 50%, #c5a028 100%);
}

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

.glass-card {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.page {
    transition: opacity 0.5s ease;
}

.page.hidden {
    display: none;
    opacity: 0;
}

.page.active {
    display: block;
    opacity: 1;
}

.nav-link.active {
    color: #d4af37;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

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

::-webkit-scrollbar-thumb {
    background: #d4af37;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #f9e29c;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease forwards;
}
