/* style/poker.css */

/* Base styles for the poker page */
.page-poker {
    font-family: 'Arial', sans-serif;
    color: #333333; /* Dark text for light body background */
    line-height: 1.6;
    padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
}

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

.page-poker__section-title {
    font-size: 2.5em;
    color: #007BFF; /* Primary color */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-poker__section-title--light {
    color: #ffffff; /* Light text for dark backgrounds */
}

.page-poker__section-text {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 30px auto;
}

.page-poker__section-text--light {
    color: #f0f0f0; /* Light text for dark backgrounds */
}

/* CTA Buttons */
.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.3s ease;
    text-align: center;
    white-space: nowrap;
    cursor: pointer;
}

.page-poker__cta-button--primary {
    background-color: #007BFF; /* Primary color */
    color: #ffffff;
    border: 2px solid #007BFF;
}

.page-poker__cta-button--primary:hover {
    background-color: #0056b3; /* Darker primary */
    border-color: #0056b3;
    transform: translateY(-2px);
}

.page-poker__cta-button--secondary {
    background-color: transparent;
    color: #007BFF; /* Primary color */
    border: 2px solid #007BFF;
    margin-left: 20px;
}

.page-poker__cta-button--secondary:hover {
    background-color: #007BFF;
    color: #ffffff;
    transform: translateY(-2px);
}

.page-poker__cta-button--small {
    padding: 10px 20px;
    font-size: 0.9em;
    border-radius: 5px;
    margin-top: 15px;
    margin-left: 0; /* Override margin-left for small buttons */
}

.page-poker__cta-button--large {
    padding: 20px 40px;
    font-size: 1.3em;
    border-radius: 10px;
}


/* Hero Section */
.page-poker__hero-section {
    position: relative;
    overflow: hidden;
    padding: 80px 20px 60px; 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa; /* Light background for hero section */
}

.page-poker__hero-image {
    width: 100%;
    height: auto;
    display: block;
    max-width: 100%; /* Ensure image is responsive */
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    margin-top: 40px;
    min-width: 200px; /* Enforce min image size */
    min-height: 200px; /* Enforce min image size */
}

.page-poker__hero-content {
    text-align: center;
    max-width: 900px;
    z-index: 1;
}

.page-poker__hero-title {
    font-size: 3.5em;
    color: #007BFF; /* Primary color */
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 800;
}

.page-poker__hero-description {
    font-size: 1.4em;
    color: #555555;
    margin-bottom: 40px;
}

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

/* Introduction Section */
.page-poker__introduction-section {
    padding: 80px 0;
    background-color: #ffffff;
}

/* Games Section */
.page-poker__games-section {
    padding: 80px 0;
    background-color: #f0f8ff; /* Light blue background */
}

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

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

.page-poker__game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-poker__game-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    min-width: 200px; /* Enforce min image size */
    min-height: 200px; /* Enforce min image size */
}

.page-poker__game-title {
    font-size: 1.8em;
    color: #007BFF;
    margin-bottom: 15px;
}

.page-poker__game-description {
    font-size: 1em;
    color: #555555;
    margin-bottom: 20px;
}

/* Features Section */
.page-poker__features-section {
    padding: 80px 0;
    background-color: #007BFF; /* Primary color background */
    color: #ffffff;
}

.page-poker__features-section--primary-bg {
    background-color: #007BFF;
    color: #ffffff;
}

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

