/* Custom CSS for Ventura Logic */

/* Glassmorphism Panel Effect */
.glass-panel {
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Gradient Text Effect */
.gradient-text {
    background: linear-gradient(to right, #60a5fa, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* FAQ Accordion Reset */
details > summary {
    list-style: none;
}
details > summary::-webkit-details-marker {
    display: none;
}

/* --- ANIMATIONS --- */

/* 1. Scanner Line Animation (Blue Laser) */
.scan-line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, transparent, #3B82F6, transparent);
    box-shadow: 0 0 15px #3B82F6, 0 0 30px #3B82F6;
    z-index: 20;
    animation: scan 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes scan {
    0% { top: 0%; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

/* 2. Floating Card Animation */
.animate-float {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* 3. Pulsing Bounding Box (Green) */
.animate-pulse-box {
    animation: pulseBox 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulseBox {
    0%, 100% { 
        border-color: rgba(16, 185, 129, 0.4); 
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    50% { 
        border-color: rgba(16, 185, 129, 1); 
        box-shadow: 0 0 20px 0 rgba(16, 185, 129, 0.2);
    }
}

/* Custom Scrollbar for Chrome/Safari */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #020617;
}
::-webkit-scrollbar-thumb {
    background: #1e293b;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #3B82F6;
}