/* style/blog-gamemomo-latest-game-review.css */

:root {
    --gamemomo-primary-color: #C91F17;
    --gamemomo-secondary-color: #E53935;
    --gamemomo-button-gradient: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%);
    --gamemomo-card-bg: #D32F2F;
    --gamemomo-background-color: #B71C1C;
    --gamemomo-text-main: #FFF5E1;
    --gamemomo-border-color: #F2B544;
    --gamemomo-glow-color: #FFCC66;
    --gamemomo-gold-color: #F4D34D;
    --gamemomo-deep-red: #7A0E0E;
}

.page-blog-gamemomo-latest-game-review {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--gamemomo-text-main); /* Light text for dark background */
    background-color: var(--gamemomo-background-color); /* Dark red background */
}

.page-blog-gamemomo-latest-game-review__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

/* Hero Section */
.page-blog-gamemomo-latest-game-review__hero-section {
    position: relative;
    width: 100%;
    padding-top: 10px; /* Small top padding, shared.css handles body padding-top */
    padding-bottom: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
}

.page-blog-gamemomo-latest-game-review__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 675px; /* Limit height for desktop */
    filter: brightness(0.7); /* Slightly darken image for text readability */
}

.page-blog-gamemomo-latest-game-review__hero-content-wrapper {
    width: 100%;
    background-color: var(--gamemomo-deep-red); /* Darker red background for text */
    padding: 40px 20px;
    box-sizing: border-box;
}