.page-poker__feature-item {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-poker__feature-title {
    font-size: 1.6em;
    color: #FFC107; /* Secondary color */
    margin-bottom: 15px;
}

.page-poker__feature-description {
    font-size: 1em;
    color: #f0f0f0;
}

/* Get Started Section */
.page-poker__get-started-section {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.page-poker__step-card {
    background-color: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    padding: 30px;
    text-align: center;
    border-top: 5px solid #007BFF;
}

.page-poker__step-title {
    font-size: 1.8em;
    color: #007BFF;
    margin-bottom: 15px;
}

.page-poker__step-description {
    font-size: 1em;
    color: #555555;
    margin-bottom: 20px;
}

/* Tournaments Section */
.page-poker__tournaments-section {
    padding: 80px 0;
    background-color: #FFC107; /* Secondary color background */
    color: #333333;
}

.page-poker__tournaments-section--secondary-bg {
    background-color: #FFC107;
    color: #333333;
}

.page-poker__tournament-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    min-width: 200px; /* Enforce min image size */
    min-height: 200px; /* Enforce min image size */
}

/* Mobile Section */
.page-poker__mobile-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.page-poker__mobile-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    min-width: 200px; /* Enforce min image size */
    min-height: 200px; /* Enforce min image size */
}

/* Security Section */
.page-poker__security-section {
    padding: 80px 0;
    background-color: #007BFF; /* Primary color background */
    color: #ffffff;
}

/* Bonuses Section */
.page-poker__bonuses-section {
    padding: 80px 0;
    background-color: #f0f8ff; /* Light blue background */
}

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

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

.page-poker__bonus-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-poker__bonus-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    min-width: 200px; /* Enforce min image size */
    min-height: 200px; /* Enforce min image size */
}

.page-poker__bonus-title {
    font-size: 1.8em;
    color: #007BFF;
    margin-bottom: 15px;
}

.page-poker__bonus-description {
    font-size: 1em;
    color: #555555;
    margin-bottom: 20px;
}

/* Support Section */
.page-poker__support-section {
    padding: 80px 0;
    background-color: #FFC107; /* Secondary color background */
    color: #333333;
}

.page-poker__support-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    text-align: center;
}

.page-poker__support-item {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #333333;
}

.page-poker__support-item strong {
    color: #007BFF; /* Primary color for emphasis */
}

/* Responsible Gaming Section */
.page-poker__responsible-gaming-section {
    padding: 80px 0;
    background-color: #ffffff;
}

/* FAQ Section */
.page-poker__faq-section {
    padding: 80px 0;
    background-color: #f0f8ff; /* Light blue background */
}

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

.page-poker__faq-item {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 25px 30px;
    margin-bottom: 20px;
    border-left: 5px solid #FFC107; /* Secondary color accent */
}

.page-poker__faq-question {
    font-size: 1.4em;
    color: #007BFF;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-poker__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

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

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

.page-poker__faq-answer.active {
    max-height: 200px; /* Max height for showing content */
    padding-top: 15px;
}

/* Final CTA Section */
.page-poker__final-cta-section {
    padding: 80px 0;
    background-color: #007BFF; /* Primary color background */
    color: #ffffff;
    text-align: center;
}

.page-poker__final-cta-section--alt-bg {
    background-color: #007BFF;
    color: #ffffff;
}

.page-poker__final-cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-poker__hero-title {
        font-size: 2.8em;
    }
    .page-poker__section-title {
        font-size: 2em;
    }
    .page-poker__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
}

@media (max-width: 768px) {
    .page-poker__hero-section {
        padding: 60px 15px 40px;
    }
    .page-poker__hero-title {
        font-size: 2.2em;
    }
    .page-poker__hero-description {
        font-size: 1.2em;
    }
    .page-poker__hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-poker__cta-button--secondary {
        margin-left: 0;
    }
    .page-poker__section-title {
        font-size: 1.8em;
    }
    .page-poker__section-text {
        font-size: 1em;
    }
    .page-poker__games-grid,
    .page-poker__features-grid,
    .page-poker__steps-grid,
    .page-poker__bonuses-grid {
        grid-template-columns: 1fr;
    }
    /* Mobile content area images must be responsive and not cause overflow */
    .page-poker img {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Still enforce min image size */
        min-height: 200px; /* Still enforce min image size */
    }
    .page-poker__faq-question {
        font-size: 1.2em;
    }
    .page-poker__cta-button--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-poker__hero-title {
        font-size: 1.8em;
    }
    .page-poker__hero-description {
        font-size: 1em;
    }
    .page-poker__section-title {
        font-size: 1.5em;
    }
    .page-poker__cta-button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}