.help-top-area {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    margin-bottom: 2px;
}

.help-main-btn {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #00e5ff;
    background: linear-gradient(180deg, rgba(0,229,255,0.18), rgba(0,229,255,0.08));
    color: #bdf8ff;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 2px;
    box-shadow:
            0 0 10px rgba(0,229,255,0.28),
            inset 0 0 10px rgba(0,229,255,0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.help-main-btn:hover {
    background: linear-gradient(180deg, rgba(0,229,255,0.28), rgba(0,229,255,0.14));
    box-shadow:
            0 0 16px rgba(0,229,255,0.45),
            inset 0 0 12px rgba(0,229,255,0.12);
    transform: translateY(-1px);
}

.help-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 11000;
    background: rgba(0,0,0,0.76);
    backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.help-overlay.active {
    display: flex;
}

.help-modal {
    width: min(860px, 100%);
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: #111;
    border: 1px solid #00e5ff;
    border-radius: 16px;
    box-shadow: 0 0 28px rgba(0,229,255,0.28);
}

.help-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 20px 22px 14px;
    border-bottom: 1px solid rgba(0,229,255,0.18);
}

.help-header h2 {
    margin: 0;
    color: #00e5ff;
    font-size: 28px;
}

.help-subtitle {
    margin: 6px 0 0;
    color: #9cd7de;
    font-size: 14px;
}

.help-close-btn {
    min-width: 42px;
    height: 42px;
    border-radius: 10px;
    border: 1px solid #00e5ff;
    background: transparent;
    color: #00e5ff;
    font-size: 18px;
    font-weight: 700;
}

.help-close-btn:hover {
    background: #00e5ff;
    color: #000;
}

.help-content {
    overflow-y: auto;
    padding: 18px 22px 24px;
}

.help-section + .help-section {
    margin-top: 22px;
}

.help-section h3 {
    margin: 0 0 8px;
    color: #7cefff;
    font-size: 18px;
}

.help-section p {
    margin: 0;
    color: #d7e6e8;
    line-height: 1.65;
    font-size: 14px;
}

.help-form {
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.help-form-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.help-form-row label {
    color: #b7d6da;
    font-size: 13px;
    font-weight: 600;
}

.help-required {
    color: #ff8a80;
}

.help-form input[type="email"],
.help-form input[type="file"],
.help-form select,
.help-form textarea {
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #375057;
    background: #181818;
    color: #f2f7f8;
    font-size: 14px;
    box-sizing: border-box;
}

.help-form textarea {
    resize: vertical;
    min-height: 130px;
}

.help-form input:focus,
.help-form select:focus,
.help-form textarea:focus {
    outline: none;
    border-color: #00e5ff;
    box-shadow: 0 0 0 3px rgba(0,229,255,0.12);
}

.help-form-actions {
    display: flex;
    justify-content: flex-start;
}

.help-send-btn {
    padding: 11px 18px;
    border-radius: 8px;
    border: 1px solid #00e5ff;
    background: rgba(0,229,255,0.12);
    color: #00e5ff;
    font-size: 14px;
    font-weight: 700;
}

.help-send-btn:hover {
    background: #00e5ff;
    color: #000;
}

.help-send-btn:disabled {
    opacity: 0.65;
    cursor: wait;
}

.help-form-status {
    min-height: 20px;
    font-size: 13px;
    color: #9cd7de;
}

.help-form-status.success {
    color: #7CFC9A;
}

.help-form-status.error {
    color: #ff8a80;
}