@import url('https://fonts.googleapis.com/css2?family=Turret+Road:wght@200;300;400;500;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@font-face {
    font-display: block;
    font-family: Underwave;
    font-style: normal;
    font-weight: 400;
    src: url("cc7303ecb8405d27fd7a.a0a0c6917910.ttf")
}

@font-face {
    font-family: chakra;
    src: url("ChakraPetch-Light.ttf");
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: clip;
}

.lenis.lenis-smooth iframe {
    pointer-events: none;
}

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

*::selection {
    background: #fa1e4e;
    color: #05364c;
}

html,
body {
    width: 100%;
    height: 1000vh;
    font-family: 'Neue Montreal';
    background-color: #131019;
}

:root {
    --body-color: #010c15;
    --text-color: #fa1e4e;
    --hover-color: #8c7db0;
    --accent-color: #fa1e4e;
    --underline-thickness: 2.5px;
}

nav {
    position: absolute;
    margin: 0;
    padding: 0;
    display: flex;
    right: 0;
    justify-content: space-between;
    text-transform: uppercase;
    font: bold 2.5rem 'Underwave';
    z-index: 999;
    margin-top: .2em;
}

.button {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    border: none;
    background: none;
    color: #0f1923;
    cursor: pointer;
    position: relative;
    padding: 8px;
    /* margin-bottom: 20px; */
    text-transform: uppercase;
    font-weight: bold;
    font-size: 14px;
    margin: 1vw 2vw;
    transition: all .15s ease;
}

.button::before,
.button::after {
    content: '';
    display: block;
    position: absolute;
    right: 0;
    left: 0;
    height: calc(50% - 5px);
    border: 1px solid #7D8082;
    transition: all .15s ease;
}

.button::before {
    top: 0;
    border-bottom-width: 0;
}

.button::after {
    bottom: 0;
    border-top-width: 0;
}

.button:active,
.button:focus {
    outline: none;
}

.button:active::before,
.button:active::after {
    right: 3px;
    left: 3px;
}

.button:active::before {
    top: 3px;
}

.button:active::after {
    bottom: 3px;
}

.button_lg {
    position: relative;
    display: block;
    padding: 10px 20px;
    color: #fff;
    background-color: #0f1923;
    overflow: hidden;
    box-shadow: inset 0px 0px 0px 1px transparent;
}

.button_lg::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 2px;
    background-color: #0f1923;
}

.button_lg::after {
    content: '';
    display: block;
    position: absolute;
    right: 0;
    bottom: 0;
    width: 4px;
    height: 4px;
    background-color: #0f1923;
    transition: all .2s ease;
}

.button_sl {
    display: block;
    position: absolute;
    top: 0;
    bottom: -1px;
    left: -8px;
    width: 0;
    background-color: #ff4655;
    transform: skew(-15deg);
    transition: all .2s ease;
}

.button_text {
    position: relative;
}

.button:hover {
    color: #0f1923;
}

.button:hover .button_sl {
    width: calc(100% + 15px);
}

.button:hover .button_lg::after {
    background-color: #fff;
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

h1 {
    font-family: serif;
    font-size: 5vw;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.025em;
}

p {
    font-size: 17px;
    font-weight: 500;
    webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    padding: 0;
    background-color: #131019;
    overflow: hidden;
}

.gallery-wrapper {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    width: 160vw;
    height: 100vh;
    display: flex;
    gap: 4em;
}

.col {
    position: relative;
    flex: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 4em;
    will-change: transform;
}

.img {
    flex: 1;
    overflow: hidden;
    background-color: #fff;
}

img.main img {
    position: relative;
    transform: scale(2);
    will-change: transform;
}

.container {
    width: 100%;
    height: 100%;
}

section {
    position: relative;
    width: 100vw;
    height: 100vh;
    background-color: #e1dedc;
    padding: 2em;
}

.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4em;
    /* background-color: transparent; */
}

.hero-left {
    height: 30vh;
    width: 40vw;
    z-index: 3;
}

.hero-h h1 {
    font-size: 3vw;
    margin-bottom: 2vh;
    font-family: 'Underwave';
    color: #e1dedc;
}

.hero-h p {
    font-size: 1.5vw;
    color: #8c7db0;
    font-weight: 500;
    font-family: 'Turret Road';
}

.hero-img {
    position: absolute;
    top: 0;
    /* z-index: -1; */
    left: 0;
    width: 100%;
    height: 100%;
}

.intro {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    top: -8vw;
    padding: 4em 0;
    background-color: #131019;
    color: #05364c;
}

.tagline {
    width: 40vw;
}

.tagline p {
    font-size: 1.4vw;
    color: #8c7db0;
    font-family: 'chakra';
}

.intro-header {
    color: #fa1e4e;
}

.intro-header h1 {
    /* font-family: 'Underwave'; */
    font-family: 'chakra';
}

