/* ============================================
   HELP CENTER PAGE - Matching Image Hosting Style
   ============================================ */
.help-content {
    padding: 60px 0;
    min-height: calc(100vh - 200px);
}

/* Main Card - Dark like Image Hosting */
.help-content .help-card {
    background: #141618;
    border: 1px solid #1e2226;
    border-radius: 10px;
    margin-bottom: 30px;
    overflow: hidden;
}

/* Card Header - Integrated Dark */
.help-content .help-header {
    background: #1a1d21;
    padding: 18px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    border-bottom: 1px solid #1e2226;
}

.help-content .problem-badge {
    width: 36px;
    height: 36px;
    background: var(--red-accent);
    color: #000;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1rem;
    flex-shrink: 0;
}

.help-content .help-title h4 {
    margin: 0;
    color: var(--red-accent);
    font-size: 1.1rem;
    font-weight: 600;
}

.help-content .problem-number-bg {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.5rem;
    font-weight: 900;
    color: #1e2226;
    opacity: 1;
    pointer-events: none;
}

/* Card Body */
.help-content .help-body {
    padding: 25px;
    background: #141618;
}

/* Alert Warning - Yellow left border style */
.help-content .alert-warning {
    background: rgba(255, 193, 7, 0.08);
    border: none;
    border-left: 4px solid #ffc107;
    border-radius: 4px;
    color: #ffc107;
    padding: 15px 20px;
    margin-bottom: 20px;
}

.help-content .alert-warning i {
    color: #ffc107;
}

/* Cause/Solution Boxes - Separate dark cards */
.help-content .cause-box,
.help-content .solution-box {
    background: #0d0f10;
    border: 1px solid #1e2226;
    border-radius: 8px;
    padding: 20px 25px;
    margin-bottom: 15px;
}

.help-content .cause-box .box-header,
.help-content .solution-box .box-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.help-content .cause-box .box-header i,
.help-content .solution-box .box-header i {
    color: var(--red-accent);
    font-size: 0.9rem;
}

.help-content .cause-box .box-header span,
.help-content .solution-box .box-header span {
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
}

.help-content .cause-box p,
.help-content .solution-box p {
    color: #9ca3af;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.help-content .solution-box ol {
    color: #9ca3af;
    margin: 0;
    padding-left: 20px;
}

.help-content .solution-box ol li {
    margin-bottom: 8px;
    line-height: 1.5;
}

/* Images */
.help-content .help-img {
    border: 1px solid #1e2226;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Buttons - Solid Dark style */
.help-content .btn-outline-light {
    background: #1a1d21;
    border: 1px solid #2a2e33;
    color: #e0e0e0;
    padding: 10px 20px;
    font-size: 0.9rem;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.help-content .btn-outline-light:hover {
    background: #252930;
    border-color: var(--red-accent);
    color: #fff;
}

.help-content .btn-outline-light i {
    color: var(--red-accent);
}

/* Code - Cyan colored */
.help-content code {
    background: transparent;
    color: var(--red-accent);
    padding: 0;
    font-size: 0.9rem;
}

/* Text Muted */
.help-content .text-muted {
    color: #6b7280 !important;
}

/* Links */
.help-content a.text-danger,
.help-content a {
    color: var(--red-accent) !important;
    text-decoration: none;
}

.help-content a:hover {
    text-decoration: underline;
}

.help-content .btn {
    text-decoration: none !important;
}

/* Strong text */
.help-content strong {
    color: #e0e0e0;
}