body {
    background-image: url('/images/background_lottery.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: scroll;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
}

canvas {
    border-radius: 8px;
    max-width: 100%;
}

.grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 5px auto;
    max-width: 600px;
}

.pick-btn {
    margin: 6px;
    border: none;
    border-radius: 50%;
    background-color: #aa1733;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    font-size: 18px;
    box-shadow: 0 4px 0 #6b0e21;
    transition: 0.2s ease;
    height: 42px;
    width: 42px;
}

.pick-btn:hover {
    background-color: #e91e63;
}

.pick-btn.selected {
    background-color: #ffc107;
    color: #000;
    box-shadow: 0 4px 0 #b8860b;
}

.section-label {
    margin-top: 5px;
    font-size: 16px;
    color: #fcf4cc;
}

.numbs {
    font-size: 22px;
    color: gold;
    font-style: italic;
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0d0426;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: white;
}


#preloader img {
    width: 200px;
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
}


#preloadText {
    font-size: 18px;
    margin-bottom: 10px;
    height: 100px;
    line-height: 100px;
}

.progress {
    width: 70%;
    height: 8px;
}

.topbar {
    display: grid;
    /* justify-content: space-between; */
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    padding: 3px 10px;
    background-color: #2e006f;
    margin-bottom: 10px;
    height: 45px;
    line-height: 10px;
    font-size: 14px;
    margin-top: 10px;
}

.topbar .audio-toggle {
    background: none;
    border: none;
    color: #ffc107;
    font-size: 20px;
    cursor: pointer;
}

.btn-row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 20px;
    padding: 0 10px;
}

.btn-action {
    flex: 1;
    background-color: #ffc107;
    border: none;
    border-radius: 6px;
    padding: 10px 0;
    font-weight: bold;
    color: #000;
    font-size: 16px;
    box-shadow: 0 4px 0 #b8860b;
    transition: 0.2s ease;
}

.btn-action:hover {
    background-color: #ffca2c;
}


@media only screen and (max-width: 375px) {
    h1 {
        font-size: 25px !important;
    }

    h2 {
        font-size: 14px !important;
    }

    .section-label {
        margin-top: 0px !important;
        font-size: 14px !important;
    }

    .pick-btn {
        margin: 4px;
        height: 38px !important;
        width: 38px !important;
    }

    #jackpotBanner {
        font-size: 14px !important;
        height: 25px !important;
    }

    .btn-action {
        font-size: 14px !important;
    }
}

h1 {
    font-size: 32px;
    color: gold;
    text-shadow: 2px 2px 4px rgb(119 119 119 / 70%);
}

h2 {
    font-size: 18px;
    color: #fdfbcd;
}

.continue-fixed {
    position: absolute !important;
    bottom: 50px !important;
    left: 50%;
    transform: translateX(-50%);
    font-size: 18px;
}

#jackpotBanner {
    color: #8fdaff;
    padding: 5px 10px;
    font-size: 15px;
    margin: 5px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    width: 95%;
    max-width: 450px;
    height: 28px;
    position: relative;
    text-align: center;
    border-bottom: 1px solid #260153;
    border-top: 1px solid #260153;
    background-color: #1e0044;
}

.jackpot-message {
    position: absolute;
    width: 100%;
    text-align: center;
    animation: scrollUp 5s ease-in-out;
}

@keyframes scrollUp {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }

    30% {
        opacity: 1;
    }

    50% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(-100%);
        opacity: 0;
    }
}

.creditamt,
.creditkes {
    height: 15px;
}

.creditkes {
    font-weight: 700;
}

.creditamt {
    color: gold;
}

.topd1 {
    display: grid;
    grid-template-rows: 2fr;
    gap: 2px;
}

#depomessage {
    background-color: black;
}

#notificationModal {
    background-color: #01080136 !important;
    border: none !important;
}

.headerx {
    display: flex;
    font-size: 20px;
    justify-content: space-between;
    height: 40px;
    line-height: 40px;
    background-color: #24014d;
    color: gold;
    border-bottom: 1px solid black;
}

.lefty {
    height: 38px;
    border: none;
    color: #fff;
    background-color: #21004c;
    padding-left: 15px;
}

.mcontainerx {
    max-width: 676px;
    padding: 0 !important;
}

.footer-tushinde-lottery {
    background-color: #21004c;
    color: #ccc;
    padding: 20px;
    font-size: 0.875rem;
    padding-bottom: 30px;
}