﻿.game-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: linear-gradient(135deg, #1d3557, #457b9d);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    color: #f1f1f1;
}

.scoreboard {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: linear-gradient(145deg, #2d2d44, #3a3a57);
    border-radius: 25px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    position: relative;
}

.team-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    z-index: 1;
}

.team-logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.6);
    transition: transform 0.3s ease-in-out;
}

    .team-logo:hover {
        transform: scale(1.1);
    }

.team-info {
    text-align: center;
}

.team-name {
    font-size: 1.8rem;
    font-weight: bold;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    color: #ffffff;
}

.stamina {
    font-size: 1.1rem;
    color: #f4a261;
    font-style: italic;
}

.seats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
}

.chair-icon {
    width: 25px;
    height: 25px;
    transition: transform 0.2s ease-in-out;
}

    .chair-icon:hover {
        transform: scale(1.2);
    }

.vs-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding: 10px 20px;
    background: linear-gradient(145deg, #e63946, #ff6f59);
    border-radius: 15px;
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0px 10px 20px rgba(230, 57, 70, 0.5);
}

.score {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 2.5rem;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
}

.score-divider {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ff9f1c;
}

.total-bets {
    font-size: 1.2rem;
    color: #ffffff;
    margin-top: 10px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.bet-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: linear-gradient(135deg, #2a9d8f, #264653);
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    color: #fff;
}


.bet-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, #2a9d8f, #264653);
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    color: #fff;
    margin-top: 20px;
}

    .bet-section label {
        font-size: 1.2rem;
        font-weight: bold;
    }
input[type="range"] {
    width: 100%;
    -webkit-appearance: none;
    background: transparent;
}

    input[type="range"]::-webkit-slider-thumb {
        -webkit-appearance: none;
        height: 20px;
        width: 20px;
        background: #007bff;
        border-radius: 50%;
        cursor: pointer;
        border: 2px solid #fff;
    }

    input[type="range"]::-moz-range-thumb {
        height: 20px;
        width: 20px;
        background: #007bff;
        border-radius: 50%;
        cursor: pointer;
        border: 2px solid #fff;
    }

.bet-channels {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

.bet-channels label {
    font-size: 1.2em;
    font-weight: bold;
    color: #333;
    cursor: pointer;
}

.bet-channels input[type="radio"] {
    margin-right: 10px;
}

.bet-value-display {
    font-size: 1.2em;
    font-weight: bold;
    text-align: center;
    margin-top: 10px;
}


.modal-content {
    color: white;
}

    .modal-content label {
        color: white;
    }

.modal-title {
    color: white;
}

.bet-buttons {
    display: flex;
    gap: 5px;
    margin-bottom: 10px;
}

.btn-bet-option {
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 14px;
}

    .btn-bet-option:hover {
        background-color: #0056b3;
    }

.custom-bet {
    margin-top: 10px;
}

.custom-bet-input {
    width: 100%;
    padding: 8px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
}