* {
    box-sizing: border-box;
}

body {
    background: #000000;
    color: #fff;
    font-family: 'Outfit', sans-serif;
}

.container {
    max-width: 1080px;
    width: 100%;
    margin: 0 auto;
}

img {
    max-width: 100%;
    height: auto;
}

html {
    scroll-behavior: smooth;
}

.hero-section {
    background-image: url(/wp-content/themes/kazunetra/assets//img/hero-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding-top: 34px;
}

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

.nav-links {
    display: flex;
    gap: 15px;
}

.nav-link {
    text-decoration: none;
    color: #fff;
    font-size: 18px;
}

.heading-primary {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    font-size: 78px;
    line-height: 100%;
    letter-spacing: 0%;
    margin-bottom: 26px;
}

.hero-content {
  padding: 137px 0px;
  position: relative;
}

.text {
    font-weight: 300;
    font-size: 18px;
    line-height: 150%;
}

.hero-section .text {
    max-width: 392px;
}

.hero-info {
    max-width: 469px;
}

.btn-primary {
    display: flex;
    align-items: center;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    background-image: url(/wp-content/themes/kazunetra/assets/img/btn-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    color: #111111;
    width: fit-content;
    padding: 13px 48px 13px 32px;
    box-shadow: 0px 0px 34px 0px #99EE2D4D;
    margin-top: 25px;
    text-decoration: none;
    gap: 10px;
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    background-position: right;
}

.hero-img {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

section {
    margin-bottom: 80px;
}

.section-title {
    text-align: center;
}

.heading-secondary {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    font-size: 68px;
    line-height: 100%;
}

.heading-secondary span {
    color: #99EE2D;
    margin-bottom: 15px;
}

.about-content {
    display: flex;
    align-items: center;
}

.text-large {
    font-weight: 300;
    font-size: 21px;
    line-height: 150%;
    letter-spacing: 0%;
}

.why-section .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.list {
    list-style: disc;
    padding-left: 18px;
}

.categories-section .container {
    display: flex;
    gap: 163px;
    align-items: center;
}

.games-grid {
    max-width: 602px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 34px;
    row-gap: 24px;
    margin-top: 50px;
}

.games-grid a img,
.games-row a img {
    width: 100%;
}

.footer {
    padding: 30px 0px;
    background: #121215;
}

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

.footer-nav {
    display: flex;
    margin: 20px 0px;
    gap: 15px;
}

.footer-link {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
}

.footer-text {
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #FFFFFF99;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.header-container {
    margin-top: 25px;
    margin-bottom: 63px;
}

.page-header {
    background-image: url(/wp-content/themes/kazunetra/assets/img/header-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding-top: 25px;
    padding-bottom: 40px;
}

.page-header .section-title {
    margin-top: 63px;
}

.games-row {
    display: flex;
    gap: 34px;
}

.games-row a {
    width: 170px;
}

.games-row:first-child {
    margin-bottom: 24px;
    justify-content: flex-end;
}

.product-section .container {
    display: flex;
    align-items: center;
    gap: 50px;
    justify-content: space-between;
}

@media(max-width: 1100px) {
    .container {
        padding: 0px 20px;
    }

    .header {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }

    .nav-links {
        flex-wrap: wrap;
    }

    .hero-img {
        position: static;
        transform: none;
        max-width: 240px;
        height: 300px;
        object-fit: cover;
        object-position: right;
    }

    .hero-content {
        display: flex;
        flex-direction: column-reverse;
        align-items: flex-start;
        padding: 50px 0px;
    }

    .heading-primary {
        font-size: 51px;
    }

    .heading-secondary {
        font-size: 41px;
    }

    .about-content {
        flex-direction: column;
        align-items: center;
    }

    .why-section .container {
        flex-direction: column-reverse;
        align-items: center;
        gap: 25px;
    }

    .categories-section .container {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }

    .categories-section .container img {
       max-width: 210px;
    }

    .about-content img {
        max-width: 270px;
        height: auto;
    }

    .games-grid {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 20px;
        row-gap: 20px;
    }

    .footer .container {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }

    .footer-nav {
        flex-direction: column;
    }

    .games-row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .games-row a {
        width: 100%;
    }

    .product-section .container {
        flex-direction: column;
    }
}