.divider {
    width: 1.5px;
    height: 30%;
    background-color: #fa1e4e;
}

section.ws {
    width: 100vw;
    height: 600vh;
    background-color: transparent;
    pointer-events: none;
}

.outro {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    background-color: #131019;
    color: #05364c;
}

.outro img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.outro h1 {
    z-index: 3;
    font-size: 3vw;
    margin-bottom: 2vh;
    font-family: 'Underwave';
    color: #e1dedc;
    text-align: left;
}

.footer-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.gx-divider {
    background: #131019;
    overflow: hidden;
    position: relative;
    top: -8vw;
}

.gx-divider::after {
    content: "cloud gaming cloud gaming cloud gaming cloud gaming";
    display: flex;
    inset: 0;
    justify-content: center;
    position: absolute;
    -webkit-text-stroke: .1rem #8c7db0;
    color: rgba(0, 0, 0, 0);
    font-family: underwave, sans-serif;
    font-size: 9.6rem;
    background: #131019;
    position: relative;
    text-transform: uppercase;
    text-wrap: nowrap;
    animation: marquee 10s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.mf-cursor {
    color: #fa1e4e;
}

.sliderrr {
    background-color: #131019;
    padding: 4em 2em;
}

.game-slider {
    position: relative;
    width: 80%;
    height: 80vh;
    overflow: hidden;
}

.slider-title {
    color: #e1dedc;
    font-family: 'Underwave';
    font-size: 2.5vw;
    margin-bottom: 2em;
    text-align: center;
}

.swiper-slide {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.slide-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(19, 16, 25, 0.9), transparent);
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 2em;
    bottom: 8vw;
    color: #e1dedc;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.swiper-slide-active .slide-content {
    transform: translateY(0);
    opacity: 1;
}

.slide-content h2 {
    font-family: 'Underwave';
    font-size: 2em;
    margin-bottom: 0.5em;
}

.slide-content p {
    color: #fa1e4e;
    margin-bottom: 1.5em;
}

