 /* MP3 Downloader Specific Styles */
.dl-hero {
    background: linear-gradient(135deg, var(--primary-bg) 0%, var(--secondary-bg) 100%);
    padding: 6rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.dl-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(79, 195, 247, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(156, 39, 176, 0.1) 0%, transparent 50%);

    pointer-events: none;
}

/* Main Content */
.dl-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

    /* Animations */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .dl-hero {
    padding: 4rem 0 3rem;
    }
    
    .dl-content {
    padding: 1rem;
    }
    
    .form-section,
    .my-files-section {
    padding: 1.5rem;
    }
    
    .file-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    }
    
    .file-actions {
    align-self: flex-end;
    }
}