* {
    box-sizing: border-box;
}

body {
    font-family: 'Unbounded', sans-serif;
    color: #FFFFFF;
    background: #160E1F;
}

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

.header {
    margin-top: 20px;
    margin-bottom: 30px;
}

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

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

.nav-link {
    text-decoration: none;
    color: #FFFFFF;
    font-weight: 400;
    font-size: 14px;
}

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

section {
    margin-bottom: 80px;
}

img {
    max-width: 100%;
}

.hero-section .container {
    display: flex;
    gap: 30px;
    align-items: center;
}

.heading-primary {
    font-weight: 700;
    font-size: 80px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.text {
    font-size: 14px;
}

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

.btn-primary {
    display: inline-block;
    text-decoration: none;
    background: linear-gradient(90deg, #F7D200 0%, #0CFF89 100%);
    color: #160E1F;
    border-radius: 60px;
    padding: 24px 60px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    margin-top: 30px;
}

.about-section {
    position: relative;
}

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

.about-content {
   max-width: 895px;
   margin-left: auto;
}

.heading-secondary {
    font-weight: 700;
    font-size: 60px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.heading-tertiary {
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
}

.gallery-section .container {
    display: flex;
    gap: 30px;
    align-items: center;
}

.gallery-images {
    display: flex;
    gap: 20px;
}

.gallery-content {
    max-width: 387px;
}

.games-section {
    background-image: url(/wp-content/themes/blixovera/assets/img/games-bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.games-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 30px;
}

.games {
    max-width: 640px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

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

.game img {
    width: 100%;
    height: auto;
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, rgba(247, 210, 0, 0.8) 0%, rgba(12, 255, 137, 0.8) 100%);
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-name {
    font-weight: 700;
    text-align: center;
    font-size: 18px;
    color: #160E1F;
}

.game:hover .game-overlay {
    opacity: 1;
}

.cta-section .container {
    display: flex;
    align-items: center;
    gap: 30px;
}

.footer {
    margin-bottom: 20px;
}

.footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer .text {
    color: #FFFFFF99;
}

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

html {
    scroll-behavior: smooth;
}

.main-title {
    font-size: 50px;
    font-weight: 700;
}

.main-section .text {
    max-width: 1098px;
}

.game-section {
    text-align: center;
    background-image: url(/wp-content/themes/blixovera/assets/img/game-bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.game-section img {
    margin-bottom: 30px;
}

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

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

    .hero-section .container {
        flex-direction: column;
        align-items: center;
    }

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

    .about-section {
        padding-top: 436px;
    }

    .about-img {
        transform: none;
        top: 0;
        max-width: 300px;
    }

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

    .gallery-section .container {
        flex-direction: column;
        align-items: center;
    }

    .gallery-images {
        flex-direction: column;
        width: 100%;
    }

    .gallery-images img {
        height: 320px;
        object-fit: cover;
        border-radius: 20px;
    }

    .games-content {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

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

    .cta-section .container {
        flex-direction: column;
        align-items: center;
    }

    .footer .nav-links {
        flex-direction: column;
        align-items: center;
    }

    .main-title {
        font-size: 36px;
    }
}