.page-game-bai {
    font-family: Arial, sans-serif;
    color: #F3F8FF; /* Text Main */
    background-color: transparent; /* Body BG is handled by shared.css var(--deep-navy) */
}

.page-game-bai__container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 20px 15px;
    box-sizing: border-box;
}

.page-game-bai__hero-section {
    padding-top: 10px; /* Small top padding as shared.css handles body padding */
    padding-bottom: 40px;
    background: linear-gradient(180deg, #113B7A 0%, #08162B 100%); /* Deep Navy to Main */
}

.page-game-bai__hero-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    max-width: 1170px;
    margin: 0 auto;
    padding: 40px 15px;
}

.page-game-bai__hero-content {
    flex: 1 1 45%;
    min-width: 300px;
}

.page-game-bai__main-title {
    font-size: clamp(2.2em, 4vw, 3.2em);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #F2C14E; /* Gold */
}

.page-game-bai__description {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #AFC4E8; /* Text Secondary */
}

.page-game-bai__cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.page-game-bai__btn-primary,
.page-game-bai__btn-secondary,
.page-game-bai__btn-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    cursor: pointer;
    box-sizing: border-box;
}

.page-game-bai__btn-primary {
    background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%); /* Button */
    color: #F3F8FF; /* Text Main */
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-game-bai__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.page-game-bai__btn-secondary {
    background: #1B3357; /* Divider - Darker for secondary */
    color: #F3F8FF; /* Text Main */
    border: 1px solid #244D84; /* Border */
}

.page-game-bai__btn-secondary:hover {
    background-color: #244D84;
    transform: translateY(-2px);
}

.page-game-bai__hero-image {
    flex: 1 1 45%;
    min-width: 300px;
    text-align: center;
}

.page-game-bai__hero-main-img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-game-bai__section-title {
    font-size: clamp(1.8em, 3.5vw, 2.5em);
    font-weight: 700;
    color: #F2C14E; /* Gold */
    text-align: center;
    margin-bottom: 30px;
    padding-top: 20px;
}

.page-game-bai__text-block {
    font-size: 1.05em;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #AFC4E8; /* Text Secondary */
    text-align: center;
}

.page-game-bai__text-block a {
    color: #1D5FD1; /* Auxiliary */
    text-decoration: underline;
}

.page-game-bai__game-types-section,
.page-game-bai__why-choose-section,
.page-game-bai__guide-section,
.page-game-bai__promo-section,
.page-game-bai__faq-section,
.page-game-bai__contact-cta-section {
    padding: 60px 0;
}

