
h1{font-size: 32px;}
.games-tabs-section {
    background: linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, 0.2));
    backdrop-filter: blur(10px);
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    top: 100px; 
    z-index: 997;
}


.games-tabs {
    gap: 30px;
}

.tab-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 10px;
    border-radius: 16px;
}

.tab-icon {
    width: 100px;
    object-fit: contain;
    margin-bottom: 12px;
    filter: brightness(0.8);
    transition: all 0.3s;
}

.tab-item span {
    font-size: 1rem;
    font-weight: 600;
}

.tab-item:hover,
.tab-item.active {
    color: #000;
    background: linear-gradient(45deg, #2AEA8B, #FDFD75);
}

.tab-item:hover .tab-icon,
.tab-item.active .tab-icon {
    filter: brightness(1);
    transform: scale(1.1);
}


.mobile-select-wrapper {
    max-width: 340px;
    margin: 0 auto;
}

.mobile-game-select {
    width: 100%;
    background: rgba(255,255,255,0.08);
    border: 2px solid rgb(42 234 139 / 30%);
    border-radius: 50px;
    padding: 16px 60px 16px 28px; 
    color: #fff;
    font-size: 1.15rem;
    font-weight: 600;
    appearance: none;
    cursor: pointer;
}

.mobile-game-select:focus {
    outline: none;
    border-color: #2AEA8B;
    box-shadow: 0 0 0 5px rgba(255,215,0,0.25);
    background: rgba(255,255,255,0.15);
}

.mobile-game-select option {
    background: #2e0327;
    color: #fff;
    padding: 12px;
}

.select-arrow {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.8rem;
    color: #2AEA8B;
    pointer-events: none;
    transition: transform 0.3s ease;
}

.mobile-game-select:focus + .select-arrow {
    transform: translateY(-50%) rotate(180deg);
}


#gamesGrid{
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(4, 1fr);
}
.games-content {
    background: #000000;
    min-height: 100vh;
    padding: 100px 0;
}

.category-title {
    font-size: 3.2rem;
    font-weight: 900;
    letter-spacing: 1px;
}

.game-card-static {
    background: rgba(255,255,255,0.03);
    border-radius: 20px;
    padding: 20px;
    border: 1px solid rgba(255,215,0,0.1);
    transition: transform 0.3s ease;
}

.game-card-static:hover {
    transform: translateY(-8px);
}

.game-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 16px;
}

.game-title {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 15px 0 10px;
}
.bg_img::before{
    background-image: url(https://s3.ap-southeast-1.amazonaws.com/jeetking.com/static/game/images/game/JeetKing-Weekly-and-Monthly-Card-Rewards.webp);
}


/*games Second-level page*/

/* ===== Game Detail Page ===== */
.game-detail-page {
    background: #000;
    color: #fff;
}

/* Block 1 */
.game-intro {
    padding: 200px 0 0;
}
.game-intro .col-lg-5{
    width: 27%;
    text-align: center;
    padding: 20px;
}
.game-intro .col-lg-7{
    width: 69%;
}
.game-intro .align-items-center{
    gap: 50px;
    align-items: flex-start !important;
}
.game-cover img {
    width: 100%;
    border-radius: 16px;
}
.game-intro .btn{
    margin-top: 20px;
}
.games-title {
    font-size: 36px;
    margin-bottom: 30px;
}
.game-info-table {
    background: #111;
    border-radius: 12px;
    overflow: hidden;
}
.game-info-table .info-row {
    display: flex;
    justify-content: space-between;
    padding: 14px 20px;
    border-bottom: 1px solid #222;
}
.game-info-table .info-row:last-child {
    border-bottom: none;
}

/* Block 2 */
.game-screenshots {
    padding: 60px 0;
}
.screenshot-box {
    background: #111;
    border-radius: 16px;
    padding: 20px;
}
.screenshot-slider img {
    width: 100%;
    border-radius: 12px;
}
.download-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}
.download-bar .brand {
    display: flex;
    align-items: center;
    gap: 12px;
}
.download-bar img {
    width: 40px;
}

/* Block 3 */
.game-description {
    padding: 80px 15px 20px;
}
.game-description h2 {
    margin-bottom: 20px;
    font-size: 36px;
}
.game-description p{
    margin-bottom: 20px;
}
.games-faq{
    background: #000;
    padding-top: 0;
}
.games-faq .section-header__title{
    margin-bottom: 20px;
    font-size: 36px;
}
.games-faq .faq-item{
    background: #000000;
}

#gamesGrid .game-item{
    padding: 20px;
}
#gamesGrid .game-item::before{
    position: unset;
}
#gamesGrid .game-item::after{
    position: unset;
}
.game-item {
    transition: opacity 0.5s ease, transform 0.5s ease;
    width: 100%;
}

.game-item.hidden {
    /* opacity: 0;
    transform: scale(0.9);
    height: 0;
    padding: 0;
    margin: 0;
    overflow: hidden; */
    display: none;
}
.games-tabs-section .justify-content-center {
    justify-content: space-between !important;
}

/* 响应式 */
@media (max-width: 1399px) {
    .banner-section {padding: 120px 0px 50px;}
}
@media (max-width: 992px) {
    .games-tabs-section { padding: 20px 0; }
    .category-title { font-size: 2.8rem; }
    .game-img { height: auto; }
    .games-tabs-section{top: 66px;}
    #gamesGrid{grid-template-columns: repeat(2, 1fr);}
    #gamesGrid .game-item{padding: 0;box-shadow:unset;}
    .game-card-static{padding: 20px;background:unset;border:0;}
    .cmn--btn.btn--md{padding: 5px 15px !important;font-size: 12px;}
    .game-title{font-size: 16px;margin-top: 10px !important;}
    .games-content{padding: 50px 0;}
    .bg_img::before{background-image: url(https://s3.ap-southeast-1.amazonaws.com/jeetking.com/static/game/images/game/mobile-banner.webp);opacity: 0.7;}
}

@media (max-width: 576px) {
    .mobile-select-wrapper { max-width: 100%;width: 100%; }
    .mobile-game-select { font-size: 1.05rem; padding: 14px 55px 14px 24px; }
    .select-arrow { right: 20px; font-size: 1.6rem; }
    .game-img { height: auto; }
}
