/* style/blog-moto88-link-troubleshooting.css */
:root {
    --primary-color: #26A9E0;
    --secondary-color: #FFFFFF;
    --text-dark: #333333;
    --text-light: #ffffff;
    --bg-light: #ffffff;
    --border-color: #e0e0e0;
    --login-color: #EA7C07;
}

.page-blog-moto88-link-troubleshooting {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

.page-blog-moto88-link-troubleshooting__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    background-color: var(--primary-color);
    color: var(--text-light);
    overflow: hidden;
}

.page-blog-moto88-link-troubleshooting__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: 0;
}

.page-blog-moto88-link-troubleshooting__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto 30px;
}

.page-blog-moto88-link-troubleshooting__hero-title {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
}

.page-blog-moto88-link-troubleshooting__hero-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 30px;
}

.page-blog-moto88-link-troubleshooting__cta-buttons {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

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

.page-blog-moto88-link-troubleshooting__btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
    border: 2px solid var(--primary-color);
}

.page-blog-moto88-link-troubleshooting__btn-primary:hover {
    background-color: darken(var(--primary-color), 10%);
    border-color: darken(var(--primary-color), 10%);
}

.page-blog-moto88-link-troubleshooting__btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.page-blog-moto88-link-troubleshooting__btn-secondary:hover {
    background-color: var(--text-light);
    color: var(--primary-color);
}

.page-blog-moto88-link-troubleshooting__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.page-blog-moto88-link-troubleshooting__section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 30px;
    text-align: center;
    color: var(--primary-color);
    font-weight: 700;
}

