/* Mobile Responsive Layout */
@media screen and (max-width: 1200px) {
    .game-container {
        flex-direction: column;
        overflow-y: auto;
        height: auto;
        padding: 20px;
    }

    body {
        overflow-y: auto; /* Allow scrolling on smaller screens */
    }

    .left-section, .center-section, .right-section {
        flex: none;
        width: 100%;
        margin-bottom: 20px;
    }

    .game-title {
        font-size: 3rem;
        text-align: center;
    }

    .game-title .subtitle {
        font-size: 1.5rem;
    }

    .creator-tag {
        align-self: center;
    }

    .social-icons {
        position: static;
        justify-content: center;
        margin-top: 20px;
    }

    .navbar {
        flex-direction: column;
        height: auto;
        padding: 20px;
        gap: 15px;
    }
}

@media screen and (max-width: 600px) {
    .board {
        grid-template-columns: repeat(6, 45px);
        grid-template-rows: repeat(6, 45px);
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}
