.ad-layer{
    display: none;
}
.ad-layer .layer-mask{
    position: fixed; left: 0; top: 0; z-index: 999998;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.3);
}
.ad-layer .layer-body{
    position: fixed; left: 50%; top: 50%; z-index: 999999;
    margin-left: -317px; margin-top: -326px;
    width: 525px;
    height: 498px;
    background-image: url("../images/ad-popup-250308.png");
}
.ad-layer .layer-body .layer-close{
    width: 28px;
    height: 28px;
    position: absolute;
    right: 68px;
    top: 75px;
    border-radius: 25px;
    cursor: pointer;
}
.ad-layer .layer-body .layer-button{
    width: 226px;
    height: 56px;
    position: absolute;
    right: 170px;
    top: 374px;
    border-radius: 25px;
    cursor: pointer;
}
.ad-layer .layer-body .layer-display{
    position: absolute;
    right: 251px;
    top: 452px;
    cursor: pointer;
    color: #ffffff;
    font-size: 12px;
    display: block;
    width: 60px;
    height: 20px;
    text-align: center;
}

.layer-quota {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    position: absolute;
    top: 283px;
    left: 304px;
    font-variant-numeric: tabular-nums;
    letter-spacing: 12px;
}

@keyframes jump {
    0% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
    20% {
        transform: translateY(-30px) scale(1.2);
        opacity: 0.8;
    }
    40% {
        transform: translateY(5px) scale(0.95);
    }
    60% {
        transform: translateY(-10px) scale(1.1);
    }
    80% {
        transform: translateY(2px) scale(0.98);
    }
    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

@keyframes fade-out {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(20px);
        opacity: 0;
    }
}