/* REVOLUTIONARY GRAVITY FIELD SYSTEM */
.gravity-field {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: -1;
}

.gravity-orb {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(34, 197, 94, 0.3), transparent);
    /*animation: gravityFloat 8s ease-in-out infinite;*/
    filter: blur(20px);
}

.gravity-orb-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.gravity-orb-2 {
    top: 60%;
    right: 10%;
    animation-delay: -3s;
    background: radial-gradient(circle at 30% 30%, rgba(6, 182, 212, 0.3), transparent);
}

.gravity-orb-3 {
    bottom: 15%;
    left: 20%;
    animation-delay: -6s;
    background: radial-gradient(circle at 30% 30%, rgba(139, 92, 246, 0.3), transparent);
}

@keyframes gravityFloat {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
    33% { transform: translate(30px, -40px) scale(1.2); opacity: 0.6; }
    66% { transform: translate(-20px, 20px) scale(0.8); opacity: 0.4; }
}

/* removed mind-reading intent detector */

/* removed quantum scanner styles */

/* ANTI-GRAVITY UPLOAD SYSTEM */
.upload-icon-container.anti-gravity {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transform-style: preserve-3d;
     animation: antiGravityFloat 6s ease-in-out infinite;
}

@keyframes antiGravityFloat {
    0%, 100% { transform: translateY(0) rotateX(0deg); }
    50% { transform: translateY(-15px) rotateX(5deg); }
}

/* DIMENSIONAL SHIFT ICON */
.upload-icon.dimensional-shift {
    position: relative;
    z-index: 5;
    transition: all 0.3s ease;
    animation: dimensionalShift 4s ease-in-out infinite;
}

@keyframes dimensionalShift {
    0%, 100% { 
        transform: scale(1) rotateY(0deg); 
        filter: hue-rotate(0deg);
    }
    50% { 
        transform: scale(1.1) rotateY(180deg); 
        filter: hue-rotate(60deg);
    }
}

.icon-aura {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.2), transparent);
    border-radius: 50%;
    animation: auraGlow 2s ease-in-out infinite;
    z-index: -1;
}

@keyframes auraGlow {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.2); }
}

/* PLASMA ORBIT SYSTEM */
.upload-orbit.plasma-orbit {
    position: absolute;
    width: 120px;
    height: 120px;
    border: 2px dashed rgba(34, 197, 94, 0.3);
    border-radius: 50%;
    animation: plasmaOrbit 15s linear infinite;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        rgba(34, 197, 94, 0.1) 90deg,
        transparent 180deg,
        rgba(6, 182, 212, 0.1) 270deg,
        transparent 360deg
    );
}

@keyframes plasmaOrbit {
    0% { transform: rotate(0deg); background-position: 0deg; }
    100% { transform: rotate(360deg); background-position: 360deg; }
}

@keyframes orbitRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* LEVITATING ORBIT ICONS */
.orbit-icon.levitating {
    position: absolute;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--tech-cyan), var(--electric-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    animation: levitatingIcon 15s linear infinite reverse;
    box-shadow: 
        0 5px 15px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(34, 197, 94, 0.2);
    transform-style: preserve-3d;
}

@keyframes levitatingIcon {
    0% { 
        transform: rotate(0deg) translateZ(10px); 
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3), 0 0 20px rgba(34, 197, 94, 0.2);
    }
    25% { 
        transform: rotate(-90deg) translateZ(15px); 
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4), 0 0 25px rgba(6, 182, 212, 0.3);
    }
    50% { 
        transform: rotate(-180deg) translateZ(20px); 
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), 0 0 30px rgba(139, 92, 246, 0.4);
    }
    75% { 
        transform: rotate(-270deg) translateZ(15px); 
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4), 0 0 25px rgba(245, 158, 11, 0.3);
    }
    100% { 
        transform: rotate(-360deg) translateZ(10px); 
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3), 0 0 20px rgba(34, 197, 94, 0.2);
    }
}

/* removed prediction rings */

/* TELEPATHIC TEXT MORPHING SYSTEM */
.morphing-text {
    position: relative;
    display: inline-block;
    perspective: 1000px;
    margin: 1rem 0 0.5rem;
}

.text-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.text-base {
    position: relative;
    z-index: 3;
    opacity: 1;
    transform: translateZ(0) rotateX(0deg);
}

