:root {
    --primary: 180 100% 45%; /* #00B5B5 - Teal */
    --primary-hover: 180 100% 40%; /* #009999 - Darker Teal */
    --background: 0 0% 98%; /* #FAFAFA - Off White */
    --surface: 0 0% 100%; /* #FFFFFF - Pure White */
    --text-primary: 180 10% 15%; /* #242626 - Dark Teal-Gray */
    --text-secondary: 180 5% 45%; /* #6B7272 - Medium Teal-Gray */
    --border: 180 10% 90%; /* #E3E8E8 - Light Teal-Gray */
    --success: 142 71% 45%; /* #10B981 */
    --error: 350 89% 60%; /* #EF4444 */
}

* {
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', Helvetica, Arial, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-attachment: fixed;
    color: hsl(var(--text-primary));
    line-height: 1.47;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container-fluid {
    padding: 2rem 1rem;
}

/* Glass Morphism Base Classes */
.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
}

.glass-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(31, 38, 135, 0.4);
}

.glass-strong {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    box-shadow: 0 16px 48px rgba(31, 38, 135, 0.5);
}

.upload-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 1rem;
}

.process-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-icon {
    color: hsl(var(--primary));
    filter: drop-shadow(0 2px 4px rgba(0, 102, 255, 0.1));
}

h1 {
    color: hsl(var(--text-primary));
    font-weight: 600;
    font-size: 3.5rem;
    letter-spacing: -0.025em;
}

h2, h3, h4, h5, h6 {
    font-weight: 600;
    letter-spacing: -0.01em;
}

.brand-subtitle {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', Helvetica, Arial, sans-serif;
    font-size: 0.875rem;
    color: hsl(var(--text-secondary));
    opacity: 0.7;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.footer {
    background: hsl(var(--background));
    border-top: 1px solid hsl(var(--border));
    margin-top: auto;
}

.footer-copyright {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', Helvetica, Arial, sans-serif;
    font-size: 0.875rem;
    color: hsl(var(--text-secondary));
    opacity: 0.7;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.lead {
    font-size: 1.1rem;
}

.upload-zone {
    margin: 2rem 0;
}

.upload-area {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 20px;
    padding: 4rem 2rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 12px 40px rgba(31, 38, 135, 0.4);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    min-height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.upload-area:hover {
    border-color: rgba(0, 181, 181, 0.6);
    background: rgba(0, 181, 181, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 16px 48px rgba(0, 181, 181, 0.3), 0 8px 24px rgba(31, 38, 135, 0.4);
}

.upload-area.dragover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.02);
}

.upload-content {
    pointer-events: none;
}

.upload-icon {
    color: hsl(var(--primary));
    opacity: 0.7;
}

#fileInput {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.supported-formats .badge {
    background: hsl(var(--primary)) !important;
    font-size: 0.75rem;
    padding: 0.35rem 0.7rem;
    border-radius: 6px;
}

.file-info-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 12px 40px rgba(31, 38, 135, 0.4);
}

.metadata-section {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 12px 40px rgba(31, 38, 135, 0.4);
}

.technical-info {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 20px;
    padding: 2rem;
    height: fit-content;
    box-shadow: 0 12px 40px rgba(31, 38, 135, 0.4);
}

.section-title {
    font-weight: 600;
    color: hsl(var(--text-primary));
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.form-control {
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    font-weight: 400;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    color: rgba(0, 0, 0, 0.8);
}

.form-control:focus {
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.15);
    outline: none;
}

.form-label {
    font-weight: 500;
    color: hsl(var(--text-primary));
    margin-bottom: 0.5rem;
}

.info-grid {
    display: grid;
    gap: 1rem;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid hsl(var(--border));
}

.info-item:last-child {
    border-bottom: none;
}

.info-item .label {
    font-weight: 500;
    color: hsl(var(--text-secondary));
    font-size: 0.9rem;
}

.info-item .value {
    font-weight: 500;
    color: hsl(var(--text-primary));
    font-size: 0.9rem;
}

.bundle-preview {
    background: hsl(var(--surface));
    border: 1px solid hsl(var(--border));
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(20px);
}

.distribution-section {
    background: hsl(var(--surface));
    border: 1px solid hsl(var(--border));
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(20px);
}

.distribution-form .form-check {
    margin-bottom: 0.5rem;
}

