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

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

.page-game-reviews-game-strategy .hero-section {
    background: linear-gradient(135deg, #0A2463, #3B5A9A);
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

.page-game-reviews-game-strategy .hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFD700;
    font-weight: bold;
}

.page-game-reviews-game-strategy .hero-description {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 30px auto;
    opacity: 0.9;
}

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

.page-game-reviews-game-strategy .btn-primary {
    background-color: #FFD700;
    color: #0A2463;
    border: 2px solid #FFD700;
}

.page-game-reviews-game-strategy .btn-primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

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

.page-game-reviews-game-strategy .btn-secondary:hover {
    background-color: #FFD700;
    color: #0A2463;
    transform: translateY(-2px);
}

.page-game-reviews-game-strategy .content-section {
    padding: 60px 0;
    background-color: #fff;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-game-reviews-game-strategy .content-section:nth-of-type(even) {
    background-color: #fcfcfc;
}

.page-game-reviews-game-strategy .section-title {
    font-size: 2.5em;
    color: #0A2463;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.page-game-reviews-game-strategy .section-title::after {
    content: '';
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    border-radius: 2px;
}

.page-game-reviews-game-strategy p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #555;
}

.page-game-reviews-game-strategy strong {
    color: #0A2463;
}

.page-game-reviews-game-strategy .content-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px auto;
    display: block;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-game-reviews-game-strategy .strategy-card, .page-game-reviews-game-strategy .game-strategy-card {
    background-color: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
}

.page-game-reviews-game-strategy .strategy-card .card-title, .page-game-reviews-game-strategy .game-strategy-card .card-title {
    font-size: 1.8em;
    color: #0A2463;
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-game-reviews-game-strategy .strategy-card ul, .page-game-reviews-game-strategy .game-strategy-card ul {
    list-style: disc inside;
    margin-left: 20px;
    margin-top: 15px;
    color: #666;
}

.page-game-reviews-game-strategy .strategy-card ul li, .page-game-reviews-game-strategy .game-strategy-card ul li {
    margin-bottom: 8px;
    font-size: 1em;
}

.page-game-reviews-game-strategy .strategy-card .card-image {
    margin-top: 20px;
    border-radius: 8px;
    max-width: 100%;
    height: auto;
}

.page-game-reviews-game-strategy .game-strategy-card {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    align-items: center;
    background-color: #fcfcfc;
}

.page-game-reviews-game-strategy .game-strategy-card:nth-child(even) {
    grid-template-columns: 2fr 1fr;
}

.page-game-reviews-game-strategy .game-strategy-card:nth-child(even) .card-image {
    order: 2;
}

.page-game-reviews-game-strategy .game-strategy-card:nth-child(even) .card-content {
    order: 1;
}

.page-game-reviews-game-strategy .game-strategy-card .card-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.page-game-reviews-game-strategy .card-cta {
    margin-top: 25px;
    text-align: center;
}

.page-game-reviews-game-strategy .cta-section {
    text-align: center;
    background-color: #0A2463;
    color: #fff;
    padding: 80px 0;
}

.page-game-reviews-game-strategy .cta-section .section-title {
    color: #FFD700;
}

.page-game-reviews-game-strategy .cta-section .section-title::after {
    background-color: #fff;
}

.page-game-reviews-game-strategy .cta-section p {
    color: #e0e0e0;
    font-size: 1.2em;
    margin-bottom: 30px;
}

.page-game-reviews-game-strategy .cta-buttons .btn {
    margin: 0 10px;
}

.page-game-reviews-game-strategy .faq-section {
    background-color: #f4f7f6;
}

.page-game-reviews-game-strategy .faq-item {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.page-game-reviews-game-strategy .faq-question {
    font-size: 1.5em;
    color: #0A2463;
    margin-top: 0;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
}

.page-game-reviews-game-strategy .faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.2em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

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

.page-game-reviews-game-strategy .faq-answer {
    font-size: 1.05em;
    color: #666;
    display: none;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed #eee;
}

.page-game-reviews-game-strategy .faq-answer.active {
    display: block;
}

.page-game-reviews-game-strategy .final-cta {
    text-align: center;
    padding: 80px 0;
    background-color: #0A2463;
    color: #fff;
}

.page-game-reviews-game-strategy .final-cta .section-title {
    color: #FFD700;
}

.page-game-reviews-game-strategy .final-cta .section-title::after {
    background-color: #fff;
}

.page-game-reviews-game-strategy .final-cta p {
    color: #e0e0e0;
    font-size: 1.2em;
    margin-bottom: 40px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-game-reviews-game-strategy .hero-title {
        font-size: 2.5em;
    }
    .page-game-reviews-game-strategy .hero-description {
        font-size: 1.1em;
    }
    .page-game-reviews-game-strategy .section-title {
        font-size: 2em;
    }
    .page-game-reviews-game-strategy .game-strategy-card {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-game-reviews-game-strategy .game-strategy-card:nth-child(even) {
        grid-template-columns: 1fr;
    }
    .page-game-reviews-game-strategy .game-strategy-card:nth-child(even) .card-image {
        order: initial;
    }
    .page-game-reviews-game-strategy .game-strategy-card:nth-child(even) .card-content {
        order: initial;
    }
    .page-game-reviews-game-strategy .btn-secondary {
        margin-left: 0;
        margin-top: 15px;
    }
    .page-game-reviews-game-strategy .cta-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .page-game-reviews-game-strategy .hero-section {
        padding: 80px 0;
    }
    .page-game-reviews-game-strategy .hero-title {
        font-size: 2em;
    }
    .page-game-reviews-game-strategy .hero-description {
        font-size: 1em;
    }
    .page-game-reviews-game-strategy .section-title {
        font-size: 1.8em;
    }
    .page-game-reviews-game-strategy p {
        font-size: 1em;
    }
    .page-game-reviews-game-strategy .strategy-card, .page-game-reviews-game-strategy .game-strategy-card {
        padding: 20px;
    }
    .page-game-reviews-game-strategy .strategy-card .card-title, .page-game-reviews-game-strategy .game-strategy-card .card-title {
        font-size: 1.5em;
    }
    .page-game-reviews-game-strategy .btn {
        padding: 12px 25px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-game-reviews-game-strategy .hero-section {
        padding: 60px 0;
    }
    .page-game-reviews-game-strategy .hero-title {
        font-size: 1.8em;
    }
    .page-game-reviews-game-strategy .hero-description {
        font-size: 0.9em;
    }
    .page-game-reviews-game-strategy .section-title {
        font-size: 1.6em;
    }
    .page-game-reviews-game-strategy .btn {
        width: 100%;
        margin: 10px 0 !important;
    }
    .page-game-reviews-game-strategy .cta-buttons {
        flex-direction: column;
    }
}