/* Response Component Styles */
.response-container {
    /*max-width: 1200px;*/
    /*margin: 0 auto;*/
    /*padding: 24px 12px;*/
    /*background: linear-gradient(135deg, #ff7b00 0%, #ff4757 100%);*/
    /*min-height: 100vh;*/
    /*display: flex;*/
    /*align-items: center;*/
    /*justify-content: center;*/
}

.response-card {
    display: flex;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    max-width: 900px;
    width: 100%;
    min-height: 500px;
}

.response-left {
    flex: 1;
    background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
    position: relative;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background-image: url('https://i1.sndcdn.com/artworks-bfb9a646-e4e9-4ec6-afce-0e0d7fa77a7b-0-t500x500.jpg');
    background-size: cover;
    background-position: center;
}

.response-left::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.8) 0%, rgba(118, 75, 162, 0.8) 100%);
    z-index: 1;
}

.artist-info {
    position: relative;
    z-index: 2;
    padding: 30px;
    color: white;
}

.artist-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    object-fit: cover;
}

.artist-name {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 5px;
    color: white;
}

.artist-handle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

.response-right {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    background: white;
}

.album-title {
    font-size: 28px;
    font-weight: 900;
    color: #2d3748;
    margin-bottom: 30px;
    line-height: 1.2;
}

.playlist-section {
    margin-bottom: 30px;
}

.playlist-label {
    font-size: 12px;
    font-weight: 700;
    color: #718096;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

.playlist-select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 16px;
    color: #2d3748;
    background: white;
    margin-bottom: 15px;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    cursor: pointer;
}

.playlist-select:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.download-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    /*margin-top: auto;*/
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 20px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.primary-download{
    width: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background: #2d3748;
    color: white;
    box-shadow: 0 4px 15px rgba(45, 55, 72, 0.2);
}

.btn-secondary:hover {
    background: #1a202c;
    transform: translateY(-1px);
}

.btn-outline {
    background: white;
    color: #4a5568;
    border: 2px solid #e2e8f0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.btn-outline:hover {
    background: #ef850a;
    border-color: #ef850a;
    transform: translateY(-1px);
}

.btn-icon {
    width: 20px;
    height: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .response-card {
        flex-direction: column;
        /*margin: 20px;*/
    }

    .response-left {
        min-height: 300px;
    }

    .response-right {
        padding: 30px 25px;
    }

    .album-title {
        font-size: 24px;
    }

    .artist-info {
        padding: 25px;
    }
}

/* Loading animation for playlist download */
.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.btn-secondary:hover::before {
    left: 100%;
}
