/**
 * premium_motion.css
 * Institutional Order Flow Mechanics & Loading Physics
 * Sub-Minute resolutions & Data Hydration Effect
 */

.axion-premium-ui-container {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 100;
    display: flex;
    gap: 6px;
}

.axion-premium-btn {
    background: rgba(20, 20, 20, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #888;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    font-family: 'Inter', system-ui, sans-serif;
    letter-spacing: 0.5px;
}

.axion-premium-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.25);
}

.axion-premium-btn.active {
    background: rgba(198, 227, 16, 0.15); /* Neon Lime #C6E310 */
    border-color: #C6E310;
    color: #C6E310;
    text-shadow: 0 0 8px rgba(198, 227, 16, 0.6);
    box-shadow: 0 0 10px rgba(198, 227, 16, 0.15);
}

/* Data Hydration Sub-routine Effect */
.hydrating {
    position: relative;
    overflow: hidden;
}

.hydrating::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(198, 227, 16, 0.08) 50%,
        transparent 100%
    );
    z-index: 50;
    pointer-events: none;
    animation: scanner 1.2s cubic-bezier(0.4, 0.0, 0.2, 1) infinite;
    mix-blend-mode: screen;
}

@keyframes scanner {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

/* VRVP Canvas Overlay Overlay */
.axion-vrvp-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10; /* Make sure it doesn't block chart interactions */
}
