.page-poker {
    color: #333333;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: var(--header-offset, 120px);
}

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

.page-poker__hero-section {
    position: relative;
    overflow: hidden;
    color: #ffffff;
    text-align: center;
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px; /* Ensure hero section has a minimum height */
}

.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: 1;
    max-width: 900px;
    background: rgba(0, 0, 0, 0.6);
    padding: 40px;
    border-radius: 10px;
}

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

.page-poker__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

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

.page-poker__button {
    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;
    text-align: center;
    white-space: nowrap;
}

.page-poker__button--primary {
    background-color: #FFD700;
    color: #1a1a1a; /* Darker text for contrast on gold */
    border: 2px solid #FFD700;
}

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

.page-poker__button--secondary {
    background-color: #1E90FF;
    color: #ffffff;
    border: 2px solid #1E90FF;
}

.page-poker__button--secondary:hover {
    background-color: #1a7ae0;
    transform: translateY(-2px);
}

.page-poker__button--small {
    padding: 10px 20px;
    font-size: 1em;
    border-radius: 6px;
}

.page-poker__section-title {
    font-size: 2.5em;
    color: #333333;
    text-align: center;
    margin-bottom: 20px;
    margin-top: 60px;
    position: relative;
}

.page-poker__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    margin: 10px auto 0;
    border-radius: 2px;
}

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

.page-poker__why-choose-section,
.page-poker__game-variants-section,
.page-poker__tournaments-section,
.page-poker__strategy-section,
.page-poker__promotions-section,
.page-poker__responsible-gaming-section,
.page-poker__faq-section,
.page-poker__cta-section {
    padding: 60px 0;
}

.page-poker__why-choose-section {
    background-color: #f9f9f9;
}

.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: #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;
}

.page-poker__feature-card:hover {
    transform: translateY(-10px);
}

.page-poker__feature-icon {
    width: 200px; /* Minimum size requirement */
    height: auto;
    margin-bottom: 20px;
    max-width: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.page-poker__feature-title {
    font-size: 1.5em;
    color: #1E90FF;
    margin-bottom: 15px;
}

.page-poker__feature-text {
    color: #666666;
    font-size: 0.95em;
}

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

.page-poker__game-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease;
}

.page-poker__game-card:hover {
    transform: translateY(-10px);
}

.page-poker__game-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.page-poker__game-title {
    font-size: 1.8em;
    color: #333333;
    margin: 20px 0 10px;
}

.page-poker__game-description {
    color: #666666;
    padding: 0 20px 20px;
    font-size: 0.95em;
}

.page-poker__game-card .page-poker__button {
    margin-bottom: 20px;
}

.page-poker__tournaments-section {
    background-color: #f0f8ff;
}

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

.page-poker__tournament-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;
}

.page-poker__tournament-card:hover {
    transform: translateY(-10px);
}

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

.page-poker__tournament-text {
    color: #666666;
    font-size: 0.95em;
    margin-bottom: 20px;
}

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

.page-poker__strategy-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;
}

.page-poker__strategy-card:hover {
    transform: translateY(-10px);
}

.page-poker__strategy-title {
    font-size: 1.6em;
    color: #1E90FF;
    margin-bottom: 15px;
}

.page-poker__strategy-text {
    color: #666666;
    font-size: 0.95em;
    margin-bottom: 20px;
}

.page-poker__strategy-cta {
    text-align: center;
    margin-top: 50px;
}

.page-poker__promotions-section {
    background-color: #f9f9f9;
}

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

.page-poker__promo-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease;
}

.page-poker__promo-card:hover {
    transform: translateY(-10px);
}

.page-poker__promo-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.page-poker__promo-title {
    font-size: 1.8em;
    color: #333333;
    margin: 20px 0 10px;
}

.page-poker__promo-text {
    color: #666666;
    padding: 0 20px 20px;
    font-size: 0.95em;
}

.page-poker__promo-card .page-poker__button {
    margin-bottom: 20px;
}

.page-poker__responsible-gaming-section {
    background-color: #e6f7ff;
}

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

.page-poker__responsible-gaming-item {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    text-align: center;
}

.page-poker__responsible-gaming-title {
    font-size: 1.5em;
    color: #1E90FF;
    margin-bottom: 15px;
}

.page-poker__responsible-gaming-text {
    color: #666666;
    font-size: 0.95em;
}

.page-poker__responsible-gaming-cta {
    text-align: center;
    margin-top: 50px;
}

.page-poker__faq-section {
    background-color: #ffffff;
}

.page-poker__faq-list {
    margin-top: 40px;
}

.page-poker__faq-item {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-poker__faq-question {
    font-size: 1.3em;
    color: #333333;
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.page-poker__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-poker__faq-answer {
    color: #666666;
    font-size: 1em;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding-top: 0;
}

.page-poker__faq-answer.active {
    max-height: 200px; /* Adjust as needed */
    padding-top: 15px;
}

.page-poker__faq-cta {
    text-align: center;
    margin-top: 50px;
}

.page-poker__cta-section {
    background-color: #1E90FF;
    color: #ffffff;
    text-align: center;
    padding: 80px 0;
}

.page-poker__cta-section .page-poker__section-title,
.page-poker__cta-section .page-poker__section-intro {
    color: #ffffff;
}

.page-poker__cta-section .page-poker__section-title::after {
    background-color: #FFD700;
}

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

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-poker__hero-title {
        font-size: 3em;
    }
    .page-poker__hero-description {
        font-size: 1.2em;
    }
    .page-poker__section-title {
        font-size: 2em;
    }
    .page-poker__section-intro {
        font-size: 1em;
    }
}

@media (max-width: 768px) {
    .page-poker {
        padding-top: var(--header-offset, 80px);
    }
    .page-poker__hero-section {
        padding: 60px 0;
        min-height: 400px;
    }
    .page-poker__hero-content {
        padding: 30px;
    }
    .page-poker__hero-title {
        font-size: 2.2em;
    }
    .page-poker__hero-description {
        font-size: 1em;
    }
    .page-poker__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-poker__button {
        width: 80%;
        margin: 0 auto;
    }
    .page-poker__section-title {
        font-size: 1.8em;
        margin-top: 40px;
    }
    .page-poker__section-intro {
        font-size: 0.9em;
        margin-bottom: 30px;
    }
    .page-poker__features-grid,
    .page-poker__game-cards-grid,
    .page-poker__tournament-info,
    .page-poker__strategy-content,
    .page-poker__promo-grid,
    .page-poker__responsible-gaming-grid {
        grid-template-columns: 1fr;
    }
    .page-poker__container {
        padding: 0 15px;
    }

    /* Ensure all content images in .page-poker are responsive and don't overflow */
    .page-poker img {
        max-width: 100%;
        height: auto;
    }

    /* Specific override for feature-icon and game-image to maintain minimum size if needed, but ensure max-width: 100% applies */
    .page-poker__feature-icon,
    .page-poker__game-image,
    .page-poker__promo-image {
        min-width: 200px; /* Enforce minimum size for display */
        min-height: 150px; /* Adjust height as needed, ensuring it's not too small */
        max-width: 100%; /* Ensure responsiveness */
        height: auto; /* Maintain aspect ratio */
    }

    .page-poker__cta-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .page-poker__hero-title {
        font-size: 1.8em;
    }
    .page-poker__hero-description {
        font-size: 0.9em;
    }
    .page-poker__button {
        width: 95%;
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-poker__section-title {
        font-size: 1.6em;
    }
    .page-poker__faq-question {
        font-size: 1.1em;
    }
    .page-poker__faq-answer {
        font-size: 0.9em;
    }
}