/* style/game-reviews-card-game-strategy.css */
.page-game-reviews-card-game-strategy {
    font-family: 'Arial', sans-serif;
    color: #f8f8f8;
    background-color: #001a33; /* Darker variant of main color for background */
    line-height: 1.6;
}

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

.page-game-reviews-card-game-strategy__hero-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #003366 0%, #00509e 100%); /* Gradient with main color */
    padding: 80px 20px;
    color: #ffffff;
    text-align: center;
    gap: 40px;
}

.page-game-reviews-card-game-strategy__hero-content {
    max-width: 600px;
    text-align: left;
}

.page-game-reviews-card-game-strategy__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFCC00; /* Accent color for title */
    line-height: 1.2;
}

.page-game-reviews-card-game-strategy__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-game-reviews-card-game-strategy__hero-image-wrapper {
    flex-shrink: 0;
    max-width: 500px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-game-reviews-card-game-strategy__hero-image {
    width: 100%;
    height: auto;
    display: block;
}

.page-game-reviews-card-game-strategy__cta-button {
    display: inline-block;
    background-color: #FFCC00; /* Accent color for CTA */
    color: #003366; /* Main color for text on accent background */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.page-game-reviews-card-game-strategy__cta-button:hover {
    background-color: #e6b800; /* Slightly darker accent on hover */
    transform: translateY(-2px);
}

.page-game-reviews-card-game-strategy__intro-section,
.page-game-reviews-card-game-strategy__strategy-guide,
.page-game-reviews-card-game-strategy__winning-tips,
.page-game-reviews-card-game-strategy__call-to-action,
.page-game-reviews-card-game-strategy__faq-section {
    padding: 60px 0;
    background-color: #001a33;
}

.page-game-reviews-card-game-strategy__intro-section {
    background-color: #002244; /* Slightly lighter dark blue */
}

.page-game-reviews-card-game-strategy__section-title {
    font-size: 2.5em;
    color: #FFCC00; /* Accent color for section titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-game-reviews-card-game-strategy__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #003366; /* Main color for underline */
    border-radius: 2px;
}

.page-game-reviews-card-game-strategy__text-content {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
    color: #c0c0c0;
}

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

.page-game-reviews-card-game-strategy__feature-item {
    background-color: #003366; /* Main color for feature cards */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

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

.page-game-reviews-card-game-strategy__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: invert(70%) sepia(80%) saturate(1000%) hue-rotate(0deg) brightness(120%) contrast(100%); /* Gold effect */
}

.page-game-reviews-card-game-strategy__feature-title {
    font-size: 1.6em;
    color: #FFCC00; /* Accent color for feature titles */
    margin-bottom: 15px;
}

.page-game-reviews-card-game-strategy__feature-description {
    color: #a0a0a0;
    font-size: 1em;
}

.page-game-reviews-card-game-strategy__game-strategy-card {
    display: flex;
    flex-wrap: wrap;
    background-color: #002244; /* Darker blue for game cards */
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    margin-bottom: 40px;
    overflow: hidden;
    align-items: center;
}

.page-game-reviews-card-game-strategy__game-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    object-fit: cover;
    flex-shrink: 0;
}

.page-game-reviews-card-game-strategy__game-content {
    flex-grow: 1;
    padding: 30px;
}

.page-game-reviews-card-game-strategy__game-title {
    font-size: 2em;
    color: #FFCC00; /* Accent color for game titles */
    margin-bottom: 15px;
}

.page-game-reviews-card-game-strategy__game-description {
    color: #c0c0c0;
    margin-bottom: 20px;
    font-size: 1.05em;
}

.page-game-reviews-card-game-strategy__strategy-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-game-reviews-card-game-strategy__strategy-list li {
    background-color: #003366; /* Main color for list items */
    margin-bottom: 10px;
    padding: 12px 15px;
    border-left: 5px solid #FFCC00; /* Accent color for list item border */
    border-radius: 5px;
    color: #f0f0f0;
    font-size: 1em;
}

.page-game-reviews-card-game-strategy__strategy-list li strong {
    color: #FFCC00;
}

.page-game-reviews-card-game-strategy__winning-tips {
    background-color: #003366; /* Main color for this section */
}

