/* Chess-specific styles for about page */

.chess-container {
    width: 400px;
    height: 400px;
    margin: 2rem auto;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.chess-container canvas {
    display: block;
    width: 100%;
    height: 100%;
    image-rendering: crisp-edges;
}

/* Mobile adjustments */
@media (max-width: 600px) {
    .chess-container {
        width: 100%;
        max-width: 400px;
        height: auto;
        aspect-ratio: 1;
    }
}