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

.page-online-poker__hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-bottom: 40px;
}

.page-online-poker__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    margin-bottom: 20px;
}

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

.page-online-poker__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    color: #F2C14E;
    margin-bottom: 15px;
    letter-spacing: 0.05em;
}

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

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

.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: 600;
}

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

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

.page-online-poker__feature-card,
.page-online-poker__game-card,
.page-online-poker__step-card {
    background-color: #111111;
    border: 1px solid #3A2A12;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    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__step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

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

.page-online-poker__card-title {
    font-size: 1.5rem;
    color: #FFD36B;
    margin-bottom: 10px;
    font-weight: 500;
}

.page-online-poker__card-text {
    font-size: 1rem;
    color: #FFF6D6;
    flex-grow: 1;
}

.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;
    white-space: nowrap;
    cursor: pointer;
}

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

.page-online-poker__button--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

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

.page-online-poker__button--secondary:hover {
    background-color: rgba(255, 211, 107, 0.1);
    transform: translateY(-2px);
}

.page-online-poker__button--link {
    margin-top: 15px;
    padding: 8px 15px;
    font-size: 0.9rem;
    background-color: transparent;
    color: #FFD36B;
    border: 1px solid #FFD36B;
}

.page-online-poker__button--link:hover {
    background-color: rgba(255, 211, 107, 0.1);
}

.page-online-poker__button--small {
    margin-top: 15px;
    padding: 10px 20px;
    font-size: 0.95rem;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #111111;
    border: none;
}

.page-online-poker__button--small:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

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

.page-online-poker__strategy-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
    text-align: left;
}

.page-online-poker__strategy-item {
    background-color: #111111;
    border: 1px solid #3A2A12;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
}

.page-online-poker__strategy-item:hover {
    background-color: #1A1A1A;
}

.page-online-poker__item-title {
    font-size: 1.4rem;
    color: #FFD36B;
    margin-bottom: 10px;
}

.page-online-poker__item-text {
    font-size: 1rem;
    color: #FFF6D6;
}

.page-online-poker__mobile-app-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 80px 20px;
    background-color: #111111;
    border-radius: 10px;
    max-width: 1200px;
    margin: 60px auto;
}

.page-online-poker__app-content {
    text-align: center;
    max-width: 600px;
}

@media (min-width: 769px) {
    .page-online-poker__mobile-app-section {
        flex-direction: row;
        text-align: left;
        justify-content: space-around;
    }

    .page-online-poker__app-content {
        text-align: left;
    }

    .page-online-poker__app-image {
        order: 2;
    }
}

.page-online-poker__cta-section {
    background-color: #111111;
    border-radius: 10px;
    padding: 60px 20px;
    margin-top: 60px;
}

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

@media (max-width: 768px) {
    .page-online-poker__hero-section {
        padding-bottom: 30px;
    }

    .page-online-poker__main-title {
        font-size: clamp(2rem, 8vw, 3rem);
        padding: 0 10px;
    }

    .page-online-poker__hero-description {
        font-size: 1rem;
        padding: 0 10px;
    }

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

    .page-online-poker__button {
        width: 80%;
        text-align: center;
    }

    .page-online-poker__section {
        padding: 40px 15px;
    }

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

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

    .page-online-poker__feature-grid,
    .page-online-poker__game-grid,
    .page-online-poker__steps-grid,
    .page-online-poker__strategy-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-online-poker__feature-card img,
    .page-online-poker__game-card img,
    .page-online-poker__app-image {
        max-width: 100%;
        height: auto;
        min-width: 200px;
        min-height: 200px;
    }

    .page-online-poker__mobile-app-section {
        flex-direction: column;
        gap: 30px;
        padding: 40px 15px;
    }

    .page-online-poker__app-image {
        order: initial;
    }

    .page-online-poker__cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

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