.page-game-reviews-card-game-strategy__general-tips-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.page-game-reviews-card-game-strategy__general-tips-list li {
    background-color: #002244; /* Darker blue for tip items */
    padding: 20px;
    border-radius: 8px;
    color: #e0e0e0;
    font-size: 1.1em;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border-left: 4px solid #FFCC00;
}

.page-game-reviews-card-game-strategy__illustration-image {
    display: block;
    max-width: 800px;
    width: 100%;
    margin: 40px auto 0 auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-game-reviews-card-game-strategy__call-to-action {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(45deg, #003366, #004488); /* Gradient for CTA */
}

.page-game-reviews-card-game-strategy__call-to-action .page-game-reviews-card-game-strategy__section-title {
    color: #FFCC00;
}

.page-game-reviews-card-game-strategy__call-to-action .page-game-reviews-card-game-strategy__text-content {
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #ffffff;
}

.page-game-reviews-card-game-strategy__cta-buttons-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.page-game-reviews-card-game-strategy__cta-button--primary {
    background-color: #FFCC00;
    color: #003366;
}

.page-game-reviews-card-game-strategy__cta-button--primary:hover {
    background-color: #e6b800;
}

.page-game-reviews-card-game-strategy__cta-button--secondary {
    background-color: #00509e; /* Slightly lighter main color */
    color: #ffffff;
    border: 1px solid #FFCC00;
}

.page-game-reviews-card-game-strategy__cta-button--secondary:hover {
    background-color: #0066cc;
    border-color: #e6b800;
}

.page-game-reviews-card-game-strategy__faq-section {
    background-color: #002244; /* Darker blue for FAQ */
}

.page-game-reviews-card-game-strategy__faq-item {
    background-color: #003366; /* Main color for FAQ items */
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-game-reviews-card-game-strategy__faq-question {
    font-size: 1.4em;
    color: #FFCC00; /* Accent color for FAQ questions */
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

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

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

.page-game-reviews-card-game-strategy__faq-answer {
    font-size: 1.1em;
    color: #e0e0e0;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 204, 0, 0.2);
    margin-top: 10px;
    display: none; /* Hidden by default, toggled by JS */
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-game-reviews-card-game-strategy__hero-section {
        flex-direction: column;
        text-align: center;
    }

    .page-game-reviews-card-game-strategy__hero-content {
        text-align: center;
        margin-bottom: 40px;
    }

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

    .page-game-reviews-card-game-strategy__game-strategy-card {
        flex-direction: column;
    }

    .page-game-reviews-card-game-strategy__game-image {
        max-width: 100%;
    }

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

@media (max-width: 768px) {
    .page-game-reviews-card-game-strategy__hero-section {
        padding: 60px 15px;
    }

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

    .page-game-reviews-card-game-strategy__hero-description {
        font-size: 1em;
    }

    .page-game-reviews-card-game-strategy__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-game-reviews-card-game-strategy__intro-section,
    .page-game-reviews-card-game-strategy__strategy-guide,
    .page-game-reviews-card-game-strategy__winning-tips,
    .page-game-reviews-card-game-strategy__call-to-action,
    .page-game-reviews-card-game-strategy__faq-section {
        padding: 40px 0;
    }

    .page-game-reviews-card-game-strategy__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .page-game-reviews-card-game-strategy__features-grid,
    .page-game-reviews-card-game-strategy__general-tips-list {
        grid-template-columns: 1fr;
    }

    .page-game-reviews-card-game-strategy__game-content {
        padding: 20px;
    }

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

    .page-game-reviews-card-game-strategy__faq-question {
        font-size: 1.2em;
    }

    .page-game-reviews-card-game-strategy__faq-answer {
        font-size: 1em;
    }

    .page-game-reviews-card-game-strategy__cta-buttons-wrapper {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .page-game-reviews-card-game-strategy__hero-title {
        font-size: 1.8em;
    }
    .page-game-reviews-card-game-strategy__section-title {
        font-size: 1.5em;
    }
    .page-game-reviews-card-game-strategy__game-title {
        font-size: 1.4em;
    }
    .page-game-reviews-card-game-strategy__feature-title {
        font-size: 1.4em;
    }
}