/* style/login-portal-troubleshooting.css */
.page-login-portal-troubleshooting {
    font-family: 'Arial', sans-serif;
    color: #f5f0e7; /* Light text for dark background */
    background-color: #0A0F18; /* Main dark background */
    line-height: 1.6;
}

.page-login-portal-troubleshooting__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-login-portal-troubleshooting__hero {
    background: linear-gradient(135deg, #0A0F18 0%, #301934 100%); /* Darker gradient for hero */
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-login-portal-troubleshooting__hero-title {
    font-size: 3.2em;
    color: #FFD700; /* Gold for main title */
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-login-portal-troubleshooting__hero-subtitle {
    font-size: 1.3em;
    color: #e0e0e0;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.page-login-portal-troubleshooting__hero-cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-login-portal-troubleshooting__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-login-portal-troubleshooting__btn--primary {
    background-color: #FFD700; /* Gold primary button */
    color: #0A0F18;
}

.page-login-portal-troubleshooting__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4);
}

.page-login-portal-troubleshooting__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-login-portal-troubleshooting__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A0F18;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4);
}

.page-login-portal-troubleshooting__section {
    padding: 80px 0;
    background-color: #1a1f28; /* Slightly lighter dark for sections */
    margin-bottom: 20px;
    border-radius: 10px;
}

.page-login-portal-troubleshooting__section:nth-of-type(even) {
    background-color: #0A0F18;
}

.page-login-portal-troubleshooting__section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-login-portal-troubleshooting__section-description {
    font-size: 1.1em;
    color: #cccccc;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px auto;
}

.page-login-portal-troubleshooting__issue-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-login-portal-troubleshooting__issue-card {
    background-color: #0A0F18;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    border: 1px solid #333;
}

.page-login-portal-troubleshooting__issue-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-login-portal-troubleshooting__issue-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-login-portal-troubleshooting__issue-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-login-portal-troubleshooting__issue-text {
    color: #b0b0b0;
    margin-bottom: 20px;
}

.page-login-portal-troubleshooting__solution-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.page-login-portal-troubleshooting__solution-list li {
    background-color: #1a1f28;
    margin-bottom: 10px;
    padding: 10px 15px;
    border-radius: 5px;
    color: #e0e0e0;
    position: relative;
    padding-left: 30px;
}

.page-login-portal-troubleshooting__solution-list li::before {
    content: '✅';
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.9em;
}

.page-login-portal-troubleshooting__detailed-guide .page-login-portal-troubleshooting__guide-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 50px;
}

.page-login-portal-troubleshooting__step {
    display: flex;
    align-items: flex-start;
    gap: 25px;
}

.page-login-portal-troubleshooting__step-number {
    background-color: #FFD700;
    color: #0A0F18;
    font-size: 2em;
    font-weight: bold;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

.page-login-portal-troubleshooting__step-content h3 {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-login-portal-troubleshooting__step-content p {
    color: #cccccc;
    font-size: 1.1em;
}

.page-login-portal-troubleshooting__image-block {
    text-align: center;
    margin-top: 60px;
}

.page-login-portal-troubleshooting__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 2px solid #333;
}

.page-login-portal-troubleshooting__image-caption {
    color: #b0b0b0;
    margin-top: 20px;
    font-style: italic;
    font-size: 0.95em;
}

.page-login-portal-troubleshooting__contact-support .page-login-portal-troubleshooting__support-channels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-login-portal-troubleshooting__channel-card {
    background-color: #0A0F18;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #333;
}

.page-login-portal-troubleshooting__channel-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.7));
}

.page-login-portal-troubleshooting__channel-card h3 {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-login-portal-troubleshooting__channel-card p {
    color: #cccccc;
}

.page-login-portal-troubleshooting__contact-tip {
    text-align: center;
    margin-top: 50px;
    font-size: 1.1em;
    color: #e0e0e0;
    background-color: #1a1f28;
    padding: 25px;
    border-radius: 8px;
    border-left: 5px solid #FFD700;
}

.page-login-portal-troubleshooting__why-typhu88 .page-login-portal-troubleshooting__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-login-portal-troubleshooting__feature-item {
    background-color: #0A0F18;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #333;
}

.page-login-portal-troubleshooting__feature-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-login-portal-troubleshooting__feature-item h3 {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-login-portal-troubleshooting__feature-item p {
    color: #cccccc;
}

.page-login-portal-troubleshooting__cta-bottom {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background-color: #1a1f28;
    border-radius: 10px;
    border-top: 3px solid #FFD700;
}

.page-login-portal-troubleshooting__cta-bottom p {
    font-size: 1.4em;
    color: #e0e0e0;
    margin-bottom: 30px;
    font-weight: bold;
}

.page-login-portal-troubleshooting__faq .page-login-portal-troubleshooting__faq-item {
    background-color: #0A0F18;
    border: 1px solid #333;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-login-portal-troubleshooting__faq-question {
    font-size: 1.3em;
    color: #FFD700;
    margin-bottom: 15px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-login-portal-troubleshooting__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-login-portal-troubleshooting__faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-login-portal-troubleshooting__faq-answer {
    color: #cccccc;
    font-size: 1.05em;
    display: none;
    padding-top: 10px;
    border-top: 1px solid #333;
    margin-top: 15px;
}

.page-login-portal-troubleshooting__faq-answer a {
    color: #FFD700;
    text-decoration: none;
}

.page-login-portal-troubleshooting__faq-answer a:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-login-portal-troubleshooting__hero-title {
        font-size: 2.5em;
    }

    .page-login-portal-troubleshooting__hero-subtitle {
        font-size: 1em;
    }

    .page-login-portal-troubleshooting__hero-cta-group {
        flex-direction: column;
    }

    .page-login-portal-troubleshooting__btn {
        width: 80%;
        max-width: 300px;
    }

    .page-login-portal-troubleshooting__section-title {
        font-size: 2em;
    }

    .page-login-portal-troubleshooting__issue-card, 
    .page-login-portal-troubleshooting__channel-card, 
    .page-login-portal-troubleshooting__feature-item {
        padding: 20px;
    }

    .page-login-portal-troubleshooting__step {
        flex-direction: column;
        text-align: center;
    }

    .page-login-portal-troubleshooting__step-number {
        margin-bottom: 15px;
    }

    .page-login-portal-troubleshooting__step-content {
        text-align: left; /* Align text left in content */
    }
}

@media (max-width: 480px) {
    .page-login-portal-troubleshooting__hero-title {
        font-size: 2em;
    }

    .page-login-portal-troubleshooting__section-title {
        font-size: 1.8em;
    }

    .page-login-portal-troubleshooting__hero {
        padding: 60px 0;
    }

    .page-login-portal-troubleshooting__section {
        padding: 40px 0;
    }

    .page-login-portal-troubleshooting__issue-card, 
    .page-login-portal-troubleshooting__channel-card, 
    .page-login-portal-troubleshooting__feature-item {
        padding: 15px;
    }
}