.soundcloud-downloader-container {
    max-width: 800px;
    margin: 0 auto;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.soundcloud-header {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

.soundcloud-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.soundcloud-header h2 .fab.fa-soundcloud {
    color: #ff5500;
    margin-right: 15px;
}

.soundcloud-header p {
    font-size: 1.1rem;
    color: #666;
}

.soundcloud-download-section {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border: 1px solid #e0e0e0;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.button-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

#soundcloud-url {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
}

#soundcloud-url:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

#download-btn, #fast-download-btn {
    flex: 1;
    min-width: 150px;
    padding: 15px 25px;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

#download-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

#download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

#fast-download-btn {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
}

#fast-download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

#download-btn:disabled, #fast-download-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.progress-container {
    text-align: center;
    margin: 25px 0;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #667eea, #764ba2);
    width: 0%;
    transition: width 0.3s ease;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.result-container, .error-container {
    text-align: center;
    margin: 25px 0;
}

.success-message {
    background: #f0f9ff;
    border: 2px solid #10b981;
    border-radius: 15px;
    padding: 25px;
    color: #065f46;
}

.success-message .fas.fa-check-circle {
    font-size: 2.5rem;
    color: #10b981;
    margin-bottom: 15px;
}

.success-message h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

#download-link {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 25px;
    background: #10b981;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

#download-link:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.4);
}

.error-message {
    background: #fef2f2;
    border: 2px solid #ef4444;
    border-radius: 15px;
    padding: 25px;
    color: #dc2626;
}

.error-message .fas.fa-exclamation-triangle {
    font-size: 2.5rem;
    color: #ef4444;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .soundcloud-downloader-container {
        padding: 15px;
    }

    .soundcloud-header h2 {
        font-size: 2rem;
    }

    .soundcloud-download-section {
        padding: 20px;
    }

    .input-group {
        flex-direction: column;
    }

    #soundcloud-url {
        min-width: auto;
        margin-bottom: 15px;
    }
}
