.page-online-poker {
    background-color: #0A0A0A;
    color: #FFF6D6;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-online-poker__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px; /* Small top padding to respect header offset */
    background-color: #111111;
    overflow: hidden;
}

.page-online-poker__hero-image-wrapper {
    width: 100%;
    max-height: 500px; /* Limit height for hero image */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-online-poker__hero-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.page-online-poker__hero-content {
    text-align: center;
    padding: 2rem;
    max-width: 900px;
    margin: 0 auto;
    z-index: 1;
    position: relative; /* Ensure content is above the image but not overlapping in document flow */
}

.page-online-poker__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: #F2C14E;
    margin-bottom: 1rem;
    font-weight: bold;
    line-height: 1.2;
}

.page-online-poker__hero-description {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #FFD36B;
}

.page-online-poker__hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.page-online-poker__button {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
}

.page-online-poker__button--primary {
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #111111;
    border: none;
}

.page-online-poker__button--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(242, 193, 78, 0.4);
}

.page-online-poker__button--secondary {
    background-color: transparent;
    color: #F2C14E;
    border: 2px solid #F2C14E;
}

.page-online-poker__button--secondary:hover {
    transform: translateY(-2px);
    background-color: rgba(242, 193, 78, 0.1);
}

.page-online-poker__section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #0A0A0A;
    border-bottom: 1px solid #3A2A12;
}

.page-online-poker__section-title {
    font-size: 2.5rem;
    color: #F2C14E;
    text-align: center;
    margin-bottom: 2.5rem;
}

.page-online-poker__section-description {
    font-size: 1.1rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem auto;
    color: #FFF6D6;
}

.page-online-poker__content-wrapper {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 2rem;
}

.page-online-poker__content-wrapper--reverse {
    flex-direction: row-reverse;
}

.page-online-poker__text-content {
    flex: 1;
    padding: 1.5rem;
    background-color: #111111;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    color: #FFF6D6;
}

.page-online-poker__text-content p {
    margin-bottom: 1rem;
}

.page-online-poker__feature-list {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.page-online-poker__feature-item {
    background-color: #1A1A1A;
    padding: 0.8rem 1.2rem;
    margin-bottom: 0.7rem;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #FFF6D6;
    border-left: 3px solid #F2C14E;
}

.page-online-poker__feature-item::before {
    content: '✅';
    font-size: 1.2rem;
}

.page-online-poker__image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 200px; /* Ensure minimum size */
}

.page-online-poker__feature-image, .page-online-poker__experience-image, .page-online-poker__security-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    min-width: 200px;
    min-height: 200px;
    object-fit: cover;
}

.page-online-poker__button--text {
    background-color: transparent;
    color: #FFD36B;
    border: 1px solid #FFD36B;
    padding: 0.8rem 1.5rem;
    margin-top: 1.5rem;
    display: inline-block;
    border-radius: 5px;
}

.page-online-poker__button--text:hover {
    background-color: rgba(255, 211, 107, 0.1);
}

.page-online-poker__game-varieties .page-online-poker__content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.page-online-poker__game-card {
    background-color: #111111;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-online-poker__game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(242, 193, 78, 0.2);
}

.page-online-poker__game-card-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
    min-width: 200px;
    min-height: 200px;
}

.page-online-poker__game-card-title {
    font-size: 1.8rem;
    color: #F2C14E;
    margin-bottom: 0.8rem;
}

.page-online-poker__game-card-description {
    font-size: 1rem;
    color: #FFF6D6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.page-online-poker__button--small {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #111111;
    border: none;
}

.page-online-poker__button--small:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(242, 193, 78, 0.3);
}

.page-online-poker__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.page-online-poker__step-card {
    background-color: #111111;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #3A2A12;
}

.page-online-poker__step-title {
    font-size: 1.7rem;
    color: #FFD36B;
    margin-bottom: 1rem;
}

.page-online-poker__step-description {
    font-size: 1rem;
    color: #FFF6D6;
    margin-bottom: 1.5rem;
}

.page-online-poker__faq-item {
    background-color: #111111;
    border: 1px solid #3A2A12;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.2rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-online-poker__faq-question {
    font-size: 1.3rem;
    color: #F2C14E;
    margin-bottom: 0.8rem;
}

.page-online-poker__faq-answer {
    font-size: 1rem;
    color: #FFF6D6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-online-poker__hero-content {
        padding: 1.5rem;
    }

    .page-online-poker__main-title {
        font-size: 2.2rem;
    }

    .page-online-poker__hero-description {
        font-size: 1rem;
    }

    .page-online-poker__hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .page-online-poker__button {
        width: 100%;
    }

    .page-online-poker__section {
        padding: 3rem 1rem;
    }

    .page-online-poker__section-title {
        font-size: 2rem;
    }

    .page-online-poker__content-wrapper {
        flex-direction: column;
        gap: 2rem;
    }

    .page-online-poker__content-wrapper--reverse {
        flex-direction: column; /* Stacks vertically even when reversed */
    }

    .page-online-poker__text-content, .page-online-poker__image-container {
        width: 100%;
    }

    .page-online-poker__game-varieties .page-online-poker__content-grid,
    .page-online-poker__steps-grid {
        grid-template-columns: 1fr;
    }

    .page-online-poker__feature-image, .page-online-poker__experience-image, .page-online-poker__security-image, .page-online-poker__game-card-image {
        max-width: 100%;
        height: auto;
        min-width: 200px;
        min-height: 200px;
    }
}

/* Ensure all content area images are at least 200px wide on mobile */
@media (max-width: 768px) {
    .page-online-poker img {
        max-width: 100% !important;
        height: auto !important;
        min-width: 200px !important;
        min-height: 200px !important;
    }
    .page-online-poker__game-card-image {
        height: auto; /* Allow height to adjust for mobile */
    }
}

/* Ensure content area images are at least 200px wide on desktop */
.page-online-poker__hero-image, .page-online-poker__feature-image, .page-online-poker__experience-image, .page-online-poker__security-image, .page-online-poker__game-card-image {
    min-width: 200px;
    min-height: 200px;
}

/* Content area images specific CSS (not shared header/footer) */
.page-online-poker img {
    /* Ensure display sizes are not smaller than 200px for content images */
    /* This rule applies to all img tags within .page-online-poker */
    /* If a specific img needs smaller display, it must be explicitly overridden and justified */
    /* Example: width: 200px;  or max-width: 300px; height: auto; */
}