.progress-section {
    margin-bottom: 30px;
}

.progress-bar-container {
    position: relative;
    width: 100%;
    background-color: #555;
    height: 40px;
    border-radius: 15px;
    margin: 20px 0;
    overflow: hidden;
    border: 2px solid #000;
}

.progress-bar {
    height: 100%;
    width: 50%; 
    background: linear-gradient(to right, #ff0000, #ffa500, #ffff00, #00ff00);
    transition: width 0.5s ease-in-out;
}

.progress-labels {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    color: #fff;
    font-weight: bold;
    font-size: 1.1em;
    margin-bottom: 5px;
}


.modal {
    display: none; 
    position: fixed;
    z-index: 1; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    background-color: rgba(0, 0, 0, 0.7);
}

.modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    text-align: center;
}

.modal-content img {
    width: 50%;
    margin: 20px 0;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}


@media (max-width: 768px) {
    .progress-labels {
        font-size: 0.9em;
    }
}
/*********/

.slot-machine-section {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    height: 100%; 
}

.slot-machine {
    width: auto; 
    margin: auto; 
    background-color: #333;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.slot-row {
    display: flex;
    justify-content: space-between;
}

.slot-cell {
    width: 80px; 
    height: 100px; 
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff; 
    border-radius: 5px; 
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3); 
    background-color: #444; 
}

.slot-cell img {
    max-width: 100%;
    max-height: 100%;
}

.info-panel {
    background-color: #333;
    padding: 20px;
    border-radius: 15px; 
    color: white;
    width: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); 
}


@media (max-width: 768px) {
    .info label, .info input {
        font-size: 1.2em;
    }

    .slot-machine-section {
        flex-direction: column;
    }

    .info-panel {
        width: 100%;
    }
}
.info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px; 
}
.info-row label {
    font-size: 1.5em; 
    flex: 1;
    margin-right: 10px; 
}

.info-row input {
    width: 50%;
    padding: 10px;
    font-size: 1.2em;
    text-align: right;
    border-radius: 8px;
    border: 1px solid #ddd;
    background-color: #444; 
    color: white; 
}
.info label {
    font-size: 1.2em;
    color: #fff;
}

.info input {
    width: 50%;
    padding: 10px;
    font-size: 1.5em;
    text-align: center;
    margin-bottom: 20px;
    border-radius: 5px;
    border: 1px solid #ddd;
}

.bet-buttons {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.bet-buttons button {
    width: 50%; 
    background: none;
    border: none;
    cursor: pointer;
    padding: 1px;
    transition: transform 0.1s ease;
}

.bet-buttons button img {
    width: 100%;
    height: 100%;
}

.bet-buttons button:active {
    transform: scale(0.95);
}
.bet-btn {
    background: none;
    border: none;
    width: 50px; 
    height: 50px;
    cursor: pointer;
    border-radius: 8px; 
    transition: transform 0.2s ease;
}

.bet-btn:active {
    transform: scale(0.95);
}

.bet-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.action-buttons button {
    display: block;
    width: 100%;
    margin-top: 20px;
    background: none;
    border: none;
}

.action-buttons img {
    width: 100%;
}
.action-buttons {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px; 
}
.action-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%; 
    height: 50px; 
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease;
    border-radius: 15px; 
}

.action-btn:active {
    transform: scale(0.95); 
}

.action-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    border-radius: 15px; 
}


@media (max-width: 768px) {
    .info-row label, .info-row input {
        font-size: 1em;
    }

    .bet-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .info-panel, .action-buttons {
        width: 100%;
    }

    .bet-btn img {
        width: 40px;
        height: 40px;
    }
}
.bet-section-wrapper {
    border: 2px solid #fff; 
    border-radius: 15px; 
    padding: 15px; 
    background-color: #333; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); 
    width: fit-content; 
   
}