/* style/poker.css */
.page-poker {
    color: #333333; /* Dark text for light body background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
}

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

.page-poker__hero-section {
    position: relative;
    overflow: hidden;
    padding: 0;
    text-align: center;
    background-color: #000000; /* Dark background for hero content */
    color: #FFFFFF;
}

.page-poker__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    filter: brightness(0.6); /* Darken image slightly for text readability */
}

.page-poker__hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    max-width: 900px;
    padding: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-poker__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #FFFFFF;
}

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

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

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

.page-poker__button--register {
    background-color: #FFFFFF;
    color: #000000;
    border: 2px solid #FFFFFF;
}

.page-poker__button--register:hover {
    background-color: #e0e0e0;
    color: #000000;
}

.page-poker__button--login {
    background-color: #FCBC45;
    color: #000000;
    border: 2px solid #FCBC45;
}

.page-poker__button--login:hover {
    background-color: #e0a33b;
    color: #000000;
}

.page-poker__section-title {
    font-size: 2.5em;
    color: #000000;
    text-align: center;
    margin-bottom: 20px;
    padding-top: 40px;
}

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

.page-poker__about-section, .page-poker__games-section, .page-poker__tournaments-section, .page-poker__promotions-section, .page-poker__mobile-section, .page-poker__responsible-gaming-section, .page-poker__faq-section, .page-poker__cta-section {
    padding: 60px 0;
    background-color: #FFFFFF;
}

.page-poker__about-section {
    background-color: #f8f8f8;
}

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

.page-poker__feature-card, .page-poker__game-card, .page-poker__promo-card {
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-poker__feature-title, .page-poker__game-title, .page-poker__promo-title {
    font-size: 1.8em;
    color: #000000;
    margin-bottom: 15px;
}

.page-poker__feature-description, .page-poker__game-description, .page-poker__promo-description {
    font-size: 1em;
    color: #666666;
}

.page-poker__game-image, .page-poker__promo-image {
    width: 100%;
    height: auto;
    max-height: 300px; /* Ensure images are not too tall */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-poker__button--play, .page-poker__button--claim, .page-poker__button--learn-more {
    background-color: #FCBC45;
    color: #000000;
    border: 2px solid #FCBC45;
    margin-top: 20px;
    padding: 10px 25px;
    font-size: 1em;
}

.page-poker__button--play:hover, .page-poker__button--claim:hover, .page-poker__button--learn-more:hover {
    background-color: #e0a33b;
    color: #000000;
}

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

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

.page-poker__highlight-item {
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 25px;
    text-align: center;
}

.page-poker__highlight-title {
    font-size: 1.6em;
    color: #000000;
    margin-bottom: 10px;
}

.page-poker__highlight-description {
    font-size: 0.95em;
    color: #666666;
}

.page-poker__button--view-schedule {
    background-color: #000000;
    color: #FFFFFF;
    border: 2px solid #000000;
    margin-top: 50px;
}

.page-poker__button--view-schedule:hover {
    background-color: #333333;
    color: #FFFFFF;
}

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

.page-poker__mobile-content {
    flex: 1;
}

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

.page-poker__mobile-image {
    width: 100%;
    height: auto;
    max-width: 600px; /* Constrain image size */
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-poker__mobile-features {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    text-align: left;
}

.page-poker__mobile-features li {
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #333333;
    position: relative;
    padding-left: 30px;
}

.page-poker__mobile-features li::before {
    content: '✓';
    color: #FCBC45;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.page-poker__strong-text {
    color: #000000;
}

.page-poker__button--download {
    background-color: #FCBC45;
    color: #000000;
    border: 2px solid #FCBC45;
    margin-top: 40px;
}

.page-poker__button--download:hover {
    background-color: #e0a33b;
    color: #000000;
}

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

.page-poker__paragraph {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 20px auto;
    color: #555555;
}

.page-poker__button--learn-responsible {
    background-color: #000000;
    color: #FFFFFF;
    border: 2px solid #000000;
    margin-top: 30px;
}

.page-poker__button--learn-responsible:hover {
    background-color: #333333;
    color: #FFFFFF;
}

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

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

.page-poker__faq-question {
    font-size: 1.4em;
    color: #000000;
    margin-bottom: 10px;
}

.page-poker__faq-answer {
    font-size: 1em;
    color: #666666;
}

.page-poker__cta-section {
    background-color: #000000;
    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__button--final-cta {
    background-color: #FCBC45;
    color: #000000;
    border: 2px solid #FCBC45;
    font-size: 1.3em;
    padding: 18px 40px;
    margin-top: 40px;
}

.page-poker__button--final-cta:hover {
    background-color: #e0a33b;
    color: #000000;
}

/* 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: 2em;
    }
    .page-poker__mobile-flex {
        flex-direction: column;
        gap: 30px;
    }
    .page-poker__mobile-content, .page-poker__mobile-image-wrapper {
        flex: none;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .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;
    }
    .page-poker__section-intro {
        font-size: 0.95em;
        margin-bottom: 30px;
    }
    .page-poker__features-grid, .page-poker__game-cards-grid, .page-poker__promo-grid, .page-poker__tournament-highlights {
        grid-template-columns: 1fr;
    }
    /* Mobile image constraint */
    .page-poker img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-poker__hero-title {
        font-size: 1.8em;
    }
    .page-poker__hero-description {
        font-size: 0.9em;
    }
    .page-poker__button {
        width: 90%;
    }
    .page-poker__section-title {
        font-size: 1.5em;
    }
    .page-poker__feature-title, .page-poker__game-title, .page-poker__promo-title {
        font-size: 1.4em;
    }
    .page-poker__faq-question {
        font-size: 1.2em;
    }
    .page-poker__button--final-cta {
        font-size: 1.1em;
        padding: 15px 30px;
    }
}