.page-blog-chien-thuat-choi-game-bai-thang {
    font-family: 'Arial', sans-serif;
    color: var(--Text-Main); /* Default text color for the page */
    background-color: var(--Deep-Navy); /* Page background, from shared.css body */
    line-height: 1.6;
}

.page-blog-chien-thuat-choi-game-bai-thang__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

/* Hero Section */
.page-blog-chien-thuat-choi-game-bai-thang__hero-section {
    position: relative;
    padding-top: 10px; /* Small top padding, header offset handled by body */
    padding-bottom: 60px;
    color: var(--Text-Main);
    text-align: center;
    overflow: hidden;
    background: linear-gradient(180deg, var(--Deep-Navy) 0%, #000000 100%);
}

.page-blog-chien-thuat-choi-game-bai-thang__hero-image-wrapper {
    width: 100%;
    max-height: 600px; /* Limit height for desktop */
    overflow: hidden;
    margin-bottom: 30px;
}

.page-blog-chien-thuat-choi-game-bai-thang__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover; /* Cover for desktop to fill space */
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-chien-thuat-choi-game-bai-thang__hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-blog-chien-thuat-choi-game-bai-thang__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive font size */
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--Gold);
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-blog-chien-thuat-choi-game-bai-thang__hero-description {
    font-size: 1.15rem;
    margin-bottom: 30px;
    color: var(--Text-Secondary);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-blog-chien-thuat-choi-game-bai-thang__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.page-blog-chien-thuat-choi-game-bai-thang__cta-buttons--center {
    justify-content: center;
}

.page-blog-chien-thuat-choi-game-bai-thang__btn-primary,
.page-blog-chien-thuat-choi-game-bai-thang__btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text breaking */
}

.page-blog-chien-thuat-choi-game-bai-thang__btn-primary {
    background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-chien-thuat-choi-game-bai-thang__btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    opacity: 0.9;
}

.page-blog-chien-thuat-choi-game-bai-thang__btn-secondary {
    background: var(--Card-B-G);
    color: var(--Text-Main);
    border: 2px solid var(--Border);
}

.page-blog-chien-thuat-choi-game-bai-thang__btn-secondary:hover {
    transform: translateY(-2px);
    background: var(--Border);
    color: var(--Text-Main);
}

/* Content Sections */
.page-blog-chien-thuat-choi-game-bai-thang__content-section {
    padding: 60px 0;
}

.page-blog-chien-thuat-choi-game-bai-thang__dark-section {
    background-color: var(--Card-B-G); /* Darker background for contrast sections */
    color: var(--Text-Main);
}

.page-blog-chien-thuat-choi-game-bai-thang__dark-section p,
.page-blog-chien-thuat-choi-game-bai-thang__dark-section li,
.page-blog-chien-thuat-choi-game-bai-thang__dark-section a {
    color: var(--Text-Secondary); /* Lighter text for dark backgrounds */
}

.page-blog-chien-thuat-choi-game-bai-thang__section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--Gold);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-blog-chien-thuat-choi-game-bai-thang__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--Glow);
    border-radius: 2px;
}

.page-blog-chien-thuat-choi-game-bai-thang__article-body {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1rem;
    color: var(--Text-Secondary);
}

.page-blog-chien-thuat-choi-game-bai-thang__article-body p {
    margin-bottom: 20px;
}

.page-blog-chien-thuat-choi-game-bai-thang__article-body a {
    color: var(--Glow);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.page-blog-chien-thuat-choi-game-bai-thang__article-body a:hover {
    color: #fff;
}

.page-blog-chien-thuat-choi-game-bai-thang__article-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 30px 0;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    max-width: 100%; /* Ensure images are responsive */
    object-fit: cover;
}

.page-blog-chien-thuat-choi-game-bai-thang__sub-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--Gold);
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-blog-chien-thuat-choi-game-bai-thang__list {
    list-style: disc;
    padding-left: 25px;
    margin-bottom: 20px;
    color: var(--Text-Secondary);
}

