/* style/game-reviews.css */

/* Base styles for the page content */
.page-game-reviews {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333333; /* Dark gray for body text for good contrast on light backgrounds */
    background-color: #f8f9fa; /* Light background */
}

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

.page-game-reviews__section {
    padding: 60px 0;
    margin-bottom: 20px;
}

.page-game-reviews__section:nth-of-type(even) {
    background-color: #e9ecef; /* Slightly darker background for alternating sections */
}

/* Headings */
.page-game-reviews__hero-title {
    font-size: 3.2em;
    color: #007bff; /* Main brand color for primary titles */
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-game-reviews__hero-subtitle {
    font-size: 1.4em;
    color: #555555;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-game-reviews__section-title {
    font-size: 2.5em;
    color: #007bff; /* Main brand color for section titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-game-reviews__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #ffc107; /* Accent color for underline */
    border-radius: 2px;
}

.page-game-reviews__sub-title {
    font-size: 1.8em;
    color: #0056b3; /* Darker shade of main color for sub-titles */
    margin-top: 30px;
    margin-bottom: 15px;
    border-left: 5px solid #ffc107; /* Accent border */
    padding-left: 15px;
}

/* Text styles */
.page-game-reviews__text {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #495057; /* Slightly lighter dark gray for paragraph text */
}

.page-game-reviews__text-link {
    color: #007bff;
    text-decoration: none;
}

.page-game-reviews__text-link:hover {
    text-decoration: underline;
    color: #0056b3;
}

.page-game-reviews .highlight {
    color: #007bff; /* Main brand color for highlighting keywords */
    font-weight: bold;
}

/* Buttons */
.page-game-reviews__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
    margin: 10px 10px 10px 0;
}

.page-game-reviews__btn--primary {
    background-color: #007bff; /* Main brand color */
    color: #ffffff;
}

.page-game-reviews__btn--primary:hover {
    background-color: #0056b3; /* Darker main color on hover */
    transform: translateY(-2px);
}

.page-game-reviews__btn--secondary {
    background-color: #ffc107; /* Accent color */
    color: #333333; /* Dark text for contrast on light accent */
}

.page-game-reviews__btn--secondary:hover {
    background-color: #e0a800; /* Darker accent color on hover */
    transform: translateY(-2px);
}

.page-game-reviews__btn--download {
    background-color: #28a745; /* Green for download, good contrast with white text */
    color: #ffffff;
}

.page-game-reviews__btn--download:hover {
    background-color: #218838;
    transform: translateY(-2px);
}

.page-game-reviews__btn--small {
    padding: 8px 18px;
    font-size: 0.95em;
    margin: 5px 5px 5px 0;
    background-color: #007bff;
    color: #ffffff;
}

.page-game-reviews__btn--small:hover {
    background-color: #0056b3;
    transform: translateY(-1px);
}

.page-game-reviews__btn--large {
    padding: 15px 35px;
    font-size: 1.25em;
    margin-top: 30px;
}

.page-game-reviews__btn-icon {
    margin-left: 8px;
    font-size: 1.1em;
}

