.page-online-poker {
    background-color: #0A0A0A;
    color: #FFF6D6;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-online-poker__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 10px; /* Small top padding to respect header offset */
}

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

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

.page-online-poker__hero-content {
    text-align: center;
    padding: 40px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.page-online-poker__main-title {
    font-size: clamp(2em, 4vw, 3.5em);
    font-weight: bold;
    color: #FFD36B;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: 0.05em;
}

.page-online-poker__description {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #E5E5E5;
}

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

.page-online-poker__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1em;
    border: none;
}

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

.page-online-poker__btn--primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

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

.page-online-poker__btn--secondary:hover {
    background-color: #FFD36B;
    color: #111111;
    transform: translateY(-2px);
}

.page-online-poker__btn--small {
    padding: 10px 20px;
    font-size: 0.9em;
}

.page-online-poker__about-section,
.page-online-poker__features-section,
.page-online-poker__get-started-section,
.page-online-poker__game-types-section,
.page-online-poker__promotions-section,
.page-online-poker__faq-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.page-online-poker__section-title {
    font-size: clamp(1.8em, 3vw, 2.8em);
    color: #FFD36B;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.page-online-poker__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #F2C14E;
    border-radius: 2px;
}

.page-online-poker__text-content {
    font-size: 1.05em;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #E5E5E5;
}

.page-online-poker__text-content a {
    color: #F2C14E;
    text-decoration: none;
}

.page-online-poker__text-content a:hover {
    text-decoration: underline;
}

.page-online-poker__features-grid,
.page-online-poker__steps-grid,
.page-online-poker__game-types-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__step-card,
.page-online-poker__game-type-card {
    background-color: #111111;
    border: 1px solid #3A2A12;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-online-poker__feature-card:hover,
.page-online-poker__step-card:hover,
.page-online-poker__game-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4), 0 0 15px #FFD36B50;
}

.page-online-poker__feature-icon,
.page-online-poker__game-type-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #3A2A12;
    min-width: 200px;
    min-height: 200px;
}

.page-online-poker__feature-title,
.page-online-poker__step-title,
.page-online-poker__game-type-title {
    font-size: 1.5em;
    color: #F2C14E;
    margin-bottom: 15px;
}

.page-online-poker__feature-description,
.page-online-poker__step-description,
.page-online-poker__game-type-description {
    font-size: 1em;
    color: #E5E5E5;
    margin-bottom: 20px;
}

.page-online-poker__faq-list {
    margin-top: 40px;
    text-align: left;
}

.page-online-poker__faq-item {
    background-color: #111111;
    border: 1px solid #3A2A12;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px 30px;
    transition: background-color 0.3s ease;
}

.page-online-poker__faq-item:hover {
    background-color: #1a1a1a;
}

.page-online-poker__faq-question {
    font-size: 1.2em;
    color: #F2C14E;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-online-poker__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    color: #FFD36B;
    transition: transform 0.3s ease;
}

.page-online-poker__faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-online-poker__faq-answer {
    font-size: 1em;
    color: #E5E5E5;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0;
}

.page-online-poker__faq-answer.active {
    max-height: 200px; /* Adjust as needed */
    padding-top: 10px;
}

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

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

    .page-online-poker__description {
        font-size: 1em;
    }

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

    .page-online-poker__btn {
        width: 100%;
        max-width: 300px;
    }

    .page-online-poker__about-section,
    .page-online-poker__features-section,
    .page-online-poker__get-started-section,
    .page-online-poker__game-types-section,
    .page-online-poker__promotions-section,
    .page-online-poker__faq-section {
        padding: 40px 15px;
    }

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

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

    .page-online-poker__feature-icon,
    .page-online-poker__game-type-image {
        height: 250px;
    }

    .page-online-poker__feature-title,
    .page-online-poker__step-title,
    .page-online-poker__game-type-title {
        font-size: 1.3em;
    }

    .page-online-poker__faq-question {
        font-size: 1.1em;
    }

    .page-online-poker__faq-answer {
        font-size: 0.95em;
    }

    /* Mobile image overflow prevention */
    .page-online-poker img {
        max-width: 100%;
        height: auto;
    }

    .page-online-poker {
        overflow-x: hidden;
    }
}

@media (max-width: 480px) {
    .page-online-poker__main-title {
        font-size: 1.8em;
    }

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

    .page-online-poker__feature-icon,
    .page-online-poker__game-type-image {
        height: 200px;
    }
}