.page-blog-kv888-android-faq-troubleshooting {
    font-family: Arial, sans-serif;
    color: #F3F8FF; /* Text Main for general content on dark background */
    line-height: 1.6;
    background-color: transparent; /* Main content background is transparent, body handles the deep-navy */
}

.page-blog-kv888-android-faq-troubleshooting__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-blog-kv888-android-faq-troubleshooting__section-title {
    color: #F2C14E; /* Gold for section titles */
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    line-height: 1.2;
}

.page-blog-kv888-android-faq-troubleshooting__text-block {
    margin-bottom: 20px;
    color: #AFC4E8; /* Text Secondary for paragraph text */
}

.page-blog-kv888-android-faq-troubleshooting ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 20px;
    color: #AFC4E8; /* Text Secondary for list items */
}

.page-blog-kv888-android-faq-troubleshooting li {
    margin-bottom: 10px;
}

/* --- Buttons --- */
.page-blog-kv888-android-faq-troubleshooting__btn-primary,
.page-blog-kv888-android-faq-troubleshooting__btn-secondary,
.page-blog-kv888-android-faq-troubleshooting__btn-link {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;
    max-width: 100%; /* Responsive button */
    box-sizing: border-box; /* Responsive button */
    white-space: normal; /* Responsive button */
    word-wrap: break-word; /* Responsive button */
}

.page-blog-kv888-android-faq-troubleshooting__btn-primary {
    background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-kv888-android-faq-troubleshooting__btn-primary:hover {
    background: linear-gradient(180deg, #1144A6 0%, #2B73F6 100%);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-kv888-android-faq-troubleshooting__btn-secondary {
    background: #10233F; /* Card BG */
    color: #F3F8FF; /* Text Main */
    border: 2px solid #244D84; /* Border */
}

.page-blog-kv888-android-faq-troubleshooting__btn-secondary:hover {
    background: #113B7A; /* Primary color */
    border-color: #113B7A;
    color: #ffffff;
}

.page-blog-kv888-android-faq-troubleshooting__btn-link {
    background: transparent;
    color: #4FA8FF; /* Glow color for links */
    border: 1px solid #4FA8FF;
    padding: 8px 15px;
    font-size: 0.9em;
}

.page-blog-kv888-android-faq-troubleshooting__btn-link:hover {
    background: #4FA8FF;
    color: #08162B; /* Deep Navy */
}


/* --- Hero Section --- */
.page-blog-kv888-android-faq-troubleshooting__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #08162B; /* Deep Navy for hero background */
    padding-bottom: 60px;
    padding-top: 10px; /* Small top padding for first section */
}

.page-blog-kv888-android-faq-troubleshooting__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    margin-bottom: 40px;
}

.page-blog-kv888-android-faq-troubleshooting__hero-content {
    max-width: 900px;
    text-align: center;
    padding: 0 20px;
    margin-top: 0;
}

.page-blog-kv888-android-faq-troubleshooting__hero-title {
    color: #F2C14E; /* Gold */
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: bold;
}

.page-blog-kv888-android-faq-troubleshooting__hero-description {
    color: #AFC4E8; /* Text Secondary */
    font-size: 1.1em;
    margin-bottom: 30px;
    line-height: 1.5;
}

.page-blog-kv888-android-faq-troubleshooting__hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- Section backgrounds --- */
.page-blog-kv888-android-faq-troubleshooting__light-bg {
    background-color: #08162B; /* Deep Navy, keeping text light */
    color: #AFC4E8;
    padding: 60px 0;
}

.page-blog-kv888-android-faq-troubleshooting__dark-bg {
    background-color: #10233F; /* Card BG, keeping text light */
    color: #F3F8FF;
    padding: 60px 0;
}

/* --- FAQ Section --- */
.page-blog-kv888-android-faq-troubleshooting__faq-list {
    margin-top: 40px;
}

.page-blog-kv888-android-faq-item {
    background-color: #08162B; /* Deep Navy */
    border: 1px solid #244D84; /* Border */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-blog-kv888-android-faq-troubleshooting__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    font-weight: bold;
    color: #F3F8FF; /* Text Main */
    font-size: 1.1em;
    list-style: none; /* For details/summary */
}

