/* ===== RESPONSIVE STYLES ===== */

@media (max-width: 1024px) {
    .game-title {
        font-size: 3rem;
    }

    .betting-spots {
        gap: 0.75rem;
    }

    .bet-spot {
        width: 110px;
        height: 75px;
    }

    .chip-btn {
        width: 40px;
        height: 40px;
        font-size: 0.7rem;
    }
}

@media (max-width: 768px) {
    .game-title {
        font-size: 2.5rem;
    }

    .game-subtitle {
        font-size: 1.2rem;
    }

    .start-button {
        padding: 1rem 3rem;
        font-size: 1.5rem;
    }

    .top-bar {
        padding: 0.4rem 0.5rem;
    }

    .chips-display {
        font-size: 1rem;
    }

    .round-number {
        font-size: 1.2rem;
    }

    .control-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .betting-spots {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.4rem;
    }

    .bet-spot {
        width: 100px;
        height: 70px;
    }

    .bet-controls {
        flex-direction: column;
        gap: 0.5rem;
    }

    .chip-selector {
        flex-wrap: wrap;
        justify-content: center;
    }

    .chip-btn {
        width: 38px;
        height: 38px;
        font-size: 0.65rem;
    }

    .bet-buttons {
        width: 100%;
        justify-content: stretch;
    }

    .bet-action-btn {
        flex: 1;
        padding: 0.6rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .game-title {
        font-size: 2rem;
    }

    .game-subtitle {
        font-size: 1rem;
    }

    .start-button {
        padding: 0.8rem 2rem;
        font-size: 1.2rem;
    }

    .top-bar {
        padding: 0.3rem 0.5rem;
    }

    .chips-display {
        font-size: 0.85rem;
    }

    .chips-icon {
        font-size: 1.2rem;
    }

    .round-number {
        font-size: 1rem;
    }

    .control-btn {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }

    .scoreboard {
        gap: 0.5rem;
    }

    .score-label {
        font-size: 0.6rem;
    }

    .score-value {
        font-size: 0.85rem;
    }

    .card {
        width: 45px;
        height: 65px;
        margin: 0 2px;
    }

    .card-rank {
        font-size: 1rem;
    }

    .card-suit {
        font-size: 1.3rem;
    }

    .betting-spots {
        gap: 0.3rem;
    }

    .bet-spot {
        width: 90px;
        height: 65px;
    }

    .bet-label {
        font-size: 0.8rem;
    }

    .bet-payout {
        font-size: 0.55rem;
    }

    .bet-amount {
        font-size: 0.85rem;
    }

    .chip-btn {
        width: 35px;
        height: 35px;
        font-size: 0.6rem;
    }

    .bet-action-btn {
        padding: 0.5rem;
        font-size: 0.8rem;
    }

    .modal-title {
        font-size: 2rem;
    }

    .modal-message {
        font-size: 1.1rem;
    }
}

@media (orientation: landscape) and (max-height: 600px) {
    .table-container {
        padding: 0.3rem;
    }

    .table-container::before {
        display: none;
    }

    .hand-area {
        flex-shrink: 1;
    }

    .center-area {
        padding: 0.3rem;
    }

    .betting-area {
        padding: 0.3rem;
    }

    .betting-spots {
        flex-direction: row;
        gap: 0.3rem;
    }

    .bet-spot {
        width: 100px;
        height: 65px;
    }

    .card {
        width: 40px;
        height: 60px;
    }

    .card-rank {
        font-size: 0.9rem;
    }

    .card-suit {
        font-size: 1.2rem;
    }

    .chips-container {
        min-height: 60px;
    }
}
