.page-poker {
    color: #333333; /* Dark text for light body background */
}

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

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

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

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

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

.page-poker__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    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: 8px;
    font-size: 1.1em;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s 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;
    transform: translateY(-2px);
}

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

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

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

.page-poker__section-title {
    font-size: 2.5em;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: #000000;
}

.page-poker__section-text {
    font-size: 1.1em;
    line-height: 1.7;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #333333;
}

.page-poker__about-section, .page-poker__game-types-section, .page-poker__bonuses-section, .page-poker__mobile-section, .page-poker__cta-section {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.page-poker__about-section .page-poker__image {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 40px auto 0 auto;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

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

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

.page-poker__game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-poker__card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
}

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

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

.page-poker__card-button {
    display: inline-block;
    background-color: #000000;
    color: #FFFFFF;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.page-poker__card-button:hover {
    background-color: #FCBC45;
    color: #000000;
}

.page-poker__bonuses-section .page-poker__image {
    width: 100%;
    max-width: 1000px;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.page-poker__button--promo {
    background-color: #FCBC45;
    color: #000000;
    border: 2px solid #FCBC45;
    margin-top: 20px;
    font-size: 1.2em;
    padding: 18px 35px;
}

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

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

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

.page-poker__mobile-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
}

.page-poker__mobile-section .page-poker__image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

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

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

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

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

.page-poker__cta-section .page-poker__section-text {
    color: #f0f0f0;
}

.page-poker__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
    .page-poker__hero-title {
        font-size: 3em;
    }
    .page-poker__section-title {
        font-size: 2em;
    }
    .page-poker__mobile-content {
        flex-direction: column;
        text-align: center;
    }
    .page-poker__mobile-text-content {
        order: 2;
    }
    .page-poker__mobile-image-container {
        order: 1;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .page-poker__hero-section {
        padding-top: var(--header-offset, 80px); /* Adjust for smaller header on mobile */
        padding-bottom: 60px;
    }
    .page-poker__hero-title {
        font-size: 2.5em;
    }
    .page-poker__hero-description {
        font-size: 1.1em;
    }
    .page-poker__hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-poker__button {
        width: 100%;
        max-width: 300px;
    }
    .page-poker__section-title {
        font-size: 1.8em;
    }
    .page-poker__section-text {
        font-size: 0.95em;
    }
    .page-poker__game-grid {
        grid-template-columns: 1fr;
    }
    .page-poker__about-section, .page-poker__game-types-section, .page-poker__bonuses-section, .page-poker__mobile-section, .page-poker__cta-section {
        padding: 60px 0;
    }
    .page-poker__container img {
        max-width: 100%;
        height: auto;
        display: block;
    }
    /* Mobile specific image sizing for content area */
    .page-poker__about-section .page-poker__image, 
    .page-poker__bonuses-section .page-poker__image, 
    .page-poker__mobile-section .page-poker__image, 
    .page-poker__game-card .page-poker__card-image {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Ensure minimum size */
        min-height: 200px; /* Ensure minimum size */
    }
}

@media (max-width: 480px) {
    .page-poker__hero-title {
        font-size: 2em;
    }
    .page-poker__hero-description {
        font-size: 0.9em;
    }
    .page-poker__button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-poker__section-title {
        font-size: 1.5em;
    }
    .page-poker__section-text {
        font-size: 0.9em;
    }
}