/* ═══════════════════════════════════════════════════════════════
   OREL FUTURE THEME — Animations
   ═══════════════════════════════════════════════════════════════ */

/* ─── AOS overrides ─── */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

/* ─── Fade In ─── */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ─── Slide Up ─── */
@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ─── Slide In Left ─── */
@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

/* ─── Slide In Right ─── */
@keyframes slideInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

/* ─── Scale In ─── */
@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

/* ─── Float Animation ─── */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ─── Glow Pulse ─── */
@keyframes glowPulse {
    0%, 100% { box-shadow: 0 0 8px rgba(249,115,22,0.2); }
    50% { box-shadow: 0 0 20px rgba(249,115,22,0.4); }
}

/* ─── Logo Pulse ─── */
@keyframes logoPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.4; }
    50% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
}

/* ─── Shimmer ─── */
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* ─── Spin ─── */
@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ─── Loading Spinner ─── */
.loading-spinner {
    width: 24px;
    height: 24px;
    border: 2px solid var(--border);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

/* ─── Empty State ─── */
.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 24px;
    text-align: center;
}

.empty-state-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: var(--bg3);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--text3);
    margin-bottom: 16px;
    animation: float 3s ease-in-out infinite;
}

.empty-state-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text2);
    margin-bottom: 6px;
}

.empty-state-desc {
    font-size: 11px;
    color: var(--text3);
    max-width: 320px;
    line-height: 1.5;
}

/* ─── Skeleton Loading ─── */
.skeleton {
    background: linear-gradient(90deg, var(--bg3) 25%, var(--bg4) 37%, var(--bg3) 50%);
    background-size: 200% 100%;
    animation: shimmer 1.4s ease-in-out infinite;
    border-radius: 4px;
}
