/* style/game-reviews-poker.css */
.page-game-reviews-poker {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray text for contrast on dark background */
    background-color: #0A2463; /* Main color as background */
}

.page-game-reviews-poker__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-game-reviews-poker__hero {
    background: linear-gradient(135deg, #0A2463, #1A3A7A);
    padding: 100px 0 80px;
    text-align: center;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.page-game-reviews-poker__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: bold;
    color: #FFD700; /* Auxiliary color for emphasis */
}

.page-game-reviews-poker__hero-title .highlight {
    color: #FFFFFF;
}

.page-game-reviews-poker__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #E0E0E0;
}

.page-game-reviews-poker__hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

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

.page-game-reviews-poker__btn--primary {
    background-color: #FFD700;
    color: #0A2463;
    border: 2px solid #FFD700;
}

.page-game-reviews-poker__btn--primary:hover {
    background-color: #E6C200;
    border-color: #E6C200;
    transform: translateY(-2px);
}

.page-game-reviews-poker__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-game-reviews-poker__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A2463;
    transform: translateY(-2px);
}

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

.page-game-reviews-poker__section {
    padding: 80px 0;
    text-align: center;
    background-color: #0A2463;
}

.page-game-reviews-poker__section:nth-of-type(even) {
    background-color: #1A3A7A; /* Slightly lighter dark blue for contrast */
}

.page-game-reviews-poker__section-title {
    font-size: 2.5em;
    margin-bottom: 25px;
    color: #FFD700;
    font-weight: bold;
}

.page-game-reviews-poker__section-title .highlight {
    color: #FFFFFF;
}

.page-game-reviews-poker__section-description {
    font-size: 1.1em;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 50px;
    color: #C0C0C0;
}

.page-game-reviews-poker__why-nohu65 .page-game-reviews-poker__section-description {
    margin-bottom: 60px;
}

