.help-section {
    background: linear-gradient(180deg, #1a1a1a 0%, #1a1a1a 20%, #111111 40%, #0a0a0a 100%);
    padding: 8rem 2rem;
    position: relative;
    overflow: hidden;
}

.help-banner {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2.5rem 3rem;
    background: rgba(44, 44, 44, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    overflow: hidden;
}

.help-banner::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0%, -50%);
    width: 250px;
    height: 250px;
    background: radial-gradient(
        circle at center,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.05) 30%,
        transparent 70%
    );
    pointer-events: none;
    z-index: 0;
}

.help-banner-content {
    position: relative;
    z-index: 1;
}

.help-text {
    position: relative;
}

.help-banner h3 {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-color);
    letter-spacing: 1px;
    margin-bottom: 1.2rem;
}

.help-banner p {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 1.1rem;
    color: var(--text-color);
    opacity: 0.8;
    line-height: 1.4;
    max-width: 65%;
}

.help-btn {
    position: absolute;
    right: 0;
    top: 45%;
    transform: translateY(-50%);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.8rem 2rem;
    font-family: 'Chakra Petch', sans-serif;
    font-size: 1rem;
    color: var(--text-color);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    white-space: nowrap;
    z-index: 2;
}

.help-btn i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.help-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) translateY(-2px);
}

.help-btn:hover i {
    transform: translateX(4px);
}

.help-banner:hover {
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

[data-theme="light"] .help-section {
    background: linear-gradient(180deg, var(--background-color) 0%, var(--background-color) 20%, #e0e0e0 40%, #d0d0d0 100%);
}

@media (max-width: 768px) {
    .help-section {
        padding: 6rem 1.5rem;
    }

    .help-banner {
        padding: 2rem;
    }

    .help-banner h3 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
        text-align: center;
    }

    .help-banner p {
        font-size: 1rem;
        max-width: 100%;
        text-align: center;
    }

    .help-btn {
        position: static;
        transform: none;
        margin: 2rem auto 0;
        display: flex;
        justify-content: center;
    }

    .help-btn:hover {
        transform: translateY(-2px);
    }
} 