.page-blog-chien-thuat-choi-game-bai-thang__list li {
    margin-bottom: 10px;
}

.page-blog-chien-thuat-choi-game-bai-thang__list li strong {
    color: var(--Text-Main);
}

/* FAQ Section */
.page-blog-chien-thuat-choi-game-bai-thang__faq-section {
    padding: 60px 0;
    background-color: var(--Deep-Navy);
    color: var(--Text-Main);
}

.page-blog-chien-thuat-choi-game-bai-thang__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

details.page-blog-chien-thuat-choi-game-bai-thang__faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid var(--Border);
    overflow: hidden;
    background: var(--Card-B-G);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
details.page-blog-chien-thuat-choi-game-bai-thang__faq-item summary.page-blog-chien-thuat-choi-game-bai-thang__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    cursor: pointer;
    user-select: none;
    list-style: none;
    transition: background-color 0.3s ease;
    color: var(--Text-Main);
    font-weight: 600;
}
details.page-blog-chien-thuat-choi-game-bai-thang__faq-item summary.page-blog-chien-thuat-choi-game-bai-thang__faq-question::-webkit-details-marker {
    display: none;
}
details.page-blog-chien-thuat-choi-game-bai-thang__faq-item summary.page-blog-chien-thuat-choi-game-bai-thang__faq-question:hover {
    background: rgba(var(--Main-Color-RGB), 0.2); /* Adjust hover for dark theme */
}
.page-blog-chien-thuat-choi-game-bai-thang__faq-qtext {
    flex: 1;
    font-size: 1.1rem;
    line-height: 1.5;
    text-align: left;
}
.page-blog-chien-thuat-choi-game-bai-thang__faq-toggle {
    font-size: 24px;
    font-weight: bold;
    color: var(--Glow);
    flex-shrink: 0;
    margin-left: 15px;
    width: 28px;
    text-align: center;
}
details.page-blog-chien-thuat-choi-game-bai-thang__faq-item .page-blog-chien-thuat-choi-game-bai-thang__faq-answer {
    padding: 0 25px 20px;
    background: rgba(var(--Main-Color-RGB), 0.1); /* Slightly lighter background for answer */
    border-radius: 0 0 8px 8px;
    color: var(--Text-Secondary);
    font-size: 1rem;
}
.page-blog-chien-thuat-choi-game-bai-thang__faq-answer p {
    margin-bottom: 10px;
}
.page-blog-chien-thuat-choi-game-bai-thang__faq-answer a {
    color: var(--Glow);
    text-decoration: underline;
}
.page-blog-chien-thuat-choi-game-bai-thang__faq-answer a:hover {
    color: #fff;
}


/* Responsive Styles */
@media (max-width: 1024px) {
    .page-blog-chien-thuat-choi-game-bai-thang__container {
        padding: 15px;
    }
    .page-blog-chien-thuat-choi-game-bai-thang__hero-image-wrapper {
        max-height: 500px;
    }
    .page-blog-chien-thuat-choi-game-bai-thang__main-title {
        font-size: clamp(2.2rem, 4.5vw, 3rem);
    }
    .page-blog-chien-thuat-choi-game-bai-thang__hero-description {
        font-size: 1.05rem;
    }
    .page-blog-chien-thuat-choi-game-bai-thang__section-title {
        font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    }
    .page-blog-chien-thuat-choi-game-bai-thang__sub-title {
        font-size: 1.6rem;
    }
    .page-blog-chien-thuat-choi-game-bai-thang__article-body {
        font-size: 0.95rem;
    }
    .page-blog-chien-thuat-choi-game-bai-thang__btn-primary,
    .page-blog-chien-thuat-choi-game-bai-thang__btn-secondary {
        padding: 12px 25px;
        font-size: 1rem;
    }
    details.page-blog-chien-thuat-choi-game-bai-thang__faq-item summary.page-blog-chien-thuat-choi-game-bai-thang__faq-question {
        padding: 15px 20px;
    }
    .page-blog-chien-thuat-choi-game-bai-thang__faq-qtext {
        font-size: 1rem;
    }
    .page-blog-chien-thuat-choi-game-bai-thang__faq-answer {
        padding: 0 20px 15px;
    }
}

