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

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

.page-game-reviews__section {
    padding: 60px 0;
    background-color: #f9f9f9;
    color: #0A2463; /* Dark blue text on light background */
}

.page-game-reviews__section:nth-of-type(even) {
    background-color: #e0e6f7; /* Lighter shade of main color for contrast */
}

.page-game-reviews__hero {
    background: linear-gradient(135deg, #0A2463 0%, #1A3F87 100%);
    color: #FFFFFF;
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.page-game-reviews__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[IMAGE:hero_main]') no-repeat center center/cover;
    opacity: 0.15; /* Subtle background image */
    z-index: 1;
}

.page-game-reviews__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

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

.page-game-reviews__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #F5DB9C; /* Light gold for description */
}

.page-game-reviews__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-size: 1.1em;
    cursor: pointer;
    border: none;
}

.page-game-reviews__button--primary {
    background-color: #FFD700;
    color: #0A2463;
}

.page-game-reviews__button--primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-game-reviews__button--secondary {
    background-color: #0A2463;
    color: #FFD700;
    border: 1px solid #FFD700;
}

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

.page-game-reviews__section-title {
    font-size: 2.5em;
    color: #0A2463;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

.page-game-reviews__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    margin: 10px auto 0;
    border-radius: 2px;
}

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

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

.page-game-reviews__feature-item {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    border-top: 5px solid #FFD700;
}

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

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

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

.page-game-reviews__feature-text {
    color: #555;
}

.page-game-reviews__game-type-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-game-reviews__game-type-card {
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.page-game-reviews__game-type-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.page-game-reviews__game-type-title {
    font-size: 1.4em;
    color: #0A2463;
    margin: 20px 15px 10px;
}

.page-game-reviews__game-type-description {
    color: #555;
    padding: 0 15px 20px;
    font-size: 0.95em;
}

.page-game-reviews__detail-reviews {
    background-color: #f0f4f7;
}

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

.page-game-reviews__review-item {
    background-color: #FFFFFF;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-left: 5px solid #0A2463;
}

.page-game-reviews__review-item-title {
    font-size: 1.3em;
    margin-bottom: 10px;
    color: #0A2463;
}

.page-game-reviews__review-item-title a {
    color: #0A2463;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-game-reviews__review-item-title a:hover {
    color: #FFD700;
}

.page-game-reviews__review-item-description {
    color: #666;
    font-size: 0.9em;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-game-reviews__how-to-use {
    background-color: #f9f9f9;
}

.page-game-reviews__ordered-list {
    list-style: none;
    counter-reset: my-awesome-counter;
    padding: 0;
    margin: 50px auto 0;
    max-width: 900px;
}

.page-game-reviews__ordered-list li {
    counter-increment: my-awesome-counter;
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.page-game-reviews__ordered-list li::before {
    content: counter(my-awesome-counter);
    background-color: #FFD700;
    color: #0A2463;
    font-size: 1.8em;
    font-weight: bold;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    flex-shrink: 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-game-reviews__list-title {
    font-size: 1.6em;
    color: #0A2463;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-game-reviews__list-text {
    color: #555;
    font-size: 1.1em;
}

.page-game-reviews__cta-section {
    background: linear-gradient(90deg, #0A2463 0%, #1A3F87 100%);
    color: #FFFFFF;
    text-align: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.page-game-reviews__cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[IMAGE:cta_banner]') no-repeat center center/cover;
    opacity: 0.1; /* Very subtle background image */
    z-index: 1;
}

.page-game-reviews__cta-content {
    position: relative;
    z-index: 2;
}

.page-game-reviews__cta-title {
    font-size: 3em;
    color: #FFD700;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

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

/* Responsive Design */
@media (max-width: 992px) {
    .page-game-reviews__hero-title {
        font-size: 2.8em;
    }
    .page-game-reviews__section-title {
        font-size: 2em;
    }
    .page-game-reviews__cta-title {
        font-size: 2.5em;
    }
    .page-game-reviews__features-grid,
    .page-game-reviews__game-type-grid,
    .page-game-reviews__review-list-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-game-reviews__hero {
        padding: 60px 0;
    }
    .page-game-reviews__hero-title {
        font-size: 2.2em;
    }
    .page-game-reviews__hero-description {
        font-size: 1em;
    }
    .page-game-reviews__section {
        padding: 40px 0;
    }
    .page-game-reviews__section-title {
        font-size: 1.8em;
    }
    .page-game-reviews__section-intro {
        font-size: 1em;
        margin-bottom: 30px;
    }
    .page-game-reviews__feature-item,
    .page-game-reviews__game-type-card,
    .page-game-reviews__review-item {
        padding: 20px;
    }
    .page-game-reviews__cta-title {
        font-size: 2em;
    }
    .page-game-reviews__cta-description {
        font-size: 1.1em;
    }
    .page-game-reviews__ordered-list li {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .page-game-reviews__ordered-list li::before {
        margin-right: 0;
        margin-bottom: 15px;
    }
    .page-game-reviews__list-title {
        font-size: 1.4em;
    }
    .page-game-reviews__list-text {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-game-reviews__hero-title {
        font-size: 1.8em;
    }
    .page-game-reviews__hero-description {
        font-size: 0.9em;
    }
    .page-game-reviews__button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-game-reviews__section-title {
        font-size: 1.5em;
    }
    .page-game-reviews__cta-title {
        font-size: 1.8em;
    }
    .page-game-reviews__cta-description {
        font-size: 1em;
    }
    .page-game-reviews__features-grid,
    .page-game-reviews__game-type-grid,
    .page-game-reviews__review-list-grid {
        grid-template-columns: 1fr;
    }
}