.page-poker {
    padding-top: var(--header-offset, 120px); /* Ensures content starts below fixed header */
    background-color: #0d0d0d; /* Dark background for luxury feel, contrasting with gold/red */
    color: #f0f0f0; /* Light text for dark background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-poker__section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.page-poker__section--dark {
    background-color: #1a1a1a;
}

.page-poker__section--light {
    background-color: #2a2a2a;
}

.page-poker__hero-section {
    position: relative;
    overflow: hidden;
    padding: 0; /* Remove padding here as image will fill */
    margin-bottom: 40px;
}

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

.page-poker__hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    max-width: 90%;
    text-align: center;
    color: #ffffff;
}

.page-poker__main-title {
    font-size: 3.5em;
    color: #FFD700; /* Gold for main title */
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    font-weight: bold;
}

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

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

.page-poker__button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #FFD700; /* Gold button */
    color: #8B0000; /* Deep red text */\    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-poker__button:hover {
    background-color: #e6c200; /* Darker gold on hover */
    color: #6a0000; /* Darker red on hover */
}

.page-poker__secondary-button {
    background-color: #8B0000; /* Deep red button */
    color: #FFD700; /* Gold text */
}

.page-poker__secondary-button:hover {
    background-color: #6a0000; /* Darker red on hover */
    color: #e6c200; /* Darker gold on hover */
}

.page-poker__heading {
    font-size: 2.5em;
    color: #FFD700;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

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

.page-poker__subheading {
    font-size: 1.8em;
    color: #f0f0f0;
    margin-top: 40px;
    margin-bottom: 20px;
}

.page-poker__text {
    font-size: 1.1em;
    color: #cccccc;
    margin-bottom: 20px;
    text-align: left;
}

.page-poker__list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

.page-poker__list-item {
    font-size: 1.1em;
    color: #f0f0f0;
    margin-bottom: 10px;
    padding-left: 30px;
    position: relative;
}

.page-poker__list-item::before {
    content: '★'; /* Star icon */
    color: #FFD700;
    position: absolute;
    left: 0;
    font-size: 1.2em;
    line-height: 1;
}

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

.page-poker__game-card {
    background-color: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-poker__game-card-image {
    width: 100%;
    height: 250px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
}

.page-poker__game-card-content {
    padding: 25px;
}

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

.page-poker__game-card-text {
    color: #cccccc;
    font-size: 1em;
    margin-bottom: 20px;
}

.page-poker__game-card-link {
    display: inline-block;
    color: #8B0000;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-poker__game-card-link:hover {
    color: #FFD700;
}

.page-poker__process-steps {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.page-poker__step-card {
    background-color: #1a1a1a;
    border-radius: 10px;
    padding: 30px;
    width: 300px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-poker__step-card:hover {
    transform: translateY(-5px);
}

.page-poker__step-number {
    font-size: 2.5em;
    color: #FFD700;
    font-weight: bold;
    margin-bottom: 15px;
}

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

.page-poker__step-description {
    color: #cccccc;
    font-size: 1em;
}

.page-poker__testimonials {
    margin-top: 60px;
}

.page-poker__testimonial-card {
    background-color: #1a1a1a;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    text-align: left;
}

.page-poker__testimonial-quote {
    font-style: italic;
    color: #f0f0f0;
    font-size: 1.1em;
    margin-bottom: 15px;
}

.page-poker__testimonial-author {
    font-weight: bold;
    color: #FFD700;
    font-size: 1em;
}

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

.page-poker__faq-item {
    background-color: #1a1a1a;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-poker__faq-question {
    background-color: #8B0000;
    color: #FFD700;
    padding: 18px 25px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-poker__faq-question:hover {
    background-color: #6a0000;
}

.page-poker__faq-answer {
    padding: 20px 25px;
    color: #cccccc;
    font-size: 1em;
    display: none; /* Hidden by default */
    background-color: #2a2a2a;
}

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

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-poker__hero-content {
        max-width: 95%;
    }

    .page-poker__main-title {
        font-size: 2.5em;
    }

    .page-poker__description {
        font-size: 1.1em;
    }

    .page-poker__heading {
        font-size: 2em;
    }

    .page-poker__subheading {
        font-size: 1.5em;
    }

    .page-poker__button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-poker__button-group {
        flex-direction: column;
        gap: 15px;
    }

    .page-poker__game-cards {
        grid-template-columns: 1fr;
    }

    .page-poker__process-steps {
        flex-direction: column;
        align-items: center;
    }

    .page-poker__step-card {
        width: 100%;
        max-width: 350px;
    }

    .page-poker img {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Enforce minimum size for content images */
        min-height: 200px;
    }

    .page-poker__game-card-image {
        height: 200px; /* Adjust fixed height for mobile */
    }
}

@media (max-width: 480px) {
    .page-poker__main-title {
        font-size: 2em;
    }

    .page-poker__description {
        font-size: 1em;
    }

    .page-poker__heading {
        font-size: 1.8em;
    }

    .page-poker__button {
        width: 100%;
    }
}