/* style/game-reviews.css */

/* General styles for the page content */
.page-game-reviews {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

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

/* Hero Section */
.page-game-reviews__hero {
    background: linear-gradient(135deg, #FFD700 0%, #2F4F4F 100%); /* Gold to Dark Slate Gray gradient */
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

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

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

/* Buttons */
.page-game-reviews__btn {
    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;
    border: none;
}

.page-game-reviews__btn--primary {
    background-color: #FFD700; /* Gold */
    color: #2F4F4F; /* Dark Slate Gray */
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-game-reviews__btn--primary:hover {
    background-color: #e6c200; /* Slightly darker gold */
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-game-reviews__btn--secondary {
    background-color: #2F4F4F; /* Dark Slate Gray */
    color: #FFD700; /* Gold */
    border: 2px solid #FFD700;
    box-shadow: 0 4px 15px rgba(47, 79, 79, 0.4);
}

.page-game-reviews__btn--secondary:hover {
    background-color: #4a6a6a; /* Slightly lighter dark slate gray */
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(47, 79, 79, 0.6);
}

.page-game-reviews__btn--small {
    padding: 10px 20px;
    font-size: 0.9em;
    border-radius: 5px;
}

.page-game-reviews__btn--large {
    padding: 18px 35px;
    font-size: 1.2em;
    border-radius: 10px;
}

/* Section General Styles */
.page-game-reviews__section {
    padding: 60px 0;
    background-color: #fff;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

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

.page-game-reviews__section-title {
    font-size: 2.5em;
    color: #2F4F4F;
    text-align: center;
    margin-bottom: 30px;
    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: #FFD700;
    border-radius: 2px;
}

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

/* Content Wrapper for text and image */
.page-game-reviews__content-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}

.page-game-reviews__content-wrapper--reverse {
    flex-direction: row-reverse;
}

.page-game-reviews__text-content {
    flex: 1;
    font-size: 1.1em;
    color: #444;
}

.page-game-reviews__text-content h3 {
    font-size: 1.5em;
    color: #2F4F4F;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-game-reviews__image-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

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

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

.page-game-reviews__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FFD700;
    font-weight: bold;
    font-size: 1.2em;
}

.page-game-reviews__list--ordered {
    list-style: decimal;
    padding-left: 25px;
}

.page-game-reviews__list--ordered li {
    padding-left: 0;
    margin-bottom: 10px;
    color: #333;
}

.page-game-reviews__list--ordered li::before {
    content: none;
}

.page-game-reviews__list--ordered li strong {
    color: #2F4F4F;
}

/* Game List Section (Card Grid) */
.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,
.page-game-reviews__promo-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-game-reviews__card:hover,
.page-game-reviews__promo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.page-game-reviews__card-img,
.page-game-reviews__promo-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid #eee;
}

.page-game-reviews__card-title,
.page-game-reviews__promo-title {
    font-size: 1.4em;
    color: #2F4F4F;
    padding: 20px 20px 10px;
    margin-bottom: 0;
}

.page-game-reviews__card-title a,
.page-game-reviews__promo-title a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.page-game-reviews__card-title a:hover,
.page-game-reviews__promo-title a:hover {
    color: #FFD700;
}

.page-game-reviews__card-description,
.page-game-reviews__promo-description {
    font-size: 1em;
    color: #666;
    padding: 0 20px 20px;
    flex-grow: 1;
}

.page-game-reviews__card .page-game-reviews__btn,
.page-game-reviews__promo-card .page-game-reviews__btn {
    margin: 0 20px 20px;
    align-self: flex-start;
}


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

/* Final CTA Section */
.page-game-reviews__cta-final {
    background: linear-gradient(45deg, #2F4F4F 0%, #4a6a6a 100%);
    color: #fff;
    text-align: center;
    padding: 80px 0;
    border-radius: 10px;
    margin-bottom: 40px;
}

.page-game-reviews__cta-final .page-game-reviews__section-title {
    color: #FFD700;
}

.page-game-reviews__cta-final .page-game-reviews__section-title::after {
    background-color: #fff;
}

.page-game-reviews__cta-final .page-game-reviews__section-description {
    color: #e0e0e0;
    margin-bottom: 50px;
}

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

/* Responsive Design */
@media (max-width: 992px) {
    .page-game-reviews__hero-title {
        font-size: 2.8em;
    }

    .page-game-reviews__hero-subtitle {
        font-size: 1.1em;
    }

    .page-game-reviews__section-title {
        font-size: 2em;
    }

    .page-game-reviews__content-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .page-game-reviews__content-wrapper--reverse {
        flex-direction: column;
    }

    .page-game-reviews__text-content,
    .page-game-reviews__image-content {
        flex: none;
        width: 100%;
    }

    .page-game-reviews__card-grid,
    .page-game-reviews__promo-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-game-reviews__hero {
        padding: 80px 0 60px;
    }

    .page-game-reviews__hero-title {
        font-size: 2.2em;
    }

    .page-game-reviews__hero-subtitle {
        font-size: 1em;
        margin-bottom: 30px;
    }

    .page-game-reviews__hero-actions {
        flex-direction: column;
        gap: 15px;
    }

    .page-game-reviews__btn {
        width: 80%;
        max-width: 300px;
        margin: 0 auto;
    }

    .page-game-reviews__section {
        padding: 40px 0;
    }

    .page-game-reviews__section-title {
        font-size: 1.8em;
        margin-bottom: 25px;
    }

    .page-game-reviews__section-description {
        font-size: 0.95em;
        margin-bottom: 30px;
    }

    .page-game-reviews__card-img,
    .page-game-reviews__promo-img {
        height: 180px;
    }

    .page-game-reviews__cta-final {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .page-game-reviews__hero-title {
        font-size: 1.8em;
    }

    .page-game-reviews__hero-subtitle {
        font-size: 0.9em;
    }

    .page-game-reviews__btn {
        width: 90%;
        padding: 12px 20px;
        font-size: 1em;
    }

    .page-game-reviews__section-title {
        font-size: 1.5em;
    }

    .page-game-reviews__text-content,
    .page-game-reviews__list li,
    .page-game-reviews__card-description {
        font-size: 0.95em;
    }

    .page-game-reviews__card-grid,
    .page-game-reviews__promo-grid {
        grid-template-columns: 1fr;
    }
}