/* style/game-rankings-this-weeks-recommended-games.css */
.page-game-rankings-this-weeks-recommended-games {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0;
    background-color: #1A1A2E;
    line-height: 1.6;
}

.page-game-rankings-this-weeks-recommended-games__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-game-rankings-this-weeks-recommended-games__hero {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background-color: #000;
}

.page-game-rankings-this-weeks-recommended-games__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.6);
}

.page-game-rankings-this-weeks-recommended-games__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.5), rgba(220, 20, 60, 0.5));
    z-index: 2;
}

.page-game-rankings-this-weeks-recommended-games__hero-content {
    position: relative;
    z-index: 3;
    color: #FFFFFF;
    max-width: 800px;
    padding: 20px;
}

.page-game-rankings-this-weeks-recommended-games__main-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-game-rankings-this-weeks-recommended-games__subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #F0F0F0;
}

.page-game-rankings-this-weeks-recommended-games__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.page-game-rankings-this-weeks-recommended-games__btn--primary {
    background-color: #FFD700;
    color: #1A1A2E;
    border: 2px solid #FFD700;
}

.page-game-rankings-this-weeks-recommended-games__btn--primary:hover {
    background-color: #E6C200;
    border-color: #E6C200;
    transform: translateY(-3px);
}

.page-game-rankings-this-weeks-recommended-games__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
    margin-left: 15px;
}

.page-game-rankings-this-weeks-recommended-games__btn--secondary:hover {
    background-color: #FFD700;
    color: #1A1A2E;
    transform: translateY(-3px);
}

/* General Section Styling */
.page-game-rankings-this-weeks-recommended-games__section {
    padding: 80px 0;
}

.page-game-rankings-this-weeks-recommended-games__section:nth-of-type(even) {
    background-color: #1A1A2E;
}

.page-game-rankings-this-weeks-recommended-games__section:nth-of-type(odd) {
    background-color: #22223A;
}

.page-game-rankings-this-weeks-recommended-games__section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 10px;
}

.page-game-rankings-this-weeks-recommended-games__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #DC143C;
    border-radius: 2px;
}

.page-game-rankings-this-weeks-recommended-games__intro p {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 20px auto;
    color: #CCCCCC;
}

/* Featured Games */
.page-game-rankings-this-weeks-recommended-games__featured-games {
    background-color: #22223A;
}

.page-game-rankings-this-weeks-recommended-games__game-card {
    display: flex;
    background-color: #2D2D44;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 60px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-rankings-this-weeks-recommended-games__game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.6);
}

.page-game-rankings-this-weeks-recommended-games__game-card--reverse {
    flex-direction: row-reverse;
}

.page-game-rankings-this-weeks-recommended-games__game-image {
    width: 50%;
    height: 400px;
    object-fit: cover;
}

.page-game-rankings-this-weeks-recommended-games__game-details {
    width: 50%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.page-game-rankings-this-weeks-recommended-games__game-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 20px;
}

.page-game-rankings-this-weeks-recommended-games__game-description {
    font-size: 1.05em;
    color: #E0E0E0;
    margin-bottom: 20px;
}

.page-game-rankings-this-weeks-recommended-games__game-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-game-rankings-this-weeks-recommended-games__game-features li {
    margin-bottom: 10px;
    color: #CCCCCC;
}

.page-game-rankings-this-weeks-recommended-games__game-features li strong {
    color: #FFD700;
}

/* Benefits Section */
.page-game-rankings-this-weeks-recommended-games__benefits {
    background-color: #1A1A2E;
}

.page-game-rankings-this-weeks-recommended-games__benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    text-align: center;
}

.page-game-rankings-this-weeks-recommended-games__benefit-item {
    background-color: #2D2D44;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.page-game-rankings-this-weeks-recommended-games__benefit-item:hover {
    transform: translateY(-5px);
}

.page-game-rankings-this-weeks-recommended-games__benefit-item img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px #FFD700);
}

