/* style/game-reviews.css */

/* Base styles for the page content area */
.page-game-reviews {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #F0F0F0; /* Light text on dark sections */
    background-color: #1a2a40; /* Slightly lighter than main dark blue for sections */
}

/* Container for consistent width */
.page-game-reviews__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-game-reviews__hero {
    background: linear-gradient(135deg, #0A192F, #2C3E50); /* Dark blue gradient */
    padding: 100px 0;
    text-align: center;
    color: #FFD700; /* Gold for hero title */
}

.page-game-reviews__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFD700; /* Gold title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-game-reviews__hero-description {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #E0E0E0; /* Light gray for description */
}

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

/* General Section Styling */
.page-game-reviews__section {
    padding: 80px 0;
    background-color: #0A192F; /* Primary dark blue for main sections */
    color: #F0F0F0;
}

.page-game-reviews__section--alt {
    background-color: #1a2a40; /* Alternate dark background */
}

.page-game-reviews__section--highlight {
    background-color: #050e1b; /* Even darker for emphasis */
}

.page-game-reviews__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for section titles */
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-game-reviews__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px auto;
    color: #E0E0E0;
}

/* Buttons */
.page-game-reviews__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1.1em;
    text-align: center;
    white-space: nowrap;
}

.page-game-reviews__button--primary {
    background-color: #FFD700; /* Gold */
    color: #0A192F; /* Dark blue text */
    border: 2px solid #FFD700;
}

.page-game-reviews__button--primary:hover {
    background-color: #e6c200; /* Slightly darker gold */
    border-color: #e6c200;
    transform: translateY(-2px);
}

.page-game-reviews__button--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700;
}

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

.page-game-reviews__button--tertiary {
    background-color: #0A192F; /* Dark blue */
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700;
}

.page-game-reviews__button--tertiary:hover {
    background-color: #FFD700;
    color: #0A192F;
    transform: translateY(-2px);
}

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

.page-game-reviews__button--large {
    padding: 20px 40px;
    font-size: 1.3em;
}

/* Features Section */
.page-game-reviews__features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-game-reviews__feature-item {
    background-color: #050e1b;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

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

.page-game-reviews__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px #FFD700); /* Gold glow for icons */
}

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

.page-game-reviews__feature-text {
    color: #E0E0E0;
    font-size: 1em;
}

/* Content Grid (Guide Section) */
.page-game-reviews__content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
}

@media (min-width: 768px) {
    .page-game-reviews__content-grid {
        grid-template-columns: 1fr 1fr;
    }
    .page-game-reviews__content-grid:nth-child(even) .page-game-reviews__text-content {
        order: 2; /* Reverse order for alternating sections */
    }
    .page-game-reviews__content-grid:nth-child(even) .page-game-reviews__image-wrapper {
        order: 1;
    }
}


.page-game-reviews__text-content {
    color: #E0E0E0;
}

.page-game-reviews__sub-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-game-reviews__list {
    list-style-type: decimal;
    margin-left: 20px;
    padding-left: 0;
    color: #E0E0E0;
}

.page-game-reviews__list li {
    margin-bottom: 10px;
    line-height: 1.8;
}

.page-game-reviews__image-wrapper {
    text-align: center;
}

.page-game-reviews__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    border: 2px solid #FFD700; /* Gold border for images */
}

/* Strategy Section */
.page-game-reviews__strategy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-game-reviews__strategy-item {
    background-color: #0A192F;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

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

.page-game-reviews__strategy-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 4px #FFD700);
}

.page-game-reviews__strategy-title {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-game-reviews__strategy-text {
    color: #E0E0E0;
    font-size: 0.95em;
}

/* Other Games Section */
.page-game-reviews__other-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-game-reviews__game-card {
    background-color: #050e1b;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-game-reviews__game-card:hover {
    transform: translateY(-5px);
}

.page-game-reviews__game-image {
    max-width: 100%;
    height: 180px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    border: 1px solid #FFD700;
}

.page-game-reviews__game-card-title {
    font-size: 1.3em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-game-reviews__game-card-description {
    color: #E0E0E0;
    font-size: 0.9em;
    margin-bottom: 20px;
}

.page-game-reviews__center-text {
    text-align: center;
    margin-top: 50px;
}

/* CTA Section */
.page-game-reviews__section--cta {
    background: linear-gradient(90deg, #0A192F, #2C3E50);
    padding: 80px 0;
}

.page-game-reviews__cta-content {
    text-align: center;
}

.page-game-reviews__cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

/* Detail Pages List Section */
.page-game-reviews__detail-pages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-game-reviews__detail-card {
    background-color: #050e1b;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-game-reviews__detail-card:hover {
    transform: translateY(-5px);
}

.page-game-reviews__detail-card-title {
    font-size: 1.4em;
    margin-bottom: 10px;
}

.page-game-reviews__detail-card-title a {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-game-reviews__detail-card-title a:hover {
    color: #e6c200;
    text-decoration: underline;
}

.page-game-reviews__detail-card-description {
    color: #E0E0E0;
    font-size: 0.95em;
    margin-bottom: 20px;
}

/* FAQ Section */
.page-game-reviews__faq-list {
    margin-top: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-game-reviews__faq-item {
    background-color: #0A192F;
    border: 1px solid rgba(255, 215, 0, 0.33);
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-game-reviews__faq-question {
    font-size: 1.3em;
    color: #FFD700;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px; /* Space for arrow */
}

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

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

.page-game-reviews__faq-answer {
    color: #E0E0E0;
    font-size: 1em;
    margin-top: 15px;
    display: none; /* Hidden by default, toggled by JS */
    padding-top: 10px;
    border-top: 1px solid rgba(255, 215, 0, 0.13);
}

.page-game-reviews__faq-answer.active {
    display: block;
}

/* Final CTA Section */
.page-game-reviews__section--final-cta {
    background: linear-gradient(45deg, #0A192F, #FFD700); /* Blend of primary and accent */
    padding: 100px 0;
    text-align: center;
    color: #0A192F; /* Dark text on brighter background */
}

.page-game-reviews__section--final-cta .page-game-reviews__section-title {
    color: #0A192F; /* Dark title on goldish background */
    text-shadow: none;
}
.page-game-reviews__section--final-cta .page-game-reviews__section-description {
    color: #333; /* Darker description text */
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-game-reviews__hero-title {
        font-size: 3em;
    }
    .page-game-reviews__section-title {
        font-size: 2em;
    }
    .page-game-reviews__button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-game-reviews__button--large {
        padding: 18px 35px;
        font-size: 1.2em;
    }
}

@media (max-width: 768px) {
    .page-game-reviews__hero {
        padding: 80px 0;
    }
    .page-game-reviews__hero-title {
        font-size: 2.5em;
    }
    .page-game-reviews__hero-description {
        font-size: 1.1em;
    }
    .page-game-reviews__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-game-reviews__section {
        padding: 60px 0;
    }
    .page-game-reviews__section-title {
        font-size: 1.8em;
    }
    .page-game-reviews__section-description {
        font-size: 1em;
        margin-bottom: 30px;
    }
    .page-game-reviews__features,
    .page-game-reviews__strategy-grid,
    .page-game-reviews__other-games-grid,
    .page-game-reviews__detail-pages-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .page-game-reviews__cta-actions {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .page-game-reviews__hero-title {
        font-size: 2em;
    }
    .page-game-reviews__section-title {
        font-size: 1.6em;
    }
    .page-game-reviews__button {
        width: 90%;
        max-width: 300px;
    }
    .page-game-reviews__hero-actions,
    .page-game-reviews__cta-actions {
        align-items: center;
    }
}