
* {
    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;
}



.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 {
    font-size: 4rem;
    font-family: 'Lilita One', cursive;
    background: linear-gradient(45deg, #38bdf8, #7b2cbf, #f59e0b);
    background-size: 200% 200%;
    animation: gradient 3s ease infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(56, 189, 248, 0.5);
    text-align: center;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.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: 2.8rem;
        line-height: 1.1;
    }
    
    .help-subtitle {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .help-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 400px) {
    .help-title {
        font-size: 1.8rem;
    }
}

.submit-btn {
    font-weight: 300 !important;
}