/* style/game-reviews.css */
.page-game-reviews {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
}

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

.page-game-reviews__hero {
    background: linear-gradient(135deg, #007BFF, #0056b3);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 450px;
}

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

.page-game-reviews__hero-subtitle {
    font-size: 1.25em;
    margin-bottom: 40px;
    max-width: 800px;
    opacity: 0.9;
}

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

.page-game-reviews__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-game-reviews__btn--primary {
    background-color: #FFD700; /* Gold */
    color: #0056b3; /* Darker blue for contrast */
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

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

.page-game-reviews__btn--secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}

.page-game-reviews__btn--secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 123, 255, 0.5);
}

.page-game-reviews__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.3;
}

.page-game-reviews__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.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(odd) {
    background-color: #f0f4f7;
}

.page-game-reviews__section-title {
    font-size: 2.5em;
    color: #007BFF;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
}

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

.page-game-reviews__about p {
    font-size: 1.1em;
    text-align: justify;
    margin-bottom: 15px;
    color: #444;
}

.page-game-reviews__category-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.page-game-reviews__category-list li {
    background-color: #e9f5ff;
    padding: 20px;
    border-radius: 8px;
    font-size: 1.1em;
    color: #0056b3;
    border-left: 5px solid #007BFF;
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.1);
    transition: transform 0.2s ease;
}

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

.page-game-reviews__game-type-review {
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid #eee;
}

.page-game-reviews__game-type-review:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
}

.page-game-reviews__game-type-title {
    font-size: 2em;
    color: #007BFF;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
}

.page-game-reviews__content-with-image {
    display: flex;
    align-items: center;
    gap: 40px;
}

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

.page-game-reviews__content-with-image .page-game-reviews__image-wrapper {
    flex: 1;
    min-width: 300px;
}

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

.page-game-reviews__game-type-review--reversed .page-game-reviews__content-with-image {
    flex-direction: row-reverse;
}

.page-game-reviews__text-content p {
    margin-bottom: 15px;
    font-size: 1.05em;
    color: #444;
    text-align: justify;
}

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

.page-game-reviews__detail-item {
    background-color: #fefefe;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-game-reviews__detail-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-game-reviews__detail-item-title {
    font-size: 1.5em;
    color: #007BFF;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-game-reviews__detail-item-title a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.page-game-reviews__detail-item-title a:hover {
    color: #FFD700; /* Gold on hover for links */
}

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

.page-game-reviews__cta-bottom {
    background: linear-gradient(45deg, #0056b3, #007BFF);
    color: #fff;
    text-align: center;
    padding: 80px 0;
    border-radius: 10px;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.page-game-reviews__cta-bottom .page-game-reviews__section-title {
    color: #FFD700;
    font-size: 3em;
    margin-bottom: 25px;
}

.page-game-reviews__cta-bottom .page-game-reviews__section-description {
    color: #e0e0e0;
    font-size: 1.2em;
    margin-bottom: 40px;
}

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

.page-game-reviews__cta-image-wrapper {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30%;
    height: auto;
    opacity: 0.2;
    z-index: 0;
}

.page-game-reviews__cta-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-game-reviews__hero-title {
        font-size: 2.5em;
    }
    .page-game-reviews__hero-subtitle {
        font-size: 1.1em;
    }
    .page-game-reviews__section-title {
        font-size: 2em;
    }
    .page-game-reviews__game-type-title {
        font-size: 1.8em;
    }
    .page-game-reviews__content-with-image {
        flex-direction: column;
        text-align: center;
    }
    .page-game-reviews__game-type-review--reversed .page-game-reviews__content-with-image {
        flex-direction: column;
    }
    .page-game-reviews__text-content {
        order: 2; /* Ensure text is below image on small screens */
    }
    .page-game-reviews__image-wrapper {
        order: 1;
        margin-bottom: 20px;
    }
    .page-game-reviews__cta-bottom .page-game-reviews__section-title {
        font-size: 2.5em;
    }
    .page-game-reviews__cta-image-wrapper {
        width: 50%;
    }
}

@media (max-width: 768px) {
    .page-game-reviews__hero {
        padding: 60px 0;
    }
    .page-game-reviews__hero-title {
        font-size: 2em;
    }
    .page-game-reviews__hero-subtitle {
        font-size: 1em;
    }
    .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;
    }
    .page-game-reviews__game-type-title {
        font-size: 1.5em;
    }
    .page-game-reviews__detail-list {
        grid-template-columns: 1fr;
    }
    .page-game-reviews__cta-bottom .page-game-reviews__section-title {
        font-size: 2em;
    }
    .page-game-reviews__cta-bottom .page-game-reviews__section-description {
        font-size: 1em;
    }
    .page-game-reviews__cta-image-wrapper {
        width: 60%;
    }
}

@media (max-width: 480px) {
    .page-game-reviews__hero-title {
        font-size: 1.8em;
    }
    .page-game-reviews__hero-subtitle {
        font-size: 0.95em;
    }
    .page-game-reviews__section-title {
        font-size: 1.5em;
    }
    .page-game-reviews__game-type-title {
        font-size: 1.3em;
    }
    .page-game-reviews__btn {
        font-size: 1em;
        padding: 12px 25px;
    }
    .page-game-reviews__cta-bottom .page-game-reviews__section-title {
        font-size: 1.8em;
    }
    .page-game-reviews__cta-image-wrapper {
        width: 70%;
    }
}