/* style/game-reviews-e-games-features-advantages.css */
.page-game-reviews-e-games-features-advantages {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

.page-game-reviews-e-games-features-advantages .highlight {
    color: #E0B44B;
}

.page-game-reviews-e-games-features-advantages__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-game-reviews-e-games-features-advantages__hero-section {
    background-color: #0A2239;
    color: #FFFFFF;
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    text-align: left;
    flex-wrap: wrap;
}

.page-game-reviews-e-games-features-advantages__hero-content {
    max-width: 600px;
    padding: 20px;
}

.page-game-reviews-e-games-features-advantages__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #FFFFFF;
}

.page-game-reviews-e-games-features-advantages__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #E0E0E0;
}

.page-game-reviews-e-games-features-advantages__hero-image {
    flex-shrink: 0;
    width: 500px;
    height: 350px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-game-reviews-e-games-features-advantages__image-fluid {
    max-width: 100%;
    height: auto;
    display: block;
}

.page-game-reviews-e-games-features-advantages__cta-button {
    display: inline-block;
    background-color: #E0B44B;
    color: #0A2239;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-game-reviews-e-games-features-advantages__cta-button:hover {
    background-color: #c9a33e;
    transform: translateY(-2px);
}

.page-game-reviews-e-games-features-advantages__section {
    padding: 60px 0;
    background-color: #FFFFFF;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    border-radius: 8px;
}

.page-game-reviews-e-games-features-advantages__section:nth-of-type(odd) {
    background-color: #fefefe;
}

.page-game-reviews-e-games-features-advantages__section-title {
    font-size: 2.5em;
    color: #0A2239;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.page-game-reviews-e-games-features-advantages__section-title::after {
    content: '';
    width: 80px;
    height: 4px;
    background-color: #E0B44B;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -15px;
    border-radius: 2px;
}

.page-game-reviews-e-games-features-advantages__grid-3-col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    text-align: center;
}

.page-game-reviews-e-games-features-advantages__feature-item {
    background-color: #f0f4f7;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.page-game-reviews-e-games-features-advantages__feature-item:hover {
    transform: translateY(-5px);
}

.page-game-reviews-e-games-features-advantages__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.2));
}

.page-game-reviews-e-games-features-advantages__feature-title {
    font-size: 1.5em;
    color: #0A2239;
    margin-bottom: 15px;
}

.page-game-reviews-e-games-features-advantages__feature-description {
    color: #555;
}

.page-game-reviews-e-games-features-advantages__content-block {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.page-game-reviews-e-games-features-advantages__content-block--reverse {
    flex-direction: row-reverse;
}

.page-game-reviews-e-games-features-advantages__text-content {
    flex: 1;
    min-width: 300px;
}

.page-game-reviews-e-games-features-advantages__image-content {
    flex: 1;
    min-width: 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.page-game-reviews-e-games-features-advantages__sub-title {
    font-size: 2em;
    color: #0A2239;
    margin-bottom: 20px;
    border-left: 5px solid #E0B44B;
    padding-left: 15px;
}

.page-game-reviews-e-games-features-advantages__sub-title + p {
    color: #444;
}

.page-game-reviews-e-games-features-advantages__grid-2-col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
}

.page-game-reviews-e-games-features-advantages__advantage-item {
    background-color: #f0f4f7;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.page-game-reviews-e-games-features-advantages__advantage-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.2));
}

.page-game-reviews-e-games-features-advantages__advantage-title {
    font-size: 1.4em;
    color: #0A2239;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-game-reviews-e-games-features-advantages__advantage-item p {
    color: #555;
}

.page-game-reviews-e-games-features-advantages__game-type-card {
    background-color: #f0f4f7;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-game-reviews-e-games-features-advantages__game-type-card:hover {
    transform: translateY(-5px);
}

.page-game-reviews-e-games-features-advantages__game-type-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.page-game-reviews-e-games-features-advantages__game-type-title {
    font-size: 1.8em;
    color: #0A2239;
    margin: 20px 0 10px;
}

.page-game-reviews-e-games-features-advantages__game-type-card p {
    color: #555;
    padding: 0 20px 20px;
}

.page-game-reviews-e-games-features-advantages__cta-bottom {
    background-color: #0A2239;
    color: #FFFFFF;
    text-align: center;
    padding: 80px 0;
    border-radius: 8px;
}

.page-game-reviews-e-games-features-advantages__cta-bottom .page-game-reviews-e-games-features-advantages__section-title {
    color: #FFFFFF;
}

.page-game-reviews-e-games-features-advantages__cta-bottom .page-game-reviews-e-games-features-advantages__section-title::after {
    background-color: #E0B44B;
}

.page-game-reviews-e-games-features-advantages__cta-text {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #E0E0E0;
}

.page-game-reviews-e-games-features-advantages__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-game-reviews-e-games-features-advantages__cta-button--secondary {
    background-color: transparent;
    border: 2px solid #E0B44B;
    color: #E0B44B;
}

.page-game-reviews-e-games-features-advantages__cta-button--secondary:hover {
    background-color: #E0B44B;
    color: #0A2239;
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-game-reviews-e-games-features-advantages__hero-section {
        flex-direction: column;
        text-align: center;
    }

    .page-game-reviews-e-games-features-advantages__hero-content {
        max-width: 100%;
        padding: 0 20px;
    }

    .page-game-reviews-e-games-features-advantages__hero-image {
        width: 90%;
        height: auto;
    }

    .page-game-reviews-e-games-features-advantages__hero-title {
        font-size: 2.5em;
    }

    .page-game-reviews-e-games-features-advantages__section-title {
        font-size: 2em;
    }

    .page-game-reviews-e-games-features-advantages__grid-2-col,
    .page-game-reviews-e-games-features-advantages__grid-3-col {
        grid-template-columns: 1fr;
    }

    .page-game-reviews-e-games-features-advantages__content-block,
    .page-game-reviews-e-games-features-advantages__content-block--reverse {
        flex-direction: column;
        text-align: center;
    }

    .page-game-reviews-e-games-features-advantages__image-content {
        width: 100%;
    }

    .page-game-reviews-e-games-features-advantages__sub-title {
        text-align: center;
        border-left: none;
        padding-left: 0;
        border-bottom: 3px solid #E0B44B;
        padding-bottom: 10px;
        margin-bottom: 20px;
    }
    .page-game-reviews-e-games-features-advantages__advantage-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .page-game-reviews-e-games-features-advantages__hero-title {
        font-size: 2em;
    }

    .page-game-reviews-e-games-features-advantages__hero-description {
        font-size: 1em;
    }

    .page-game-reviews-e-games-features-advantages__section-title {
        font-size: 1.8em;
    }

    .page-game-reviews-e-games-features-advantages__sub-title {
        font-size: 1.6em;
    }

    .page-game-reviews-e-games-features-advantages__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-game-reviews-e-games-features-advantages__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .page-game-reviews-e-games-features-advantages__hero-section,
    .page-game-reviews-e-games-features-advantages__section {
        padding: 40px 0;
    }

    .page-game-reviews-e-games-features-advantages__hero-title {
        font-size: 1.8em;
    }

    .page-game-reviews-e-games-features-advantages__section-title {
        font-size: 1.5em;
        margin-bottom: 30px;
    }

    .page-game-reviews-e-games-features-advantages__hero-image {
        width: 95%;
    }

    .page-game-reviews-e-games-features-advantages__cta-text {
        font-size: 1em;
    }

    .page-game-reviews-e-games-features-advantages__cta-button {
        width: 90%;
    }
}