.page-blog-moto88-link-troubleshooting__introduction-section p,
.page-blog-moto88-link-troubleshooting__issue-item p,
.page-blog-moto88-link-troubleshooting__guide-list li,
.page-blog-moto88-link-troubleshooting__benefits-list li,
.page-blog-moto88-link-troubleshooting__faq-answer p,
.page-blog-moto88-link-troubleshooting__cta-section p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.page-blog-moto88-link-troubleshooting__issue-item {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.page-blog-moto88-link-troubleshooting__issue-title {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.page-blog-moto88-link-troubleshooting__solution-title {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    color: var(--text-dark);
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-blog-moto88-link-troubleshooting__solution-list,
.page-blog-moto88-link-troubleshooting__guide-list,
.page-blog-moto88-link-troubleshooting__benefits-list {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.page-blog-moto88-link-troubleshooting__solution-list li,
.page-blog-moto88-link-troubleshooting__guide-list li,
.page-blog-moto88-link-troubleshooting__benefits-list li {
    margin-bottom: 10px;
}

.page-blog-moto88-link-troubleshooting__solution-list ol {
    list-style-type: decimal;
    margin-left: 20px;
    margin-top: 10px;
}

.page-blog-moto88-link-troubleshooting__image {
    max-width: 100%;
    height: auto;
    display: block;
    margin-top: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    min-height: 200px;
}

.page-blog-moto88-link-troubleshooting__dark-section {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 60px 20px;
    text-align: center;
}

.page-blog-moto88-link-troubleshooting__dark-section .page-blog-moto88-link-troubleshooting__section-title,
.page-blog-moto88-link-troubleshooting__dark-section p,
.page-blog-moto88-link-troubleshooting__dark-section ul li {
    color: var(--text-light);
}

.page-blog-moto88-link-troubleshooting__btn-explore {
    margin-top: 30px;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-color: var(--secondary-color);
}

.page-blog-moto88-link-troubleshooting__btn-explore:hover {
    background-color: darken(var(--secondary-color), 10%);
    color: var(--primary-color);
}

.page-blog-moto88-link-troubleshooting__faq-list {
    margin-top: 30px;
}

.page-blog-moto88-link-troubleshooting__faq-item {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.page-blog-moto88-link-troubleshooting__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-weight: bold;
    color: var(--primary-color);
    background-color: #f9f9f9;
    border-bottom: 1px solid var(--border-color);
}

.page-blog-moto88-link-troubleshooting__faq-question::-webkit-details-marker {
    display: none;
}

.page-blog-moto88-link-troubleshooting__faq-item[open] .page-blog-moto88-link-troubleshooting__faq-question {
    border-bottom: 1px solid transparent;
}

.page-blog-moto88-link-troubleshooting__faq-qtext {
    flex-grow: 1;
    font-size: 1.1rem;
}

.page-blog-moto88-link-troubleshooting__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    margin-left: 15px;
}

.page-blog-moto88-link-troubleshooting__faq-answer {
    padding: 20px 25px;
    background-color: var(--bg-light);
    color: var(--text-dark);
    font-size: 1rem;
    border-top: 1px solid var(--border-color);
}

.page-blog-moto88-link-troubleshooting__faq-answer p {
    margin-bottom: 0;
}

.page-blog-moto88-link-troubleshooting__cta-section {
    text-align: center;
    padding-bottom: 60px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-blog-moto88-link-troubleshooting__hero-section {
        padding: 60px 20px;
    }
    .page-blog-moto88-link-troubleshooting__hero-title {
        font-size: clamp(2rem, 4.5vw, 3rem);
    }
    .page-blog-moto88-link-troubleshooting__hero-description {
        font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    }
    .page-blog-moto88-link-troubleshooting__issue-item {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .page-blog-moto88-link-troubleshooting {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-blog-moto88-link-troubleshooting__hero-section {
        padding: 40px 15px;
        padding-top: 10px !important; /* body has padding-top */
    }
    .page-blog-moto88-link-troubleshooting__hero-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }
    .page-blog-moto88-link-troubleshooting__hero-description {
        font-size: clamp(0.9rem, 2.5vw, 1rem);
    }
    .page-blog-moto88-link-troubleshooting__cta-buttons {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0 15px;
    }
    .page-blog-moto88-link-troubleshooting__btn-primary,
    .page-blog-moto88-link-troubleshooting__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 15px;
        font-size: 1rem;
    }

    .page-blog-moto88-link-troubleshooting__content-area,
    .page-blog-moto88-link-troubleshooting__dark-section {
        padding: 20px 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-blog-moto88-link-troubleshooting__section-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
        margin-bottom: 20px;
    }

    .page-blog-moto88-link-troubleshooting__issue-item {
        padding: 20px;
        margin-bottom: 20px;
    }
    .page-blog-moto88-link-troubleshooting__issue-title {
        font-size: clamp(1.2rem, 4vw, 1.5rem);
    }
    .page-blog-moto88-link-troubleshooting__solution-title {
        font-size: clamp(1.1rem, 3.5vw, 1.3rem);
    }

    .page-blog-moto88-link-troubleshooting img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        min-width: 200px;
        min-height: 200px;
    }
    .page-blog-moto88-link-troubleshooting__image {
        min-width: 200px;
        min-height: 200px;
    }

    .page-blog-moto88-link-troubleshooting__faq-question {
        padding: 15px 20px;
        font-size: 1rem;
    }
    .page-blog-moto88-link-troubleshooting__faq-answer {
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .page-blog-moto88-link-troubleshooting__hero-section {
        padding: 30px 10px;
        padding-top: 10px !important;
    }
    .page-blog-moto88-link-troubleshooting__hero-title {
        font-size: clamp(1.6rem, 7vw, 2.2rem);
    }
    .page-blog-moto88-link-troubleshooting__hero-description {
        font-size: clamp(0.85rem, 3vw, 0.95rem);
    }
    .page-blog-moto88-link-troubleshooting__content-area,
    .page-blog-moto88-link-troubleshooting__dark-section {
        padding: 15px 10px;
    }
    .page-blog-moto88-link-troubleshooting__section-title {
        font-size: clamp(1.3rem, 6vw, 1.8rem);
    }
    .page-blog-moto88-link-troubleshooting__issue-item {
        padding: 15px;
    }
    .page-blog-moto88-link-troubleshooting__issue-title {
        font-size: clamp(1.1rem, 5vw, 1.3rem);
    }
    .page-blog-moto88-link-troubleshooting__solution-title {
        font-size: clamp(1rem, 4.5vw, 1.2rem);
    }
    .page-blog-moto88-link-troubleshooting__faq-question {
        padding: 12px 15px;
    }
    .page-blog-moto88-link-troubleshooting__faq-answer {
        padding: 12px 15px;
    }
}