/* style/game-reviews.css */
.page-game-reviews {
    font-family: 'Arial', sans-serif;
    color: #0A2463; /* Dark blue for main text */
    line-height: 1.6;
    background-color: #f8f8f8; /* Light background for readability */
}

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

.page-game-reviews__hero {
    background: linear-gradient(135deg, #0A2463 0%, #304E8A 100%); /* Dark blue gradient */
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-game-reviews__hero::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 215, 0, 0.1); /* Golden accent */
    border-radius: 50%;
    filter: blur(80px);
}

.page-game-reviews__hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background: rgba(255, 215, 0, 0.15); /* Golden accent */
    border-radius: 50%;
    filter: blur(100px);
}

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

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

.page-game-reviews__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #0A2463; /* Dark blue text on gold */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-game-reviews__cta-button:hover {
    background-color: #e6c200; /* Darker gold on hover */
    transform: translateY(-3px);
}

.page-game-reviews__cta-button--small {
    padding: 10px 20px;
    font-size: 1em;
}

.page-game-reviews__cta-button--large {
    padding: 18px 35px;
    font-size: 1.2em;
}

.page-game-reviews__section {
    padding: 60px 0;
    background-color: #ffffff;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

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

.page-game-reviews__section-title {
    font-size: 2.5em;
    color: #0A2463;
    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: #FFD700;
    border-radius: 2px;
}

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

.page-game-reviews__content-block {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
}

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

.page-game-reviews__image-wrapper {
    flex: 1;
    min-width: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-game-reviews__image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.page-game-reviews__image:hover {
    transform: scale(1.03);
}

.page-game-reviews__text-content {
    flex: 1;
}

.page-game-reviews__text-content p {
    margin-bottom: 15px;
    color: #333333; /* Darker grey for body text for better contrast */
}

.page-game-reviews__offer-card {
    display: flex;
    align-items: center;
    background-color: #0A2463; /* Dark blue background for offer */
    color: #ffffff;
    border-radius: 10px;
    padding: 30px;
    margin-top: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    gap: 30px;
}

.page-game-reviews__offer-content {
    flex: 2;
}

.page-game-reviews__offer-content p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #f0f0f0;
}

.page-game-reviews__offer-image {
    flex: 1;
    min-width: 200px;
    border-radius: 8px;
    overflow: hidden;
}

.page-game-reviews__offer-image .page-game-reviews__image {
    border: 3px solid #FFD700; /* Gold border for offer image */
    border-radius: 8px;
}

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

.page-game-reviews__game-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    text-align: center;
    padding-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-reviews__game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-game-reviews__game-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 20px;
}

.page-game-reviews__game-card-title {
    font-size: 1.4em;
    color: #0A2463;
    margin-bottom: 15px;
    padding: 0 15px;
}

.page-game-reviews__game-card p {
    color: #555555;
    padding: 0 15px;
    margin-bottom: 20px;
}

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

.page-game-reviews__instruction-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
}

.page-game-reviews__instruction-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    margin-bottom: 25px;
    border-radius: 8px;
    border: 2px solid #FFD700;
}

.page-game-reviews__instruction-card ol {
    list-style-type: decimal;
    text-align: left;
    margin: 0 auto 25px;
    padding-left: 25px;
    color: #333333;
    max-width: 300px;
}

.page-game-reviews__instruction-card ol li {
    margin-bottom: 10px;
}

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

.page-game-reviews__review-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-game-reviews__review-list li {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    padding: 25px;
    transition: transform 0.2s ease;
}

.page-game-reviews__review-list li:hover {
    transform: translateY(-3px);
}

.page-game-reviews__review-title {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.page-game-reviews__review-title a {
    color: #0A2463;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.2s ease;
}

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

.page-game-reviews__review-list p {
    color: #555555;
    margin-bottom: 15px;
}

.page-game-reviews__read-more {
    display: inline-block;
    color: #0A2463;
    text-decoration: none;
    font-weight: bold;
    border-bottom: 2px solid #FFD700;
    padding-bottom: 3px;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.page-game-reviews__read-more:hover {
    color: #FFD700;
    border-color: #0A2463;
}

.page-game-reviews__conclusion {
    text-align: center;
    padding-bottom: 80px;
}

.page-game-reviews__conclusion p {
    font-size: 1.1em;
    max-width: 900px;
    margin: 20px auto 40px;
    color: #333333;
}

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

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

    .page-game-reviews__content-block {
        flex-direction: column;
        text-align: center;
    }

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

    .page-game-reviews__offer-card {
        flex-direction: column;
        text-align: center;
    }

    .page-game-reviews__offer-image {
        min-width: unset;
        width: 80%;
    }
}

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

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

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

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

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

    .page-game-reviews__game-grid, .page-game-reviews__instruction-grid {
        grid-template-columns: 1fr;
    }

    .page-game-reviews__instruction-card ol {
        max-width: none;
    }
}

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

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

    .page-game-reviews__cta-button {
        font-size: 0.9em;
        padding: 12px 25px;
    }

    .page-game-reviews__cta-button--large {
        font-size: 1em;
        padding: 15px 30px;
    }
}