.page-online-poker {
    padding-top: 10px; /* Small top padding for the first section */
    background-color: #0A0A0A;
    color: #FFF6D6;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-online-poker__hero-section {
    position: relative;
    text-align: center;
    overflow: hidden;
    margin-bottom: 40px;
}

.page-online-poker__hero-image-wrapper {
    width: 100%;
    overflow: hidden;
}

.page-online-poker__hero-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    min-height: 200px; /* Enforce minimum image size */
}

.page-online-poker__hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    background-color: #111111; /* Card BG */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transform: translateY(-50px); /* Slightly overlap the image for visual effect */
    z-index: 1;
    position: relative;
    border: 1px solid #3A2A12; /* Border */
}

.page-online-poker__hero-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    color: #F2C14E;
    margin-bottom: 15px;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.5px;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.page-online-poker__hero-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #FFF6D6;
}

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

.page-online-poker__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    text-align: center;
    min-width: 150px;
}

.page-online-poker__button--primary {
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #0A0A0A;
    border: none;
}

.page-online-poker__button--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(242, 193, 78, 0.4);
}

.page-online-poker__button--secondary {
    background-color: #111111;
    color: #F2C14E;
    border: 2px solid #F2C14E;
}

.page-online-poker__button--secondary:hover {
    background-color: #F2C14E;
    color: #0A0A0A;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(242, 193, 78, 0.2);
}

.page-online-poker__button--small {
    padding: 8px 15px;
    font-size: 0.9em;
    min-width: unset;
}

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

.page-online-poker__section-title {
    font-size: 2.5rem;
    color: #F2C14E;
    margin-bottom: 20px;
    font-weight: bold;
    border-bottom: 2px solid #3A2A12;
    padding-bottom: 10px;
    display: inline-block;
}

.page-online-poker__section-intro {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #FFF6D6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-online-poker__feature-card,
.page-online-poker__game-card,
.page-online-poker__bonus-card,
.page-online-poker__step-card {
    background-color: #111111;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    text-align: center;
    border: 1px solid #3A2A12;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-online-poker__feature-card:hover,
.page-online-poker__game-card:hover,
.page-online-poker__bonus-card:hover,
.page-online-poker__step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(242, 193, 78, 0.1);
}

.page-online-poker__feature-icon,
.page-online-poker__game-image,
.page-online-poker__bonus-image,
.page-online-poker__app-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
    object-fit: cover;
    min-width: 200px;
    min-height: 200px;
}

.page-online-poker__feature-title,
.page-online-poker__game-title,
.page-online-poker__bonus-title,
.page-online-poker__step-title {
    font-size: 1.5rem;
    color: #F2C14E;
    margin-bottom: 10px;
}

.page-online-poker__feature-description,
.page-online-poker__game-description,
.page-online-poker__bonus-description,
.page-online-poker__step-description {
    font-size: 1rem;
    color: #FFF6D6;
}

.page-online-poker__steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-online-poker__step-card {
    position: relative;
    padding-top: 50px;
}

.page-online-poker__step-number {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: #F2C14E;
    color: #0A0A0A;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    border: 2px solid #FFD36B;
}

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

.page-online-poker__responsible-gaming .page-online-poker__button {
    margin-top: 30px;
}

.page-online-poker__download-app {
    text-align: left;
}

.page-online-poker__app-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}

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

.page-online-poker__app-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #FFF6D6;
}

.page-online-poker__app-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-online-poker__app-features li {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="%23F2C14E"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z"/></svg>') no-repeat left center;
    background-size: 20px;
    padding-left: 30px;
    margin-bottom: 10px;
    color: #FFF6D6;
}

.page-online-poker__app-image-wrapper {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.page-online-poker__app-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    min-width: 200px;
    min-height: 200px;
}


/* Responsive adjustments */
@media (max-width: 768px) {
    .page-online-poker__hero-content {
        transform: translateY(-30px);
        margin: 0 10px;
        padding: 15px;
    }

    .page-online-poker__hero-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }

    .page-online-poker__hero-description {
        font-size: 1rem;
    }

    .page-online-poker__hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-online-poker__button {
        width: 80%;
        margin: 0 auto;
    }

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

    .page-online-poker__section-intro {
        font-size: 1rem;
    }

    .page-online-poker__features-grid,
    .page-online-poker__game-cards-grid,
    .page-online-poker__bonus-grid,
    .page-online-poker__steps-container {
        grid-template-columns: 1fr;
    }

    .page-online-poker__app-content {
        flex-direction: column;
        text-align: center;
    }

    .page-online-poker__app-features {
        text-align: left; /* Keep list items left-aligned for readability */
        margin-left: 20px;
    }

    /* Ensure images in content area do not cause overflow */
    .page-online-poker img {
        max-width: 100%;
        height: auto;
    }
    .page-online-poker__feature-icon,
    .page-online-poker__game-image,
    .page-online-poker__bonus-image,
    .page-online-poker__app-image {
        max-width: 100%;
        height: auto;
    }
}