/* Help Us Page Styles - Converted from inline styles */

/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #1e293b 0%, #475569 100%);
    color: #f1f5f9;
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Discord-inspired styles and other help us page styles would go here */
/* This is a placeholder - the original page used inline styles */

.help-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.help-section {
    background: rgba(30, 41, 59, 0.8);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    border: 1px solid #334155;
}

.help-title {
    color: #38bdf8;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 0 0 10px rgba(56, 189, 248, 0.3);
}

.help-subtitle {
    color: #7dd3fc;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.help-text {
    color: #cbd5e1;
    font-size: 1.1rem;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .help-container {
        padding: 1rem;
    }
    
    .help-title {
        font-size: 2rem;
    }
    
    .help-subtitle {
        font-size: 1.5rem;
    }
}