/* Hero Section Specific */
.page-game-reviews__hero {
    background: linear-gradient(135deg, #007bff, #0056b3); /* Gradient with main color */
    padding: 80px 0;
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-game-reviews__hero-title .highlight {
    color: #ffc107; /* Accent color for highlight in hero title */
}

.page-game-reviews__hero-subtitle {
    color: #e9ecef; /* Light gray for subtitle on dark background */
}

.page-game-reviews__hero-image-wrapper {
    margin-top: 40px;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-game-reviews__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Image styles */
.page-game-reviews__img-responsive {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-game-reviews__image-left {
    float: left;
    margin-right: 20px;
    margin-bottom: 20px;
    width: 40%;
    max-width: 400px;
}

.page-game-reviews__image-right {
    float: right;
    margin-left: 20px;
    margin-bottom: 20px;
    width: 40%;
    max-width: 400px;
}

.page-game-reviews__image-center {
    text-align: center;
    margin: 40px 0;
}

.page-game-reviews__image-center .page-game-reviews__img-responsive {
    max-width: 70%;
}

.page-game-reviews__image-full {
    margin: 30px 0;
    text-align: center;
}

/* Lists */
.page-game-reviews__list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.page-game-reviews__list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    font-size: 1.05em;
    color: #495057;
}

.page-game-reviews__list li::before {
    content: '•';
    color: #ffc107; /* Accent color for list bullets */
    font-size: 1.2em;
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
}

.page-game-reviews__list--check li::before {
    content: '✔';
    color: #28a745; /* Green checkmark */
}

.page-game-reviews__list--cross li::before {
    content: '✖';
    color: #dc3545; /* Red cross mark */
}

/* Review Content Specific */
.page-game-reviews__review-content {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.page-game-reviews__pros-cons {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.page-game-reviews__pros,
.page-game-reviews__cons {
    flex: 1;
    min-width: 300px;
    padding: 20px;
    border-radius: 8px;
    background-color: #f0f8ff; /* Light blue background for pros/cons */
    border: 1px solid #cfe2ff; /* Light blue border */
}

.page-game-reviews__pros h4 {
    color: #28a745; /* Green for pros title */
    font-size: 1.4em;
    margin-bottom: 15px;
}

.page-game-reviews__cons h4 {
    color: #dc3545; /* Red for cons title */
    font-size: 1.4em;
    margin-bottom: 15px;
}

.page-game-reviews__cta-block {
    text-align: center;
    margin-top: 40px;
    padding: 30px;
    background-color: #fff3cd; /* Light yellow background for CTA block */
    border: 1px solid #ffeeba;
    border-radius: 8px;
}

.page-game-reviews__cta-text {
    font-size: 1.3em;
    font-weight: bold;
    color: #333333;
    margin-bottom: 25px;
}

/* Methodology Grid */
.page-game-reviews__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-game-reviews__grid-item {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border-top: 4px solid #007bff; /* Main color top border */
}

.page-game-reviews__grid-item .page-game-reviews__sub-title {
    font-size: 1.5em;
    margin-top: 0;
    border-left: none;
    padding-left: 0;
    color: #007bff;
}

/* Detailed List (Cards) */
.page-game-reviews__card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-game-reviews__card {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-reviews__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-game-reviews__card-image-wrapper {
    height: 200px;
    overflow: hidden;
    background-color: #eeeeee;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-game-reviews__card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.page-game-reviews__card-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.page-game-reviews__card-title {
    font-size: 1.4em;
    margin-top: 0;
    margin-bottom: 10px;
    color: #007bff;
}

.page-game-reviews__card-title a {
    color: #007bff;
    text-decoration: none;
}

.page-game-reviews__card-title a:hover {
    text-decoration: underline;
    color: #0056b3;
}

.page-game-reviews__card-description {
    font-size: 0.95em;
    color: #6c757d;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* FAQ Section */
.page-game-reviews__faq-item {
    background-color: #ffffff;
    padding: 20px 25px;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
    border-left: 5px solid #ffc107; /* Accent color border */
}

.page-game-reviews__faq-question {
    font-size: 1.3em;
    color: #007bff;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-game-reviews__faq-answer {
    font-size: 1.05em;
    color: #495057;
}

/* Conclusion Section */
.page-game-reviews__conclusion {
    text-align: center;
    background-color: #007bff; /* Main brand color background */
    color: #ffffff;
    padding: 80px 0;
}

.page-game-reviews__conclusion .page-game-reviews__section-title {
    color: #ffffff;
}

.page-game-reviews__conclusion .page-game-reviews__section-title::after {
    background-color: #ffc107;
}

.page-game-reviews__conclusion .page-game-reviews__text {
    color: #e9ecef;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.2em;
}

.page-game-reviews__conclusion .highlight {
    color: #ffc107;
}

/* Clearfix for floated images */
.page-game-reviews__review-content::after {
    content: "";
    display: table;
    clear: both;
}


/* Responsive Design */
@media (max-width: 992px) {
    .page-game-reviews__hero-title {
        font-size: 2.5em;
    }
    .page-game-reviews__hero-subtitle {
        font-size: 1.2em;
    }
    .page-game-reviews__section-title {
        font-size: 2em;
    }
    .page-game-reviews__sub-title {
        font-size: 1.6em;
    }
    .page-game-reviews__image-left,
    .page-game-reviews__image-right {
        float: none;
        width: 100%;
        max-width: 100%;
        margin: 20px 0;
    }
    .page-game-reviews__pros-cons {
        flex-direction: column;
    }
    .page-game-reviews__grid {
        grid-template-columns: 1fr;
    }
    .page-game-reviews__card-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-game-reviews__hero-title {
        font-size: 2em;
    }
    .page-game-reviews__hero-subtitle {
        font-size: 1em;
    }
    .page-game-reviews__section-title {
        font-size: 1.8em;
    }
    .page-game-reviews__sub-title {
        font-size: 1.4em;
    }
    .page-game-reviews__btn {
        width: 100%;
        margin-right: 0;
    }
    .page-game-reviews__cta-block .page-game-reviews__btn {
        margin-bottom: 15px;
    }
    .page-game-reviews__image-center .page-game-reviews__img-responsive {
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .page-game-reviews__hero-title {
        font-size: 1.8em;
    }
    .page-game-reviews__section-title {
        font-size: 1.5em;
    }
    .page-game-reviews__sub-title {
        font-size: 1.2em;
    }
    .page-game-reviews__text,
    .page-game-reviews__list li,
    .page-game-reviews__card-description,
    .page-game-reviews__faq-answer {
        font-size: 0.95em;
    }
    .page-game-reviews__card-title {
        font-size: 1.2em;
    }
}