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

.page-poker__hero-section {
    position: relative;
    padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
    padding-bottom: 60px;
    background-color: #000000;
    color: #FFFFFF;
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

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

.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.5);
}

.page-poker__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    line-height: 1.6;
    color: #f0f0f0;
}

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

.page-poker__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    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: #f0f0f0;
    color: #333333;
}

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

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

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

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

.page-poker__button--register-large {
    background-color: #FCBC45;
    color: #000000;
    border: 2px solid #FCBC45;
    padding: 18px 40px;
    font-size: 1.3em;
}

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

.page-poker__button--small {
    padding: 10px 20px;
    font-size: 0.9em;
    background-color: #000000;
    color: #FFFFFF;
    border: 1px solid #000000;
}

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

.page-poker__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.page-poker__hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3; /* Darken the image to make text pop */
    display: block;
}

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

.page-poker__section-title {
    font-size: 2.8em;
    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-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: -20px auto 60px auto;
    line-height: 1.6;
    color: #555555;
}

.page-poker__about-section,
.page-poker__game-types,
.page-poker__tournaments,
.page-poker__promotions,
.page-poker__get-started,
.page-poker__mobile-experience,
.page-poker__faq,
.page-poker__cta-section {
    padding: 80px 0;
}

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

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

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

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

.page-poker__feature-item img {
    width: 100%;
    height: auto;
    max-width: 400px;
    min-width: 200px;
    min-height: 200px;
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 8px;
}

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

.page-poker__feature-description {
    font-size: 1em;
    line-height: 1.7;
    color: #555555;
}

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

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

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

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

.page-poker__card-title {
    font-size: 1.8em;
    padding: 20px 25px 10px;
    color: #FCBC45;
}

.page-poker__card-description {
    font-size: 1em;
    padding: 0 25px 25px;
    line-height: 1.6;
    color: #f0f0f0;
}

.page-poker__tournaments {
    background-color: #f9f9f9;
}

.page-poker__tournament-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.page-poker__tournament-text {
    flex: 1;
}

.page-poker__tournament-text p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: #555555;
}

.page-poker__tournament-text .page-poker__button {
    margin-top: 10px;
    margin-right: 15px;
}

.page-poker__sub-title {
    font-size: 2em;
    color: #000000;
    margin-top: 30px;
    margin-bottom: 15px;
}

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

.page-poker__tournament-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    min-height: 200px;
}

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

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

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

.page-poker__promo-card img {
    width: 100%;
    height: auto;
    max-width: 400px;
    min-width: 200px;
    min-height: 200px;
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 8px;
}

.page-poker__promo-card .page-poker__card-title {
    color: #000000;
    font-size: 1.8em;
    padding: 0;
}

.page-poker__promo-card .page-poker__card-description {
    color: #555555;
    padding: 0 0 20px;
}

.page-poker__get-started {
    background-color: #000000;
    color: #FFFFFF;
}

.page-poker__get-started .page-poker__section-title {
    color: #FFFFFF;
}

.page-poker__get-started .page-poker__section-description {
    color: #f0f0f0;
}

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

.page-poker__step-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-poker__step-number {
    background-color: #FCBC45;
    color: #000000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: bold;
    margin: 0 auto 20px;
}

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

.page-poker__step-description {
    font-size: 1em;
    line-height: 1.6;
    color: #f0f0f0;
    margin-bottom: 25px;
}

.page-poker__mobile-experience {
    background-color: #f9f9f9;
}

.page-poker__mobile-content {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

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

.page-poker__mobile-text ul {
    list-style: none;
    padding: 0;
    margin: 20px 0 30px;
}

.page-poker__mobile-text li {
    font-size: 1.1em;
    margin-bottom: 10px;
    position: relative;
    padding-left: 30px;
    color: #555555;
}

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

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

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

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

.page-poker__faq-item {
    background-color: #FFFFFF;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    border-left: 4px solid #FCBC45;
}

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

.page-poker__faq-answer {
    font-size: 1em;
    line-height: 1.6;
    color: #555555;
    margin-bottom: 15px;
}

.page-poker__cta-section {
    background-color: #000000;
    color: #FFFFFF;
    text-align: center;
}

.page-poker__cta-section .page-poker__section-title {
    color: #FFFFFF;
}

.page-poker__cta-section .page-poker__section-description {
    color: #f0f0f0;
    margin-bottom: 40px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-poker__hero-title {
        font-size: 2.8em;
    }
    .page-poker__section-title {
        font-size: 2.2em;
    }
    .page-poker__sub-title {
        font-size: 1.8em;
    }
}

@media (max-width: 768px) {
    .page-poker__hero-section {
        padding-top: var(--header-offset, 120px);
        padding-bottom: 40px;
    }
    .page-poker__hero-title {
        font-size: 2.2em;
    }
    .page-poker__hero-description {
        font-size: 1em;
    }
    .page-poker__hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-poker__button {
        width: 80%;
        max-width: 300px;
    }
    .page-poker__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-poker__section-description {
        font-size: 0.95em;
        margin-bottom: 40px;
    }
    .page-poker__about-section,
    .page-poker__game-types,
    .page-poker__tournaments,
    .page-poker__promotions,
    .page-poker__get-started,
    .page-poker__mobile-experience,
    .page-poker__faq,
    .page-poker__cta-section {
        padding: 50px 0;
    }
    .page-poker__tournament-content,
    .page-poker__mobile-content {
        flex-direction: column;
    }
    .page-poker__tournament-image,
    .page-poker__mobile-image {
        order: -1; /* Image first on mobile */
        margin-bottom: 30px;
    }
    .page-poker__tournament-image img,
    .page-poker__mobile-image img,
    .page-poker__feature-item img,
    .page-poker__game-card img,
    .page-poker__promo-card img {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Enforce min-width */
        min-height: 200px; /* Enforce min-height */
    }
    .page-poker__button--register-large {
        width: 90%;
        max-width: 350px;
        font-size: 1.1em;
    }
    .page-poker__feature-item img, .page-poker__game-card img, .page-poker__promo-card img, .page-poker__tournament-image img, .page-poker__mobile-image img {
        max-width: 100%;
        height: auto; /* Ensure images are responsive and do not overflow */
        min-width: 200px;
        min-height: 200px;
    }
}

@media (max-width: 480px) {
    .page-poker__hero-title {
        font-size: 1.8em;
    }
    .page-poker__section-title {
        font-size: 1.6em;
    }
    .page-poker__hero-buttons {
        gap: 10px;
    }
    .page-poker__button {
        padding: 12px 20px;
        font-size: 0.95em;
    }
    .page-poker__sub-title {
        font-size: 1.5em;
    }
    .page-poker__step-title,
    .page-poker__feature-title,
    .page-poker__card-title,
    .page-poker__faq-question {
        font-size: 1.3em;
    }
    .page-poker__feature-item img, .page-poker__game-card img, .page-poker__promo-card img, .page-poker__tournament-image img, .page-poker__mobile-image img {
        max-width: 100%;
        height: auto;
        min-width: 200px;
        min-height: 200px;
    }
}