.page-poker {
    color: #333333; /* Dark text for light body background */
    padding-top: var(--header-offset, 120px); /* Ensure space for fixed header, applies to the whole page content */
}

.page-poker__hero-section {
    position: relative;
    width: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0; /* Handled by .page-poker, no additional padding-top here */
}

.page-poker__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.page-poker__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #FFFFFF; /* Light text over hero image */
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for readability */
    padding: 40px;
    border-radius: 10px;
    max-width: 900px;
    margin: 20px;
}