/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

@font-face {
    font-family: 'BPG Boxo Boxo';
    src: url('../fonts/bpg_boxo-boxo.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

* {
    scroll-behavior: smooth;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}

body {
    overflow-x: hidden;
    position: relative;
    --sb-track-color: #232E33;
    --sb-thumb-color: #B21A87;
    --sb-size: 10px;
}

body::-webkit-scrollbar {
    width: var(--sb-size)
}

body::-webkit-scrollbar-track {
    background: var(--sb-track-color);
    border-radius: 12px;
}

body::-webkit-scrollbar-thumb {
    background: var(--sb-thumb-color);
    border-radius: 12px;

}

@supports not selector(::-webkit-scrollbar) {
    body {
        scrollbar-color: var(--sb-thumb-color) var(--sb-track-color);
    }
}

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

.preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background: -o-radial-gradient(center, circle, #140b12, #070509);
    background: radial-gradient(circle at center, #140b12, #070509);
    -webkit-transition: opacity .6s ease, visibility .6s ease;
    -o-transition: opacity .6s ease, visibility .6s ease;
    transition: opacity .6s ease, visibility .6s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader__scene {
    position: relative;
    width: 180px;
    height: 180px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.preloader__logo {
    width: 120px;
    z-index: 2;
    -webkit-animation: logoPulse 1.6s ease-in-out infinite;
            animation: logoPulse 1.6s ease-in-out infinite;
    -webkit-filter: drop-shadow(0 0 24px #ff08a5);
            filter: drop-shadow(0 0 24px #ff08a5);
}

.preloader__orbit {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid #ff08a5;
    -webkit-animation: orbitSpin 2.2s linear infinite;
            animation: orbitSpin 2.2s linear infinite;
}

.preloader__orbit::before {
    content: "";
    position: absolute;
    top: -6px;
    left: 50%;
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    -webkit-box-shadow: 0 0 18px rgba(235, 46, 74, .9);
            box-shadow: 0 0 18px rgba(235, 46, 74, .9);
}

@-webkit-keyframes orbitSpin {
    to {
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
    }
}

@keyframes orbitSpin {
    to {
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
    }
}

@-webkit-keyframes logoPulse {

    0%,
    100% {
        -webkit-transform: scale(1);
                transform: scale(1);
        opacity: .9;
    }

    50% {
        -webkit-transform: scale(1.06);
                transform: scale(1.06);
        opacity: 1;
    }
}

@keyframes logoPulse {

    0%,
    100% {
        -webkit-transform: scale(1);
                transform: scale(1);
        opacity: .9;
    }

    50% {
        -webkit-transform: scale(1.06);
                transform: scale(1.06);
        opacity: 1;
    }
}

.color-bg {
    width: 1000px;
    height: 1000px;
    border-radius: 50%;
    background: -o-radial-gradient(center, circle, #332841 10%, rgba(51, 40, 65, 0) 100%);
    background: radial-gradient(circle at center, #332841 10%, rgba(51, 40, 65, 0) 100%);
    position: absolute;
    bottom: 0;
    right: -50%;
    opacity: 0.3;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
}

section {
    padding: 48px 0;
}

.title {
    font-family: 'BPG Boxo Boxo', sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-size: 31px;
    color: #ffffff;
    max-width: 911px;
}

body {
    font-family: 'BPG Boxo Boxo', sans-serif;
    background: #1D1824;
    color: #fff;
}

.hero {
    position: relative;
    min-height: 100vh;
    /* background: url('../images/bg.png') center/cover no-repeat; */
    overflow: hidden;
    padding: 0;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;

    z-index: 0;
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: -webkit-gradient(linear,
            left top, left bottom,
            from(rgba(0, 0, 0, 0.55)),
            to(rgba(0, 0, 0, 0.65)));
    background: -o-linear-gradient(top,
            rgba(0, 0, 0, 0.55),
            rgba(0, 0, 0, 0.65));
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.55),
            rgba(0, 0, 0, 0.65));
    z-index: 0;
}


.content {
    max-width: 1320px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}


.hero .content {
    min-height: 100vh;
    max-width: 1157px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 196px;
}


.hero-desc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
}

/* .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(0, 0, 0, 0.75) 0%,
            rgba(0, 0, 0, 0.45) 35%,
            rgba(0, 0, 0, 0.15) 60%,
            rgba(0, 0, 0, 0.0) 100%);
    z-index: 1;
} */

.header {
    position: relative;
    z-index: 3;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 24px 0;
}

.logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 20px;
}

.nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 28px;
}

.nav a {
    color: #E7E7E7;
    font-family: 'BPG Boxo Boxo', sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    text-decoration: none;
    font-size: 20px;
}

.nav a:hover {
    opacity: 1;
}

.header-btn {
    background: -o-radial-gradient(center, circle, #B21A87 10%, #6D0850 100%);
    background: radial-gradient(circle at center, #B21A87 10%, #6D0850 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 8px 32px;
    border-radius: 12px;
    font-family: 'BPG Boxo Boxo', sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-size: 10px;
    line-height: 24px;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px;
}

.header-btn img {
    width: 17px;
    height: 15px;
}

.burger {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    cursor: pointer;
    padding: 0;
    z-index: 20;
}

.burger img {
    width: 28px;
    height: 28px;
    display: block;
}

.mobile-menu {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
    z-index: 50;
}

.mobile-menu__panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: #0b0b0b;
    padding: 18px 16px 22px;
    -webkit-transform: translateY(-12px);
        -ms-transform: translateY(-12px);
            transform: translateY(-12px);
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
}

.mobile-menu__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 12px;
}

.mobile-close {
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    cursor: pointer;
    padding: 0;
}

.mobile-close img {
    width: 22px;
    height: 22px;
    display: block;
}

.mobile-nav {
    margin-top: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 18px;
}

.mobile-nav a {
    color: #E7E7E7;
    text-decoration: none;
    font-family: 'BPG Boxo Boxo', sans-serif;
    font-weight: 500;
    font-size: 14px;
}

.mobile-socials {
    margin-top: 18px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 12px;
}

.mobile-socials .soc {
    width: 44px;
    height: 44px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
}

.mobile-socials img {
    width: 20px;
    height: 20px;
    display: block;
}

.mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu.is-open .mobile-menu__panel {
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
}

@media (max-width:650px) {

    .footer-socials {
        display: none;
    }

    .nav,
    .header-btn {
        display: none;
    }

    .burger {
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
    }
}

/* HERO CONTENT */
.hero-content {
    position: relative;
    z-index: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 72px;
}

.hero h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.25;
}

.hero h1 span {
    display: block;
}

.hero p {
    font-size: 15px;
    color: #cfcfd6;
    max-width: 520px;
}

.cta-btn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    background: -o-radial-gradient(center, circle, #B21A87 10%, #6D0850 100%);
    background: radial-gradient(circle at center, #B21A87 10%, #6D0850 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 14px 32px;
    height: auto;
    border-radius: 12px;
    color: #fff;
    font-family: 'BPG Boxo Boxo', sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-size: 19px;
    line-height: 24px;
    text-decoration: none;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.cta-btn {
    -webkit-transition: background .2s ease, -webkit-box-shadow .2s ease;
    transition: background .2s ease, -webkit-box-shadow .2s ease;
    -o-transition: background .2s ease, box-shadow .2s ease;
    transition: background .2s ease, box-shadow .2s ease;
    transition: background .2s ease, box-shadow .2s ease, -webkit-box-shadow .2s ease;
}

.cta-btn:hover {
    background: -o-radial-gradient(center, circle, #c92c9b 12%, #7a0a5b 100%);
    background: radial-gradient(circle at center, #c92c9b 12%, #7a0a5b 100%);
    -webkit-box-shadow: 0 10px 24px rgba(178, 26, 135, 0.45);
            box-shadow: 0 10px 24px rgba(178, 26, 135, 0.45);
}

.hero-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    z-index: 3;
}

.server-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 16px;
}

.badge {
    border: 1px solid #524D4D;
    padding: 10px;
    border-radius: 8px;
    font-family: 'BPG Boxo Boxo', sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    line-height: 20px;
    font-size: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px;
}

.controls {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 12px;
}

.control-btn {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.55);
    -webkit-backdrop-filter: blur(8px);
            backdrop-filter: blur(8px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    cursor: pointer;
}

a.soc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 84px;
    height: 56px;
    border-radius: 12px;
    background: #1e1e1e;
    -webkit-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
}

a.soc:hover {
    border: 1px solid #880f65;
    background: -o-radial-gradient(50% 50%, 50% 50%, #1e1e1e 0, #292a34 100%);
    background: radial-gradient(50% 50% at 50% 50%, #1e1e1e 0, #292a34 100%);
}

a.soc img {
    width: 24px;
}


.hero-soc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 32px;
}

.hero-soc .others {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 24px;
}

.socials {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 8px;
}

.socials a img {
    width: 86px;
}

/* SAMP SECTION */

.samp-section .content {
    gap: 36px;
}

.samp-left {
    max-width: 670px;
}

.samp-right {
    max-width: 623px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px;
    height: -webkit-fill-available;
}

.samp-right .samp-features {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

.samp-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 28px 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
}

.samp-intro,
.samp-features {
    background: #231E29;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 16px;
    min-height: 177px;
}

.samp-intro__lead {
    margin: 0 0 32px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 24px;
    font-size: 18px;
    font-family: 'BPG Boxo Boxo', sans-serif;
    font-weight: 500;
}

.samp-intro__muted {
    margin: 0;
    font-size: 12px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
    line-height: 19px;
    font-size: 12px;
    font-family: 'BPG Boxo Boxo', sans-serif;
    font-weight: 600;
}

.samp-features__title {
    margin: 0 0 10px;
    font-size: 18px;
    font-family: 'BPG Boxo Boxo', sans-serif;
    font-weight: 500;
}

.samp-features__text {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    line-height: 18px;
    font-size: 12px;
    font-family: 'BPG Boxo Boxo', sans-serif;
    font-weight: 500;
}

.samp-roles {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}



/* note */
.samp-note {
    margin-top: 14px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 32px;
    background: rgba(255, 255, 255, .02);
    border: 1px solid white;
    border-radius: 16px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 22px 16px;
}

.samp-note__icon {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    display: -ms-grid;
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 13px;
    color: #ff3b5f;
    border: 1px solid rgba(255, 59, 95, .5);
    background: rgba(255, 45, 85, .08);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
}

.samp-note__text {
    margin: 0;
    color: var(--muted);
    line-height: 17px;
    font-size: 14px;
    font-family: 'BPG Boxo Boxo', sans-serif;
    font-weight: 500;
}

.samp-note__text b {
    color: var(--text);
}

/* download */
.samp-download {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 16px;
    border-radius: 18px;
    text-decoration: none;
    color: #fff;
    font-weight: 800;
    letter-spacing: .2px;
    background: -webkit-gradient(linear, left top, left bottom, from(#EB2E4A), to(rgba(249, 5, 5, 0.7)));
    background: -o-linear-gradient(top, #EB2E4A, rgba(249, 5, 5, 0.7));
    background: linear-gradient(180deg, #EB2E4A, rgba(249, 5, 5, 0.7));
    border: 1px solid #3B3248;
    height: -webkit-fill-available;
    -webkit-transition: background .2s ease, -webkit-transform .2s ease, -webkit-box-shadow .2s ease;
    transition: background .2s ease, -webkit-transform .2s ease, -webkit-box-shadow .2s ease;
    -o-transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, -webkit-transform .2s ease, -webkit-box-shadow .2s ease;
}

.samp-download:hover {
    /* transform: translateY(-4px); */
    background: -webkit-gradient(linear, left top, left bottom, from(#ff445f), to(rgba(249, 5, 5, 0.85)));
    background: -o-linear-gradient(top, #ff445f, rgba(249, 5, 5, 0.85));
    background: linear-gradient(180deg, #ff445f, rgba(249, 5, 5, 0.85));
    -webkit-box-shadow: 0 10px 24px rgba(235, 46, 74, 0.45);
            box-shadow: 0 10px 24px rgba(235, 46, 74, 0.45);
}

.samp-download__icon {
    font-size: 22px;
    -webkit-transform: translateY(-1px);
        -ms-transform: translateY(-1px);
            transform: translateY(-1px);
}

.samp-download__text {
    line-height: 25px;
    font-size: 17px;
    font-family: 'BPG Boxo Boxo', sans-serif;
    font-weight: 500;
}



/* EDRP SECTION */
.edrp-section .content {
    gap: 36px;
}

.edrp-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 32px;
    background: -webkit-gradient(linear, left top, right top, from(#231E29), color-stop(17%, #292232), color-stop(65%, #17141C), color-stop(98%, #322D3A));
    background: -o-linear-gradient(left, #231E29 0%, #292232 17%, #17141C 65%, #322D3A 98%);
    background: linear-gradient(90deg, #231E29 0%, #292232 17%, #17141C 65%, #322D3A 98%);
    border-radius: 16px;
    padding: 36px 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

#contentTitle {
    margin-bottom: 24px;
}

#contentText {
    margin-bottom: 12px;
    font-family: 'BPG Boxo Boxo', sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    line-height: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
}

.slider {
    position: relative;
}

.slider img {
    max-width: 454px;
    width: 100%;
}

.slider-controls {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.slider-controls button {
    background: transparent;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.slider-controls button img {
    width: 12px;
    height: 12px;
}

.slider-dots {
    margin-top: 19px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 8px;
}

.slider-dots span {
    width: 52px;
    height: 2px;
    background: #D9D9D9;
    border-radius: 3px;
    cursor: pointer;
}

.slider-dots span.active {
    background: #ff2c8b;
}

.edrp-content {}

.platform-switch {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.platform-switch button {
    background: #1a1328;
    border: 1px solid #333;
    color: #aaa;
    padding: 12px 24px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 12px;
    font-family: 'BPG Boxo Boxo', sans-serif;
    font-weight: 500;
}

.platform-switch button.active {
    background: #fff;
    color: #000;
}

.download-btn {
    margin-top: 20px;
    background: -o-radial-gradient(center, circle, #B21A87 10%, #6D0850 100%);
    background: radial-gradient(circle at center, #B21A87 10%, #6D0850 100%);
    border: none;
    padding: 14px 22px;
    border-radius: 12px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 16px;
    font-size: 19px;
    font-weight: 600;
    line-height: 25px;
    font-family: 'BPG Boxo Boxo', sans-serif;
}

.download-btn {
    -webkit-transition: background .2s ease, -webkit-box-shadow .2s ease;
    transition: background .2s ease, -webkit-box-shadow .2s ease;
    -o-transition: background .2s ease, box-shadow .2s ease;
    transition: background .2s ease, box-shadow .2s ease;
    transition: background .2s ease, box-shadow .2s ease, -webkit-box-shadow .2s ease;
}

.download-btn:hover {
    background: -o-radial-gradient(center, circle, #c92c9b 12%, #7a0a5b 100%);
    background: radial-gradient(circle at center, #c92c9b 12%, #7a0a5b 100%);
    -webkit-box-shadow: 0 10px 24px rgba(178, 26, 135, 0.45);
            box-shadow: 0 10px 24px rgba(178, 26, 135, 0.45);
}


/* Character Section */

.characters-section .content {
    gap: 36px;
}

.characters-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 24px;
}

.character {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
}

.character img {
    -webkit-transition: -webkit-filter 1s ease;
    transition: -webkit-filter 1s ease;
    -o-transition: filter 1s ease;
    transition: filter 1s ease;
    transition: filter 1s ease, -webkit-filter 1s ease;
    -webkit-filter: grayscale(1);
            filter: grayscale(1);
    max-width: 421px;
    max-height: 597px;
}

.character img:hover {
    cursor: pointer;
    -webkit-filter: grayscale(0);
            filter: grayscale(0);
}

.character-desc {
    border-radius: 16px;
    padding: 24px;
    background: -webkit-gradient(linear, left top, left bottom, from(#3B3248), to(#282828));
    background: -o-linear-gradient(top, #3B3248 0%, #282828 100%);
    background: linear-gradient(180deg, #3B3248 0%, #282828 100%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 18px;
}

.character-desc h3 {
    font-family: 'BPG Boxo Boxo', sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    line-height: 25px;
    font-size: 18px;
}

.character-desc p {
    font-family: 'BPG Boxo Boxo', sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    line-height: 20px;
    font-size: 12px;
}


/* FEATURES SECTION */

.features .content {
    gap: 32px;
}


.feature-tabs {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 26px;
    /* margin-bottom: 30px; */
    max-width: 911px;
}

.tab {
    padding: 22px;
    border: 1px solid #444;
    border-radius: 14px;
    cursor: pointer;
    background: transparent;
    color: #ffffff;
    text-align: center;
    -webkit-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
    font-family: 'BPG Boxo Boxo', sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    line-height: 20px;
    font-size: 12px;
}

.tab:hover {
    border-color: #777;
}

.tab.active {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.feature-text {
    font-family: 'BPG Boxo Boxo', sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    line-height: 20px;
    font-size: 12px;
    color: #bfbfbf;
}

.warning {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 24px;
    width: 100%;
    border: 1px solid #EB2E4A;
    padding: 12px 24px;
    border-radius: 16px;
}

.warning p {
    max-width: 460px;
    font-family: 'BPG Boxo Boxo', sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    line-height: 16px;
    font-size: 11px;
    color: #ffffff;
}


/* FOOTER */

.site-footer .content {
    background-color: #2F2938;
    color: #cfcfcf;
    padding: 18px 0 8px 64px;
}

.footer-links a,
.footer-links span {
    font-family: 'BPG Boxo Boxo', sans-serif;
    font-optical-sizing: auto;
}

.footer-inner {
    max-width: 900px;
    /* margin: 0 auto; */
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: auto 40px 1fr 40px auto;
    grid-template-columns: auto 1fr auto;
    gap: 40px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
}


.footer-links {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 40px 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    font-size: 14px;
}

.footer-links a,
.footer-links span {
    display: block;
    color: #bdbdbd;
    text-decoration: none;
    margin-bottom: 10px;
}

.footer-links a:hover {
    color: #fff;
}

.footer-socials {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 12px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

/*  */
.footer-socials a.soc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 56px;
    height: 36px;
    border-radius: 8px;
    background: #1e1e1e;
    -webkit-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
}

.footer-socials a.soc img {
    width: 18px;
}

/*  */


.footer-socials a:hover {
    background: #2e273a;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 12px;
    color: #8d8d8d;
    line-height: 1.6;
}

/* copy */
.badge {
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px;
    -webkit-transition: background .2s ease, color .2s ease;
    -o-transition: background .2s ease, color .2s ease;
    transition: background .2s ease, color .2s ease;
}

.badge img {
    width: 16px;
    height: 16px;
    opacity: .7;
}

.badge.copied {
    background: rgba(0, 255, 150, 0.12);
    color: #00ff9c;
}

.badge.copied img {
    opacity: 1;
}



@media screen and (min-width: 1441px) {
    .samp-roles .samp-download {
        display: none;
    }

    .samp-right.mini {
        display: none;
    }
}

@media screen and (max-width: 1440px) {
    .hero .content {
        gap: 96px;
    }

    .content {
        max-width: 840px;
    }

    .samp-right {
        display: none;
    }

    .samp-left {
        gap: 24px;
    }

    .samp-right.mini {
        margin-top: 24px;
        gap: 16px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .samp-left,
    .samp-right {
        max-width: 100%;
    }

    .samp-grid {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .samp-download--right {
        display: none;
    }

    .samp-roles {
        -ms-grid-columns: (1fr)[4];
        grid-template-columns: repeat(4, 1fr);
        margin-top: 16px;
    }

    .samp-download {
        border-radius: 16px;
        margin-top: 0;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 8px;
    }

    /* Charachters  */

    .character {
        gap: 8px;
    }

    .character img {
        max-width: 265px;
    }

    .character-desc h3 {
        font-size: 15px;
    }


    .character-desc {
        padding: 12px;
    }

    /*  */

    .tab {
        padding: 8px;
    }

    .hero h1 {
        font-size: 38px;
    }

    .socials a img {
        width: 54px;
    }

    .hero .content {
        max-width: 840px
    }

    .site-footer .content {
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        max-width: 100%;
    }

    .footer-inner {
        max-width: 840px;
    }
}

@media screen and (max-width: 991px) {

    .hero-soc {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start;
    }

    .hero-soc .others {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    }

    .character {
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }

    .edrp-card {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
            -ms-flex-direction: column-reverse;
                flex-direction: column-reverse;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }

    .platform-switch {
        -webkit-box-pack: start;
            -ms-flex-pack: start;
                justify-content: flex-start;
    }

    .edrp-content {
        padding: 0 24px;
    }

    button.download-btn {
        margin: 0 auto;
    }

    .hero .content {
        max-width: 624px;
        gap: 64px;
    }

    .hero h1 {
        font-size: 20px;
    }

    .hero p {
        font-size: 11px;
    }

    .hero-content {
        gap: 32px;
        padding: 0 24px;
    }


    a.cta-btn {
        font-size: 11px;
        padding: 14px 18px;
    }

    .hero-footer {
        row-gap: 16px;
        padding: 0 24px;
        -ms-flex-wrap: wrap-reverse;
            flex-wrap: wrap-reverse;
    }

    .title {
        font-size: 20px;
    }

    /* Character */

    .character-desc h3 {
        font-size: 11px;
    }

    .character-desc p {
        font-size: 10px;
    }

    .character img {
        max-width: 192px;
        max-height: 240p;
    }

    .content {
        max-width: 624px;
    }

    .samp-roles {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        gap: 16px;
    }

    .samp-roles img {
        max-width: 192px;
    }

    .samp-download {
        width: 100%;
        gap: 16px;
        padding: 22px;
        margin-top: 16px;
    }

    /*  */

    .feature-tabs {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        width: 100%;
    }

    .tab {
        padding: 18px;
    }

    .feature-tabs {
        gap: 16px;
    }

    a.soc {
        width: 64px;
        height: 54px;
    }

    a.soc img {
        width: 20px;
    }

    .site-footer .content {
        padding: 12px 0 8px 32px;
    }
}

@media screen and (max-width: 768px) {
    .slider {
        max-width: 100%;
    }

    .slider img {
        max-width: 100%;
    }

    .footer-inner {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: c;
            -ms-flex-align: c;
                align-items: c;
    }

    .footer-socials {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

@media screen and (max-width: 650px) {

    .characters-block {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }

    .content {
        max-width: 90%
    }

    .samp-roles {
        gap: 16px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }
}

.hero-video-wrap {
    position: absolute; 
    width: 100%;
    height: 100%;
}

.hero-video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}

.hero-video-controls {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    bottom: 9%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
    z-index: 5;
}

.hero-video-controls button {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    -webkit-backdrop-filter: blur(6px);
            backdrop-filter: blur(6px);
    -webkit-transition: background .2s ease, -webkit-transform .15s ease;
    transition: background .2s ease, -webkit-transform .15s ease;
    -o-transition: background .2s ease, transform .15s ease;
    transition: background .2s ease, transform .15s ease;
    transition: background .2s ease, transform .15s ease, -webkit-transform .15s ease;
}

.hero-video-controls button:hover {
    background: rgba(0, 0, 0, 0.65);
    -webkit-transform: translateY(-2px);
        -ms-transform: translateY(-2px);
            transform: translateY(-2px);
}

.hero-video-controls input[type="range"] {
    width: 90px;
    accent-color: #EB2E4A;
    cursor: pointer;
}

@media screen and (max-width: 991px)
{
    .hero-video-controls{
        display: none;
    }

    #videoOverlay{
        display: none !important;
    }
}