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

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

.page-game-reviews__hero-section {
    background: linear-gradient(135deg, #4A0E6B 0%, #7c22a7 100%); /* Dark purple to slightly lighter purple */
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-game-reviews__hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, #FFD700 0%, transparent 70%);
    opacity: 0.05;
    animation: page-game-reviews__rotate 20s linear infinite;
}

@keyframes page-game-reviews__rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

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

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

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

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

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

.page-game-reviews__btn--secondary {
    background-color: #4A0E6B; /* Dark purple */
    color: #FFD700; /* Gold */
    border: 2px solid #FFD700;
    box-shadow: 0 3px 10px rgba(74, 14, 107, 0.3);
}

.page-game-reviews__btn--secondary:hover {
    background-color: #5d1a84;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 14, 107, 0.5);
}

.page-game-reviews__section-title {
    font-size: 2.5em;
    color: #4A0E6B; /* Dark purple */
    text-align: center;
    margin-bottom: 50px;
    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; /* Gold accent */
    border-radius: 2px;
}

.page-game-reviews__intro-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.page-game-reviews__intro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    text-align: center;
}

.page-game-reviews__intro-item {
    background-color: #f2f2f2;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-game-reviews__intro-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.2));
}

.page-game-reviews__intro-heading {
    font-size: 1.5em;
    color: #4A0E6B;
    margin-bottom: 15px;
}

.page-game-reviews__reviews-list {
    padding: 80px 0;
    background-color: #f8f8f8;
}

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

.page-game-reviews__review-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.page-game-reviews__review-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-bottom: 4px solid #FFD700;
}

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

.page-game-reviews__review-title {
    font-size: 1.6em;
    margin-bottom: 15px;
    color: #4A0E6B;
    font-weight: bold;
}

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

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

.page-game-reviews__review-description {
    font-size: 1em;
    color: #555;
    margin-bottom: 25px;
    flex-grow: 1;
}

.page-game-reviews__cta-section {
    background-color: #4A0E6B; /* Dark purple */
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

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

.page-game-reviews__cta-section .page-game-reviews__section-title::after {
    background-color: #ffffff;
}

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

/* Responsive Design */
@media (max-width: 992px) {
    .page-game-reviews__hero-title {
        font-size: 2.8em;
    }
    .page-game-reviews__hero-description {
        font-size: 1.1em;
    }
    .page-game-reviews__section-title {
        font-size: 2em;
    }
    .page-game-reviews__grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .page-game-reviews__review-image {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .page-game-reviews__hero-section,
    .page-game-reviews__intro-section,
    .page-game-reviews__reviews-list,
    .page-game-reviews__cta-section {
        padding: 60px 0;
    }
    .page-game-reviews__hero-title {
        font-size: 2.2em;
    }
    .page-game-reviews__hero-description {
        font-size: 1em;
    }
    .page-game-reviews__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-game-reviews__intro-grid {
        grid-template-columns: 1fr;
    }
    .page-game-reviews__section-title {
        font-size: 1.8em;
    }
    .page-game-reviews__grid {
        grid-template-columns: 1fr;
    }
    .page-game-reviews__review-image {
        height: 200px;
    }
}

@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__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-game-reviews__intro-item {
        padding: 20px;
    }
    .page-game-reviews__intro-icon {
        width: 50px;
        height: 50px;
    }
    .page-game-reviews__review-title {
        font-size: 1.4em;
    }
    .page-game-reviews__review-description {
        font-size: 0.9em;
    }
}