.nav-item.game a {
    color: rgba(251, 191, 36, 1);
}

.nav-item.game img {
    filter: brightness(0) saturate(100%) invert(76%) sepia(79%) saturate(2478%) hue-rotate(352deg) brightness(101%) contrast(99%);
}

.footer-menu-wrap .game {
    color: rgba(251, 191, 36, 1);
}

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #ffffff;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

.game-section {
    width: 100%;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    background-color: #ffffff;
    flex-direction: column;
    gap: 30px;
}

.game-section .container2 {
    gap: 30px;
}

.container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* 1. Page Title */
.page-title {
    font-size: 48px;
    line-height: 60px;
    font-weight: 800;
    color: #111827;
    margin: 0;
    text-transform: uppercase;
}

/* 2. Intro Content */
.intro-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.headline-row {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 20px;
    /* flex-wrap: wrap; */
}

.main-headline {
    font-size: 28px;
    font-weight: 800;
    text-transform: uppercase;
    color: #111827;
    margin: 0;
    line-height: 34px;
    max-width: 615px;
    font-style: italic;
}

.pc-only-br{
    display: inline;
}

.orange-line {
    height: 5px;
    background-color: #f8931f;
    flex-grow: 1;
    min-width: 100px;
    margin-bottom: 8px;
    /* Align visually with text baseline */
}

.description {
    font-weight: 500;
    font-size: 18px;
    line-height: 1.6;
    color: #4b5563;
    margin: 0;
}

/* 3. Categories (Icons) */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 13.33px;
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-label {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.4;
    color: #111827;
    text-transform: uppercase;
    text-align: center;
}

/* 4. Gallery Images */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 13.33px;
}

.gallery-img {
    width: 100%;
    height: 521px;
    object-fit: cover;
    display: block;
}

/* 5. Bottom Banner */
.banner-wrapper {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.banner-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-banner {
    border-radius: 10px;
}

/* Responsive Design */

@media (max-width: 991px) {
    .gallery-grid {
        width: 100%;
        gap: 1px;
    }

    .page-title {
        font-size: 28px;
    }

    .description {
        font-size: 14px;
    }

    .categories-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .gallery-img {
        height: 139px;
    }

    .headline-row {
        gap: 5px;
    }

    .orange-line {
        /* width: 100%; */
        margin-bottom: 0;
        width: 18px;
        min-width: auto;
        /* flex-grow:0; */
        flex-shrink: 0;
    }

    .game-section {
        padding: 30px 20px;
        gap: 20px;
    }

    .game-section .container2 {
        gap: 20px;
    }
    .main-headline{
        font-size: 24px;
        line-height: 29px;
    }
    .pc-only-br{
        display: none;
    }
    .page-banner{
        border-radius: 5px;
    }
    .category-label{
        font-size: 16px;
    }
}