.page-game-bai__game-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.page-game-bai__game-card {
    background-color: #10233F; /* Card BG */
    border: 1px solid #244D84; /* Border */
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.page-game-bai__game-card-img {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
    margin-bottom: 15px;
}

.page-game-bai__game-card-title {
    font-size: 1.3em;
    font-weight: 600;
    color: #F3F8FF; /* Text Main */
    margin-bottom: 10px;
    padding: 0 15px;
}

.page-game-bai__game-card-description {
    font-size: 0.95em;
    color: #AFC4E8; /* Text Secondary */
    line-height: 1.6;
    margin-bottom: 15px;
    flex-grow: 1;
    padding: 0 15px;
}

.page-game-bai__btn-link {
    background: #1D5FD1; /* Auxiliary */
    color: #F3F8FF; /* Text Main */
    padding: 8px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    margin-top: auto;
    display: inline-block;
}

.page-game-bai__btn-link:hover {
    background: #2B73F6;
}

.page-game-bai__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-game-bai__feature-item {
    background-color: #10233F; /* Card BG */
    border: 1px solid #244D84; /* Border */
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-game-bai__feature-title {
    font-size: 1.25em;
    font-weight: 600;
    color: #F2C14E; /* Gold */
    margin-bottom: 10px;
}

.page-game-bai__feature-description {
    font-size: 0.95em;
    color: #AFC4E8; /* Text Secondary */
    line-height: 1.6;
}

.page-game-bai__guide-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.page-game-bai__guide-step {
    background-color: #10233F; /* Card BG */
    border: 1px solid #244D84; /* Border */
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    position: relative;
    padding-top: 60px; /* Space for step number */
}

.page-game-bai__step-number {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%); /* Button */
    color: #F3F8FF; /* Text Main */
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-game-bai__step-title {
    font-size: 1.2em;
    font-weight: 600;
    color: #F3F8FF; /* Text Main */
    margin-bottom: 10px;
}

.page-game-bai__step-description {
    font-size: 0.95em;
    color: #AFC4E8; /* Text Secondary */
    line-height: 1.6;
}

.page-game-bai__cta-center {
    text-align: center;
    margin-top: 40px;
}

.page-game-bai__promo-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.page-game-bai__promo-card {
    background-color: #10233F; /* Card BG */
    border: 1px solid #244D84; /* Border */
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.page-game-bai__promo-card-img {
    width: 100%;
    height: 250px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
    margin-bottom: 15px;
}

.page-game-bai__promo-card-title {
    font-size: 1.3em;
    font-weight: 600;
    color: #F3F8FF; /* Text Main */
    margin-bottom: 10px;
    padding: 0 15px;
}

.page-game-bai__promo-card-description {
    font-size: 0.95em;
    color: #AFC4E8; /* Text Secondary */
    line-height: 1.6;
    margin-bottom: 15px;
    flex-grow: 1;
    padding: 0 15px;
}

.page-game-bai__faq-list {
    margin-top: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-game-bai__faq-item {
    background-color: #10233F; /* Card BG */
    border: 1px solid #244D84; /* Border */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-game-bai__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 1.15em;
    font-weight: 600;
    color: #F3F8FF; /* Text Main */
    cursor: pointer;
    list-style: none;
    position: relative;
}

.page-game-bai__faq-question::-webkit-details-marker {
    display: none;
}

.page-game-bai__faq-qtext {
    flex-grow: 1;
}

.page-game-bai__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    color: #F2C14E; /* Gold */
}

.page-game-bai__faq-answer {
    padding: 0 25px 20px;
    font-size: 1em;
    color: #AFC4E8; /* Text Secondary */
    line-height: 1.7;
}

.page-game-bai__faq-answer p {
    margin: 0;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .page-game-bai__container {
        padding: 15px;
    }

    .page-game-bai__hero-section {
        padding-top: 10px !important;
        padding-bottom: 30px;
    }

    .page-game-bai__hero-container {
        flex-direction: column;
        padding: 20px 15px;
        gap: 20px;
    }

    .page-game-bai__hero-content,
    .page-game-bai__hero-image {
        flex: 1 1 100%;
        min-width: unset;
    }

    .page-game-bai__main-title {
        font-size: 2.2em;
        text-align: center;
    }

    .page-game-bai__description {
        font-size: 1em;
        text-align: center;
    }

    .page-game-bai__cta-buttons {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0 15px;
    }

    .page-game-bai__btn-primary,
    .page-game-bai__btn-secondary,
    .page-game-bai__btn-link,
    .page-game-bai a[class*="button"],
    .page-game-bai a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-game-bai__hero-main-img,
    .page-game-bai__game-card-img,
    .page-game-bai__promo-card-img,
    .page-game-bai img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block;
    }

    .page-game-bai__section-title {
        font-size: 1.8em;
        margin-bottom: 20px;
        padding-top: 15px;
    }

    .page-game-bai__text-block {
        font-size: 0.95em;
        text-align: left;
    }

    .page-game-bai__game-types-section,
    .page-game-bai__why-choose-section,
    .page-game-bai__guide-section,
    .page-game-bai__promo-section,
    .page-game-bai__faq-section,
    .page-game-bai__contact-cta-section {
        padding: 40px 0;
    }

    .page-game-bai__game-cards-grid,
    .page-game-bai__features-grid,
    .page-game-bai__guide-steps,
    .page-game-bai__promo-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-game-bai__game-card,
    .page-game-bai__feature-item,
    .page-game-bai__guide-step,
    .page-game-bai__promo-card {
        padding: 20px;
    }

    .page-game-bai__game-card-img,
    .page-game-bai__promo-card-img {
         /* Adjust height for mobile */
    }

    .page-game-bai__step-number {
        width: 35px;
        height: 35px;
        font-size: 1.1em;
        top: 15px;
    }

    .page-game-bai__faq-question {
        font-size: 1em;
        padding: 15px 20px;
    }

    .page-game-bai__faq-toggle {
        font-size: 1.3em;
    }

    .page-game-bai__faq-answer {
        padding: 0 20px 15px;
        font-size: 0.95em;
    }

    .page-game-bai__cta-center {
        padding: 0 15px;
    }
}