.page-poker {
    color: #f0f0f0; /* Light text for dark backgrounds */
    background-color: #1A202C; /* Main brand dark background */
    padding-top: var(--header-offset, 120px); /* Ensure content clears fixed header */
}

.page-poker__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-poker__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    overflow: hidden;
    background-color: #1A202C; /* Dark background for hero */
}

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

.page-poker__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.page-poker__hero-title {
    font-size: 3.5em;
    color: #FFD700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-poker__hero-description {
    font-size: 1.3em;
    color: #e0e0e0;
    margin-bottom: 40px;
    line-height: 1.6;
}

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

.page-poker__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
}

.page-poker__cta-button--primary {
    background-color: #FFD700;
    color: #1A202C;
    border: 2px solid #FFD700;
}

.page-poker__cta-button--primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-poker__cta-button--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-poker__cta-button--secondary:hover {
    background-color: #FFD700;
    color: #1A202C;
    transform: translateY(-2px);
}

.page-poker__section-title {
    font-size: 2.8em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-poker__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-poker__text-content {
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #e0e0e0;
    text-align: justify;
}

.page-poker__about-section,
.page-poker__features-section,
.page-poker__how-to-play-section,
.page-poker__tournaments-section,
.page-poker__responsible-gaming-section,
.page-poker__faq-section,
.page-poker__cta-final-section {
    padding: 60px 0;
    background-color: #1A202C; /* Ensure sections maintain dark background */
}

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

.page-poker__feature-card {
    background-color: #2a313e; /* Slightly lighter dark for cards */
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-poker__feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.6);
}

.page-poker__feature-icon {
    width: 250px;
    height: 187px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 8px;
}

.page-poker__feature-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-poker__feature-description {
    font-size: 1em;
    line-height: 1.6;
    color: #c0c0c0;
}

.page-poker__steps-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-poker__step-item {
    background-color: #2a313e;
    border-left: 5px solid #FFD700;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.page-poker__step-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-poker__step-description {
    font-size: 1.1em;
    line-height: 1.6;
    color: #e0e0e0;
}

.page-poker__tournament-image {
    width: 100%;
    height: auto;
    max-width: 800px;
    display: block;
    margin: 40px auto 30px auto;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
}

.page-poker__tournament-highlights {
    list-style: disc inside;
    margin-top: 20px;
    padding-left: 20px;
    color: #e0e0e0;
}

.page-poker__highlight-item {
    font-size: 1.1em;
    margin-bottom: 10px;
    line-height: 1.6;
}

.page-poker__faq-item {
    background-color: #2a313e;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.page-poker__faq-question {
    font-size: 1.5em;
    color: #FFD700;
    padding: 20px 25px;
    cursor: pointer;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-poker__faq-question::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-poker__faq-item.active .page-poker__faq-question::after {
    transform: rotate(45deg);
}

.page-poker__faq-answer {
    padding: 0 25px;
    font-size: 1.1em;
    line-height: 1.7;
    color: #c0c0c0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-poker__faq-item.active .page-poker__faq-answer {
    max-height: 200px; /* Adjust based on content */
    padding: 15px 25px 25px;
}

.page-poker__cta-final-section {
    text-align: center;
    padding: 80px 20px;
    background-color: #1A202C;
}

.page-poker__cta-final-section .page-poker__text-content {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-poker__hero-title {
        font-size: 2.8em;
    }
    .page-poker__hero-description {
        font-size: 1.1em;
    }
    .page-poker__section-title {
        font-size: 2.2em;
    }
    .page-poker__feature-icon {
        width: 200px;
        height: 150px;
    }
}

@media (max-width: 768px) {
    .page-poker {
        padding-top: var(--header-offset, 120px); /* Ensure content clears fixed header on mobile */
    }
    .page-poker__hero-section {
        padding: 60px 20px;
    }
    .page-poker__hero-title {
        font-size: 2.2em;
    }
    .page-poker__hero-description {
        font-size: 1em;
    }
    .page-poker__cta-group {
        flex-direction: column;
        gap: 15px;
    }
    .page-poker__cta-button {
        width: 100%;
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-poker__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-poker__text-content {
        font-size: 0.95em;
    }
    .page-poker__feature-card {
        padding: 20px;
    }
    .page-poker__feature-icon {
        width: 200px; /* Minimum size for content images */
        height: 150px;
    }
    .page-poker__feature-title {
        font-size: 1.4em;
    }
    .page-poker__step-item {
        padding: 20px;
    }
    .page-poker__step-title {
        font-size: 1.5em;
    }
    .page-poker__faq-question {
        font-size: 1.2em;
        padding: 15px 20px;
    }
    .page-poker__faq-answer {
        font-size: 1em;
        padding: 0 20px;
    }
    .page-poker__faq-item.active .page-poker__faq-answer {
        padding: 10px 20px 20px;
    }

    /* Prevent horizontal overflow for images in content area */
    .page-poker img {
        max-width: 100%;
        height: auto;
    }
    .page-poker__tournament-image {
        max-width: 100%;
        height: auto;
    }
    .page-poker__feature-icon {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Enforce minimum size even with max-width */
        min-height: 150px;
        object-fit: contain;
    }
}

@media (max-width: 480px) {
    .page-poker__hero-title {
        font-size: 1.8em;
    }
    .page-poker__section-title {
        font-size: 1.6em;
    }
    .page-poker__feature-icon {
        width: 200px;
        height: 150px;
    }
}

/* Ensure all images within .page-poker maintain minimum size or are responsive */
.page-poker img {
    min-width: 200px; /* Global minimum width for content images */
    min- /* Global minimum height for content images, adjusted for aspect ratio */
    object-fit: cover; /* or contain, depending on context */
}

/* Specific overrides for small images if any are needed (though prohibited for content) */
/* If any small images were allowed (e.g., icons in a shared header/footer, not in main content), they would be handled here. */
/* However, per instructions, all content images must be >= 200x200px. */