/* Custom Styles for beats365 */

:root {
    --gold: #D4AF37;
    --gold-hover: #C5A028;
    --dark-bg: #121212;
    --dark-card: #1E1E1E;
    --dark-border: #2A2A2A;
}

body {
    scroll-behavior: smooth;
}

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

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

.gold-border {
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: border-color 0.3s ease;
}

.gold-border:hover {
    border-color: rgba(212, 175, 55, 0.6);
}

.card-hover {
    transition: transform 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-4px);
}

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

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.5);
    border-radius: 9999px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

/* Animations */
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.animate-scroll {
    display: flex;
    animation: scroll 30s linear infinite;
}

.animate-scroll:hover {
    animation-play-state: paused;
}

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

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

/* Page Transition */
.page-transition {
    animation: fadeIn 0.5s ease forwards;
}
