       .slot-machine-container {
            position: relative;
            width: 100%;
            max-width: 800px;
            height: auto;
        }
        .slot-machine-container svg {
            width: 100%;
            height: auto;
        }
        .roulette-container_rul {
            position: absolute;
            top: 55%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 60%;
            max-width: 600px;
            display: flex;
            justify-content: space-between;
        }
        .roulette_rul {
            width: 40%;
            height: 100px;
            overflow: hidden;
            border-radius: 10px;
            position: relative;
        }
        .roulette_rul ul {
            list-style: none;
            padding: 0;
            margin: 0;
            position: absolute;
            top: 0;
            left: 0;
        }
        .roulette_rul li {
            height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .roulette_rul img {
            width: 80px;
            height: 100px;
            object-fit: contain;
            margin: 0 10px;
        }
        #playButton_rul {
            padding: 10px 40px;
            background: linear-gradient(35deg, #CD3333, #FF7677);
            color: white;
            border: none;
            border-radius: 10px;
            cursor: pointer;
            font-size: 20px;
            position: absolute;
            bottom: 10%;
            left: 50%;
            transform: translateX(-50%);
            animation: glow 1.5s infinite;
            box-shadow: 0 0 10px #ffcc00, 0 0 20px #ff9900;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }
        @keyframes glow {
            0%, 100% {
                box-shadow: 0 0 5px #FFFFFF, 0 0 3px #CD3333;
            }
            50% {
                box-shadow: 0 0 5px #FFFFFF, 0 0 15px #FFFFFF;
            }
        }
        #playButton_rul:disabled {
            background-color: #d1d1d1;
            cursor: not-allowed;
        }
        .modal_rul {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            justify-content: center;
            align-items: center;
        }
        .modal-content_rul {
            background-color: #fff;
            padding: 20px;
            border-radius: 10px;
            width: 90%;
            max-width: 400px;
        }
        .modal-content_rul h2 {
            margin-bottom: 10px;
            color: #384b60;
            text-align: center;
            font-weight: 600;
            font-size: 24px;
        }
        .modal-content_rul p {
            margin-bottom: 20px;
            font-size: 18px;
            color: #5C5C5C;
        }
        .modal_rul input {
            padding: 10px;
            width: 80%;
            margin-bottom: 10px;
            border-radius: 5px;
            border: 1px solid #ccc;
        }
        .modal_rul button {
            padding: 10px 20px;
            background-color: #29ce90;
            color: white;
            border: none;
            border-radius: 10px;
            cursor: pointer;
            font-size: 16px;
            width: 100%;
            margin-top: 15px;
        }
        .modal_rul a {
            color: #3483ca;
            text-decoration: none;
            font-size: 14px;
        }
        .status-message_rul {
            margin-top: 20px;
            font-size: 18px;
            color: #384B60;
            padding: 10px;
            background-color: #fff;
            border-radius: 10px;
            animation: pulse 1s infinite;
        }
        .status-message_rul.error {
            color: red;
        }
     @media (max-width: 600px) {
.roulette_rul img {
    height: 60px;
}
        }