.distribution-form .form-check-input {
    border-radius: 4px;
}

.distribution-form .form-check-label {
    font-size: 0.95rem;
    color: hsl(var(--text-primary));
}

.distribution-actions {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid hsl(var(--border));
}

.btn-success {
    background: hsl(var(--success));
    border-color: hsl(var(--success));
    padding: 0.875rem 2rem;
    font-weight: 500;
    font-size: 1rem;
    border-radius: 12px;
    transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
    border: none;
}

.btn-success:hover {
    background: hsl(142 71% 40%);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15), 0 2px 6px rgba(0, 0, 0, 0.1);
}

.bundle-items {
    display: grid;
    gap: 0.75rem;
}

.bundle-item {
    display: flex;
    align-items: center;
    padding: 0.875rem 1rem;
    background: hsl(var(--background));
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 400;
    color: hsl(var(--text-primary));
    border: 1px solid hsl(var(--border));
}

.action-buttons {
    text-align: center;
    padding: 2rem 0;
}

.btn-primary {
    background: hsl(var(--primary));
    border-color: hsl(var(--primary));
    padding: 0.875rem 2rem;
    font-weight: 500;
    font-size: 1rem;
    border-radius: 12px;
    transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
    border: none;
}

.btn-primary:hover {
    background: hsl(var(--primary-hover));
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15), 0 2px 6px rgba(0, 0, 0, 0.1);
}

.btn-outline-secondary {
    border: 1px solid hsl(var(--border));
    color: hsl(var(--text-secondary));
    background: hsl(var(--surface));
    padding: 0.875rem 2rem;
    font-weight: 500;
    font-size: 1rem;
    border-radius: 12px;
    transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
}

.btn-outline-secondary:hover {
    background: hsl(var(--text-secondary));
    border-color: hsl(var(--text-secondary));
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15), 0 2px 6px rgba(0, 0, 0, 0.1);
}

.btn-donate {
    background: #FF7A00;
    border-color: #FF7A00;
    color: white;
    padding: 0.5rem 1rem;
    font-weight: 500;
    font-size: 0.875rem;
    border-radius: 8px;
    transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 1px 3px rgba(255, 122, 0, 0.2), 0 1px 2px rgba(255, 122, 0, 0.1);
    border: none;
    text-decoration: none;
}

.btn-donate:hover {
    background: #E66A00;
    border-color: #E66A00;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(255, 122, 0, 0.3), 0 2px 6px rgba(255, 122, 0, 0.2);
    text-decoration: none;
}

.donate-section {
    border-top: 1px solid hsl(var(--border));
    background: hsl(var(--surface) / 0.5);
    border-radius: 16px 16px 0 0;
    padding: 1.5rem;
    margin-top: 2rem;
}

.donation-text {
    font-style: italic;
    max-width: 400px;
    margin: 0 auto;
    color: hsl(var(--text-secondary));
}

.alert {
    border-radius: 8px;
    border: none;
    padding: 1rem 1.5rem;
}

.alert-danger {
    background: hsl(var(--error) / 0.1);
    color: hsl(var(--error));
}

.alert-success {
    background: hsl(var(--success) / 0.1);
    color: hsl(var(--success));
}

.alert-info {
    background: hsl(var(--primary) / 0.1);
    color: hsl(var(--primary));
}

.progress {
    height: 8px;
    border-radius: 4px;
    background: hsl(var(--border));
}

.progress-bar {
    background: linear-gradient(90deg, hsl(var(--primary)), hsl(var(--primary-hover)));
    border-radius: 4px;
}

