.help-wrapper {
    padding: 80px 20px 40px;
    align-items: flex-start;
    min-height: 100vh;
}
.help-card {
    background: var(--card-dark);
    border: 2px solid var(--border-dark);
    border-radius: 16px;
    padding: 25px;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body.light .help-card {
    background: var(--card-light);
    border-color: var(--border-light);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.help-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-dark);
}
body.light .help-header {
    border-color: var(--border-light);
}
.help-header h1 {
    margin: 0;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: -0.5px;
}
.help-subtitle {
    margin-top: 8px;
    font-size: 14px;
    opacity: 0.7;
    font-style: italic;
}
.help-content {
    line-height: 1.6;
}
.faq-section {
    margin-bottom: 40px;
}
.faq-item {
    margin-bottom: 25px;
    background: rgba(168, 85, 247, 0.05);
    border-radius: 12px;
    padding: 20px;
    border-left: 4px solid var(--accent);
    transition: transform 0.2s ease;
}
body.light .faq-item {
    background: rgba(168, 85, 247, 0.02);
}
.faq-item:hover {
    transform: translateX(5px);
}
.faq-question {
    margin: 0 0 12px 0;
    font-size: 1.3rem;
    color: var(--accent);
    font-weight: 600;
}
.faq-answer p {
    margin: 0;
    font-size: 16px;
    opacity: 0.9;
    line-height: 1.7;
}
.contact-section {
    background: rgba(168, 85, 247, 0.08);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    border: 1px solid rgba(168, 85, 247, 0.3);
}
body.light .contact-section {
    background: rgba(168, 85, 247, 0.05);
    border-color: rgba(168, 85, 247, 0.2);
}
.contact-section h3 {
    margin: 0 0 15px 0;
    color: var(--accent);
    font-size: 1.4rem;
}
.contact-section p {
    margin-bottom: 15px;
    font-size: 16px;
}
.email-link {
    margin: 20px 0;
}
.email-btn {
    display: inline-block;
    padding: 12px 24px;
    background: var(--accent);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s;
    border: 2px solid transparent;
}
.email-btn:hover, .email-btn:active {
    background: transparent;
    color: var(--accent);
    border-color: var(--accent);
    transform: translateY(-2px);
}
.contact-note {
    font-size: 14px;
    opacity: 0.7;
    font-style: italic;
    margin-top: 15px;
}
.help-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--border-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}
body.light .help-footer {
    border-color: var(--border-light);
}
.back-btn {
    padding: 10px 20px;
    background: rgba(168, 85, 247, 0.1);
    border: 2px solid var(--accent);
    color: var(--accent);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    font-size: 15px;
}
.back-btn:hover, .back-btn:active {
    background: var(--accent);
    color: white;
    transform: translateX(-3px);
}
.help-links {
    font-size: 14px;
    opacity: 0.8;
}
.help-links a {
    color: var(--accent);
    text-decoration: none;
    margin: 0 6px;
    transition: opacity 0.2s;
}
.help-links a:hover, .help-links a:active {
    opacity: 1;
    text-decoration: underline;
}
@media (max-width: 768px) {
    .help-wrapper {
        padding: 70px 15px 30px;
    }
    .help-card {
        padding: 20px;
        max-width: 600px;
    }
    .help-header h1 {
        font-size: 1.8rem;
    }
    .faq-question {
        font-size: 1.2rem;
    }
    .faq-answer p {
        font-size: 15px;
    }
    .help-footer {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    .back-btn {
        order: 2;
    }
    .help-links {
        order: 1;
    }
}
@media (max-width: 480px) {
    .help-wrapper {
        padding: 60px 12px 25px;
    }
    .help-card {
        padding: 18px;
        border-radius: 14px;
    }
    .help-header h1 {
        font-size: 1.6rem;
    }
    .help-subtitle {
        font-size: 13px;
    }
    .faq-item {
        padding: 16px;
        margin-bottom: 20px;
    }
    .faq-question {
        font-size: 1.1rem;
    }
    .faq-answer p {
        font-size: 14px;
    }
    .contact-section {
        padding: 20px;
    }
    .contact-section h3 {
        font-size: 1.2rem;
    }
    .contact-section p {
        font-size: 14px;
    }
    .email-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    .back-btn {
        padding: 8px 16px;
        font-size: 14px;
    }
    .help-links {
        font-size: 13px;
    }
}
@media (max-width: 360px) {
    .help-card {
        padding: 15px;
    }
    .help-header h1 {
        font-size: 1.4rem;
    }
    .faq-question {
        font-size: 1rem;
    }
    .faq-answer p {
        font-size: 13px;
    }
}
@media (max-height: 500px) and (orientation: landscape) {
    .help-wrapper {
        padding: 50px 15px 20px;
    }
    .help-card {
        max-width: 700px;
        padding: 15px;
    }
    .faq-item {
        padding: 12px;
        margin-bottom: 15px;
    }
    .contact-section {
        padding: 15px;
    }
}