:root {
    --page-bg: #08160F; /* Nền */
    --card-bg: #11271B; /* Card BG */\    --text-main: #F2FFF6; /* Text Main */
    --text-secondary: #A7D9B8; /* Text Secondary */
    --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Nút */
    --border-color: #2E7A4E; /* Biên */
    --glow-color: #57E38D; /* Glow */
    --gold-color: #F2C14E; /* Gold */
    --divider-color: #1E3A2A; /* Divider */
    --deep-green: #0A4B2C; /* Deep Green */
    --primary-color: #11A84E; /* 主色调 */
    --secondary-color: #22C768; /* 辅助色 */
}

.page-blog-troubleshooting-56wun-login-issues {
    background-color: var(--page-bg);
    color: var(--text-main);
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: 10px; /* Small decorative top padding, body handles header offset */
}

/* Hero Section */
.page-blog-troubleshooting-56wun-login-issues__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
}

.page-blog-troubleshooting-56wun-login-issues__hero-image-wrapper {
    width: 100%;
    max-width: 1200px;
    margin-bottom: 20px;
}

.page-blog-troubleshooting-56wun-login-issues__hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    object-fit: cover;
    filter: none;
}

.page-blog-troubleshooting-56wun-login-issues__hero-content {
    max-width: 900px;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

.page-blog-troubleshooting-56wun-login-issues__main-title {
    font-size: clamp(2em, 4vw, 3.2em);
    color: var(--gold-color);
    margin-bottom: 15px;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: 0.05em;
    text-shadow: 0 0 8px rgba(242, 193, 78, 0.6);
}

.page-blog-troubleshooting-56wun-login-issues__hero-description {
    font-size: 1.1em;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.page-blog-troubleshooting-56wun-login-issues__cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.page-blog-troubleshooting-56wun-login-issues__btn-primary,
.page-blog-troubleshooting-56wun-login-issues__btn-secondary {
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
}

.page-blog-troubleshooting-56wun-login-issues__btn-primary {
    background: var(--button-gradient);
    color: var(--text-main);
    border: 2px solid transparent;
    box-shadow: 0 0 15px var(--glow-color);
}

.page-blog-troubleshooting-56wun-login-issues__btn-primary:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
    box-shadow: 0 0 20px var(--glow-color);
    transform: translateY(-2px);
}

.page-blog-troubleshooting-56wun-login-issues__btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.page-blog-troubleshooting-56wun-login-issues__btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--text-main);
    transform: translateY(-2px);
}

/* Content Area */
.page-blog-troubleshooting-56wun-login-issues__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    box-sizing: border-box;
    background-color: var(--page-bg);
    color: var(--text-main);
}

.page-blog-troubleshooting-56wun-login-issues__article {
    padding: 20px;
    background-color: var(--card-bg);
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
}

.page-blog-troubleshooting-56wun-login-issues__section-title {
    font-size: 2.2em;
    color: var(--gold-color);
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: bold;
    border-bottom: 2px solid var(--divider-color);
    padding-bottom: 10px;
}

.page-blog-troubleshooting-56wun-login-issues__sub-section-title {
    font-size: 1.8em;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-blog-troubleshooting-56wun-login-issues__paragraph {
    margin-bottom: 1em;
    color: var(--text-secondary);
}

.page-blog-troubleshooting-56wun-login-issues__paragraph strong {
    color: var(--text-main);
}

.page-blog-troubleshooting-56wun-login-issues__list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 1em;
    color: var(--text-secondary);
}

.page-blog-troubleshooting-56wun-login-issues__list-item {
    margin-bottom: 0.5em;
    color: var(--text-secondary);
}

.page-blog-troubleshooting-56wun-login-issues__list-item strong {
    color: var(--text-main);
}

.page-blog-troubleshooting-56wun-login-issues__sub-list {
    list-style-type: circle;
    margin-left: 20px;
    margin-top: 0.5em;
    color: var(--text-secondary);
}

