/* ========================================
   ChessClans CE Llinars — Estils Globals
   ======================================== */

/* Base */
body {
    font-family: system-ui, -apple-system, sans-serif;
    background-color: #0f172a;
    color: #f8fafc;
}

/* Animacions */
.fade-in {
    animation: fadeIn 0.4s ease-in-out;
}

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

/* Fons decoratiu d'escacs */
.chess-pattern {
    background-image:
        linear-gradient(45deg, #1e293b 25%, transparent 25%, transparent 75%, #1e293b 75%, #1e293b),
        linear-gradient(45deg, #1e293b 25%, transparent 25%, transparent 75%, #1e293b 75%, #1e293b);
    background-size: 60px 60px;
    background-position: 0 0, 30px 30px;
    opacity: 0.3;
}

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

::-webkit-scrollbar-track {
    background: transparent;
}

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

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