@import url('https://fonts.googleapis.com/css2?family=Special+Gothic:wght@400..700&family=Zen+Dots&display=swap');

/* 
    font-family: "Special Gothic", sans-serif;
    font-family: "Zen Dots", sans-serif;
*/

html {
    min-height: 100%;
    height: 100%;
}

body {
    background: radial-gradient(63.44% 74.68% at 50% 74.68%, #3F2728 0%, #1C1212 98%);
    color: #fff;
    font-family: "Special Gothic", sans-serif;
    font-size: 19px;
    line-height: normal;
    height: 100%;
}

body::after {
    background: url(../images/bg.svg) no-repeat left bottom;
    background-size: contain;
    display: block;
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 75%;
    width: 30%;
    pointer-events: none;
}

body::before {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
    z-index: -1;
    content: url(../images/button-hover.png) url(../images/ic-music-on.svg) url(../images/progress-item.png);
}

@media screen and (max-height: 820px) {
    body {
        font-size: 18px;
    }
}

@media screen and (max-width: 767px) {
    body {
        font-size: 16px;
    }

    body::after {
        display: none;
    }
}

/* main */

.layout {
    min-height: 100%;
    justify-content: center;
    flex-direction: column;
    position: relative;
    display: flex;
    width: 100%;
    overflow: hidden;
}

.note {
    position: absolute;
    left: 37px;
    top: 36px;
    z-index: 1;
}

.btn-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.btn {
    font-family: inherit;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 80px;
    width: 100%;
    padding: 15px 20px;
    color: #F07590;
    max-width: 378px;
    background: url(../images/button.png) no-repeat center;
    background-size: 100% 100%;
    border: none;
    font-size: 28px;
    line-height: normal;
    text-align: center;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.btn::after {
    background: url(../images/button-hover.png) no-repeat center;
    background-size: 100% 100%;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.2s ease-in;
}

.btn:focus::after,
.btn:active::after,
.btn:hover::after {
    opacity: 1;
}

.btn-text {
    color: #F07590;
    transition: color 0.2s ease-in;
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
    .btn-text {
        background: linear-gradient(90deg, #FF3B90, #FF9169 19%, #D741D7 50%, #1C1216 50%, #1C1216) no-repeat 0 50%;
        background-size: 200%;
        -webkit-text-fill-color: transparent;
        -webkit-background-clip: text;
        background-clip: text;
        transition: background-position 0.15s ease-in;
    }
}

.btn:focus .btn-text,
.btn:active .btn-text,
.btn:hover .btn-text {
    color: #1C1216;
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {

    .btn:focus .btn-text,
    .btn:active .btn-text,
    .btn:hover .btn-text {
        background-position: 100% 50%;
        -webkit-text-fill-color: transparent;
        -webkit-background-clip: text;
        background-clip: text;
    }
}

@media screen and (max-height: 820px) {
    .note {
        max-width: 65px;
        top: 20px;
        left: 20px;
    }

    .btn-wrap {
        gap: 5px;
    }

    .btn {
        min-height: 68px;
        max-width: 340px;
        font-size: 25px;
    }
}

@media screen and (max-width: 767px) {
    .note {
        max-width: 44px;
        top: 12px;
        left: 15px;
    }

    .btn {
        font-size: 20px;
        min-height: 62px;
    }
}

/* media */

.music {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 28px;
    right: 30px;
    height: 79px;
    width: 79px;
    z-index: 20;
}

.music__on {
    display: none;
}

.music.active .music__on {
    display: block;
}

.music.active .music__off {
    display: none;
}

.movie {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.2s ease-in;
    z-index: -1;
    pointer-events: none;
}

.movie.active {
    opacity: 1;
}

.movie:nth-child(6)::after,
.movie:nth-child(7)::after {
    background: radial-gradient(55vw 60vh at 50% 50%, rgba(63, 39, 40, 0), rgba(63, 39, 40, 0) 60%, rgba(63, 39, 40, 0.65) 85%, rgba(28, 18, 18, 0.95));
    display: block;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.movie__item {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    position: absolute;
    pointer-events: none;
    margin: 0 auto;
    max-width: 2048px;
}

@media (min-width: 3000px) and (min-height: 2000px) {
    .movie__item {
        max-width: none;
    }
}

@media screen and (max-height: 820px) {
    .music {
        top: 20px;
    }
}

@media screen and (max-width: 767px) {
    .music {
        top: 5px;
        right: 8px;
        height: 55px;
        width: 55px;
    }

    .movie:nth-child(6)::after,
    .movie:nth-child(7)::after {
        background: radial-gradient(80vw 60vh at 50% 50%, rgba(63, 39, 40, 0), rgba(63, 39, 40, 0) 60%, rgba(28, 18, 18, 0.95));
    }

    .movie__item {
        -o-object-position: center top;
        object-position: center top;
    }

    .movie__item.last {
        -o-object-position: right bottom;
        object-position: right bottom;
    }
}

/* step */

.step {
    text-align: center;
    position: absolute;
    top: 60%;
    left: 23%;
    transform: translate(-50%, -50%);
    transition: opacity 0.5s ease-in;
    opacity: 0;
    max-width: 534px;
    min-width: 300px;
    background-color: rgba(18, 11, 11, 0.37);
    border-radius: 25px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    pointer-events: none;
    width: 100%;
}

.step.show {
    opacity: 1;
    pointer-events: all;
    z-index: 3;
}

.step__content {
    padding: 0 55px 40px;
}

.step__logo {
    position: relative;
    margin: -190px auto 0;
    max-width: initial;
}

.step__title {
    font-family: "Zen Dots", sans-serif;
    font-size: 36px;
    text-align: center;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.35);
    padding-bottom: 15px;
    padding-top: 30px;
}

.step__title .accent {
    color: #F07590;
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
    .step__title .accent {
        background: linear-gradient(90deg, #FF3B90, #FF9169 38%, #D741D7);
        -webkit-text-fill-color: transparent;
        -webkit-background-clip: text;
        background-clip: text;
    }
}

.step__txt {
    text-align: center;
    text-transform: uppercase;
    padding-bottom: 15px;
}

.step__txt .bold {
    font-weight: 700;
    padding-top: 8px;
}

.step .block {
    display: block;
}

.step__title+.btn-wrap {
    padding-top: 5px;
}

@media screen and (max-height: 820px) {
    .step {
        max-width: 500px;
    }

    .step__logo {
        max-width: 280px;
        margin-top: -100px;
    }

    .step__title {
        font-size: 34px;
        padding-bottom: 10px;
        padding-top: 11px;
    }

    .step__content {
        padding: 0 40px 35px;
    }
}

@media screen and (min-width: 768px) {
    .step[data-video="7"] {
        background-color: rgba(18, 11, 11, 0.55);
    }
}

@media screen and (max-width: 1023px) {
    .step {
        width: 100%;
        max-width: 400px;
        left: 35%;
        transform: translate(-50%, -50%);
    }
}

@media screen and (max-width: 767px) {
    .step {
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        min-height: 390px;
        text-align: center;
        position: absolute;
        top: initial;
        bottom: 0;
        left: 0;
        right: 0;
        transform: none;
        width: 100%;
        max-width: 100%;
        border: none;
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
        border-radius: 0;
        background: none;
    }

    .step__logo {
        margin: 0 auto;
        max-width: 310px;
    }

    .step__content {
        background: linear-gradient(rgba(28, 18, 18, 0) 0%, rgba(28, 18, 18, 0.95) 44%);
        padding: 0 30px 45px;
    }

    .step__title {
        font-size: 26px;
        padding-bottom: 10px;
        padding-top: 10px;
    }

    .step__txt {
        padding-bottom: 12px;
    }

    .step__txt .bold {
        padding-top: 8px;
    }
}

/* progress */

.progress {
    max-width: 338px;
    margin: 0 auto;
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -5px;
}

.progress__line {
    position: relative;
    width: 100%;
    height: 10px;
    z-index: 0;
}

.progress__line::after {
    background-color: #1C1317;
    border-radius: 5px;
    display: block;
    content: "";
    position: absolute;
    top: 0;
    left: 4%;
    right: 4%;
    bottom: 0;
    z-index: -1;
    transition: opacity 0.2s ease-in;
}

.progress__status {
    background: url(../images/progress-status.png) no-repeat center;
    background-size: 100% 100%;
    position: absolute;
    top: -8px;
    left: 0;
    right: 0;
    bottom: -8px;
    width: 0%;
    opacity: 0;
    transition: opacity 0.2s 2s ease-in;
}

.step.show .progress__status {
    opacity: 1;
}

.progress__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    position: relative;
    height: 10px;
    width: 100%;
}

.progress__item {
    background-color: #1C1317;
    border-radius: 20px;
    height: 100%;
    width: 100%;
    position: relative;
    z-index: 0;
}

.progress__item.active {
    background-color: transparent;
}

.progress__item::after {
    background: url(../images/progress-item.png) no-repeat center;
    background-size: 100% 100%;
    display: block;
    opacity: 0;
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    z-index: 1;
    transition: opacity 0.2s ease-in;
}

.progress__item.active::after {
    opacity: 1;
}

.progress__count {
    font-size: 78px;
    font-weight: 500;
    line-height: 1;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
}

.progress__count span:first-child {
    min-width: 195px;
    text-align: right;
    color: #F07590;
}

.progress__count span::after {
    content: "%";
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
    .progress__count span:first-child {
        background: linear-gradient(90deg, #FF697B, #FF9169 38%, #EC6C9D);
        -webkit-text-fill-color: transparent;
        -webkit-background-clip: text;
        background-clip: text;
    }
}

@media screen and (max-height: 820px) {
    .progress {
        max-width: 330px;
    }

    .progress__count {
        font-size: 66px;
    }

    .progress__count span:first-child {
        min-width: 162px;
    }
}

@media screen and (max-width: 767px) {
    .progress {
        padding-top: 0;
        max-width: 278px;
        position: relative;
        left: auto;
        right: auto;
        bottom: -20px;
    }

    .progress__line {
        height: 6px;
    }

    .progress__count {
        font-size: 56px;
    }

    .progress__count span:first-child {
        min-width: 140px;
    }

    .progress__item {
        background-color: #35282E;
        border: 1px solid #1C1317;
    }
}

@media screen and (max-width: 767px) {
    .hidden-mob {
        display: none !important;
    }
}

/* form */

.reg-form {
    margin: 20px auto 0;
    width: 100%;
}

.reg-form-row {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
}

.reg-form-label {
    display: block;
    font-size: 17px;
    font-weight: 500;
    line-height: 1;
    text-align: right;
    margin-bottom: 10px;
    min-width: 35%;
}

.reg-field {
    flex: 1 0 auto;
}

.reg-form-control {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: rgba(255, 255, 255, 0.85);
    border: none;
    border-radius: 15px;
    color: #000;
    display: block;
    font-family: "Special Gothic", sans-serif;
    font-size: 16px;
    height: 42px;
    outline: 0;
    padding: 5px 20px;
    max-width: 365px;
    width: 100%;
    transition: background-color 0.4s ease;
    margin-bottom: 10px;
}

.reg-form-control.error {
    background-color: #ff8282;
    margin-bottom: 3px;
}

label.error {
    display: block;
    color: #f20000;
    font-size: 12px;
    line-height: 1;
    margin-bottom: 5px;
}

.last .btn {
    margin: 5px auto 0;
}

@media screen and (max-width: 767px) {
    .reg-form {
        max-width: 324px;
    }

    .reg-form-row {
        display: block;
    }

    .reg-form-label {
        font-size: 16px;
        margin-bottom: 5px;
        text-align: left;
    }

    .step.last {
        padding-top: 90px;
        padding-bottom: 0;
        min-height: 100vh;
    }

    .step.last .step__logo {
        max-width: 230px;
    }

    .step.last .step__content {
        padding-bottom: 20px;
    }

    .reg-form {
        margin: 10px auto;
    }
}