.page-blog-troubleshooting-56wun-login-issues__sub-list-item {
    margin-bottom: 0.3em;
    color: var(--text-secondary);
}

.page-blog-troubleshooting-56wun-login-issues__image-wrapper {
    margin: 30px 0;
    text-align: center;
}

.page-blog-troubleshooting-56wun-login-issues__content-image {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    margin: 0 auto;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    filter: none;
}

.page-blog-troubleshooting-56wun-login-issues__cta-buttons--center {
    margin-top: 30px;
    margin-bottom: 30px;
}

.page-blog-troubleshooting-56wun-login-issues__cta-buttons--bottom {
    margin-top: 40px;
    margin-bottom: 20px;
}

/* FAQ Section */
.page-blog-troubleshooting-56wun-login-issues__faq-list {
    margin-top: 30px;
}

.page-blog-troubleshooting-56wun-login-issues__faq-item {
    background-color: var(--deep-green);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-blog-troubleshooting-56wun-login-issues__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    font-size: 1.1em;
    font-weight: bold;
    color: var(--text-main);
    cursor: pointer;
    background-color: var(--primary-color);
    border-radius: 8px;
    list-style: none;
}

.page-blog-troubleshooting-56wun-login-issues__faq-question::-webkit-details-marker {
    display: none;
}

.page-blog-troubleshooting-56wun-login-issues__faq-qtext {
    flex-grow: 1;
}

.page-blog-troubleshooting-56wun-login-issues__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 10px;
    color: var(--text-main);
}

.page-blog-troubleshooting-56wun-login-issues__faq-answer {
    padding: 15px 20px;
    font-size: 1em;
    color: var(--text-secondary);
    background-color: var(--card-bg);
    border-top: 1px solid var(--divider-color);
}

.page-blog-troubleshooting-56wun-login-issues__faq-answer p {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-blog-troubleshooting-56wun-login-issues {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-blog-troubleshooting-56wun-login-issues__hero-section {
        padding: 15px;
    }

    .page-blog-troubleshooting-56wun-login-issues__main-title {
        font-size: clamp(1.8em, 8vw, 2.5em);
    }

    .page-blog-troubleshooting-56wun-login-issues__hero-description {
        font-size: 1em;
    }

    .page-blog-troubleshooting-56wun-login-issues__cta-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .page-blog-troubleshooting-56wun-login-issues__btn-primary,
    .page-blog-troubleshooting-56wun-login-issues__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        padding: 12px 20px;
        font-size: 0.95em;
    }

    .page-blog-troubleshooting-56wun-login-issues__content-area {
        padding: 20px 15px;
    }

    .page-blog-troubleshooting-56wun-login-issues__article {
        padding: 15px;
    }

    .page-blog-troubleshooting-56wun-login-issues__section-title {
        font-size: 1.8em;
        margin-top: 30px;
        margin-bottom: 15px;
    }

    .page-blog-troubleshooting-56wun-login-issues__sub-section-title {
        font-size: 1.4em;
        margin-top: 20px;
        margin-bottom: 10px;
    }

    .page-blog-troubleshooting-56wun-login-issues img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .page-blog-troubleshooting-56wun-login-issues__hero-image-wrapper,
    .page-blog-troubleshooting-56wun-login-issues__image-wrapper,
    .page-blog-troubleshooting-56wun-login-issues__cta-buttons,
    .page-blog-troubleshooting-56wun-login-issues__faq-list {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-blog-troubleshooting-56wun-login-issues__hero-section,
    .page-blog-troubleshooting-56wun-login-issues__content-area,
    .page-blog-troubleshooting-56wun-login-issues__article {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important;
    }

    .page-blog-troubleshooting-56wun-login-issues__faq-question {
        padding: 12px 15px;
        font-size: 1em;
    }

    .page-blog-troubleshooting-56wun-login-issues__faq-answer {
        padding: 12px 15px;
    }
}