@import url(fonts.css);

body, html {
    margin: 0;
    font-family: 'Gilroy', 'sans-serif';
    background: url(../img/bg.jpg);
    background-repeat: no-repeat;
    height: 100%;
    color: #fff;
    scroll-behavior: smooth;
}

button {
    border: none;
}

:focus-visible {
    outline: none;
}

a {
    text-decoration: none;
    color: #fff;
}

i {
    font-style: normal;
}

p {
    margin: 0;
}

.burger-menu_btn {
    display: none;
    position: absolute;
    width: 40px;
    height: 40px;
    background-color: transparent;
}

.burger-menu_btn span {
    position: absolute;
    width: 30px;
    height: 3px;
    background-color: #fff;
    left: 5px;
    transition: transform .5s, opacity .5s;
}

.burger-menu_btn span:nth-child(1) {
    transform: translateY(-10px);
}

.burger-menu_btn span:nth-child(2) {
    transform: translateY(10px);
}

.nav-container.open .burger-menu_btn span:nth-child(1) {
    transform: translateY(0) rotate(45deg);
}

.nav-container.open .burger-menu_btn span:nth-child(2) {
    opacity: 0;
}

.nav-container.open .burger-menu_btn span:nth-child(3) {
    transform: translateY(0) rotate(-45deg);
}

.row-pages {
    display: flex;
    height: 100%;
    flex-direction: column;
}

