/* 
 * Analisador de PGN Xadrez - Premium Custom Styles
 * Liga Chess Royale
 */

:root {
    --accent-gold: #d4af37;
    --bg-dark: #121212;
    --board-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

#chess-analyzer-root {
    margin: 30px 0;
    font-family: 'Inter', -apple-system, sans-serif;
}

/* Ajustes no Tabuleiro */
.board-wrapper {
    box-shadow: var(--board-shadow);
    border: 5px solid #333;
    border-radius: 4px;
}

/* Scrollbars do Tutor */
.tutor-chat::-webkit-scrollbar {
    width: 6px;
}
.tutor-chat::-webkit-scrollbar-thumb {
    background: var(--accent-gold);
    border-radius: 10px;
}

/* Responsividade Customizada */
@media (max-width: 768px) {
    .analyzer-main {
        flex-direction: column !important;
    }
    .board-wrapper {
        width: 100% !important;
    }
}
