/* style/game-reviews.css */
.page-game-reviews {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #E0E0E0; /* Light gray text for dark background */
    background-color: #121212; /* Very dark background */
}

.page-game-reviews .highlight {
    color: #FFD700;
}

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

/* Hero Section */
.page-game-reviews-hero {
    background: linear-gradient(135deg, #1A237E 0%, #0D103A 100%);
    padding: 100px 0;
    text-align: center;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.page-game-reviews-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    animation: page-game-reviews-hero-glow 15s infinite alternate;
    z-index: 0;
}

@keyframes page-game-reviews-hero-glow {
    0% { transform: scale(0.5) translate(0, 0); opacity: 0.5; }
    100% { transform: scale(1.5) translate(20%, 20%); opacity: 0.8; }
}

.page-game-reviews-main-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
}

.page-game-reviews-hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.page-game-reviews-hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.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;
}

.page-game-reviews-btn.primary-btn {
    background-color: #FFD700;
    color: #1A237E;
    border: 2px solid #FFD700;
}

.page-game-reviews-btn.primary-btn:hover {
    background-color: #E6C200;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(255, 215, 0, 0.4);
}

.page-game-reviews-btn.secondary-btn {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-game-reviews-btn.secondary-btn:hover {
    background-color: rgba(255, 215, 0, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(255, 215, 0, 0.2);
}

.page-game-reviews-btn.small-btn {
    padding: 10px 20px;
    font-size: 0.9em;
}

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

/* General Section Styles */
.page-game-reviews-section {
    padding: 60px 0;
    text-align: center;
}

.page-game-reviews-section-title {
    font-size: 2.5em;
    margin-bottom: 30px;
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.page-game-reviews-section p {
    font-size: 1.1em;
    max-width: 900px;
    margin: 0 auto 30px auto;
    color: #CCCCCC;
}

/* Intro Section */
.page-game-reviews-intro {
    background-color: #1A237E;
}

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

.page-game-reviews-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

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

/* Game Categories Section */
.page-game-reviews-game-categories {
    background-color: #0D103A;
}

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

.page-game-reviews-category-card {
    background-color: #1A237E;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-game-reviews-category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.6);
}

.page-game-reviews-card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-game-reviews-card-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-game-reviews-card-description {
    font-size: 0.95em;
    color: #B0B0B0;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Deep Dive Section */
.page-game-reviews-deep-dive {
    background-color: #1A237E;
}

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

.page-game-reviews-feature-item {
    background-color: #0D103A;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-game-reviews-feature-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-game-reviews-feature-item p {
    font-size: 1em;
    color: #B0B0B0;
    margin-bottom: 0;
}

/* Tips Section */
.page-game-reviews-tips {
    background-color: #0D103A;
}

.page-game-reviews-list {
    list-style: none;
    padding: 0;
    max-width: 900px;
    margin: 40px auto;
    text-align: left;
}

.page-game-reviews-list li {
    background-color: #1A237E;
    margin-bottom: 15px;
    padding: 20px 25px;
    border-radius: 8px;
    font-size: 1.1em;
    color: #E0E0E0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-game-reviews-list li strong {
    color: #FFD700;
}

/* Detail Pages Section */
.page-game-reviews-detail-pages {
    background-color: #1A237E;
}

.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-card {
    background-color: #0D103A;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-game-reviews-detail-title {
    font-size: 1.4em;
    margin-bottom: 15px;
}

.page-game-reviews-detail-title a {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-game-reviews-detail-title a:hover {
    color: #E6C200;
    text-decoration: underline;
}

.page-game-reviews-detail-description {
    font-size: 0.95em;
    color: #B0B0B0;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* CTA Bottom Section */
.page-game-reviews-cta-bottom {
    background: linear-gradient(45deg, #FFD700 0%, #E6C200 100%);
    padding: 80px 0;
    color: #1A237E;
}

.page-game-reviews-cta-bottom .page-game-reviews-section-title {
    color: #1A237E;
    text-shadow: none;
}

.page-game-reviews-cta-bottom p {
    color: #333333;
    margin-bottom: 40px;
}

.page-game-reviews-cta-bottom .page-game-reviews-btn.primary-btn {
    background-color: #1A237E;
    color: #FFD700;
    border: 2px solid #1A237E;
}

.page-game-reviews-cta-bottom .page-game-reviews-btn.primary-btn:hover {
    background-color: #0D103A;
    border-color: #0D103A;
    box-shadow: 0 8px 20px rgba(26, 35, 126, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-game-reviews-main-title {
        font-size: 2.5em;
    }

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

    .page-game-reviews-hero-cta {
        flex-direction: column;
        gap: 15px;
    }

    .page-game-reviews-btn {
        width: 80%;
        margin: 0 auto;
    }

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

    .page-game-reviews-section p {
        font-size: 1em;
    }

    .page-game-reviews-category-card, .page-game-reviews-feature-item, .page-game-reviews-detail-card {
        padding: 20px;
    }

    .page-game-reviews-card-title {
        font-size: 1.4em;
    }

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

    .page-game-reviews-detail-title {
        font-size: 1.2em;
    }
}

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

    .page-game-reviews-hero {
        padding: 80px 0;
    }

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

    .page-game-reviews-btn {
        width: 90%;
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-game-reviews-list li {
        font-size: 0.95em;
        padding: 15px 20px;
    }
}