body {
    background-color: transparent;
}

.jackpot-frame {
    width: 90%;
    margin: 0 auto 16px auto;
}

.gum-container {
    display: flex;
    justify-content: center;
}

.gachapon {
    display: flex;
    align-items: center;
    position: relative;
}

.switch {
    width: 60px;
    position: absolute;
    bottom: 60px;
    left: 94px;
    transition: transform 0.3s 0s linear;
    animation: glowPulse 1.5s infinite ease-in-out;
}
@keyframes glowPulse {
    0% {
        filter: drop-shadow(0 0 0 rgba(255, 216, 133, 0.2));
    }
    50% {
        filter: drop-shadow(0 0 10px rgba(255, 216, 133, 1));
    }
    100% {
        filter: drop-shadow(0 0 0 rgba(255, 216, 133, 0.2));
    }
}

.switch:hover {
    cursor: pointer;
}
.switch.active {
    transform: rotate(-90deg);
}
.machine {
    width: 240px;
}

.guide {
    position: absolute;
    bottom: 68px;
    right: 10px;
    align-items: center;
}
.guide img {
    width: 70px;
    animation: bounceLeft 1s infinite alternate ease-in-out;
}

@keyframes bounceLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-10px);
    }
}

.egg {
    display: none;
    opacity: 0;
    transform: translate(0, -25px);
    transition: transform 0.4s 1.5s linear, opacity 0.1s 1.5s linear;
    transition: transform 0s 0s linear, opacity 0s 0s linear;
}

.egg.active {
    display: block;
    opacity: 100;
    transform: translate(0, 35px);
    transition: transform 0.2s 1.5s linear, opacity 0.1s 1.5s linear;
}

.egg:hover {
    cursor: pointer;
}

.game-row-3 {
    width: 100%;
    font-size: 12px;
    font-weight: 600;
    float: left;
    text-align: center;
    margin-bottom: 15px;
    color: #194a37;
    background: rgb(0, 0, 0);
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(255, 255, 255, 1) 37%,
        rgba(255, 255, 255, 1) 63%,
        rgba(0, 0, 0, 0) 100%
    );
}
.game-row-3 span {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    color: #c8140f;
    padding: 5px 0px;
    margin-bottom: 30px;
}
