/* Base styles for the page */
.page-blog-top-card-game-strategy {
    font-family: 'Arial', sans-serif;
    color: var(--text-main);
    background-color: var(--background-color);
    line-height: 1.6;
    font-size: 16px;
}

.page-blog-top-card-game-strategy__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

.page-blog-top-card-game-strategy__section-title {
    font-size: 2.5em;
    color: var(--text-main);
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
    line-height: 1.2;
}

.page-blog-top-card-game-strategy__text-block {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-secondary);
}

.page-blog-top-card-game-strategy__highlight-text {
    color: var(--gold);
    font-weight: bold;
}

/* Hero Section */
.page-blog-top-card-game-strategy__hero-section {
    padding-top: 10px; /* Small top padding, relying on body for header offset */
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--deep-green);
}

.page-blog-top-card-game-strategy__hero-image-wrapper {
    width: 100%;
    max-width: 1200px;
    margin-bottom: 30px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-top-card-game-strategy__hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.page-blog-top-card-game-strategy__hero-content {
    max-width: 900px;
    padding: 0 20px;
}

.page-blog-top-card-game-strategy__main-title {
    font-size: clamp(2em, 4vw, 3.5em); /* Responsive H1 font size */
    color: var(--text-main);
    margin-bottom: 20px;
    font-weight: 900;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-blog-top-card-game-strategy__description {
    font-size: 1.2em;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
}

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

.page-blog-top-card-game-strategy__btn-primary,
.page-blog-top-card-game-strategy__btn-secondary,
.page-blog-top-card-game-strategy__btn-play {
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
    box-sizing: border-box;
}

.page-blog-top-card-game-strategy__btn-primary {
    background: var(--button-gradient);
    color: var(--text-main);
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-top-card-game-strategy__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-blog-top-card-game-strategy__btn-secondary {
    background: transparent;
    color: var(--text-main);
    border: 2px solid var(--border-color);
}

.page-blog-top-card-game-strategy__btn-secondary:hover {
    background: var(--border-color);
    color: var(--text-main);
    transform: translateY(-2px);
}

/* Intro Section */
.page-blog-top-card-game-strategy__intro-section {
    padding: 60px 0;
    background-color: var(--background-color);
}

/* Criteria Section */
.page-blog-top-card-game-strategy__criteria-section {
    padding: 60px 0;
    background-color: var(--deep-green);
}

.page-blog-top-card-game-strategy__criteria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-blog-top-card-game-strategy__criterion-card {
    padding: 30px;
    border-radius: 10px;
    background-color: var(--card-bg);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-top-card-game-strategy__criterion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-blog-top-card-game-strategy__card-title {
    font-size: 1.5em;
    color: var(--text-main);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-blog-top-card-game-strategy__card-text {
    color: var(--text-secondary);
    font-size: 1em;
}

/* Games Section */
.page-blog-top-card-game-strategy__games-section {
    padding: 60px 0;
    background-color: var(--background-color);
}

.page-blog-top-card-game-strategy__games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-blog-top-card-game-strategy__game-card {
    background-color: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.page-blog-top-card-game-strategy__game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-blog-top-card-game-strategy__game-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
}

.page-blog-top-card-game-strategy__game-title {
    font-size: 1.5em;
    color: var(--text-main);
    margin: 20px 20px 10px;
    font-weight: bold;
}

.page-blog-top-card-game-strategy__game-description {
    color: var(--text-secondary);
    font-size: 0.95em;
    padding: 0 20px;
    flex-grow: 1;
}

.page-blog-top-card-game-strategy__btn-play {
    background: var(--button-gradient);
    color: var(--text-main);
    border: none;
    padding: 12px 25px;
    margin: 20px;
    display: inline-block;
    width: calc(100% - 40px);
}

.page-blog-top-card-game-strategy__btn-play:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* Management Section */
.page-blog-top-card-game-strategy__management-section {
    padding: 60px 0;
    background-color: var(--deep-green);
}

.page-blog-top-card-game-strategy__management-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-blog-top-card-game-strategy__management-item {
    padding: 30px;
    border-radius: 10px;
    background-color: var(--card-bg);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-blog-top-card-game-strategy__management-item:hover {
    transform: translateY(-5px);
}

/* FAQ Section */
.page-blog-top-card-game-strategy__faq-section {
    padding: 60px 0;
    background-color: var(--background-color);
}

.page-blog-top-card-game-strategy__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.page-blog-top-card-game-strategy__faq-item {
    background-color: var(--card-bg);
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.page-blog-top-card-game-strategy__faq-item summary {
    list-style: none;
}

.page-blog-top-card-game-strategy__faq-item summary::-webkit-details-marker {
    display: none;
}

.page-blog-top-card-game-strategy__faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    color: var(--text-main);
    font-size: 1.1em;
    border-bottom: 1px solid var(--divider);
}

.page-blog-top-card-game-strategy__faq-question:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.page-blog-top-card-game-strategy__faq-toggle {
    font-size: 1.5em;
    color: var(--glow);
    transition: transform 0.3s ease;
}

.page-blog-top-card-game-strategy__faq-item[open] .page-blog-top-card-game-strategy__faq-toggle {
    transform: rotate(45deg);
}

.page-blog-top-card-game-strategy__faq-answer {
    padding: 0 25px 20px;
    color: var(--text-secondary);
    font-size: 1em;
}

/* Bottom CTA Section */
.page-blog-top-card-game-strategy__cta-bottom-section {
    padding: 60px 0;
    background-color: var(--deep-green);
}

.page-blog-top-card-game-strategy__cta-bottom-section .page-blog-top-card-game-strategy__container {
    text-align: center;
    background-color: var(--card-bg);
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.page-blog-top-card-game-strategy__cta-bottom-section .page-blog-top-card-game-strategy__section-title {
    font-size: 2.2em;
    margin-bottom: 20px;
}

.page-blog-top-card-game-strategy__cta-bottom-section .page-blog-top-card-game-strategy__text-secondary {
    font-size: 1.1em;
    margin-bottom: 40px;
}

/* Color Contrast Specifics */
.page-blog-top-card-game-strategy__dark-bg {
    background: var(--card-bg);
    color: var(--text-main);
}

.page-blog-top-card-game-strategy__dark-section {
    background: var(--background-color);
    color: var(--text-main);
}

.page-blog-top-card-game-strategy__card {
    background-color: var(--card-bg);
    color: var(--text-main);
    border: 1px solid var(--border-color);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-blog-top-card-game-strategy__section-title {
        font-size: 2em;
    }

    .page-blog-top-card-game-strategy__description {
        font-size: 1.1em;
    }

    .page-blog-top-card-game-strategy__criteria-grid,
    .page-blog-top-card-game-strategy__games-grid,
    .page-blog-top-card-game-strategy__management-points {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }

    .page-blog-top-card-game-strategy__hero-content {
        padding: 0 15px;
    }

    .page-blog-top-card-game-strategy__main-title {
        font-size: clamp(2em, 5vw, 3em);
    }

    .page-blog-top-card-game-strategy__cta-bottom-section .page-blog-top-card-game-strategy__container {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .page-blog-top-card-game-strategy {
        font-size: 15px;
    }

    .page-blog-top-card-game-strategy__container {
        padding: 15px;
    }

    /* HERO 主图区域 */
    .page-blog-top-card-game-strategy__hero-section {
        padding-top: 10px !important; /* Small top padding for mobile */
        padding-bottom: 30px;
    }

    .page-blog-top-card-game-strategy__hero-image-wrapper {
        margin-bottom: 20px;
        border-radius: 5px;
    }

    .page-blog-top-card-game-strategy__hero-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        border-radius: 5px;
    }

    .page-blog-top-card-game-strategy__main-title {
        font-size: clamp(1.8em, 6vw, 2.5em) !important;
        margin-bottom: 15px;
    }

    .page-blog-top-card-game-strategy__description {
        font-size: 1em;
        margin-bottom: 30px;
    }

    .page-blog-top-card-game-strategy__cta-buttons {
        flex-direction: column !important;
        gap: 15px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 15px;
    }

    /* 按钮与按钮容器 */
    .page-blog-top-card-game-strategy__btn-primary,
    .page-blog-top-card-game-strategy__btn-secondary,
    .page-blog-top-card-game-strategy__btn-play {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding: 12px 20px;
        font-size: 1em;
    }

    /* 产品展示图区域 */
    .page-blog-top-card-game-strategy__games-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-blog-top-card-game-strategy__game-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important; /* Allow height to adjust */
    }

    /* 通用图片与容器 */
    .page-blog-top-card-game-strategy img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-blog-top-card-game-strategy__intro-section,
    .page-blog-top-card-game-strategy__criteria-section,
    .page-blog-top-card-game-strategy__games-section,
    .page-blog-top-card-game-strategy__management-section,
    .page-blog-top-card-game-strategy__faq-section,
    .page-blog-top-card-game-strategy__cta-bottom-section {
        padding: 30px 0;
    }

    .page-blog-top-card-game-strategy__text-block {
        font-size: 1em;
        margin-bottom: 30px;
    }

    .page-blog-top-card-game-strategy__section-title {
        font-size: 1.8em;
        margin-bottom: 25px;
    }

    /* Other content modules */
    .page-blog-top-card-game-strategy__criterion-card,
    .page-blog-top-card-game-strategy__management-item,
    .page-blog-top-card-game-strategy__faq-item {
        padding: 20px;
    }

    .page-blog-top-card-game-strategy__card-title,
    .page-blog-top-card-game-strategy__game-title,
    .page-blog-top-card-game-strategy__faq-question {
        font-size: 1.3em;
    }

    .page-blog-top-card-game-strategy__card-text,
    .page-blog-top-card-game-strategy__game-description,
    .page-blog-top-card-game-strategy__faq-answer {
        font-size: 0.9em;
    }

    .page-blog-top-card-game-strategy__cta-bottom-section .page-blog-top-card-game-strategy__container {
        padding: 30px 15px;
        border-radius: 10px;
    }

    .page-blog-top-card-game-strategy__cta-bottom-section .page-blog-top-card-game-strategy__section-title {
        font-size: 1.8em;
    }
}

@media (max-width: 480px) {
    .page-blog-top-card-game-strategy__main-title {
        font-size: clamp(1.5em, 7vw, 2em) !important;
    }

    .page-blog-top-card-game-strategy__section-title {
        font-size: 1.6em;
    }

    .page-blog-top-card-game-strategy__cta-buttons {
        gap: 10px;
    }
}