@import url('https://fonts.googleapis.com/css2?family=Shadows+Into+Light+Two&family=Sofia+Sans+Semi+Condensed:wght@300;400;500;600;700&display=swap');

*,
*:before,
*:after {
    box-sizing: border-box;
}

html,
body {
    padding: 0;
    margin: 0;
    background-color: #080005;
    color: white;
    font-family: 'Sofia Sans Semi Condensed', sans-serif;
    font-size: 20px;
    overflow-x: hidden;
    letter-spacing: 1.3px;
}

a {
    color: white;
    text-decoration: none;
    outline: none;
}

.container {
    max-width: 1240px;
    margin: auto;
}

::-webkit-scrollbar {
    width: 10px;
    cursor: pointer;
}

::-webkit-scrollbar-track {
    background: black;
}

::-webkit-scrollbar-thumb {
    background-color: #4924C2;
    border-radius: 20px;
    border: 2px solid black;
}

.circle-cursor {
    position: fixed;
    pointer-events: none;
    width: 0.8376rem;
    height: 0.8376rem;
    margin: -0.630rem 0 0 -0.630px;
    top: 0;
    left: 0;
    border-radius: 50%;
}

.circle-cursor-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: block;
}

.circle-cursor-top {
    background-color: #4924c284;
    transition: transform 0.06s cubic-bezier(.12, .12, .25, .92), opacity 1s ease;
    z-index: 9999;
}

.circle-cursor-bottom {
    background: #eb1a83a1;
    transition: transform 0.26s cubic-bezier(.12, .12, .25, .92), opacity 1s ease;
    z-index: 9998;
}

.btn {
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: solid 1px white;
    border-radius: 34px;
    padding: 18px 40px;
    font-weight: 600;
    font-size: 19px;
    transition-duration: 0.4s;
    cursor: pointer;
    width: fit-content;
    position: relative;
    z-index: 1;
}

.btn:before {
    top: 0;
    right: 0;
    z-index: -1;
    left: auto;
    width: 0%;
    height: 100%;
    content: "";
    position: absolute;
    border-radius: 34px;
    -webkit-transition: 500ms all ease;
    transition: 500ms all ease;
    background-size: 200%, 1px;
    background-image: linear-gradient(90deg, #EB1A82 0%, #4924C2 50%, #EB1A82);
}

.btn:hover:before {
    left: 0;
    right: auto;
    width: 100%;
}

.btn_dark {
    background: linear-gradient(90deg, #EB1A82 0%, #4924C2 50%, #EB1A82);
    border: none;
    transition-duration: 0.4s;
}

.btn_main {
    transition-duration: 0.4s;
    border: solid 2px #ffffff69;
    box-shadow: 1px 4px 10px #ffffff85;
   animation-name: jump;
  animation-duration: 0.5s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-duration: 0.5s;
  animation-timing-function: ease-in-out;
}

@keyframes jump {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); } /* Jumps up */
  100% { transform: translateY(0); }
}

.banner__button-bonus-text {
    margin: 20px 0px 40px 0;
    color: #e51a84;
}

.title {
    font-size: 60px;
    margin-bottom: 50px;
}

.title h1 {
    font-size: 60px;
    margin-bottom: 50px;
}

.title span {
    font-weight: 600;
    background: linear-gradient(269.18deg, #4924C2 -9.55%, #EB1A82 118.48%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.banner__outer {
    position: relative;
    padding: 180px 0 100px 0;
}

.banner__outer:before {
    position: absolute;
    content: url(../img/home-decor.png);
    left: 0;
    bottom: 0;
}

.banner__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
}

.banner__content {
    position: relative;
}

.banner__title {
    font-size: 130px;
    margin-bottom: 30px;
}

.banner__words {
    display: inline-block;
    position: relative;
    text-align: left;
}

.banner__words b {
    display: inline-block;
    position: absolute;
    white-space: nowrap;
    left: 0;
    top: 0;
}

.banner__words b.is-visible {
    position: relative;
}

