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

.page-online-poker__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 40px;
    text-align: center;
    max-width: 100%;
    overflow-x: hidden;
}

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

.page-online-poker__hero-content {
    max-width: 900px;
    padding: 0 20px;
}

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

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

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

.page-online-poker__btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.05em;
    transition: all 0.3s ease;
    min-width: 200px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.page-online-poker__btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

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

.page-online-poker__btn--secondary:hover {
    background-color: rgba(255, 211, 107, 0.1);
    border-color: #FFD36B;
}

.page-online-poker__features-section {
    padding: 60px 20px;
    background-color: #0A0A0A;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.page-online-poker__section-title {
    font-size: clamp(1.8em, 3.5vw, 2.8em);
    color: #F2C14E;
    margin-bottom: 40px;
    font-weight: bold;
}

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

.page-online-poker__feature-card {
    background-color: #111111;
    border: 1px solid #3A2A12;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-online-poker__feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4), 0 0 15px rgba(255, 211, 107, 0.3);
}

.page-online-poker__feature-icon {
    width: 250px;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    min-width: 200px;
    min-height: 200px;
}

.page-online-poker__feature-title {
    font-size: 1.6em;
    color: #FFD36B;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-online-poker__feature-description {
    font-size: 1em;
    line-height: 1.5;
    color: #E5E5E5;
}

.page-online-poker__cta-banner {
    background: #111111;
    padding: 60px 20px;
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid #3A2A12;
    border-bottom: 1px solid #3A2A12;
}

.page-online-poker__cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-online-poker__cta-title {
    font-size: clamp(1.8em, 3.5vw, 2.8em);
    color: #F2C14E;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-online-poker__cta-description {
    font-size: 1.1em;
    line-height: 1.6;
    color: #E5E5E5;
    margin-bottom: 30px;
}

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

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

.page-online-poker__responsible-gaming-text {
    font-size: 1em;
    line-height: 1.6;
    color: #E5E5E5;
    margin-bottom: 25px;
}

.page-online-poker__btn--link {
    background-color: transparent;
    color: #F2C14E;
    border: 2px solid #F2C14E;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 0.95em;
    min-width: unset;
}

.page-online-poker__btn--link:hover {
    background-color: rgba(242, 193, 78, 0.1);
    color: #FFD36B;
    border-color: #FFD36B;
}

@media (max-width: 768px) {
    .page-online-poker__hero-cta-group,
    .page-online-poker__cta-buttons {
        flex-direction: column;
        align-items: center;
    }

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

    .page-online-poker__features-grid {
        grid-template-columns: 1fr;
    }

    .page-online-poker__hero-image,
    .page-online-poker__feature-icon {
        max-width: 100%;
        height: auto;
    }

    .page-online-poker__hero-section,
    .page-online-poker__features-section,
    .page-online-poker__cta-banner,
    .page-online-poker__responsible-gaming {
        padding-left: 15px;
        padding-right: 15px;
    }

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

    .page-online-poker__section-title,
    .page-online-poker__cta-title {
        font-size: 2em;
    }

    .page-online-poker__hero-description,
    .page-online-poker__cta-description {
        font-size: 1em;
    }
}

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

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

    .page-online-poker__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
}

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

.page-online-poker__feature-icon {
    width: 250px;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    min-width: 200px;
    min-height: 200px;
}

@media (max-width: 768px) {
    .page-online-poker img {
        max-width: 100%;
        height: auto;
    }
}

.page-online-poker__hero-section h1 {
    /* No fixed font-size to allow clamp to work */
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.02em;
}