#timer {
    padding: 200px 0 230px;
    overflow: hidden;
}

#timer_bg {
    border-top: 2px solid #8300A1;
    border-bottom: 2px solid #8300A1;
    background: #130024;
    position: relative;
    width: 100%;
}

#timer_bg2 {
    background: url(../assets/timer_bg2.png) repeat left top;
    padding: 100px 32px;
    width: 100%;
    max-width: 1490px;
    margin: 0 auto;
    position: relative;
}

#timer_bg2.divider::after {
    top: -50%;
    left: -90%;
    width: 2352px;
    height: 751px;
    background-position: left center;
}

.timer_content {
    display: flex;
    flex-direction: row;
    gap: 32px;
    position: relative;
    z-index: 3;
}

.timer_title {
    color: #FFF;
    text-shadow: 0 4px 14px #210029;
    font-family: Colus;
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 52px;
    letter-spacing: -0.48px;
    max-width: 658px;
}

.timer_title span {
    color: #D900FF;
}

.timer_ball {
    position: absolute;
    top: -185px;
    right: 0;
    background: url(../assets/ball.png) no-repeat center;
    width: 529px;
    height: 529px;
    box-shadow: 0 0 32px 0 rgba(217, 0, 255, 0.65), 0 0 74px 0 #D900FF inset;
    border-radius: 529px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timer_ball::before {
    display: block;
    content: "";
    position: absolute;
    bottom: -70px;
    width: 577px;
    height: 112px;
    background-image: url(../assets/ball_under.png);
}

.timer_ball::after {
    display: block;
    content: "";
    position: absolute;
    bottom: 45px;
    width: 412px;
    height: 95px;
    border-radius: 412px;
    background: radial-gradient(50% 50% at 50% 50%, rgba(217, 0, 255, 0.24) 0%, rgba(217, 0, 255, 0.00) 100%);
}

.timer_block_title {
    color: #FFF;
    text-align: center;
    font-family: Evolventa bold;
    font-size: 32px;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 48px;
}

.timer_timer {
    position: relative;
    color: #FFF;
    text-align: center;
    font-family: Evolventa bold;
    font-size: 42px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    display: flex;
    gap: 48px;
}

.timer_timer span span:nth-child(1) {
    background: linear-gradient(180deg, #F5BCFF 0%, #D900FF 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    font-family: Evolventa bold;
    font-size: 52px;
    font-weight: 700;
    line-height: 100%;
    display: block;
}

.timer-title {
    color: rgba(255, 255, 255, 0.80);
    text-align: center;
    font-family: Evolventa bold;
    font-size: 20px;
    font-weight: 400;
    display: block;
}

@media (max-width: 1280px) {
    #timer {
        padding: 0 0 112px;
    }

    #timer_bg2 {
        padding: 64px 8px 0;
    }

    .timer_content {
        flex-direction: column;
        align-items: center;
        gap: 64px;
        overflow: hidden;
    }

    .timer_title {
        text-align: center;
        font-size: 25px;
        line-height: 30px;
    }

    .timer_ball {
        position: static;
        width: 343px;
        height: 343px;
    }

    .timer_ball::after {
        width: 343px;
    }

    .timer_ball::before {
        width: 100%;
        height: 65px;
        bottom: -30px;
        background-position: top center;
        background-size: 415px auto;
        background-repeat: no-repeat;
    }

    .timer_block_title {
        font-size: 20px;
    }

    .timer_timer {
        gap: 31px;
    }

    .timer_timer span span:nth-child(1) {
        font-size: 32px;
    }

    .timer-title {
        font-size: 12px;
    }
}
