.page-poker {
    color: #333333; /* Dark text for default white body background */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    padding-top: var(--header-offset, 120px); /* Fixed header offset */
    background-color: #f8f8f8; /* Slightly off-white background for content sections */
}

.page-poker__hero-section {
    position: relative;
    overflow: hidden;
    padding: 80px 20px;
    text-align: center;
    color: #ffffff; /* White text for hero section */
    background-color: #003366; /* Deep blue background for hero */
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px; /* Ensure hero section has a decent height */
}

.page-poker__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.3;
}

.page-poker__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.page-poker__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFCC00; /* Golden yellow for main title */
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-poker__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.page-poker__button--primary {
    background-color: #FFCC00; /* Golden yellow */
    color: #003366; /* Deep blue text */
}

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

.page-poker__button--secondary {
    background-color: #003366; /* Deep blue */
    color: #FFCC00; /* Golden yellow text */
    border: 2px solid #FFCC00;
}

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

/* General Content Sections */
.page-poker__section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto 40px auto;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

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

.page-poker__section-subtitle {
    font-size: 1.8em;
    color: #FFCC00;
    margin-top: 30px;
    margin-bottom: 20px;
    text-align: left;
}

.page-poker__text-block {
    margin-bottom: 20px;
    font-size: 1.1em;
    color: #444444;
}

.page-poker__list {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
    font-size: 1.1em;
    color: #444444;
}

.page-poker__list-item {
    margin-bottom: 10px;
}

.page-poker__link {
    color: #003366;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.page-poker__link:hover {
    color: #FFCC00;
}

.page-poker__image-container {
    margin: 30px 0;
    text-align: center;
}

.page-poker__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    min-height: 200px;
}

/* Specific section styles */
.page-poker__game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-poker__game-card {
    background-color: #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

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

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

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

.page-poker__game-card-title {
    font-size: 1.5em;
    color: #003366;
    margin-bottom: 10px;
    font-weight: bold;
}

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

.page-poker__faq-container {
    margin-top: 30px;
}

.page-poker__faq-item {
    background-color: #f9f9f9;
    border: 1px solid #eee;
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
}

.page-poker__faq-question {
    padding: 15px 20px;
    font-size: 1.1em;
    color: #003366;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #eaf2f8;
    transition: background-color 0.3s ease;
}

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

.page-poker__faq-answer {
    padding: 15px 20px;
    font-size: 1em;
    color: #444444;
    border-top: 1px solid #eee;
    display: none;
}

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

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

.page-poker__call-to-action-section {
    text-align: center;
    background-color: #003366;
    color: #ffffff;
    padding: 60px 20px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.page-poker__call-to-action-title {
    font-size: 2.2em;
    margin-bottom: 20px;
    color: #FFCC00;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-poker__hero-title {
        font-size: 3em;
    }

    .page-poker__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-poker {
        padding-top: var(--header-offset, 80px); /* Adjust for mobile header offset */
    }
    .page-poker__hero-section {
        min-height: 400px;
        padding: 60px 15px;
    }
    .page-poker__hero-title {
        font-size: 2.5em;
    }
    .page-poker__hero-description {
        font-size: 1.1em;
    }
    .page-poker__button-group {
        flex-direction: column;
        gap: 15px;
    }
    .page-poker__button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    .page-poker__section {
        padding: 40px 15px;
        margin-bottom: 30px;
    }
    .page-poker__section-title {
        font-size: 1.8em;
    }
    .page-poker__section-subtitle {
        font-size: 1.5em;
    }
    .page-poker__text-block,
    .page-poker__list-item {
        font-size: 1em;
    }
    .page-poker__game-grid {
        grid-template-columns: 1fr;
    }
    /* Enforce mobile image constraints */
    .page-poker img {
        max-width: 100%;
        height: auto;
    }
    .page-poker__game-card-image {
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-poker__hero-title {
        font-size: 2em;
    }
    .page-poker__hero-description {
        font-size: 1em;
    }
    .page-poker__section-title {
        font-size: 1.5em;
    }
    .page-poker__section-subtitle {
        font-size: 1.3em;
    }
    .page-poker__call-to-action-title {
        font-size: 1.8em;
    }
}