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

.page-online-poker__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-online-poker__hero-image-wrapper {
    width: 100%;
    margin-bottom: 20px;
}

.page-online-poker__hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.page-online-poker__hero-content {
    max-width: 800px;
}

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

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

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

.page-online-poker__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;
    white-space: nowrap;
}

.page-online-poker__button--primary {
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #111111;
    box-shadow: 0 5px 15px rgba(242, 193, 78, 0.4);
}

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

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

.page-online-poker__button--secondary:hover {
    background-color: #F2C14E;
    color: #111111;
    transform: translateY(-2px);
    box-shadow: 0 7px 20px rgba(242, 193, 78, 0.4);
}

.page-online-poker__button--lg {
    padding: 15px 35px;
    font-size: 1.1em;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #111111;
    box-shadow: 0 5px 15px rgba(242, 193, 78, 0.4);
}

.page-online-poker__button--lg:hover {
    transform: translateY(-2px);
    box-shadow: 0 7px 20px rgba(242, 193, 78, 0.6);
}

.page-online-poker__section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    border-radius: 10px;
}

.page-online-poker__section-title {
    font-size: 2.2em;
    color: #F2C14E;
    text-align: center;
    margin-bottom: 25px;
    font-weight: bold;
}

.page-online-poker__section-text {
    font-size: 1.05em;
    line-height: 1.7;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 20px auto;
    color: #FFF6D6;
}

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

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

.page-online-poker__feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(242, 193, 78, 0.2);
}

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

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

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

.page-online-poker__how-to-start {
    margin-bottom: 60px;
}

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

.page-online-poker__step-card {
    background-color: #111111;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    border: 1px solid #3A2A12;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.page-online-poker__step-number {
    background-color: #F2C14E;
    color: #111111;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-online-poker__step-title {
    font-size: 1.4em;
    color: #FFD36B;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-online-poker__step-description {
    font-size: 0.95em;
    line-height: 1.6;
    color: #E5E5E5;
    margin-bottom: 20px;
    flex-grow: 1;
}

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

.page-online-poker__cta-section {
    background-color: #111111;
    padding: 50px 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    margin-bottom: 60px;
    border: 1px solid #3A2A12;
}

.page-online-poker__cta-section .page-online-poker__section-title {
    margin-bottom: 20px;
}

.page-online-poker__cta-section .page-online-poker__section-text {
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .page-online-poker__hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-online-poker__button {
        width: 100%;
        max-width: 250px;
    }

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

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

    .page-online-poker__feature-grid, .page-online-poker__steps-grid {
        grid-template-columns: 1fr;
    }

    .page-online-poker__section {
        margin: 30px auto;
        padding: 15px;
    }

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

@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__hero-description, .page-online-poker__section-text, .page-online-poker__feature-description, .page-online-poker__step-description {
        font-size: 0.9em;
    }

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