#jackpot-bg {
    display: none;
    position: fixed;
    z-index: 1;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background-size: cover;
    background-position: center;
    pointer-events: none;
}

.gamble-box {
    background-color: rgb(255, 230, 0);
    padding: 30px 50px;
    font-family: 'Comic Relief', cursive, sans-serif;
    font-size: 100px;
    font-weight: bold;
    color: black;
    text-align: center;
    width: 100%;
    position: fixed;
    left: 0;
    right: 0;
    z-index: 100;
    box-sizing: border-box;
}

.gamble-box.top {
    top: 0;
}

.gamble-box.bottom {
    bottom: 0;
}

body {
    margin: 0;
    padding-top: 160px;
    padding-bottom: 160px;
    background-color: rgb(193, 243, 226);
    background-image: url('assets/me treasure.gif');
    background-size: cover;
    background-repeat: no-repeat;
}

/* center image */
.center-img {
    display: block;
    margin: auto;
    width: 650px;
    margin-top: 80px;
    margin-bottom: 20px;
    cursor: pointer;
}

img {
    filter: none;
}

/* money text */
#moneyText {
    color: rgba(64, 90, 79, 0.9);
    text-align: center;
    font-size: 60px;
    margin-top: 20px;
    margin-bottom: 270px;
}

/* overlays */
#jackpot-text-overlay {
    display: none;
    position: fixed;
    z-index: 200;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 160px;
    font-family: 'Comic Relief', sans-serif;
    color: rgb(255, 230, 0);
    text-shadow: 6px 6px 30px #000;
    font-weight: bold;
    pointer-events: none;
    text-align: center;
}

#jackpot-money-overlay {
    display: none;
    position: fixed;
    z-index: 200;

    top: 70%; /* 👈 moved down from 65% */

    left: 50%;
    transform: translate(-50%, -50%);

    font-size: 100px;
    font-family: 'Comic Relief', sans-serif;
    color: rgb(255, 230, 0);
    text-shadow: 4px 4px 20px #000;
    font-weight: bold;
    pointer-events: none;
    text-align: center;
}

.jackpot-highlight {
    color: rgb(255, 230, 0);
    text-shadow: 6px 6px 30px #000;
}

/* 💀 INVISIBLE SOUL CLICK ZONE */
#soulClickZone {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 99999;
    cursor: pointer;
    background: transparent;
}