.text-ghost {
    z-index: 2;
    opacity: 0;
    transform: translateZ(-50px) rotateX(-90deg);
    color: var(--tech-cyan);
    filter: blur(1px);
}

.text-prediction {
    z-index: 1;
    opacity: 0;
    transform: translateZ(-100px) rotateX(-180deg);
    color: var(--electric-purple);
    filter: blur(2px);
}

/* DIMENSIONAL HINT PARTICLES */
.dimensional-hint {
    position: relative;
    animation: hintGlow 3s ease-in-out infinite;
}

@keyframes hintGlow {
    0%, 100% { 
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
    }
    50% { 
        text-shadow: 0 0 15px rgba(34, 197, 94, 0.5);
    }
}

.hint-particle {
    display: inline-block;
    animation: particleRotate 4s linear infinite;
    color: var(--apa-green);
    margin: 0 0.5rem;
}

@keyframes particleRotate {
    0% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(90deg) scale(1.2); }
    50% { transform: rotate(180deg) scale(1); }
    75% { transform: rotate(270deg) scale(0.8); }
    100% { transform: rotate(360deg) scale(1); }
}

.orbit-1 {
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--apa-blue), var(--apa-green));
}

.orbit-2 {
    top: 50%;
    right: -15px;
    transform: translateY(-50%);
    background: linear-gradient(135deg, var(--apa-green), var(--tech-cyan));
}

.orbit-3 {
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--tech-cyan), var(--electric-purple));
}

/* Revolutionary Progress System */
.upload-progress {
    width: 100%;
    margin: 1.5rem 0;
    animation: progressSlideIn 0.5s ease-out;
}

@keyframes progressSlideIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 0.5rem;
    position: relative;
}

.progress-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(34, 197, 94, 0.2) 25%, 
        rgba(6, 182, 212, 0.2) 50%, 
        rgba(139, 92, 246, 0.2) 75%, 
        transparent 100%);
    animation: progressShimmer 2s ease-in-out infinite;
}

@keyframes progressShimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--apa-green), var(--tech-cyan), var(--electric-purple));
    border-radius: 10px;
    width: 0%;
    transition: width 0.3s ease;
    position: relative;
    overflow: hidden;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: progressGlow 2s ease-in-out infinite;
}

@keyframes progressGlow {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.progress-text {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
}

/* QUANTUM LAUNCHER BUTTON */
.btn-upload.quantum-launcher {
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 1000px;
    animation: quantumFloat 3s ease-in-out infinite;
}

@keyframes quantumFloat {
    0%, 100% { 
        transform: translateY(0) rotateX(0deg); 
        box-shadow: 0 8px 25px rgba(34, 197, 94, 0.3);
    }
    50% { 
        transform: translateY(-5px) rotateX(2deg); 
        box-shadow: 0 15px 35px rgba(34, 197, 94, 0.5);
    }
}

.quantum-field-btn {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        ellipse at center,
        rgba(34, 197, 94, 0.1) 0%,
        rgba(6, 182, 212, 0.05) 50%,
        transparent 100%
    );
    animation: quantumFieldPulse 2s ease-in-out infinite;
    z-index: 1;
}

@keyframes quantumFieldPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.gravity-distortion {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        rgba(34, 197, 94, 0.1) 90deg,
        rgba(6, 182, 212, 0.1) 180deg,
        rgba(139, 92, 246, 0.1) 270deg,
        transparent 360deg
    );
    border-radius: 20px;
    animation: gravityDistort 4s linear infinite;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.quantum-launcher:hover .gravity-distortion {
    opacity: 1;
}

@keyframes gravityDistort {
    0% { transform: rotate(0deg) scale(1); }
    100% { transform: rotate(360deg) scale(1.05); }
}

.dimensional-content {
    position: relative;
    z-index: 3;
    transition: all 0.3s ease;
}

.launcher-icon {
    transition: all 0.3s ease;
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.launcher-text {
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}

.quantum-launcher:hover .launcher-text {
    transform: translateX(5px);
}

.btn-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-waves {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.wave {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    opacity: 0;
}

.btn-upload:hover .wave {
    animation: waveEffect 0.6s ease-out;
}

.wave-1 { animation-delay: 0s; }
.wave-2 { animation-delay: 0.1s; }
.wave-3 { animation-delay: 0.2s; }

@keyframes waveEffect {
    0% {
        width: 0;
        height: 0;
        opacity: 0.8;
    }
    100% {
        width: 300px;
        height: 300px;
        opacity: 0;
    }
}

/* Enhanced File Insights */
.insight-card {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.1),
        0 0 40px rgba(34, 197, 94, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: cardSlideUp 0.6s ease-out;
}

@keyframes cardSlideUp {
    from { 
        transform: translateY(30px) scale(0.9); 
        opacity: 0; 
    }
    to { 
        transform: translateY(0) scale(1); 
        opacity: 1; 
    }
}

.insight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(34, 197, 94, 0.1), 
        transparent);
    transition: left 0.6s ease;
}

