/* Custom Font Imports - Using Inter for clean UI */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;800&display=swap');

/* Tailwind Directives are handled via CDN, these are custom overrides */

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    /* White background */
    color: #0f172a;
    /* Slate 900 text */
}

/* Gold Text Effect - Now Black/Shadow */
.gold-text {
    background: #000000;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Gold Shadow Button - Now Black/Gray */
.shadow-gold {
    box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.2);
}

/* Hero Background Pattern */
.chess-bg {
    background-image: radial-gradient(#000000 1px, transparent 1px);
    background-size: 20px 20px;
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.animate-float {
    animation: float 4s ease-in-out infinite;
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #ffffff;
}

::-webkit-scrollbar-thumb {
    background: #4b5563;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #000000;
}