.banner__words {
    -webkit-perspective: 300px;
    perspective: 300px;
}

b {
    opacity: 0;
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    -webkit-transform: rotateX(180deg);
    transform: rotateX(180deg);
    font-weight: 600;
    background: linear-gradient(269.18deg, #4924C2 -9.55%, #EB1A82 118.48%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Shadows Into Light Two', cursive;
}

b.is-visible {
    opacity: 1;
    -webkit-transform: rotateX(0deg);
    transform: rotateX(0deg);
    -webkit-animation: cd-rotate-1-in 1.2s;
    animation: cd-rotate-1-in 1.2s;
}

b.is-hidden {
    -webkit-transform: rotateX(180deg);
    transform: rotateX(180deg);
    -webkit-animation: cd-rotate-1-out 1.2s;
    animation: cd-rotate-1-out 1.2s;
}

@-webkit-keyframes cd-rotate-1-in {
    0% {
        -webkit-transform: rotateX(180deg);
        opacity: 0;
    }

    35% {
        -webkit-transform: rotateX(120deg);
        opacity: 0;
    }

    65% {
        opacity: 0;
    }

    100% {
        -webkit-transform: rotateX(360deg);
        opacity: 1;
    }
}

@keyframes cd-rotate-1-in {
    0% {
        -webkit-transform: rotateX(180deg);
        transform: rotateX(180deg);
        opacity: 0;
    }

    35% {
        -webkit-transform: rotateX(120deg);
        transform: rotateX(120deg);
        opacity: 0;
    }

    65% {
        opacity: 0;
    }

    100% {
        -webkit-transform: rotateX(360deg);
        transform: rotateX(360deg);
        opacity: 1;
    }
}

@-webkit-keyframes cd-rotate-1-out {
    0% {
        -webkit-transform: rotateX(0deg);
        opacity: 1;
    }

    35% {
        -webkit-transform: rotateX(-40deg);
        opacity: 1;
    }

    65% {
        opacity: 0;
    }

    100% {
        -webkit-transform: rotateX(180deg);
        opacity: 0;
    }
}

@keyframes cd-rotate-1-out {
    0% {
        -webkit-transform: rotateX(0deg);
        transform: rotateX(0deg);
        opacity: 1;
    }

    35% {
        -webkit-transform: rotateX(-40deg);
        transform: rotateX(-40deg);
        opacity: 1;
    }

    65% {
        opacity: 0;
    }

    100% {
        -webkit-transform: rotateX(180deg);
        transform: rotateX(180deg);
        opacity: 0;
    }
}

.banner__text {
    margin-bottom: 45px;
    font-size: 24px;
}

.banner__button-block {
    display: flex;
    align-items: center;
    gap: 30px;
}

.banner__image {
    position: relative;
}

.banner__image img {
    display: none;
}

.banner__image::before {
    position: absolute;
    content: url(../img/home.png);
    left: -120px;
    top: -190px;
    animation: infinite banner 8s;
}

@keyframes banner {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(30px);
    }

    100% {
        transform: translateY(0px);
    }
}

.about__outer {
    padding-bottom: 100px;
}

.about__inner {
    display: grid;
    grid-template-columns: 0.55fr;
}

.about__item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    font-size: 19px;
}

