/* style/game-reviews.css */

/* Base styles for the page content wrapper */
.page-game-reviews {
    font-family: 'Arial', sans-serif;
    color: #e5dfd3; /* Light text for dark background */
    background-color: #1A202C; /* Main dark background */
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Hero Section */
.page-game-reviews__hero {
    background: linear-gradient(135deg, #1A202C 0%, #3a4a60 100%);
    padding: 100px 0;
    text-align: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.page-game-reviews__hero::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(255, 215, 0, 0.1); /* Auxiliary color with transparency */
    border-radius: 50%;
    animation: page-game-reviews__floatEffect 15s infinite ease-in-out;
    z-index: 0;
}

.page-game-reviews__hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background-color: rgba(255, 215, 0, 0.15); /* Auxiliary color with transparency */
    border-radius: 50%;
    animation: page-game-reviews__floatEffect 12s infinite reverse ease-in-out;
    z-index: 0;
}

@keyframes page-game-reviews__floatEffect {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, 20px) scale(1.05); }
    100% { transform: translate(0, 0) scale(1); }
}


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

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

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

/* General button styles */
.page-game-reviews__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;
    white-space: nowrap;
    cursor: pointer;
}

.page-game-reviews__btn--primary {
    background-color: #FFD700; /* Gold */
    color: #1A202C; /* Dark text */
    border: 2px solid #FFD700;
}

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

.page-game-reviews__btn--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700;
}

.page-game-reviews__btn--secondary:hover {
    background-color: #FFD700;
    color: #1A202C;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(255, 215, 0, 0.3);
}

.page-game-reviews__btn--small {
    padding: 10px 20px;
    font-size: 0.9em;
    border-radius: 5px;
}

/* Section general styles */
.page-game-reviews__section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 40px;
    padding-top: 60px;
    font-weight: bold;
}

.page-game-reviews__intro,
.page-game-reviews__game-categories,
.page-game-reviews__why-w69,
.page-game-reviews__detail-pages,
.page-game-reviews__faq,
.page-game-reviews__cta-final {
    padding: 80px 0;
    background-color: #1A202C;
    color: #e5dfd3;
}

.page-game-reviews__intro p {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 30px auto;
}

.page-game-reviews__image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Game Categories Grid */
.page-game-reviews__category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-game-reviews__category-card {
    background-color: #2a3447; /* Slightly lighter dark background */
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    text-align: center;
    padding: 30px;
    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 15px 30px rgba(0, 0, 0, 0.6);
}

.page-game-reviews__card-image {
    max-width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

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

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

/* Why W69 Section */
.page-game-reviews__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-game-reviews__feature-item {
    background-color: #2a3447;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.page-game-reviews__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-game-reviews__feature-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-game-reviews__feature-item p {
    color: #c0c0c0;
    font-size: 0.95em;
}

.page-game-reviews__cta-bottom {
    text-align: center;
    margin-top: 60px;
}

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

.page-game-reviews__detail-item {
    background-color: #2a3447;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    padding: 30px;
    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 12px 25px rgba(0, 0, 0, 0.5);
}

.page-game-reviews__detail-title {
    font-size: 1.6em;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-game-reviews__detail-title a {
    color: #FFD700; /* Gold for clickable title */
    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 {
    color: #c0c0c0;
    font-size: 0.95em;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* FAQ Section */
.page-game-reviews__faq-item {
    background-color: #2a3447;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease;
}

.page-game-reviews__faq-item:hover {
    background-color: #3a4a60;
}

.page-game-reviews__faq-question {
    font-size: 1.3em;
    color: #FFD700;
    margin-bottom: 10px;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-game-reviews__faq-question::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-game-reviews__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-game-reviews__faq-answer {
    color: #c0c0c0;
    font-size: 1em;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    padding-top: 0;
}

.page-game-reviews__faq-answer.active {
    max-height: 200px; /* Adjust based on max expected answer length */
    padding-top: 15px;
}

/* Final CTA Section */
.page-game-reviews__cta-final {
    text-align: center;
    background-color: #1A202C;
    padding: 80px 0;
}

.page-game-reviews__cta-final p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #e5dfd3;
}

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

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-game-reviews__hero-title {
        font-size: 2.8em;
    }
    .page-game-reviews__hero-subtitle {
        font-size: 1.1em;
    }
    .page-game-reviews__section-title {
        font-size: 2em;
    }
    .page-game-reviews__category-grid,
    .page-game-reviews__features-grid,
    .page-game-reviews__detail-list {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-game-reviews__hero {
        padding: 80px 0 60px;
    }
    .page-game-reviews__hero-title {
        font-size: 2.2em;
    }
    .page-game-reviews__hero-subtitle {
        font-size: 1em;
    }
    .page-game-reviews__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-game-reviews__btn {
        padding: 12px 25px;
        width: 80%;
        margin: 0 auto;
    }
    .page-game-reviews__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
        padding-top: 40px;
    }
    .page-game-reviews__intro,
    .page-game-reviews__game-categories,
    .page-game-reviews__why-w69,
    .page-game-reviews__detail-pages,
    .page-game-reviews__faq,
    .page-game-reviews__cta-final {
        padding: 60px 0;
    }
    .page-game-reviews__category-grid,
    .page-game-reviews__features-grid,
    .page-game-reviews__detail-list {
        grid-template-columns: 1fr;
    }
    .page-game-reviews__final-actions {
        flex-direction: column;
        gap: 15px;
    }
}

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