/* Global Styles for Qiusu Sports */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800&family=Playfair+Display:ital,wght@0,700;1,700&display=swap');

:root {
    --color-gold: #d4af37;
    --color-dark: #0a0a0a;
    --color-less-dark: #1a1a1a;
    --color-text-gold: #c5a059;
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

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

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

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

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

/* Typographic enhancements */
.font-serif {
    font-family: 'Playfair Display', serif;
}

/* Image Hover Effects */
.img-zoom {
    overflow: hidden;
}
.img-zoom img {
    transition: transform 0.5s ease;
}
.img-zoom:hover img {
    transform: scale(1.1);
}

/* Custom Gradients */
.bg-gold-gradient {
    background: linear-gradient(135deg, #d4af37 0%, #c5a059 100%);
}

.glass-panel {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