.marking {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.nav {
    margin-top: 50px;
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-main {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-logo img {
    width: 100px;
    background-size: cover;
}

.nav-items {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: center;
    padding: 27.5px 30px;
    background: linear-gradient(45deg, rgba(255, 94, 0, 0.5), rgba(255, 106, 47, 0.5));
    border-radius: 12px;
}

.nav-item {
    position: relative;
    font-weight: 500;
    letter-spacing: 1px;
    opacity: 0.5;
    transition: all .3s ease;
}

.nav-item > span {
    position: absolute;
    font-size: 12px;
    top: -5px;
}

.nav-item.active {
    opacity: 1;
}

.nav-item:hover {
    opacity: 1;
}

.nav-profile {
    background: linear-gradient(45deg, rgba(255, 167, 0, 1), rgba(255, 98, 45, 1));
    border-radius: 12px;
    padding: 27.5px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    transition: all .3s ease;
}

.nav-profile.authorized:hover i {
    margin-left: 0px;
}

.nav-profile.authorized:hover {
    gap: 20px;
}

.nav-profile i {
    font-size: 21px;
    transition: all .3s ease;
}

.nav-profile:hover i {
    margin-left: 10px;
}

.new-present {
    position: fixed;
    right: 50px;
    bottom: 50px;
    cursor: pointer;
    animation: present 2s ease, present-anim 2s ease 2s infinite;
    transition: all 0.5s ease;
    overflow: hidden;
    z-index: 100;
}

.new-present.active .present-container {
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    width: auto;
    height: auto;
    cursor: default;
}

.new-present.active .present-title {
    font-size: 16px;
    font-weight: 400;
}

.new-present.active .present-promo {
    padding: 10px 20px;
    background: rgba(19, 19, 19, 0.5);
    border-radius: 12px;
    border: dashed 2px orange;
}

.present-container .close-icon {
    position: absolute;
    color: #FF4747;
    font-size: 18px;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

.present-container {
    width: 250px;
    height: 70px;
    background: rgba(19, 19, 19, 0.5);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    transition: all 0.5s ease;
}

.present-icon svg {
    width: 30px;
}

.present-title {
    font-size: 18px;
    letter-spacing: 1px;
    font-weight: 500;
}

.new-present.active {
    animation: none;
}

@keyframes present {
	0% {
		right: -400px;
	}
	100% {
		right: 50px;
	}
}

@keyframes present-anim {
	0% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.05);
	}

	100% {
		transform: scale(1);
	}
}

.index {
    margin-top: 150px;
    text-align: center;
}

.index-title {
    font-size: 80px;
    font-weight: 900;
}

.index-subtitle {
    font-size: 18px;
    line-height: 34px;
    max-width: 645px;
    margin-top: 30px;
}

.index-button {
    border-radius: 12px;
    background: linear-gradient(45deg, rgba(255, 167, 0, 1), rgba(254, 103, 41, 1));
    backdrop-filter: blur(1px);
    padding: 25px 94px;
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
    margin-top: 60px;
    transition: all .3s ease;
}

.index-button:hover {
    opacity: 0.9;
}

.gift {
    margin-top: 150px;
}

.gift-container {
    background: rgba(255, 255, 255, 0.05);
    width: 1000px;
    height: 166px;
    border-radius: 12px;
    backdrop-filter: blur(75px);
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    overflow: hidden;
}

.gift-container::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(360deg, rgba(255, 167, 0, 0.2), transparent);
    filter: blur(75px);
}
.gift-left {
    margin-left: 50px;
    width: 360px;
    z-index: 2;
}

.gift-left::after {
    content: "";
    position: absolute;
    background: url(../img/index/gift.png);
    width: 180px;
    height: 160px;
    left: 0px;
    top: 10px;
    background-size: cover;
}

.gift-left.event::after {
    background: url(../img/index/event.png);
    left: 0px;
    top: 10px;
}

.gift-left.update::after {
    background: url(../img/index/update.png);
    left: 0px;
    top: 10px;
}

.gift-left::before {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(245, 158, 79, 0.4);
    filter: blur(75px);
    left: 0px;
    top: 0px;
}

.gift-title {
    font-size: 28px;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.gift-subtitle {
    max-width: 360px;
    font-weight: 300;
    position: relative;
    z-index: 2;
}

.gift-right {
    z-index: 2;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gift-right::before {
    content: "";
    position: absolute;
    background: url(../img/index/timer-gift.png);
    width: 100px;
    height: 80px;
    top: 50px;
    left: -120px;
    background-size: cover;
    filter: drop-shadow(0px 0px 20px rgba(245, 158, 79, 0.4));
}

.gift-button {
    background: linear-gradient(45deg, rgba(255, 167, 0, 1), rgba(254, 103, 41, 1));
    border-radius: 12px;
    padding: 25px 75px;
    text-transform: uppercase;
    font-weight: 600;
    transition: all .3s ease;
}

.gift-button:hover {
    opacity: 0.9;
}

.gift-time {
    font-size: 14px;
    margin-top: 5px;
}

.gift-time span {
    color: #FFA202;
}

.online-container {
    display: flex;
    align-items: center;
    width: 1000px;
    gap: 10px;
}

.online-servers {
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(75px);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.online-servers div {
    font-size: 22px;
    text-transform: uppercase;
    font-weight: 700;
    max-width: 115px;
    text-align: center;
}

.online-servers div::after {
    content: "ОНЛАЙН СЕРВЕРА";
    position: absolute;
    font-size: 28px;
    opacity: 0.08;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.online-servers div span {
    color: #FF9C38;
}

.online {
    margin-top: 30px;
}

.online-items {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

.online-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(75px);
    padding: 21px 23px;
    width: 227px;
    border-radius: 12px;
    transition: all .3s ease;
}

.online-item:hover {
    scale: 1.025;
}

.online-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.online-icon i {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 34px;
}

.online-title {
    font-weight: 500;
    text-transform: uppercase;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 5px;
    letter-spacing: 1px;
}

.online-title span {
    width: 5px;
    height: 5px;
    background: #FF9C38;
    border-radius: 50%;
    box-shadow: 0px 0px 8px 1px #FE8913;
}

.online-subtitle {
    text-wrap: nowrap;
}

.progress {
    background: #00000040;
    border-radius: 12px;
    margin-top: 10px;
    overflow: hidden;
}

.progress-bar .progress__value {
    background: linear-gradient(90deg, #FFA700, #FE6729);
    border-radius: 12px;
}

.start {
    margin-top: 235px;
}

.start-container {
    max-width: 1000px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.start-image img {
    max-width: 489px;
    background-size: cover;
}

.start-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.start-title {
    font-size: 34px;
    font-weight: 600;
    letter-spacing: 1px;
    text-align: -webkit-right;
    text-transform: uppercase;
}
.start-subtitle {
    max-width: 450px;
    text-align: right;
}

.start-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.start-video {
    display: flex;
    align-items: center;
    gap: 10px;
}

.start-video_img i {
    font-size: 36px;
    transition: all .3s ease;
}

.start-video_img:hover i {
    opacity: 0.5;
}

.start-video_title {
    text-transform: uppercase;
    font-weight: 600;
    max-width: 160px;
    font-size: 14px;
}

.start-download {
    background: rgba(255, 255, 255, 0.15);
    border: solid 1px rgba(255, 255, 255, 0.15);
    padding: 13px 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-wrap: nowrap;
    border-radius: 12px;
    text-transform: uppercase;
    font-weight: 500;
    transition: all .3s ease;
}

.start-download:hover {
    background: #fff;
    color: #000;
}

.social {
    margin-top: 150px;
}

.social-container {
    width: 1000px;
}

.social-title {
    font-size: 38px;
    letter-spacing: 1px;
    font-weight: 700;
}

.social-subtitle {
    font-size: 18px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.social-subtitle svg {
    width: 20px;
}

.social-items {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 25px;
}

.social-item {
    width: 300px;
    height: 150px;
    background: #2BA4DF;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    box-shadow: inset 0px 0px 50px 15px rgba(0, 0, 0, 0.5);
    transition: all .3s ease;
}

.social-item:hover {
    box-shadow: inset 0px 0px 50px 5px rgba(0, 0, 0, 0.5);
}

.social-logo {
    font-size: 36px;
}

.social-name {
    font-size: 26px;
    font-weight: 500;
}

.social-item.discord {
    background: #5D6AF2;
    width: 350px;
}

.social-item.youtube {
    background: #FF0808;
}

.social-item.vkontakte {
    background: #087BFF;
}

.social-media {
    width: 675px;
    height: 150px;
    background: rgba(19, 19, 19, 0.5);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    backdrop-filter: blur(20px);
}

.social-text .social-title {
    font-size: 24px;
    letter-spacing: 1px;
    max-width: 265px;
    font-weight: 600;
}

.social-text .social-subtitle {
    font-size: 16px;
    max-width: 385px;
    margin-top: 10px;
    font-weight: 300;
}

.social-button {
    border-radius: 12px;
    padding: 22px 40px;
    background: linear-gradient(45deg, #FFA700, #FE6729);
    font-weight: 600;
    transition: all .3s ease;
}

.social-button:hover {
    opacity: 0.9;
}

.footer {
    width: 100%;
    margin-top: 200px;
}

.footer-container {
    width: 100%;
    height: 200px;
    background: #0E0E0E;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.footer-project {
    display: flex;
    align-items: center;
}

.footer-logo img {
    width: 150px;
    background-size: cover;
}

.footer-name {
    font-size: 26px;
    letter-spacing: 1px;
    font-weight: 600;
}

.footer-cards {
    margin-top: 10px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.footer-card img {
    width: 50px;
    background-size: cover;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-link,
.footer-mail {
    opacity: 0.5;
    transition: all .3s ease;
}

.footer-link:hover {
    opacity: 1;
}


/* Large Devices, Wide Screens */
@media only screen and (max-width: 1200px) {
    .nav.open .nav-list {
        transform: translateX(1000px);
    }

    .burger-menu_btn {
        display: block;
        z-index: 102;
        position: relative;
    }

    .nav {
        width: 100%;
    }

    .nav-container.open .nav-main {
        transform: translateX(1500px);
    }

    .nav-main {
        position: fixed;
        display: flex;
        left: -1500px;
        top: 0;
        width: 100%;
        height: 100%;
        margin-left: 0px;
        background-color: #000;
        padding: 100px 20px 0px 0px;
        transition: transform .5s;
        z-index: 101;
        flex-direction: column;
    }

    .nav-container.open .burger-menu_btn {
        position: fixed;
        left: 65px;
    }

    .nav-items {
        font-size: 24px;
        gap: 100px;
        background: transparent;
        flex-direction: column;
    }

    body {
        background-attachment: fixed;
    }

    .nav-container {
        justify-content: space-around;
    }

    .footer-container {
        flex-direction: column;
        gap: 10px;
        height: 100%;
        padding: 20px 0px;
    }

    .footer-logo img {
        width: 130px;
    }
}

/* Medium Devices, Desktops */
@media only screen and (max-width: 992px) {
    .gift-container {
        width: auto;
        height: auto;
        padding: 70px;
        gap: 50px;
        flex-direction: column;
    }
    .gift-left {
        margin-left: 0px;
    }
    .gift-left::after {
        top: 215px;
    }
    .gift-right::before {
        top: -80px;
        left: 160px;
    }
    .online-items {
        flex-direction: column;
        gap: 20px;
    }
    .online-container {
        flex-direction: column;
    }
    .start-image {
        display: none;
    }
    .start-title {
        max-width: 500px;
        text-align: center;
    }
    .start-subtitle {
        text-align: center;
    }
    .social-items {
        max-width: 900px;
        justify-content: center;
    }
    .social-item.discord {
        max-width: 320px;
    }
    .social-item {
        width: 320px;
    }
    .social-container {
        text-align: center;
    }
    .social-subtitle {
        justify-content: center;
    }
    .online-container,
    .social-container {
        width: 100%;
    }

}

/* Small Devices, Tablets */
@media only screen and (max-width: 768px) {
    .social-items {
        flex-direction: column;
        align-items: center;
    }
    .social-media {
        gap: 20px;
        flex-direction: column;
        justify-content: space-around;
        width: auto;
        height: auto;
        padding: 50px;
    }
    .social-text {
        text-align: -webkit-center;
    }
}

/* Extra Small Devices, Phones */
@media only screen and (max-width: 480px) {
    .gift-container {
        padding: 50px 10px;
    }
    .start-info {
        align-items: center;
    }
    .gift-left {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .gift-right::before {
        top: 60px;
        left: 230px;
    }
    .social-media {
        padding: 30px;
        margin: 30px;
    }
    .index-subtitle {
        max-width: 410px;
        justify-self: center;
    }
    .start-buttons {
        gap: 50px;
        flex-direction: column;
    }
    .gift-left.event::after {
        left: -50px;
        top: -35px;
    }
    .footer-project {
        flex-direction: column;
    }
}

@media only screen and (max-width: 1000px) {
    body, html {
        background: rgb(33, 37, 41);
    }
}