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

.page-index-featured-game-reviews__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-index-featured-game-reviews__hero-section {
    background: linear-gradient(135deg, #003366, #1a4d80);
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
}

.page-index-featured-game-reviews__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    color: #ffffff;
}

.page-index-featured-game-reviews__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

.page-index-featured-game-reviews__cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-index-featured-game-reviews__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
}

.page-index-featured-game-reviews__btn--primary {
    background-color: #FFCC00;
    color: #003366;
    border: 2px solid #FFCC00;
}

.page-index-featured-game-reviews__btn--primary:hover {
    background-color: #e6b800;
    transform: translateY(-2px);
}

.page-index-featured-game-reviews__btn--secondary {
    background-color: transparent;
    color: #FFCC00;
    border: 2px solid #FFCC00;
}

.page-index-featured-game-reviews__btn--secondary:hover {
    background-color: rgba(255, 204, 0, 0.1);
    transform: translateY(-2px);
}

.page-index-featured-game-reviews__btn--play {
    background-color: #FFCC00;
    color: #003366;
    border: none;
    padding: 12px 25px;
    font-size: 1em;
    border-radius: 5px;
}

.page-index-featured-game-reviews__btn--play:hover {
    background-color: #e6b800;
    transform: translateY(-1px);
}

.page-index-featured-game-reviews__section {
    padding: 80px 0;
}

.page-index-featured-game-reviews__section:nth-of-type(even) {
    background-color: #f0f0f0;
}

.page-index-featured-game-reviews__section-title {
    font-size: 2.5em;
    color: #003366;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-index-featured-game-reviews__section-title .highlight {
    color: #FFCC00;
}

.page-index-featured-game-reviews__text-content {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
}

.page-index-featured-game-reviews__overview-section .page-index-featured-game-reviews__text-content {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.page-index-featured-game-reviews__game-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-index-featured-game-reviews__category-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-featured-game-reviews__category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-index-featured-game-reviews__category-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.page-index-featured-game-reviews__category-title {
    font-size: 1.5em;
    color: #003366;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-index-featured-game-reviews__category-description {
    color: #666;
    font-size: 0.95em;
}

.page-index-featured-game-reviews__detailed-reviews .page-index-featured-game-reviews__text-content {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.page-index-featured-game-reviews__game-review-card {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 60px;
    overflow: hidden;
}

.page-index-featured-game-reviews__game-review-card:last-child {
    margin-bottom: 0;
}

.page-index-featured-game-reviews__game-review-card--reverse {
    flex-direction: column-reverse;
}

.page-index-featured-game-reviews__game-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-bottom: 1px solid #eee;
}

.page-index-featured-game-reviews__game-content {
    padding: 40px;
}

.page-index-featured-game-reviews__game-title {
    font-size: 2em;
    color: #003366;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-index-featured-game-reviews__game-intro {
    font-size: 1.2em;
    color: #444;
    margin-bottom: 25px;
    font-style: italic;
}

.page-index-featured-game-reviews__game-subtitle {
    font-size: 1.4em;
    color: #003366;
    margin-top: 30px;
    margin-bottom: 15px;
    border-left: 4px solid #FFCC00;
    padding-left: 15px;
    font-weight: bold;
}

.page-index-featured-game-reviews__trust-section {
    background-color: #003366;
    color: #ffffff;
    text-align: center;
}

.page-index-featured-game-reviews__trust-section .page-index-featured-game-reviews__section-title {
    color: #ffffff;
}

.page-index-featured-game-reviews__trust-section .page-index-featured-game-reviews__section-title .highlight {
    color: #FFCC00;
}

.page-index-featured-game-reviews__trust-section .page-index-featured-game-reviews__text-content {
    color: #e0e0e0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
}

.page-index-featured-game-reviews__features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    list-style: none;
    padding: 0;
}

.page-index-featured-game-reviews__features-list li {
    background-color: #1a4d80;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-index-featured-game-reviews__features-list li:hover {
    transform: translateY(-5px);
}

.page-index-featured-game-reviews__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: invert(80%) sepia(100%) saturate(1000%) hue-rotate(30deg) brightness(100%) contrast(100%); /* Gold tint */
}

.page-index-featured-game-reviews__feature-title {
    font-size: 1.6em;
    color: #FFCC00;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-index-featured-game-reviews__feature-description {
    color: #c0c0c0;
    font-size: 1em;
}

.page-index-featured-game-reviews__cta-final-section {
    text-align: center;
    background-color: #f8f8f8;
}

.page-index-featured-game-reviews__cta-final-section .page-index-featured-game-reviews__text-content {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

.page-index-featured-game-reviews__faq-section {
    padding-bottom: 100px;
}

.page-index-featured-game-reviews__faq-item {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    padding: 25px 30px;
}

.page-index-featured-game-reviews__faq-question {
    font-size: 1.3em;
    color: #003366;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-index-featured-game-reviews__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.2em;
    color: #FFCC00;
    transition: transform 0.3s ease;
}

.page-index-featured-game-reviews__faq-question.active::after {
    content: '-';
    transform: rotate(0deg);
}

.page-index-featured-game-reviews__faq-answer {
    font-size: 1em;
    color: #666;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
    padding-top: 0;
}

.page-index-featured-game-reviews__faq-question.active + .page-index-featured-game-reviews__faq-answer {
    max-height: 200px; /* Adjust as needed */
    padding-top: 15px;
}

.page-index-featured-game-reviews__text-content .highlight {
    color: #003366;
    font-weight: bold;
}

/* Responsive Design */
@media (min-width: 768px) {
    .page-index-featured-game-reviews__game-review-card {
        flex-direction: row;
    }

    .page-index-featured-game-reviews__game-review-card--reverse {
        flex-direction: row-reverse;
    }

    .page-index-featured-game-reviews__game-image {
        width: 40%;
        height: auto;
        border-bottom: none;
        border-right: 1px solid #eee;
    }

    .page-index-featured-game-reviews__game-review-card--reverse .page-index-featured-game-reviews__game-image {
        border-right: none;
        border-left: 1px solid #eee;
    }

    .page-index-featured-game-reviews__game-content {
        width: 60%;
    }
}

@media (max-width: 767px) {
    .page-index-featured-game-reviews__hero-title {
        font-size: 2.2em;
    }

    .page-index-featured-game-reviews__hero-subtitle {
        font-size: 1em;
    }

    .page-index-featured-game-reviews__btn {
        padding: 12px 20px;
        font-size: 1em;
    }

    .page-index-featured-game-reviews__section-title {
        font-size: 1.8em;
    }

    .page-index-featured-game-reviews__game-review-card {
        margin-bottom: 40px;
    }

    .page-index-featured-game-reviews__game-image {
        height: 250px;
    }

    .page-index-featured-game-reviews__game-content {
        padding: 25px;
    }

    .page-index-featured-game-reviews__game-title {
        font-size: 1.5em;
    }

    .page-index-featured-game-reviews__game-intro {
        font-size: 1em;
    }

    .page-index-featured-game-reviews__game-subtitle {
        font-size: 1.2em;
    }

    .page-index-featured-game-reviews__features-list {
        grid-template-columns: 1fr;
    }

    .page-index-featured-game-reviews__faq-question {
        font-size: 1.1em;
    }

    .page-index-featured-game-reviews__faq-answer {
        font-size: 0.9em;
    }
}