.page-blog-kv888-android-faq-troubleshooting__faq-question::-webkit-details-marker {
    display: none; /* For details/summary */
}

.page-blog-kv888-android-faq-troubleshooting__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 10px;
    color: #4FA8FF; /* Glow */
}

.page-blog-kv888-android-faq-troubleshooting__faq-answer {
    padding: 0 20px 20px;
    color: #AFC4E8; /* Text Secondary */
    font-size: 0.95em;
}

.page-blog-kv888-android-faq-troubleshooting__faq-answer p {
    margin-bottom: 15px;
}

.page-blog-kv888-android-faq-troubleshooting__faq-answer ul {
    list-style-type: disc;
    margin-left: 20px;
    padding-left: 0;
}

.page-blog-kv888-android-faq-troubleshooting__faq-answer li {
    margin-bottom: 5px;
}

/* --- Troubleshooting Section --- */
.page-blog-kv888-android-faq-troubleshooting__steps-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.page-blog-kv888-android-faq-troubleshooting__step-card {
    background-color: #10233F; /* Card BG */
    border: 1px solid #244D84; /* Border */
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-blog-kv888-android-faq-troubleshooting__step-title {
    color: #F2C14E; /* Gold */
    font-size: 1.3em;
    margin-bottom: 15px;
}

.page-blog-kv888-android-faq-troubleshooting__step-card p {
    color: #AFC4E8; /* Text Secondary */
    margin-bottom: 15px;
    flex-grow: 1;
}

/* --- Contact Section --- */
.page-blog-kv888-android-faq-troubleshooting__contact-list {
    list-style-type: none;
    padding-left: 0;
    margin-top: 30px;
    margin-bottom: 30px;
}

.page-blog-kv888-android-faq-troubleshooting__contact-list li {
    color: #AFC4E8; /* Text Secondary */
    margin-bottom: 10px;
    font-size: 1.1em;
}

.page-blog-kv888-android-faq-troubleshooting__contact-list strong {
    color: #F3F8FF; /* Text Main */
}

.page-blog-kv888-android-faq-troubleshooting__contact-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
    .page-blog-kv888-android-faq-troubleshooting__hero-title {
        font-size: clamp(2rem, 4.5vw, 3rem);
    }

    .page-blog-kv888-android-faq-troubleshooting__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-blog-kv888-android-faq-troubleshooting {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-blog-kv888-android-faq-troubleshooting__container {
        padding: 0 15px !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .page-blog-kv888-android-faq-troubleshooting__hero-section {
        padding-bottom: 40px;
        padding-top: 10px !important;
    }

    .page-blog-kv888-android-faq-troubleshooting__hero-image {
        margin-bottom: 30px;
    }

    .page-blog-kv888-android-faq-troubleshooting__hero-content {
        padding: 0 15px;
    }

    .page-blog-kv888-android-faq-troubleshooting__hero-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        margin-bottom: 15px;
    }

    .page-blog-kv888-android-faq-troubleshooting__hero-description {
        font-size: 1em;
        margin-bottom: 20px;
    }

    .page-blog-kv888-android-faq-troubleshooting__hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-blog-kv888-android-faq-troubleshooting__btn-primary,
    .page-blog-kv888-android-faq-troubleshooting__btn-secondary,
    .page-blog-kv888-android-faq-troubleshooting__btn-link {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-blog-kv888-android-faq-troubleshooting__contact-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-blog-kv888-android-faq-troubleshooting__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .page-blog-kv888-android-faq-troubleshooting__faq-question {
        font-size: 1em;
        padding: 15px;
    }

    .page-blog-kv888-android-faq-troubleshooting__faq-answer {
        padding: 0 15px 15px;
        font-size: 0.9em;
    }

    .page-blog-kv888-android-faq-troubleshooting__steps-list {
        grid-template-columns: 1fr;
    }

    .page-blog-kv888-android-faq-troubleshooting img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-blog-kv888-android-faq-troubleshooting video,
    .page-blog-kv888-android-faq-troubleshooting__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-blog-kv888-android-faq-troubleshooting__video-section,
    .page-blog-kv888-android-faq-troubleshooting__video-container,
    .page-blog-kv888-android-faq-troubleshooting__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
}