/**
 * responsive.css — Mobile breakpoints for Parchís
 */

/* ── Sidebar (game controls) ────────────────────────────────────────────────── */
.game-sidebar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    min-width: 200px;
    max-width: 260px;
}

/* ── Large screens ──────────────────────────────────────────────────────────── */
@media (min-width: 900px) {
    #gameScreen {
        flex-direction: row;
        align-items: flex-start;
        justify-content: center;
    }

    #boardCanvas {
        width: 450px;
        height: 450px;
    }
}

/* ── Medium screens ─────────────────────────────────────────────────────────── */
@media (max-width: 899px) {
    #gameScreen {
        flex-direction: column;
        align-items: center;
        padding: 60px 10px 10px;
        overflow-y: auto;
    }

    .game-sidebar {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        max-width: 100%;
        gap: 8px;
    }

    #boardCanvas {
        width: min(90vw, 400px);
        height: min(90vw, 400px);
    }
}

/* ── Small screens ──────────────────────────────────────────────────────────── */
@media (max-width: 600px) {
    .game-title {
        font-size: 14px;
    }

    .game-subtitle {
        font-size: 7px;
    }

    #boardCanvas {
        width: min(95vw, 350px);
        height: min(95vw, 350px);
    }

    .pc-input {
        font-size: 8px;
        padding: 8px 10px;
    }

    .pc-btn {
        font-size: 8px;
        padding: 10px 18px;
    }

    .game-sidebar {
        min-width: unset;
    }

    #diceDisplay {
        font-size: 18px;
        min-width: 90px;
        padding: 8px;
    }

    #rollBtn {
        font-size: 8px;
        padding: 10px 20px;
    }

    .lobby-player {
        padding: 8px 10px;
        font-size: 8px;
    }

    #chatMessages {
        height: 70px;
        font-size: 9px;
    }
}

/* ── Very small screens ─────────────────────────────────────────────────────── */
@media (max-width: 400px) {
    #boardCanvas {
        width: 95vw;
        height: 95vw;
    }

    .status-bar {
        font-size: 7px;
        padding: 6px 8px;
    }

    #turnInfo {
        font-size: 8px;
    }

    #statusMsg {
        font-size: 7px;
    }

    .settings-gear {
        top: 8px;
        right: 8px;
        font-size: 14px;
        padding: 2px 6px;
    }
}
