html { scroll-behavior: smooth; }
body { 
    background-color: #121212; 
    color: #f5f5f5; 
    font-family: system-ui, -apple-system, sans-serif; 
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #121212; }
::-webkit-scrollbar-thumb { background: #333; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #d4af37; }

/* Utilities */
.text-gold { color: #d4af37; }
.bg-gold { background-color: #d4af37; }
.border-gold { border-color: #d4af37; }

/* Marquee Animation */
.marquee-container {
    overflow: hidden;
    position: relative;
    height: 380px;
}
.marquee-content {
    animation: marquee 20s linear infinite;
    display: flex;
    flex-direction: column;
}
.marquee-container:hover .marquee-content {
    animation-play-state: paused;
}
@keyframes marquee {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

/* Glassmorphism */
.glass {
    background: rgba(26, 26, 26, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

/* Image Hover Zoom */
.hover-zoom:hover img {
    transform: scale(1.1);
}