.about__icon {
    min-width: 52px;
    height: 52px;
    border-radius: 100%;
    background: linear-gradient(269.18deg, #4924C2 -9.55%, #EB1A82 118.48%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about__icon i {
    color: white;
}

.about__text {
    opacity: 0.6;
}

.live__outer {
    padding-bottom: 100px;
}

.live__block {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 50px;
}

.block {
    position: relative;
    padding: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.block:before {
    z-index: 0;
    content: "";
    width: 100%;
    opacity: 0.4;
    height: 100%;
    border-radius: 5px;
    position: absolute;
    background: linear-gradient(269.18deg, #4924C2 -9.55%, #EB1A82 118.48%);
}

.block-inner {
    background-color: #080005;
    position: relative;
    padding: 30px;
    width: 100%;
}

.live__outer {
    position: relative;
}

.live__outer:before {
    position: absolute;
    content: url(../img/live-decor.png);
    right: 0;
    top: 100px;
}

.live__inner {
    position: relative;
}

.live__win {
    height: 459px;
}

.live__win-image {
    position: relative;
}

.live__win-image img {
    zoom: 0.9;
}

.live__win-image:after {
    position: absolute;
    content: url(../img/arrow-icon.png);
    right: 3px;
    top: 6px;
    background: black;
    border-radius: 100%;
    height: 23px;
    width: 23px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.live__win-item {
    display: flex;
    gap: 30px;
    align-items: center;
    border-bottom: 1px solid #301928;
    padding-bottom: 15px;
    transition-duration: 0.4s;
    cursor: pointer;
    padding: 10px;
    border-radius: 20px;
}

.live__win-item:hover {
    background: linear-gradient(269.18deg, #4924c228 -9.55%, #eb1a8329 118.48%);
}

.live__win-item:last-child {
    border: none;
    padding-bottom: 0;
}

.live__win-name {
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 25px;
    font-family: 'Shadows Into Light Two', cursive;
}

.live__win-price {
    font-weight: 500;
    color: #FFB816;
}

.live__comments-inner {
    height: 100%;
    position: relative;
}

.live__comments-inner.block-inner {
    padding: 0;
}

.live__comments-form {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(269.18deg, #4924C2 -9.55%, #EB1A82 118.48%);
}

.live__comments-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.live__comment-image {
    zoom: 0.45;
    opacity: 0.4;
}

.live__comment-info {
    width: 100%;
}

.live__comment-controll {
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.live__comment-item {
    padding: 12px 30px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    gap: 30px;
    cursor: pointer;
}

.live__comment-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.3;
    font-size: 14px;
    width: 70px;
    justify-content: end;
}

.live__comments-list-inner {
    padding: 20px;
    gap: 10px;
    display: flex;
    flex-direction: column;
    max-height: 450px;
    overflow-y: scroll;
}

.live__comment-name {
    margin-bottom: 5px;
    font-weight: 700;
    font-size: 20px;
    font-family: 'Shadows Into Light Two', cursive;
    background: linear-gradient(269.18deg, #4924C2 -9.55%, #EB1A82 118.48%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 2px;
}

.live__comment-text {
    font-size: 16px;
    opacity: 0.8;
}

.live__comment-date {
    font-size: 14px;
    opacity: 0.15;
    text-align: right;
    letter-spacing: 2px;
}

.live__comments-form {
    padding: 20px;
    display: flex;
    gap: 30px;
}

textarea,
input {
    outline: none;
    border-radius: 12px;
    padding: 15px;
}

.live__comments-form textarea {
    width: 100%;
}

.author__inner {
    padding: 100px;
}

.author__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.author__item {
    padding: 20px 40px;
    border-radius: 20px;
    background: black;
    position: relative;
    background: rgba(0, 0, 0, 0.844);
    border: solid 2px #4924C2;
    display: flex;
    align-items: center;
    gap: 30px;
}

.author__text {
    font-size: 18px;
}

.author__info {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

.author__name {
    font-family: 'Shadows Into Light Two', cursive;
    background: linear-gradient(269.18deg, #4924C2 -9.55%, #EB1A82 118.48%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 2px;
    font-size: 25px;
    font-weight: 700;
}

.author__image {
    position: relative;
}

.author__image:before {
    position: absolute;
    content: '';
    top: 1px;
    right: 1px;
    width: 10px;
    height: 10px;
    background: rgb(0, 174, 0);
    border-radius: 100%;
}

.author__image img {
    zoom: 0.5;
}

#tsparticles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #000000;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
}

.steps__outer {
    padding: 100px 0;
    position: relative;
}

.steps__desc {
    margin-bottom: 40px;
}

.steps__list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
}

.steps__item {
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: black;
    display: flex;
    align-items: center;
    justify-content: center;
}

.steps__item::before {
    position: absolute;
    background: linear-gradient(269.18deg, #4924C2 -9.55%, #EB1A82 118.48%);
    content: '';
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    z-index: 0;
}

.steps__item-inner {
    background: #000000;
    padding: 30px;
    position: relative;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    border-radius: 20px;
}

.steps__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.steps__number {
    background: linear-gradient(269.18deg, #4924C2 -9.55%, #EB1A82 118.48%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 30px;
}

.steps__item-title {
    font-size: 26px;
    font-weight: 700px;
    margin-bottom: 14px;
}

.steps__text {
    margin-bottom: 25px;
    opacity: 0.6;
    font-size: 17px;
}

.steps__image {
    filter: drop-shadow(2px 0px 1px white);
}

.steps__image img {
    filter: drop-shadow(2px -5px 3px white);
    zoom: 0.9;
}

.subscribe__outer {
    padding: 100px;
    padding-top: 50px;
}

.subscribe__inner {
    padding: 75px 225px;
    border-radius: 13px;
    background: linear-gradient(269.18deg, #4924C2 -9.55%, #EB1A82 118.48%);
}

.subscribe__title {
    text-align: center;
    margin-bottom: 33px;
}

.subscribe__form {
    margin-bottom: 20px;
}

.subscribe__input {
    position: relative;
    display: flex;
    align-items: center;
}

.subscribe__input input {
    width: 100%;
    height: 75px;
    border: none;
    color: #3C3434;
    font-size: 18px;
    padding: 0px 30px;
    border-radius: 35px;
    background-color: #fff;
}

.subscribe__button {
    position: absolute;
    content: '';
    right: 9px;
    color: white;
}

.subscribe__desc {
    text-align: center;
}

.subscribe__desc span {
    text-decoration: underline;
    font-weight: 700;
}

.place__outer {
    padding-bottom: 100px;
    position: relative;
}

.place__outer:before {
    position: absolute;
    content: url(../img/place-decor.png);
    right: 0;
    bottom: 100px;
}

.place__inner {
    position: relative;
}

.place__desc {
    margin-bottom: 40px;
}

.place__list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
    row-gap: 50px;
}

.place__item {
    border-radius: 8px;
    padding: 30px 30px 40px;
    background-color: #131923;
}

.place__image {
    height: 200px;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
    background-position: center;
    background-size: cover;
    margin-bottom: 40px;
}

.place__item:nth-child(1) .place__image {
    background-image: url(../img/place-1.jpg?1);
}

.place__item:nth-child(2) .place__image {
    background-image: url(../img/place-2.jpg?1);
}

.place__item:nth-child(3) .place__image {
    background-image: url(../img/place-3.jpg?1);
}

.place__item:nth-child(4) .place__image {
    background-image: url(../img/place-4.jpg?1);
}

.place__item:nth-child(5) .place__image {
    background-image: url(../img/place-5.jpg?1);
}

.place__item:nth-child(6) .place__image {
    background-image: url(../img/place-6.jpg?1);
}

.place__button {
    margin-top: -80px;
    zoom: 0.8;
    margin-left: 20px;
    margin-bottom: 40px;
}

.place__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 17px;
    margin-bottom: 30px;
    opacity: 0.8;
}

.place__meta i {
    background: linear-gradient(269.18deg, #4924C2 -9.55%, #EB1A82 118.48%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-right: 4px;
}

.place__item-title {
    font-weight: 700px;
    font-size: 30px;
    margin-bottom: 10px;
}

.place__title span {
    background: linear-gradient(269.18deg, #4924C2 -9.55%, #EB1A82 118.48%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.place__text {
    opacity: 0.6;
    font-size: 18px;
}

.faq__outer {
    padding-bottom: 100px;
}

.faq__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.faq__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-left: 60px;
    position: relative;
}

.faq__list:before {
    position: absolute;
    content: '';
    height: 100%;
    width: 3px;
    background: linear-gradient(269.18deg, #4924C2 -9.55%, #EB1A82 118.48%);
    top: 0;
    left: 10px;
}

.faq__item {
    padding: 30px 24px 20px;
    border-radius: 8px;
    background-color: #131923;
    position: relative;
}

.faq__item:before {
    position: absolute;
    width: 40px;
    height: 40px;
    color: white;
    font-size: 20px;
    border-radius: 100%;
    background: linear-gradient(269.18deg, #4924C2 -9.55%, #EB1A82 118.48%);
    top: 30px;
    left: -70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq__item:nth-child(1)::before {
    content: '01';
}

.faq__item:nth-child(2)::before {
    content: '02';
}

.faq__item:nth-child(3)::before {
    content: '03';
}

.faq__item:nth-child(4)::before {
    content: '04';
}

.faq__a {
    font-size: 16px;
    opacity: 0.6;
}

.faq__q {
    font-size: 19px;
    margin-bottom: 20px;
    font-weight: 700;
}

.faq__image {
    filter: drop-shadow(2px -5px 5px white);
}

.faq__image img {
    filter: drop-shadow(2px -0px 6px white);
}

.info__text {
    margin-bottom: 40px;
}

.info__list {
    margin-bottom: 40px;
}

.info__list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.info__item {
    font-size: 18px;
    opacity: 0.6;
    padding-left: 30px;
}

.info__item i {
    background: linear-gradient(269.18deg, #4924C2 -9.55%, #EB1A82 118.48%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-right: 4px;
}

.info__button {
    margin-bottom: 40px;
}

.gallery__list {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.gallery__item img {
    width: 100%;
}

.point__outer {
    padding: 100px 0;
}

.point__text {
    margin-bottom: 30px;
}

.page__outer {
    padding: 200px 0;
}

@media(max-width: 800px) {

    html,
    body {
        font-size: 18px;
    }

    .container {
        padding: 0 20px;
    }

    .btn {
        width: 100%;
    }

    .title {
        font-size: 36px;
    }

    .banner__outer {
        padding-top: 50px;
    }

    .banner__inner {
        grid-template-columns: 1fr;
    }

    .banner__title {
        font-size: 60px;
    }

    .banner__words {
        width: 130px !important;
    }

    .banner__button-block {
        flex-direction: column;
    }

    .banner__image {
        display: flex;
        justify-content: center;
    }

    .banner__image::before {
        display: none;
    }

    .banner__image img {
        display: block;
        width: 100%;
    }

    .about__inner {
        grid-template-columns: 1fr;
    }

    .about__item {
        font-size: 17px;
        flex-direction: column;
    }

    .about__text {
        text-align: center;
    }

    .live__outer {
        padding-bottom: 30px;
    }

    .live__block {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .block-inner {
        padding: 10px;
    }

    .live__win-image {
        zoom: 0.5;
    }

    .live__win-name {
        font-size: 20px;
    }

    .block {
        height: unset;
    }

    .live__comments-form {
        flex-direction: column;
    }

    .live__comment-item {
        flex-direction: column;
    }

    .live__comment-item {
        padding: 12px;
    }

    .live__comments-form {
        gap: 20px;
    }

    .author__inner {
        padding: 50px 0;
    }

    .author__item {
        flex-direction: column;
    }

    .steps__outer {
        padding-top: 40px;
    }

    .steps__list {
        grid-template-columns: 1fr;
    }

    .subscribe__outer {
        padding: 0px 0 50px 0;
    }

    .subscribe__inner {
        padding: 30px;
    }

    .subscribe__button {
        position: unset;
        border: solid 2px black;
    }

    .subscribe__input {
        flex-direction: column;
        gap: 20px;
    }

    .place__list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .place__button {
        width: fit-content;
    }

    .faq__inner {
        grid-template-columns: 1fr;
    }

    .faq__image img {
        width: 100%;
    }

    .faq__outer {
        padding-bottom: 20px;
    }

    .point__outer {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .page__outer {
        padding: 50px 0;
    }

}