.page-game-bai {
    font-family: 'Arial', sans-serif;
    color: #333333; /* Default text color for light body background */
    background-color: var(--background-color, #FFFFFF); /* Rely on shared for body background */
}

/* Hero Section */
.page-game-bai__hero-section {
    position: relative;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    padding-bottom: 40px;
    background: linear-gradient(135deg, #26A9E0, #4ABEE6);
    overflow: hidden;
}

.page-game-bai__hero-content-wrapper {
    display: flex;
    flex-direction: column; /* Default to column for mobile first approach */
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-game-bai__hero-image {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-game-bai__hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover; /* Default to cover for desktop */
    filter: none !important;
}

.page-game-bai__hero-text-area {
    text-align: center;
    max-width: 800px;
    color: #FFFFFF;
}

.page-game-bai__main-title {
    font-size: clamp(28px, 4vw, 48px); /* H1 font size with clamp */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #FFFFFF;
}

.page-game-bai__hero-description {
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-game-bai__cta-buttons {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping on small screens */
    gap: 15px;
    justify-content: center;
    width: 100%; /* Ensure container takes full width */
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 15px;
}