.insight-card:hover::before {
    left: 100%;
}

.insight-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 0 60px rgba(34, 197, 94, 0.1);
}

/* Additional page-specific styles */
.conversion-info {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    border-left: 4px solid var(--apa-green);
    margin-top: 2rem;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(10px);
}

.conversion-info strong {
    color: var(--apa-green);
    font-weight: 700;
}

.upload-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    margin: 1rem 0 0.5rem;
}

.upload-hint {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin: 0 0 2rem;
}

.file-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.insight-content {
    display: flex;
    flex-direction: column;
}

.insight-content strong {
    font-size: 0.9rem;
    color: var(--drone-gray);
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.insight-content span {
    font-size: 1rem;
    font-weight: 700;
    color: #1f2937;
}

.btn-clear {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-clear:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
    transform: translateY(-2px);
}

.preview-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* Revolutionary Success Celebration */
.success-celebration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.confetti {
    position: absolute;
    top: -10px;
    width: 8px;
    height: 8px;
    background: var(--apa-green);
    border-radius: 50%;
    animation: confettiFall 3s linear infinite;
}

.confetti:nth-child(1) {
    left: 10%;
    background: var(--apa-green);
    animation-delay: 0s;
}

.confetti:nth-child(2) {
    left: 30%;
    background: var(--tech-cyan);
    animation-delay: 0.5s;
    border-radius: 0;
}

.confetti:nth-child(3) {
    left: 50%;
    background: var(--electric-purple);
    animation-delay: 1s;
}

.confetti:nth-child(4) {
    left: 70%;
    background: var(--survey-orange);
    animation-delay: 1.5s;
    border-radius: 0;
}

.confetti:nth-child(5) {
    left: 90%;
    background: var(--apa-blue);
    animation-delay: 2s;
}

@keyframes confettiFall {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(400px) rotate(720deg);
        opacity: 0;
    }
}

.success-icon {
    animation: successBounce 2s ease-in-out infinite;
    color: var(--apa-green);
    filter: drop-shadow(0 0 10px rgba(34, 197, 94, 0.5));
}

@keyframes successBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Enhanced Status Stats */
.success-stats {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.stat-badge {
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.9);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Enhanced Processing Card */
.status-processing {
    position: relative;
    overflow: hidden;
}

.status-processing::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(34, 197, 94, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
    animation: processingPulse 2s ease-in-out infinite;
    pointer-events: none;
}

@keyframes processingPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Ready to Launch Animation */
.btn-upload.ready-to-launch {
    animation: readyToLaunch 0.6s ease-out;
}

@keyframes readyToLaunch {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); box-shadow: 0 15px 35px rgba(34, 197, 94, 0.4), 0 0 50px rgba(6, 182, 212, 0.3); }
    100% { transform: scale(1); }
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 768px) {
    .upload-icon-container {
        margin-bottom: 1.5rem;
    }
    
    .upload-orbit {
        width: 100px;
        height: 100px;
    }
    
    .orbit-icon {
        width: 25px;
        height: 25px;
        font-size: 0.8rem;
    }
    
    .success-stats {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .stat-badge {
        font-size: 0.75rem;
        padding: 0.2rem 0.6rem;
    }
    
    .btn-upload {
        padding: 0.75rem 2rem;
        font-size: 1rem;
    }
}

/* Perfect Accessibility Enhancements */
.btn-upload:focus,
.download-link:focus,
.modal-btn:focus {
    outline: 3px solid var(--apa-green);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .upload-card {
        border-width: 4px;
        border-color: var(--apa-green);
    }
    
    .insight-card {
        border: 2px solid var(--apa-blue);
    }
}

/* Revolutionary Floating Help */
.floating-help {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    animation: helpFloat 3s ease-in-out infinite;
}

@keyframes helpFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.help-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--apa-green), var(--tech-cyan));
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.help-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.help-btn:hover::before {
    opacity: 1;
}

