.page-poker {
    padding-top: var(--header-offset, 120px); /* Ensures content starts below fixed header */
    font-family: Arial, sans-serif;
    color: #333333; /* Dark text for default white body background */
    line-height: 1.6;
    background-color: #f5f5f5; /* Light background for the page content */
}

.page-poker__section-title {
    font-size: 2.5em;
    color: #003366; /* Deep blue for titles */
    text-align: center;
    margin-bottom: 20px;
    padding-top: 40px;
}

.page-poker__section-intro {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
    color: #555555;
}

/* Hero Section */
.page-poker__hero-section {
    background: linear-gradient(135deg, #003366, #001a33); /* Deep blue gradient background */
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden; /* Ensure image doesn't overflow */
}

.page-poker__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin-bottom: 40px;
}

.page-poker__hero-title {
    font-size: 3.5em;
    color: #FFCC00; /* Gold for hero title */
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-poker__hero-description {
    font-size: 1.4em;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

.page-poker__hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.page-poker__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-size: 1.1em;
    cursor: pointer;
}

.page-poker__btn--primary {
    background-color: #FFCC00; /* Gold for primary action */
    color: #003366; /* Deep blue text */
    border: 2px solid #FFCC00;
}

.page-poker__btn--primary:hover {
    background-color: #e6b800;
    transform: translateY(-3px);
}

.page-poker__btn--secondary {
    background-color: transparent;
    color: #FFCC00; /* Gold text */
    border: 2px solid #FFCC00;
}

.page-poker__btn--secondary:hover {
    background-color: #FFCC00;
    color: #003366;
    transform: translateY(-3px);
}

.page-poker__btn--small {
    padding: 10px 20px;
    font-size: 0.9em;
}

.page-poker__btn--large {
    padding: 18px 35px;
    font-size: 1.2em;
}

.page-poker__hero-image-wrapper {
    margin-top: 40px;
    width: 100%;
    max-width: 1200px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

/* General Content Area */
.page-poker__advantages-section,
.page-poker__getting-started-section,
.page-poker__strategy-section,
.page-poker__promotions-section,
.page-poker__mobile-section,
.page-poker__responsible-gaming-section,
.page-poker__cta-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* Grid Layouts */
.page-poker__advantages-grid,
.page-poker__steps-grid,
.page-poker__strategy-grid,
.page-poker__promotions-grid,
.page-poker__responsible-gaming-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Card Styles */
.page-poker__advantage-card,
.page-poker__step-card,
.page-poker__strategy-card,
.page-poker__promotion-card,
.page-poker__responsible-gaming-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-poker__advantage-card:hover,
.page-poker__step-card:hover,
.page-poker__strategy-card:hover,
.page-poker__promotion-card:hover,
.page-poker__responsible-gaming-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-poker__advantage-icon {
    width: 250px; /* Min 200px */
    height: 187px; /* Maintain aspect ratio for 400x300 */
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 8px;
    min-width: 200px;
    min-height: 150px;
}

.page-poker__advantage-title,
.page-poker__step-title,
.page-poker__strategy-title,
.page-poker__promotion-title,
.page-poker__responsible-gaming-title {
    font-size: 1.6em;
    color: #003366;
    margin-bottom: 15px;
}

.page-poker__advantage-description,
.page-poker__step-description,
.page-poker__promotion-description,
.page-poker__responsible-gaming-description {
    font-size: 1em;
    color: #666666;
    margin-bottom: 15px;
    flex-grow: 1; /* Ensures cards have equal height if content varies */
}

.page-poker__text-link {
    color: #003366;
    text-decoration: underline;
    font-weight: bold;
}

.page-poker__text-link:hover {
    color: #FFCC00;
}

.page-poker__strategy-list {
    text-align: left;
    list-style: none;
    padding-left: 0;
    margin-top: 15px;
}

.page-poker__strategy-list li {
    margin-bottom: 10px;
    color: #555555;
    position: relative;
    padding-left: 25px;
}

.page-poker__strategy-list li::before {
    content: '★'; /* Star bullet point */
    color: #FFCC00;
    position: absolute;
    left: 0;
    top: 0;
}

.page-poker__promotion-banner {
    width: 100%;
    height: auto;
    max-height: 450px; /* Fixed height for banner aspect ratio */
    object-fit: cover;
    border-radius: 10px;
    margin-top: 40px;
    margin-bottom: 50px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    min-width: 200px;
    min-height: 150px;
}

/* Mobile Section */
.page-poker__mobile-section {
    background-color: #f0f0f0;
}

.page-poker__mobile-content {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 50px;
}

.page-poker__mobile-content--reverse {
    flex-direction: row-reverse;
}

.page-poker__mobile-text {
    flex: 1;
    text-align: left;
}

.page-poker__mobile-subtitle {
    font-size: 2em;
    color: #003366;
    margin-bottom: 20px;
}

.page-poker__mobile-description {
    font-size: 1.1em;
    color: #666666;
    margin-bottom: 30px;
}

.page-poker__mobile-image-wrapper {
    flex: 1;
    text-align: center;
}

.page-poker__mobile-image {
    width: 300px; /* Min 200px */
    height: 225px; /* Maintain aspect ratio for 400x300 */
    max-width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    min-height: 150px;
}

/* CTA Section */
.page-poker__cta-section {
    text-align: center;
    background-color: #003366;
    color: #ffffff;
    padding: 80px 20px;
    border-radius: 10px;
    margin-bottom: 60px;
}

.page-poker__cta-section .page-poker__section-title {
    color: #FFCC00;
    margin-bottom: 20px;
}

.page-poker__cta-section .page-poker__section-intro {
    color: #e0e0e0;
    margin-bottom: 40px;
}

.page-poker__cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-poker__hero-title {
        font-size: 3em;
    }
    .page-poker__section-title {
        font-size: 2em;
    }
    .page-poker__mobile-content {
        flex-direction: column;
        text-align: center;
    }
    .page-poker__mobile-content--reverse {
        flex-direction: column;
    }
    .page-poker__mobile-text {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .page-poker {
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-poker__hero-title {
        font-size: 2.5em;
    }
    .page-poker__hero-description {
        font-size: 1.2em;
    }
    .page-poker__hero-actions {
        flex-direction: column;
    }
    .page-poker__btn {
        width: 100%;
        max-width: 300px;
    }
    .page-poker__section-title {
        font-size: 1.8em;
    }
    .page-poker__section-intro {
        font-size: 1em;
    }
    .page-poker__advantages-grid,
    .page-poker__steps-grid,
    .page-poker__strategy-grid,
    .page-poker__promotions-grid,
    .page-poker__responsible-gaming-grid {
        grid-template-columns: 1fr;
    }
    .page-poker__mobile-image {
        width: 250px; /* Min 200px */
        height: 187px; /* Maintain aspect ratio */
    }
    .page-poker__cta-actions {
        flex-direction: column;
    }
    /* Ensure content area images are responsive and not too small */
    .page-poker img {
        max-width: 100%;
        height: auto;
    }
    /* Critical: Ensure all images within .page-poker do not display smaller than 200px */
    .page-poker__advantage-icon,
    .page-poker__promotion-banner,
    .page-poker__mobile-image {
        min-width: 200px; /* Enforce minimum display size */
        min-height: 150px; /* Adjust min-height proportionally */
        width: auto; /* Allow auto width to scale with max-width: 100% */
    }
    .page-poker__hero-image-wrapper,
    .page-poker__promotion-banner {
        max-height: none; /* Allow image to scale down */
    }
}