/* Help page specific styles */
.help-page {
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #0f0f23 100%);
    min-height: 100vh;
    padding-top: 80px;
}

.help-page .brand {
    color: #fff !important;
    text-decoration: none;
}

.help-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px 80px;
}

.help-header {
    text-align: center;
    margin-bottom: 60px;
}

.help-header h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff 0%, #aaa 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.help-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.help-section {
    background: rgba(30, 30, 30, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.help-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.help-section h2 .section-icon {
    width: 24px;
    height: 24px;
    stroke: var(--accent-color);
    stroke-width: 2;
    fill: none;
    flex-shrink: 0;
}

.help-section h3 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin: 1.5rem 0 0.75rem;
}

.help-section p,
.help-section li {
    color: var(--text-secondary);
    line-height: 1.7;
}

.help-section ul,
.help-section ol {
    padding-left: 1.5rem;
    margin: 1rem 0;
}

.help-section li {
    margin-bottom: 0.5rem;
}

.help-section code {
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
    font-family: 'SF Mono', Monaco, monospace;
    font-size: 0.9em;
    color: #2997FF;
}

.code-block {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
    overflow-x: auto;
}

.code-block code {
    background: none;
    padding: 0;
    color: #e0e0e0;
    display: block;
    white-space: pre;
}

.url-table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
    margin: 1rem 0;
}

.url-table th,
.url-table td {
    text-align: left;
    padding: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    overflow-wrap: anywhere;
}

.url-table th {
    color: var(--text-primary);
    font-weight: 600;
}

.url-table td {
    color: var(--text-secondary);
}

.url-table td code {
    font-size: 0.85em;
    white-space: normal;
}

.faq-item {
    margin-bottom: 1.5rem;
}

.faq-item strong {
    color: var(--text-primary);
    display: block;
    margin-bottom: 0.5rem;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-color);
    text-decoration: none;
    margin-bottom: 2rem;
    transition: color 0.2s;
}

.back-link:hover {
    color: #fff;
}

.help-link {
    color: var(--accent-color);
}

.contact-box {
    background: rgba(41, 151, 255, 0.1);
    border: 1px solid rgba(41, 151, 255, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    margin-top: 3rem;
}

.contact-box h3 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.contact-box p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.contact-box a {
    color: var(--accent-color);
    text-decoration: none;
}

.contact-box a:hover {
    text-decoration: underline;
}

.screenshot-container {
    margin: 1.5rem 0;
    text-align: center;
}

.screenshot {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.screenshot-caption {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 0.75rem;
    font-style: italic;
}