.help-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(34, 197, 94, 0.4);
}

.help-tooltip {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: rgba(15, 23, 42, 0.95);
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.help-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid rgba(15, 23, 42, 0.95);
}

.floating-help:hover .help-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* removed telepathic/deep focus animations */

/* QUANTUM VORTEX PROGRESS */
.progress-vortex {
    position: relative;
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

.vortex-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(34, 197, 94, 0.3);
    animation: vortexSpin 2s linear infinite;
}

.vortex-1 {
    width: 40px;
    height: 40px;
    animation-delay: 0s;
}

.vortex-2 {
    width: 60px;
    height: 60px;
    animation-delay: 0.3s;
    border-color: rgba(6, 182, 212, 0.3);
}

.vortex-3 {
    width: 80px;
    height: 80px;
    animation-delay: 0.6s;
    border-color: rgba(139, 92, 246, 0.3);
}

@keyframes vortexSpin {
    0% { 
        transform: rotateX(0deg) rotateY(0deg); 
        opacity: 1;
    }
    50% { 
        transform: rotateX(180deg) rotateY(180deg); 
        opacity: 0.5;
    }
    100% { 
        transform: rotateX(360deg) rotateY(360deg); 
        opacity: 1;
    }
}

.quantum-fill {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent 0%,
        var(--apa-green) 25%,
        var(--tech-cyan) 50%,
        var(--electric-purple) 75%,
        transparent 100%);
    border-radius: 2px;
}

.quantum-text {
    position: relative;
    margin-top: 1rem;
}

.text-distortion {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(34, 197, 94, 0.1), transparent);
    animation: distortionWave 3s ease-in-out infinite;
}

@keyframes distortionWave {
    0%, 100% { opacity: 0; transform: skewX(0deg); }
    50% { opacity: 0.5; transform: skewX(5deg); }
}

/* Notification System */
.notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    max-width: 400px;
}

.notification {
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 10px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transform: translateX(100%);
    animation: slideInNotification 0.3s ease forwards;
}

.notification-content {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.notification-icon {
    font-size: 1.5rem;
    margin-top: 2px;
}

.notification.success .notification-icon {
    color: var(--apa-green);
}

.notification.error .notification-icon {
    color: #ef4444;
}

.notification.warning .notification-icon {
    color: #f59e0b;
}

.notification.info .notification-icon {
    color: var(--tech-cyan);
}

.notification-text {
    flex: 1;
}

.notification-title {
    color: white;
    margin: 0 0 4px 0;
    font-weight: 600;
    font-size: 0.95rem;
}

.notification-message {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.4;
}

.notification-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.notification-close:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

@keyframes slideInNotification {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutNotification {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

.notification.hiding {
    animation: slideOutNotification 0.3s ease forwards;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .upload-orbit,
    .orbit-icon,
    .confetti,
    .processing-spinner,
    .wave,
    .floating-help,
    .neural-node,
    .neural-connection,
    .quantum-field,
    .gravity-orb,
    .prediction-ring {
        animation: none !important;
    }
    
    .upload-card,
    .insight-card,
    .btn-upload {
        transition: none !important;
    }
    
    .notification {
        animation: none !important;
    }
}

/* Make muted text and file requirements white */
.text-muted {
    color: rgba(255, 255, 255, 0.8) !important;
}

.file-requirements {
    color: rgba(255, 255, 255, 0.9);
}

.requirement-badge {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.85rem;
    margin: 2px;
    display: inline-block;
}

/* Make step numbers white */
.step-number {
    color: white !important;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Make drop zone content text white */
.drop-zone-content {
    color: white !important;
}

.drop-zone-content h5,
.drop-zone-content h6,
.drop-zone-content p {
    color: white !important;
}

/* Reduce bluish effect in upload cards */
.upload-card {
    background: linear-gradient(135deg, 
        rgba(34, 197, 94, 0.03) 0%,
        rgba(6, 182, 212, 0.02) 50%,
        rgba(139, 92, 246, 0.02) 100%) !important;
}

.upload-card:hover {
    background: linear-gradient(135deg, 
        rgba(6, 182, 212, 0.05) 0%,
        rgba(34, 197, 94, 0.05) 50%,
        rgba(139, 92, 246, 0.05) 100%) !important;
}