.page-blog-gamemomo-latest-game-review__hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.page-blog-gamemomo-latest-game-review__hero-title {
    font-size: 2.8em;
    font-weight: bold;
    color: var(--gamemomo-gold-color);
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-blog-gamemomo-latest-game-review__hero-description {
    font-size: 1.2em;
    color: var(--gamemomo-text-main);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-blog-gamemomo-latest-game-review__hero-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* General Section Styling */
.page-blog-gamemomo-latest-game-review__introduction-section,
.page-blog-gamemomo-latest-game-review__criteria-section,
.page-blog-gamemomo-latest-game-review__game-reviews-section,
.page-blog-gamemomo-latest-game-review__why-gamemomo-section,
.page-blog-gamemomo-latest-game-review__tips-section,
.page-blog-gamemomo-latest-game-review__faq-section,
.page-blog-gamemomo-latest-game-review__conclusion-section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-blog-gamemomo-latest-game-review__section-title {
    font-size: 2.2em;
    color: var(--gamemomo-gold-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-blog-gamemomo-latest-game-review__text-block {
    font-size: 1.1em;
    color: var(--gamemomo-text-main);
    margin-bottom: 20px;
    text-align: justify;
}

/* Buttons */
.page-blog-gamemomo-latest-game-review__btn-primary,
.page-blog-gamemomo-latest-game-review__btn-secondary {
    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;
    white-space: nowrap;
    box-sizing: border-box;
    max-width: 100%;
}

.page-blog-gamemomo-latest-game-review__btn-primary {
    background: var(--gamemomo-button-gradient);
    color: var(--gamemomo-deep-red); /* Dark text for gold button */
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-blog-gamemomo-latest-game-review__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    filter: brightness(1.1);
}

.page-blog-gamemomo-latest-game-review__btn-secondary {
    background: var(--gamemomo-primary-color);
    color: var(--gamemomo-text-main);
    border: 2px solid var(--gamemomo-border-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-blog-gamemomo-latest-game-review__btn-secondary:hover {
    transform: translateY(-3px);
    background-color: var(--gamemomo-secondary-color);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

/* Criteria Section */
.page-blog-gamemomo-latest-game-review__criteria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-blog-gamemomo-latest-game-review__criteria-item {
    background-color: var(--gamemomo-card-bg);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--gamemomo-border-color);
    transition: transform 0.3s ease;
}

.page-blog-gamemomo-latest-game-review__criteria-item:hover {
    transform: translateY(-5px);
}

.page-blog-gamemomo-latest-game-review__criteria-image {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
    object-fit: cover;
}

.page-blog-gamemomo-latest-game-review__criteria-subtitle {
    font-size: 1.4em;
    color: var(--gamemomo-gold-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-blog-gamemomo-latest-game-review__criteria-description {
    font-size: 1em;
    color: var(--gamemomo-text-main);
}

/* Game Review Cards */
.page-blog-gamemomo-latest-game-review__game-review-card {
    background-color: var(--gamemomo-card-bg);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--gamemomo-border-color);
}

.page-blog-gamemomo-latest-game-review__game-title {
    font-size: 1.8em;
    color: var(--gamemomo-gold-color);
    margin-bottom: 20px;
    text-align: center;
    font-weight: bold;
}

.page-blog-gamemomo-latest-game-review__game-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    margin-bottom: 25px;
    object-fit: cover;
}

.page-blog-gamemomo-latest-game-review__game-details h4 {
    font-size: 1.3em;
    color: var(--gamemomo-primary-color);
    margin-top: 25px;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-blog-gamemomo-latest-game-review__game-details p {
    font-size: 1em;
    color: var(--gamemomo-text-main);
    margin-bottom: 15px;
    text-align: justify;
}

.page-blog-gamemomo-latest-game-review__cta-wrapper {
    text-align: center;
    margin-top: 40px;
}

/* Why Gamemomo Section */
.page-blog-gamemomo-latest-game-review__feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-blog-gamemomo-latest-game-review__feature-item {
    background-color: var(--gamemomo-card-bg);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--gamemomo-border-color);
    transition: transform 0.3s ease;
}

.page-blog-gamemomo-latest-game-review__feature-item:hover {
    transform: translateY(-5px);
}

.page-blog-gamemomo-latest-game-review__feature-image {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
    object-fit: cover;
}

.page-blog-gamemomo-latest-game-review__feature-title {
    font-size: 1.4em;
    color: var(--gamemomo-gold-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-blog-gamemomo-latest-game-review__feature-description {
    font-size: 1em;
    color: var(--gamemomo-text-main);
}

/* Tips Section */
.page-blog-gamemomo-latest-game-review__tips-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    margin-bottom: 30px;
    object-fit: cover;
}

.page-blog-gamemomo-latest-game-review__tips-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-blog-gamemomo-latest-game-review__tips-list li {
    background-color: rgba(255, 255, 255, 0.1);
    border-left: 5px solid var(--gamemomo-gold-color);
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    font-size: 1.1em;
    color: var(--gamemomo-text-main);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-blog-gamemomo-latest-game-review__tips-list li strong {
    color: var(--gamemomo-gold-color);
}

.page-blog-gamemomo-latest-game-review__tips-list li a {
    color: var(--gamemomo-gold-color);
    text-decoration: underline;
}

.page-blog-gamemomo-latest-game-review__tips-list li a:hover {
    color: var(--gamemomo-text-main);
}

/* FAQ Section */
.page-blog-gamemomo-latest-game-review__faq-list {
    margin-top: 40px;
}

.page-blog-gamemomo-latest-game-review__faq-item {
    background-color: var(--gamemomo-card-bg);
    border: 1px solid var(--gamemomo-border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.page-blog-gamemomo-latest-game-review__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 1.2em;
    font-weight: bold;
    color: var(--gamemomo-gold-color);
    cursor: pointer;
    background-color: var(--gamemomo-deep-red);
    transition: background-color 0.3s ease;
    list-style: none; /* For details/summary */
}

.page-blog-gamemomo-latest-game-review__faq-question::-webkit-details-marker, /* Hide default marker */
.page-blog-gamemomo-latest-game-review__faq-question::marker {
    display: none;
}

.page-blog-gamemomo-latest-game-review__faq-question:hover {
    background-color: var(--gamemomo-primary-color);
}

.page-blog-gamemomo-latest-game-review__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    color: var(--gamemomo-gold-color);
    transition: transform 0.3s ease;
}

.page-blog-gamemomo-latest-game-review__faq-item[open] .page-blog-gamemomo-latest-game-review__faq-toggle {
    transform: rotate(45deg);
}

.page-blog-gamemomo-latest-game-review__faq-answer {
    padding: 15px 25px;
    font-size: 1em;
    color: var(--gamemomo-text-main);
    background-color: var(--gamemomo-card-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.page-blog-gamemomo-latest-game-review__faq-answer p a {
    color: var(--gamemomo-gold-color);
    text-decoration: underline;
}

.page-blog-gamemomo-latest-game-review__faq-answer p a:hover {
    color: var(--gamemomo-primary-color);
}

/* Conclusion Section */
.page-blog-gamemomo-latest-game-review__cta-buttons-bottom {
    text-align: center;
    margin-top: 40px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
    .page-blog-gamemomo-latest-game-review__container,
    .page-blog-gamemomo-latest-game-review__hero-content {
        padding-left: 15px;
        padding-right: 15px;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-blog-gamemomo-latest-game-review__hero-section {
        padding-top: 10px !important; /* Small top padding for mobile */
    }

    .page-blog-gamemomo-latest-game-review__hero-title {
        font-size: 2em;
        line-height: 1.3;
    }

    .page-blog-gamemomo-latest-game-review__hero-description {
        font-size: 1em;
    }

    .page-blog-gamemomo-latest-game-review__hero-cta-buttons,
    .page-blog-gamemomo-latest-game-review__cta-buttons-bottom {
        flex-direction: column;
        gap: 15px;
    }

    .page-blog-gamemomo-latest-game-review__btn-primary,
    .page-blog-gamemomo-latest-game-review__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 1em;
        white-space: normal !important;
        word-wrap: break-word !important;
        box-sizing: border-box !important;
    }

    .page-blog-gamemomo-latest-game-review__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .page-blog-gamemomo-latest-game-review__text-block {
        font-size: 0.95em;
    }

    /* Universal image responsive for mobile */
    .page-blog-gamemomo-latest-game-review img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        box-sizing: border-box !important;
    }

    /* Content sections for mobile */
    .page-blog-gamemomo-latest-game-review__introduction-section,
    .page-blog-gamemomo-latest-game-review__criteria-section,
    .page-blog-gamemomo-latest-game-review__game-reviews-section,
    .page-blog-gamemomo-latest-game-review__why-gamemomo-section,
    .page-blog-gamemomo-latest-game-review__tips-section,
    .page-blog-gamemomo-latest-game-review__faq-section,
    .page-blog-gamemomo-latest-game-review__conclusion-section {
        padding: 40px 0;
    }

    /* Criteria Grid for mobile */
    .page-blog-gamemomo-latest-game-review__criteria-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-blog-gamemomo-latest-game-review__criteria-item {
        padding: 20px;
    }

    .page-blog-gamemomo-latest-game-review__criteria-image {
        max-width: 150px;
        margin-left: auto;
        margin-right: auto;
    }

    .page-blog-gamemomo-latest-game-review__criteria-subtitle {
        font-size: 1.2em;
    }

    /* Game Review Cards for mobile */
    .page-blog-gamemomo-latest-game-review__game-review-card {
        padding: 20px;
        margin-bottom: 30px;
    }

    .page-blog-gamemomo-latest-game-review__game-title {
        font-size: 1.5em;
    }

    .page-blog-gamemomo-latest-game-review__game-details h4 {
        font-size: 1.1em;
    }

    /* Why Gamemomo Feature List for mobile */
    .page-blog-gamemomo-latest-game-review__feature-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-blog-gamemomo-latest-game-review__feature-item {
        padding: 20px;
    }

    .page-blog-gamemomo-latest-game-review__feature-image {
        max-width: 150px;
        margin-left: auto;
        margin-right: auto;
    }

    .page-blog-gamemomo-latest-game-review__feature-title {
        font-size: 1.2em;
    }

    /* Tips List for mobile */
    .page-blog-gamemomo-latest-game-review__tips-list li {
        font-size: 1em;
        padding: 12px 15px;
    }

    /* FAQ Section for mobile */
    .page-blog-gamemomo-latest-game-review__faq-question {
        font-size: 1em;
        padding: 15px 20px;
    }

    .page-blog-gamemomo-latest-game-review__faq-toggle {
        font-size: 1.2em;
    }

    .page-blog-gamemomo-latest-game-review__faq-answer {
        font-size: 0.95em;
        padding: 10px 20px;
    }
}