.page-poker {
    color: #333333; /* Dark text for light body background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-poker__hero-section {
    padding-top: var(--header-offset, 120px); /* Ensure space below fixed header */
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px; /* Minimum height for hero section */
    background-color: #000000; /* Dark background for hero content area */
}

.page-poker__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.6; /* Slightly dim the background image for text readability */
}

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

.page-poker__hero-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.page-poker__hero-content {
    text-align: center;
    color: #FFFFFF;
    max-width: 800px;
    padding: 20px;
    position: relative;
    z-index: 3;
}

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

.page-poker__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #f0f0f0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

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

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

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

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

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

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

.page-poker__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    background-color: #FFFFFF;
}

.page-poker__section-title {
    font-size: 2.5em;
    color: #000000;
    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: #FCBC45;
    border-radius: 2px;
}

.page-poker__section-paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #333333;
    text-align: justify;
}

.page-poker__section-paragraph a {
    color: #FCBC45;
    text-decoration: none;
}

.page-poker__section-paragraph a:hover {
    text-decoration: underline;
}

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

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

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

.page-poker__game-card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-bottom: 1px solid #eee;
}

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

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

.page-poker__game-card-title a {
    color: #000000;
    text-decoration: none;
}

.page-poker__game-card-title a:hover {
    color: #FCBC45;
}

.page-poker__game-card-description {
    font-size: 1em;
    color: #555555;
    padding: 0 20px 20px;
    flex-grow: 1;
}

.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: #f8f8f8;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease;
}

.page-poker__highlight-item:hover {
    transform: translateY(-5px);
}

.page-poker__highlight-image {
    width: 100%;
    max-width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

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

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

.page-poker__highlight-description {
    font-size: 1em;
    color: #555555;
}

.page-poker__action-center {
    text-align: center;
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

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

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

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

.page-poker__mobile-text {
    flex: 1;
    min-width: 300px;
}

.page-poker__mobile-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 300px;
}

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

.page-poker__mobile-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

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

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

.page-poker__security-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: center;
}

.page-poker__feature-item {
    background-color: #f8f8f8;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 30px;
    transition: transform 0.3s ease;
}

.page-poker__feature-item:hover {
    transform: translateY(-5px);
}

.page-poker__feature-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
    filter: none; /* Ensure no color filter is applied */
}

.page-poker__feature-icon img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

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

.page-poker__feature-description {
    font-size: 0.95em;
    color: #555555;
}

.page-poker__cta-section {
    background: linear-gradient(135deg, #000000, #333333);
    color: #FFFFFF;
    text-align: center;
    padding: 80px 20px;
    margin-top: 60px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-poker__cta-title {
    font-size: 2.8em;
    margin-bottom: 25px;
    color: #FCBC45;
}

.page-poker__cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #f0f0f0;
}

.page-poker__faq-section {
    margin-top: 60px;
}

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

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

.page-poker__faq-question {
    font-size: 1.3em;
    color: #000000;
    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.5em;
    color: #FCBC45;
}

.page-poker__faq-answer {
    font-size: 1em;
    color: #555555;
    padding-top: 10px;
    border-top: 1px solid #eeeeee;
    margin-top: 15px;
    display: none; /* Hidden by default, toggled by JS */
}

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

@media (max-width: 768px) {
    .page-poker__hero-section {
        min-height: 500px;
        padding: 40px 15px;
    }
    .page-poker__hero-title {
        font-size: 2.5em;
    }
    .page-poker__hero-description {
        font-size: 1em;
    }
    .page-poker__hero-actions {
        flex-direction: column;
        gap: 10px;
    }
    .page-poker__button {
        width: 100%;
        max-width: 300px;
    }
    .page-poker__content-area {
        padding: 40px 15px;
    }
    .page-poker__section-title {
        font-size: 1.8em;
    }
    .page-poker__game-cards,
    .page-poker__tournament-highlights,
    .page-poker__security-features {
        grid-template-columns: 1fr;
    }
    .page-poker__mobile-layout {
        flex-direction: column;
        gap: 30px;
    }
    .page-poker__mobile-image-wrapper {
        order: -1; /* Image appears above text on mobile */
    }
    .page-poker__mobile-image {
        max-width: 100%;
    }
    .page-poker__cta-title {
        font-size: 1.8em;
    }
    .page-poker__cta-description {
        font-size: 1em;
    }
    .page-poker__action-center {
        flex-direction: column;
    }
    .page-poker__faq-question {
        font-size: 1.1em;
    }
    /* Ensure all images within .page-poker are responsive */
    .page-poker img {
        max-width: 100%;
        height: auto;
    }
    .page-poker__feature-icon {
        width: 64px;
        height: 64px;
    }
}

@media (max-width: 480px) {
    .page-poker__hero-title {
        font-size: 2em;
    }
    .page-poker__section-title {
        font-size: 1.5em;
    }
    .page-poker__cta-title {
        font-size: 1.6em;
    }
    .page-poker__button {
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-poker__hero-section {
        padding-top: var(--header-offset, 120px); /* Ensure space below fixed header */
    }
}