@media (max-width: 768px) {
    .page-blog-chien-thuat-choi-game-bai-thang__container {
        padding: 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* HERO 主图区域 */
    .page-blog-chien-thuat-choi-game-bai-thang__hero-section {
        padding-top: 10px; /* Small top padding, header offset handled by body */
        padding-bottom: 40px;
    }
    .page-blog-chien-thuat-choi-game-bai-thang__hero-image-wrapper {
        max-height: 300px; /* Adjust height for mobile */
        margin-bottom: 20px;
    }
    .page-blog-chien-thuat-choi-game-bai-thang__hero-image {
        object-fit: contain !important; /* Prevent cropping on mobile */
        aspect-ratio: unset !important; /* Remove fixed aspect ratio */
        border-radius: 4px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }
    .page-blog-chien-thuat-choi-game-bai-thang__main-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem); /* Smaller on mobile */
        margin-bottom: 15px;
    }
    .page-blog-chien-thuat-choi-game-bai-thang__hero-description {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }
    .page-blog-chien-thuat-choi-game-bai-thang__cta-buttons {
        flex-direction: column; /* Stack buttons vertically */
        gap: 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0 15px; /* Add padding to button container */
    }
    
    /* 按钮与按钮容器 */
    .page-blog-chien-thuat-choi-game-bai-thang__btn-primary,
    .page-blog-chien-thuat-choi-game-bai-thang__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        font-size: 0.95rem;
        padding: 12px 20px;
    }

    /* 装饰主标题 + 长文 SEO 区 */
    .page-blog-chien-thuat-choi-game-bai-thang__content-section {
        padding: 40px 0;
    }
    .page-blog-chien-thuat-choi-game-bai-thang__section-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
        margin-bottom: 30px;
        padding-bottom: 10px;
    }
    .page-blog-chien-thuat-choi-game-bai-thang__section-title::after {
        width: 60px;
        height: 3px;
    }
    .page-blog-chien-thuat-choi-game-bai-thang__article-body {
        font-size: 0.9rem;
        padding: 0 15px; /* Add padding to content body */
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .page-blog-chien-thuat-choi-game-bai-thang__sub-title {
        font-size: 1.4rem;
        margin-top: 25px;
        margin-bottom: 10px;
    }
    .page-blog-chien-thuat-choi-game-bai-thang__list {
        padding-left: 20px;
    }
    .page-blog-chien-thuat-choi-game-bai-thang__article-image {
        margin: 20px 0;
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
        padding: 0; /* Remove potential padding from image itself */
    }

    /* 通用图片与容器 */
    .page-blog-chien-thuat-choi-game-bai-thang img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
    }
    .page-blog-chien-thuat-choi-game-bai-thang__section,
    .page-blog-chien-thuat-choi-game-bai-thang__card,
    .page-blog-chien-thuat-choi-game-bai-thang__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    /* FAQ Section */
    .page-blog-chien-thuat-choi-game-bai-thang__faq-section {
        padding: 40px 0;
    }
    details.page-blog-chien-thuat-choi-game-bai-thang__faq-item summary.page-blog-chien-thuat-choi-game-bai-thang__faq-question {
        padding: 15px;
    }
    .page-blog-chien-thuat-choi-game-bai-thang__faq-qtext {
        font-size: 0.95rem;
    }
    .page-blog-chien-thuat-choi-game-bai-thang__faq-toggle {
        font-size: 20px;
        width: 24px;
        height: 24px;
    }
}