.page-game-rankings-this-weeks-recommended-games__benefit-item h3 {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-game-rankings-this-weeks-recommended-games__benefit-item p {
    color: #CCCCCC;
}

/* Call to Action */
.page-game-rankings-this-weeks-recommended-games__cta {
    text-align: center;
    background-color: #22223A;
}

.page-game-rankings-this-weeks-recommended-games__cta p {
    font-size: 1.2em;
    color: #E0E0E0;
    margin-bottom: 40px;
}

.page-game-rankings-this-weeks-recommended-games__cta-buttons {
    margin-bottom: 40px;
}

.page-game-rankings-this-weeks-recommended-games__app-image {
    max-width: 600px;
    width: 100%;
    height: auto;
    margin-top: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* FAQ Section */
.page-game-rankings-this-weeks-recommended-games__faq {
    background-color: #1A1A2E;
}

.page-game-rankings-this-weeks-recommended-games__faq-item {
    background-color: #2D2D44;
    border-radius: 8px;
    padding: 25px 30px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-game-rankings-this-weeks-recommended-games__faq-question {
    font-size: 1.3em;
    color: #FFD700;
    margin-bottom: 15px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-game-rankings-this-weeks-recommended-games__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    color: #DC143C;
    transition: transform 0.3s ease;
}

.page-game-rankings-this-weeks-recommended-games__faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-game-rankings-this-weeks-recommended-games__faq-answer {
    font-size: 1.0em;
    color: #CCCCCC;
    display: none;
    padding-top: 10px;
    border-top: 1px solid #3A3A52;
    margin-top: 15px;
}

.page-game-rankings-this-weeks-recommended-games__faq-answer.active {
    display: block;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-game-rankings-this-weeks-recommended-games__hero {
        height: 500px;
    }

    .page-game-rankings-this-weeks-recommended-games__main-title {
        font-size: 2.8em;
    }

    .page-game-rankings-this-weeks-recommended-games__subtitle {
        font-size: 1.1em;
    }

    .page-game-rankings-this-weeks-recommended-games__game-card {
        flex-direction: column;
    }

    .page-game-rankings-this-weeks-recommended-games__game-card--reverse {
        flex-direction: column;
    }

    .page-game-rankings-this-weeks-recommended-games__game-image,
    .page-game-rankings-this-weeks-recommended-games__game-details {
        width: 100%;
    }

    .page-game-rankings-this-weeks-recommended-games__game-image {
        height: 300px;
    }

    .page-game-rankings-this-weeks-recommended-games__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-game-rankings-this-weeks-recommended-games__hero {
        height: 400px;
    }

    .page-game-rankings-this-weeks-recommended-games__main-title {
        font-size: 2.2em;
    }

    .page-game-rankings-this-weeks-recommended-games__subtitle {
        font-size: 1em;
    }

    .page-game-rankings-this-weeks-recommended-games__btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-game-rankings-this-weeks-recommended-games__btn--secondary {
        margin-left: 0;
        margin-top: 15px;
    }

    .page-game-rankings-this-weeks-recommended-games__cta-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .page-game-rankings-this-weeks-recommended-games__section {
        padding: 60px 0;
    }

    .page-game-rankings-this-weeks-recommended-games__game-details {
        padding: 30px;
    }

    .page-game-rankings-this-weeks-recommended-games__benefit-item {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .page-game-rankings-this-weeks-recommended-games__main-title {
        font-size: 1.8em;
    }

    .page-game-rankings-this-weeks-recommended-games__subtitle {
        font-size: 0.9em;
    }

    .page-game-rankings-this-weeks-recommended-games__hero {
        height: 350px;
    }

    .page-game-rankings-this-weeks-recommended-games__section-title {
        font-size: 1.8em;
    }

    .page-game-rankings-this-weeks-recommended-games__game-title {
        font-size: 1.5em;
    }

    .page-game-rankings-this-weeks-recommended-games__game-details {
        padding: 20px;
    }

    .page-game-rankings-this-weeks-recommended-games__faq-question {
        font-size: 1.1em;
    }
}