/* Enhanced Progress Steps */
.processing-steps {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.step-indicator {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-bottom: 2rem;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    opacity: 0.4;
    transition: all 0.3s ease;
}

.step.active {
    opacity: 1;
    transform: scale(1.1);
}

.step.completed {
    opacity: 0.8;
}

.step.completed .step-icon {
    background: hsl(var(--success));
    color: white;
}

.step.active .step-icon {
    background: hsl(var(--primary));
    color: white;
    animation: pulse 2s infinite;
}

.step-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: hsl(var(--border));
    color: hsl(var(--text-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.step-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.step.active .step-label {
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    font-weight: 600;
}

.step.completed .step-label {
    color: rgba(255, 255, 255, 0.9) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.progress-container {
    margin-top: 1rem;
}

.progress-text {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.75rem;
    font-size: 0.875rem;
}

.current-step {
    color: rgba(255, 255, 255, 0.9) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    font-weight: 500;
}

.progress-percentage {
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    font-weight: 600;
    font-size: 0.8rem;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 hsl(var(--primary) / 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px hsl(var(--primary) / 0);
    }
    100% {
        box-shadow: 0 0 0 0 hsl(var(--primary) / 0);
    }
}

/* Enhanced Metadata Editing */
.input-group .btn {
    border-radius: 0 6px 6px 0;
    font-size: 0.8rem;
    padding: 0.375rem 0.75rem;
}

.similar-artists .badge,
.genre-suggestions .badge {
    margin: 0.2rem 0.1rem;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.similar-artists .badge:hover,
.genre-suggestions .badge:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-color: hsl(var(--primary));
}

.genre-suggestions .badge.bg-primary {
    animation: highlight 0.3s ease;
}

@keyframes highlight {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.bg-success-subtle {
    background-color: hsl(var(--success) / 0.1) !important;
    transition: background-color 0.3s ease;
}

.metadata-suggestions {
    margin-top: 1rem;
    padding: 1rem;
    background: hsl(var(--surface));
    border-radius: 8px;
    border: 1px solid hsl(var(--border));
}

.suggestion-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid hsl(var(--border));
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-label {
    font-weight: 500;
    color: hsl(var(--text-secondary));
    font-size: 0.9rem;
}

.suggestion-value {
    color: hsl(var(--text-primary));
    font-family: monospace;
    font-size: 0.85rem;
    background: hsl(var(--border) / 0.3);
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
}

/* Registration Tracker Styles */
.registration-tracker .card-header {
    background: hsl(var(--surface));
    border-bottom: 1px solid hsl(var(--border));
    transition: background-color 0.2s ease;
}

.registration-tracker .card-header:hover {
    background: hsl(var(--border) / 0.3);
}

.chevron-icon {
    transition: transform 0.3s ease;
}

.chevron-icon.rotated {
    transform: rotate(180deg);
}

.registration-category {
    border-bottom: 1px solid hsl(var(--border));
    padding-bottom: 1.5rem;
}

.registration-category:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.category-title {
    color: hsl(var(--text-primary));
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.category-description {
    color: hsl(var(--text-secondary));
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.registration-item {
    background: hsl(var(--surface));
    border: 1px solid hsl(var(--border));
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 0.75rem;
    transition: all 0.2s ease;
}

.registration-item:hover {
    border-color: hsl(var(--primary));
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.registration-item:last-child {
    margin-bottom: 0;
}

.item-info strong {
    color: hsl(var(--text-primary));
    font-size: 1rem;
    display: block;
    margin-bottom: 0.25rem;
}

.item-description {
    color: hsl(var(--text-secondary));
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.item-note {
    color: hsl(var(--text-secondary));
    font-size: 0.8rem;
    margin-top: 0.25rem;
}

.item-link {
    color: hsl(var(--primary));
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.item-link:hover {
    color: hsl(var(--primary-hover));
    text-decoration: underline;
}

.item-actions {
    min-width: 160px;
}

.item-actions .form-check {
    margin-bottom: 0.5rem;
}

.item-actions .form-check:last-child {
    margin-bottom: 0;
}

.item-actions .form-check-label {
    font-size: 0.85rem;
    color: hsl(var(--text-secondary));
}

.form-check-input:checked {
    background-color: hsl(var(--primary));
    border-color: hsl(var(--primary));
}

.sync-library-inputs .input-group {
    margin-bottom: 0.5rem;
}

.sync-library-inputs .input-group:last-of-type {
    margin-bottom: 1rem;
}

.registration-summary {
    border: 1px solid hsl(var(--border));
    background: hsl(var(--surface)) !important;
}

.registration-summary .progress {
    height: 8px;
    background: hsl(var(--border));
}

.registration-summary .progress-bar {
    background: linear-gradient(90deg, hsl(var(--primary)), hsl(var(--success)));
    transition: width 0.5s ease;
}

/* Registration item completed state */
.registration-item.completed {
    background: hsl(var(--success) / 0.1);
    border-color: hsl(var(--success));
}

.registration-item.completed .item-info strong {
    color: hsl(var(--success));
}

.registration-item.remind-later {
    background: hsl(var(--warning) / 0.1);
    border-color: hsl(var(--warning));
}

/* Upload browse link */
.upload-browse-link {
    color: hsl(var(--primary));
    text-decoration: underline;
    cursor: pointer;
    transition: color 0.2s ease;
}

.upload-browse-link:hover {
    color: hsl(var(--primary-hover));
}

/* Artwork Upload Styling */
.artwork-upload-container {
    margin-bottom: 1rem;
}

.artwork-preview-area {
    border: 2px dashed hsl(var(--border));
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: hsl(var(--background));
}

.artwork-preview-area:hover {
    border-color: hsl(var(--primary));
    background-color: hsl(var(--primary) / 0.05);
}

.artwork-preview {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.artwork-icon {
    color: hsl(var(--text-secondary));
}

.artwork-text {
    margin: 0;
    color: hsl(var(--text-primary));
    font-weight: 500;
}

.artwork-preview img {
    max-width: 200px;
    max-height: 200px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container-fluid {
        padding: 1rem 0.5rem;
    }
    
    .upload-area {
        padding: 2rem 1rem;
    }
    
    .metadata-section, .technical-info, .bundle-preview, .processing-steps {
        padding: 1.5rem;
    }
    
    .step-indicator {
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .step-icon {
        width: 35px;
        height: 35px;
    }
    
    .step-label {
        font-size: 0.8rem;
    }
    
    .action-buttons .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .action-buttons .btn.ms-3 {
        margin-left: 0 !important;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    
    .upload-area {
        padding: 1.5rem 1rem;
        min-height: 150px;
    }
    
    .upload-icon {
        width: 36px;
        height: 36px;
    }
}

/* Glass Morphism Button Overrides */
.btn-primary {
    background: rgba(0, 181, 181, 0.8) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37) !important;
    color: white !important;
}

.btn-primary:hover {
    background: rgba(0, 181, 181, 0.9) !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(31, 38, 135, 0.5) !important;
}

/* Specific styling for the ISRC Assign button */
#generateIsrcBtn {
    background: rgba(0, 181, 181, 0.85) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37) !important;
    color: white !important;
}

#generateIsrcBtn:hover {
    background: rgba(0, 181, 181, 0.95) !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(31, 38, 135, 0.5) !important;
    color: white !important;
}

/* Suggestion "Use:" buttons styling - higher specificity */
.btn.btn-outline-primary.suggestion-btn {
    background: rgba(0, 181, 181, 0.8) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 181, 181, 0.6) !important;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37) !important;
    color: white !important;
}

.btn.btn-outline-primary.suggestion-btn:hover {
    background: rgba(0, 181, 181, 0.9) !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(31, 38, 135, 0.5) !important;
    color: white !important;
    border-color: rgba(0, 181, 181, 0.8) !important;
}

.btn.btn-outline-primary.suggestion-btn:focus {
    background: rgba(0, 181, 181, 0.8) !important;
    color: white !important;
    border-color: rgba(0, 181, 181, 0.6) !important;
    box-shadow: 0 0 0 0.2rem rgba(0, 181, 181, 0.25) !important;
}

/* Alternative targeting for dynamically generated buttons */
.input-group .btn-outline-primary[onclick*="applySuggestion"] {
    background: rgba(0, 181, 181, 0.8) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 181, 181, 0.6) !important;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37) !important;
    color: white !important;
}

.input-group .btn-outline-primary[onclick*="applySuggestion"]:hover {
    background: rgba(0, 181, 181, 0.9) !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(31, 38, 135, 0.5) !important;
    color: white !important;
    border-color: rgba(0, 181, 181, 0.8) !important;
}

.btn-success {
    background: rgba(16, 185, 129, 0.8) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37) !important;
    color: white !important;
}

.btn-success:hover {
    background: rgba(16, 185, 129, 0.9) !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(31, 38, 135, 0.5) !important;
}

.btn-outline-primary, .btn-outline-secondary {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37) !important;
    color: rgba(255, 255, 255, 0.9) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.btn-outline-primary:hover, .btn-outline-secondary:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
    color: rgba(255, 255, 255, 0.95) !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(31, 38, 135, 0.5) !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

/* Glass Card Overrides */
.card {
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    box-shadow: 0 12px 40px rgba(31, 38, 135, 0.4) !important;
}

.alert {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37) !important;
}

/* Additional Glass Effects */
.badge {
    background: rgba(255, 255, 255, 0.2) !important;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    color: rgba(255, 255, 255, 0.9) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.progress {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.form-label {
    color: rgba(255, 255, 255, 0.95) !important;
    font-weight: 600 !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.section-title {
    color: rgba(255, 255, 255, 0.98) !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.text-muted {
    color: rgba(255, 255, 255, 0.8) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Enhanced text readability for all text elements */
h1, h2, h3, h4, h5, h6 {
    color: rgba(255, 255, 255, 0.98) !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

p, .card-text, .description {
    color: rgba(255, 255, 255, 0.9) !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.upload-content h3 {
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.upload-content p {
    color: rgba(255, 255, 255, 0.85) !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.step-label {
    color: rgba(255, 255, 255, 0.9) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.current-step {
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.item-description, .category-description {
    color: rgba(255, 255, 255, 0.85) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.8) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Form inputs and controls readability */
.form-control, .form-select {
    background: rgba(255, 255, 255, 0.15) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.6) !important;
}

.form-control:focus, .form-select:focus {
    background: rgba(255, 255, 255, 0.2) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
    color: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25) !important;
}

.form-check-label {
    color: rgba(255, 255, 255, 0.9) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.upload-browse-link {
    color: rgba(255, 255, 255, 0.9) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.upload-browse-link:hover {
    color: rgba(255, 255, 255, 0.95) !important;
}

/* Processing screen and loading text */
.processing-text, .status-text, .step-description {
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

/* Back to upload link */
.btn-link, .text-decoration-none {
    color: rgba(0, 181, 181, 0.9) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.btn-link:hover, .text-decoration-none:hover {
    color: rgba(0, 181, 181, 1) !important;
}

/* Bundle title */
.bundle-title, .bundle-header h3 {
    color: rgba(0, 181, 181, 0.95) !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

/* Artwork section */
.artwork-text, .artwork-preview p {
    color: rgba(0, 181, 181, 0.9) !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.artwork-icon {
    color: rgba(0, 181, 181, 0.8) !important;
}

/* ISRC Education section */
.isrc-education .card-body p, .isrc-education .text-muted {
    color: rgba(255, 255, 255, 0.9) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.isrc-education .btn-link {
    color: rgba(0, 181, 181, 0.9) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Registration tracker section */
.registration-tracker .card-header {
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
}

.registration-tracker .card-header h5 {
    color: rgba(0, 181, 181, 0.95) !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.registration-item {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
}

.item-info strong {
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.sync-library-inputs {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    border-radius: 8px;
    padding: 1rem;
}

.registration-summary {
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
}

/* Get Paid for Your Music title - white text */
.registration-tracker .card-header h5 {
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

/* Keep completed state styling - green text and highlight */
.registration-item.completed .item-info strong {
    color: hsl(var(--success)) !important;
    text-shadow: none;
}

.registration-item.completed {
    background: hsl(var(--success) / 0.1) !important;
    border-color: hsl(var(--success)) !important;
}

/* Bundle title and donation text - dark color like Song Registration Progress */
.bundle-title, .bundle-header h3, .donation-text {
    color: rgba(0, 0, 0, 0.85) !important;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
}

/* Artwork section styling */
.artwork-upload-container {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    border-radius: 12px;
    padding: 1rem;
}

.artwork-upload-container h6 {
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* File info card readability */
.file-info-card {
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
}

.file-info-card h6 {
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.file-info-card small {
    color: rgba(255, 255, 255, 0.8) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Technical info section - File Details */
.technical-info {
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
}

.technical-info h5 {
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.technical-info .row div {
    color: rgba(255, 255, 255, 0.9) !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.technical-info .text-muted {
    color: rgba(255, 255, 255, 0.8) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Bundle title fix - make it dark like Song Registration Progress */
.bundle-title, .bundle-header h3 {
    color: rgba(0, 0, 0, 0.85) !important;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
}

/* Processing status text - make visible */
.processing-status, .upload-status {
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

/* Progress text (Uploading, Analyzing, Complete) */
.progress-text .current-step {
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

/* Artwork section complete fix */
.artwork-preview-area {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px dashed rgba(255, 255, 255, 0.3) !important;
}

.artwork-preview-area:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: rgba(0, 181, 181, 0.8) !important;
}

.artwork-text {
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.artwork-preview p {
    color: rgba(255, 255, 255, 0.8) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* ISRC Education section - targeting the actual HTML */
#isrcEducation .card {
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
}

#isrcEducation .card-header {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.25) !important;
}

#isrcEducation .card-header h6 {
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

#isrcEducation .card-body {
    background: rgba(255, 255, 255, 0.05) !important;
}

#isrcEducation .card-body h6 {
    color: rgba(0, 0, 0, 0.9) !important;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
    font-weight: 600;
}

#isrcEducation .card-body p, #isrcEducation .card-body li {
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

/* Auto-assigned section */
#isrcEducation .bg-light {
    background: rgba(255, 255, 255, 0.2) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

#isrcEducation .bg-light .card-title {
    color: rgba(0, 0, 0, 0.85) !important;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
    font-weight: 600;
}

#isrcEducation .bg-light li {
    color: rgba(0, 0, 0, 0.8) !important;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.2);
}

/* Official ISRC section - card without bg-light class */
#isrcEducation .card:not(.bg-light) .card-body .card-title {
    color: rgba(0, 0, 0, 0.85) !important;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
    font-weight: 600;
}

#isrcEducation .card:not(.bg-light) .card-body li {
    color: rgba(0, 0, 0, 0.8) !important;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.2);
}

/* Button group for US/UK/International */
#isrcEducation .btn-group .btn-outline-primary {
    color: rgba(0, 0, 0, 0.8) !important;
    border-color: rgba(0, 0, 0, 0.3) !important;
    background: rgba(255, 255, 255, 0.1) !important;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.2);
}

#isrcEducation .btn-group .btn-outline-primary:hover {
    color: rgba(0, 0, 0, 0.9) !important;
    background: rgba(255, 255, 255, 0.2) !important;
    border-color: rgba(0, 0, 0, 0.4) !important;
}

/* Finale's ISRC Auto-Assign section */
#isrcEducation .bg-light.rounded {
    background: rgba(255, 255, 255, 0.25) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
}

#isrcEducation .bg-light.rounded h6 {
    color: rgba(0, 0, 0, 0.9) !important;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

#isrcEducation .bg-light.rounded p {
    color: rgba(0, 0, 0, 0.75) !important;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.3);
}

/* Learn more button */
.btn-link {
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.btn-link:hover {
    color: rgba(255, 255, 255, 1) !important;
}

/* ISRC Generator section */
.isrc-generator {
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
}

.isrc-generator .card-header {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.25) !important;
}

.isrc-generator .card-header h6 {
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

/* Footer styling */
.footer {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 1px solid rgba(255, 255, 255, 0.25) !important;
}

/* Bundle title - make it black */
.bundle-title, .bundle-header h3, h3:contains("Your Finale Bundle") {
    color: rgba(0, 0, 0, 0.9) !important;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

/* Technical info values - white text for better readability */
.technical-info .row .col-6:nth-child(even) {
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    font-weight: 500;
}

/* Labels in technical info */
.technical-info .row .col-6:nth-child(odd) {
    color: rgba(255, 255, 255, 0.85) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Technical info specific targeting */
.info-grid .info-item .label {
    color: rgba(255, 255, 255, 0.85) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.info-grid .info-item .value {
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    font-weight: 600;
}

/* Bundle preview section */
.bundle-preview h5.section-title {
    color: rgba(0, 0, 0, 0.9) !important;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

/* ISRC Generator card */
#isrcGenerationOptions .card {
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
}

#isrcGenerationOptions .card-header {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.25) !important;
}

#isrcGenerationOptions .card-header h6 {
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

#isrcGenerationOptions .card-body {
    background: rgba(255, 255, 255, 0.05) !important;
}

/* Hide Remind Me Later toggles */
.form-check input[id$="_remind"],
.form-check label[for$="_remind"] {
    display: none !important;
}

/* Hide email input sections for reminders */
div[id$="_email_input"] {
    display: none !important;
}

/* Hide AI suggestion badges and buttons */
.similar-artists,
.genre-suggestions,
.mood-suggestions,
.suggestion-btn {
    display: none !important;
}

/* Hide AI suggestion sections */
.similar-artists .badge,
.genre-suggestions .badge,
.mood-suggestions .badge {
    display: none !important;
}