.play-btn {
    background: #fa1e4e;
    border: none;
    padding: 0.8em 2em;
    color: #e1dedc;
    font-family: 'chakra';
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-btn:hover {
    background: #8c7db0;
    transform: translateY(-2px);
}

.swiper-button-prev,
.swiper-button-next {
    position: absolute;
    /* top: 50%; */
    color: #fa1e4e;
}

.swiper-button-next::after {
    position: absolute;
}

.swiper-pagination-bullet {
    background: #8c7db0;
}

.swiper-pagination-bullet-active {
    background: #fa1e4e;
}

.hero-h>h1 {
    cursor: none !important;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

footer {
    position: relative;
    width: 100%;
    background-color: #131019;
    box-sizing: border-box;
    display: flex;
    overflow: hidden !important;
    flex-direction: column;
    align-items: center;
    z-index: 9999;
    padding: 2em 0;
}

.f-logo {
    color: #fa1e4e;
    font-family: 'Turret Road';
    letter-spacing: 2px;
    padding: 5px 10px;
    font-size: 25px;
}

.up-section,
.down-section {
    display: flex;
    justify-content: space-between;
    padding: 3% 0px;
    margin: 5px;
    width: 80%;
    flex-wrap: wrap;
    gap: 2em;
}

.up-section {
    border-bottom: 1px solid #8c7db0;
}

.up-section ul,
.down-section ul {
    font-family: 'Montserrat';
    margin: 0;
    padding: 0 20px;
    min-width: 150px;
}

.up-section ul li a,
.down-section ul li a {
    font-size: 16px;
    color: #e1dedc;
    transition: all ease .5s;
}

.up-section ul li a:hover,
.down-section ul li a:hover {
    color: #fa1e4e;
}

.up-section ul li p,
.down-section ul li p {
    font-size: 14px;
    color: #8c7db0;
    line-height: 10px;
    transition: all ease .5s;
}

.up-section h1,
.down-section h1 {
    color: #fa1e4e;
    font-size: 20px;
    font-family: 'Montserrat';
    margin-bottom: 1.5em;
}

.social-icons {
    display: flex;
}

.social-icons a {
    width: 35px;
    height: 35px;
    margin: 0 5px;
    background-color: #8c7db0;
    box-shadow: 2px 2px 12px rgba(0, 0, 0, .1);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all ease .5s;
}

.social-icons a:hover {
    background-color: #fa1e4e;
}

.social-icons i {
    color: #FFFFFF;
    font-size: 14px;
}

.social-icons a:hover i {
    color: #424356;
}

.search input {
    height: 35px;
    width: 200px;
    text-align: center;
    border: none;
    outline: none;
}

.copyright {
    font-family: 'Montserrat';
    font-size: 20px;
    color: #8c7db0;
    margin-top: 2em;
}

.d-steam-cards {
    margin-left: -1rem;
    margin-right: -1rem;
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: flex-start;
}

.d-steam-card-wrapper {
    max-width: 250px;
    min-width: 150px;
    margin: 0;
    flex: 0 1 16.66%;
    padding: 1rem;
}

.d-steam-cards {
    background: #131019;
    display: flex;
    align-items: center;
    justify-content: center;
}

.d-steam-card {
    padding: 0 0 150% 0;
    background: url("") no-repeat transparent 50% 50%;
    background-size: cover;
    border: 1px solid rgba(0, 0, 0, 0.25);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 10px -2px rgba(0, 0, 0, 0.5);
    transition: all ease 0.28s 0.01s;
    transform: perspective(222px) translate3d(0px, 5px, 0px) rotateX(0deg);
    perspective-origin: top;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.d-steam-card::before {
    width: 100%;
    height: 172%;
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    background-image: linear-gradient(35deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.07) 51.5%, rgba(255, 255, 255, 0.15) 54%, rgba(255, 255, 255, 0.15) 100%);
    transform: translateY(-36%);
    opacity: 0.5;
    transition: all ease 0.28s 0.01s;
}

.d-steam-card:hover,
.d-steam-card:focus {
    border: 1px solid rgba(0, 0, 0, 0.1);
    transform: perspective(222px) translate3d(0px, 0px, 8px) rotateX(3deg);
    transform-origin: center;
    box-shadow: 0 14px 16px -2px rgba(0, 0, 0, 0.5);
}

.d-steam-card:hover::before,
.d-steam-card:focus::before {
    opacity: 1;
    transform: translateY(-20%);
}

.d-steam-card:active {
    filter: brightness(80%) contrast(110%);
}

.game-cardz {
    position: sticky;
    z-index: 99999;
    padding: 3rem;
    background: #131019;
}

@media(max-width: 1024px) {
    .search {
        margin: 20px auto;
        display: flex;
        align-items: center;
        width: 100%;
        justify-content: center;
    }
    .search h1 {
        margin: 20px;
    }
}

@media(max-width: 820px) {
    body {
        background-color: #C03B3D;
    }
    .up-section,
    .down-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .up-section ul h1,
    .down-section ul h1 {
        font-size: 25px;
    }
    .up-section ul li,
    .down-section ul li {
        text-align: center;
        margin: 10px;
    }
}

@media(max-width: 420px) {
    .search {
        flex-direction: column;
    }
    .copyright {
        font-size: 14px;
    }
    .f-logo {
        font-size: 16px;
    }
}

@media only screen and (max-width: 1200px) {
    .d-steam-card-wrapper {
        flex-basis: 20%;
    }
}

@media only screen and (max-width: 768px) {
    .d-steam-card-wrapper {
        flex-basis: 25%;
    }
}

@media (max-width: 768px) {
    .gallery-wrapper {
        width: 200vw;
        gap: 2em;
    }
    .img {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        padding: 2em;
    }
    .hero-left {
        width: 100%;
        height: auto;
        margin-bottom: 2em;
    }
    .hero-h h1 {
        font-size: 6vw;
    }
    .hero-h p {
        font-size: 4vw;
    }
}

@media (max-width: 768px) {
    nav {
        position: fixed;
        width: 100%;
        flex-direction: column;
        align-items: center;
        background: rgba(19, 16, 25, 0.9);
        padding: 1em 0;
    }
    .button {
        margin: 0.5em 0;
    }
}

@media (max-width: 768px) {
    .sliderrr {
        padding: 2em 1em;
    }
    .game-slider {
        width: 100%;
        height: 60vh;
    }
    .slider-title {
        font-size: 5vw;
        margin-bottom: 1em;
    }
    .slide-content {
        padding: 1em;
        bottom: 4vw;
    }
    .slide-content h2 {
        font-size: 1.5em;
    }
}

@media (max-width: 768px) {
    .intro {
        padding: 2em 1em;
    }
    .tagline {
        width: 90vw;
    }
    .tagline p {
        font-size: 4vw;
    }
    .intro-header h1 {
        font-size: 8vw;
    }
}

@media (max-width: 768px) {
    .game-cardz {
        padding: 1.5rem;
    }
    .d-steam-card-wrapper {
        flex-basis: 50%;
        padding: 0.5rem;
    }
}

@media (max-width: 768px) {
    .gx-divider::after {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    html,
    body {
        height: auto;
    }
}

@media (max-width: 768px) {
    .not-responive {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: #131019;
        z-index: 9999;
    }
    .not-res-content {
        width: 80%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .not-responive h1 {
        color: #FFFFFF;
        text-align: center;
        padding: 1.2rem;
    }
    .not-responive h6 {
        color: #fa1e4e;
    }
}

@media (min-width: 769px) {
    .not-responive {
        display: none;
    }
}