.page-game-reviews-poker__features-grid,
.page-game-reviews-poker__promos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-game-reviews-poker__feature-item,
.page-game-reviews-poker__promo-item {
    background-color: #1A3A7A;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.page-game-reviews-poker__feature-item:hover,
.page-game-reviews-poker__promo-item:hover {
    transform: translateY(-10px);
}

.page-game-reviews-poker__feature-icon,
.page-game-reviews-poker__promo-image {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 20px;
}

.page-game-reviews-poker__feature-title,
.page-game-reviews-poker__promo-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-game-reviews-poker__feature-text,
.page-game-reviews-poker__promo-text {
    font-size: 1em;
    line-height: 1.7;
    color: #B0B0B0;
}

.page-game-reviews-poker__game-card {
    display: flex;
    flex-direction: column;
    background-color: #1A3A7A;
    border-radius: 12px;
    margin-bottom: 40px;
    text-align: left;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.page-game-reviews-poker__game-card:nth-of-type(even) {
    flex-direction: column-reverse;
}

@media (min-width: 768px) {
    .page-game-reviews-poker__game-card {
        flex-direction: row;
    }
    .page-game-reviews-poker__game-card:nth-of-type(even) {
        flex-direction: row-reverse;
    }
}

.page-game-reviews-poker__game-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

@media (min-width: 768px) {
    .page-game-reviews-poker__game-image {
        width: 40%;
        height: auto;
        min-height: 300px;
    }
}

.page-game-reviews-poker__game-content {
    padding: 30px;
    flex: 1;
}

.page-game-reviews-poker__game-title {
    font-size: 2em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-game-reviews-poker__game-text {
    font-size: 1.05em;
    line-height: 1.8;
    color: #C0C0C0;
    margin-bottom: 25px;
}

.page-game-reviews-poker__strategy-list {
    list-style: none;
    padding: 0;
    max-width: 900px;
    margin: 50px auto 0;
    text-align: left;
}

.page-game-reviews-poker__strategy-list li {
    background-color: #1A3A7A;
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 25px 30px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}

.page-game-reviews-poker__strategy-item-title {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-game-reviews-poker__strategy-list p {
    font-size: 1em;
    line-height: 1.7;
    color: #B0B0B0;
}

.page-game-reviews-poker__cta-bottom {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-game-reviews-poker__steps-list {
    list-style: none;
    padding: 0;
    counter-reset: step-counter;
    max-width: 900px;
    margin: 50px auto 0;
    text-align: left;
}

.page-game-reviews-poker__steps-list li {
    background-color: #1A3A7A;
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 25px 30px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
    position: relative;
    padding-left: 70px;
}

.page-game-reviews-poker__steps-list li::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: 20px;
    top: 25px;
    background-color: #FFD700;
    color: #0A2463;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.3em;
}

.page-game-reviews-poker__steps-title {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-game-reviews-poker__steps-list p {
    font-size: 1em;
    line-height: 1.7;
    color: #B0B0B0;
}

.page-game-reviews-poker__app-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin-top: 50px;
}

@media (min-width: 992px) {
    .page-game-reviews-poker__app-content {
        flex-direction: row;
        text-align: left;
    }
}

.page-game-reviews-poker__app-info {
    flex: 1;
}

.page-game-reviews-poker__app-info p {
    font-size: 1.1em;
    line-height: 1.8;
    color: #C0C0C0;
    margin-bottom: 30px;
}

.page-game-reviews-poker__app-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-game-reviews-poker__app-benefits li {
    display: flex;
    align-items: center;
    font-size: 1.1em;
    color: #E0E0E0;
    margin-bottom: 15px;
}

.page-game-reviews-poker__icon-small {
    width: 30px;
    height: 30px;
    margin-right: 15px;
    object-fit: contain;
}

.page-game-reviews-poker__app-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.page-game-reviews-poker__support-channels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-game-reviews-poker__channel-item {
    background-color: #1A3A7A;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.page-game-reviews-poker__channel-item:hover {
    transform: translateY(-10px);
}

.page-game-reviews-poker__channel-icon {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin-bottom: 20px;
}

.page-game-reviews-poker__channel-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-game-reviews-poker__channel-text {
    font-size: 1em;
    line-height: 1.7;
    color: #B0B0B0;
}

.page-game-reviews-poker__conclusion .page-game-reviews-poker__section-description {
    margin-bottom: 40px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-game-reviews-poker__hero-title {
        font-size: 2.5em;
    }
    .page-game-reviews-poker__hero-subtitle {
        font-size: 1.2em;
    }
    .page-game-reviews-poker__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-game-reviews-poker__btn {
        width: 80%;
        max-width: 300px;
    }
    .page-game-reviews-poker__section-title {
        font-size: 2em;
    }
    .page-game-reviews-poker__section-description {
        font-size: 1em;
    }
    .page-game-reviews-poker__game-card {
        flex-direction: column;
    }
    .page-game-reviews-poker__game-card:nth-of-type(even) {
        flex-direction: column;
    }
    .page-game-reviews-poker__game-image {
        width: 100%;
        height: 200px;
    }
    .page-game-reviews-poker__app-content {
        flex-direction: column;
    }
    .page-game-reviews-poker__app-image {
        order: -1; /* Image on top for mobile */
    }
}

@media (max-width: 480px) {
    .page-game-reviews-poker__hero-title {
        font-size: 2em;
    }
    .page-game-reviews-poker__hero-subtitle {
        font-size: 1em;
    }
    .page-game-reviews-poker__section-title {
        font-size: 1.8em;
    }
    .page-game-reviews-poker__feature-title,
    .page-game-reviews-poker__promo-title,
    .page-game-reviews-poker__channel-title,
    .page-game-reviews-poker__steps-title {
        font-size: 1.3em;
    }
    .page-game-reviews-poker__game-title {
        font-size: 1.8em;
    }
    .page-game-reviews-poker__btn {
        font-size: 1em;
        padding: 12px 25px;
    }
}