/* ==========================================================================
   ARONA CORE OS STYLESHEET (WOLFGRID DIGITAL PROPRIETARY)
   ========================================================================== */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #000000;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

/* Scrollbar Smooth Optimization */
::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}
::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
}
::-webkit-scrollbar-thumb {
    background: rgba(147, 51, 234, 0.4);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(147, 51, 234, 0.7);
}

/* Custom Utilities & Floating Orb Effects */
.clean-orb-float {
    animation: orbFloat 4s ease-in-out infinite;
}

@keyframes orbFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.thinking-pulse {
    animation: pulseAlpha 1.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulseAlpha {
    0%, 100% { opacity: 1; }
    50% { opacity: .4; }
}

/* Button & Active States Overlays */
.btn-prime {
    background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
    box-shadow: 0 4px 14px rgba(124, 58, 237, 0.3);
    transition: all 0.2s ease;
}
.btn-prime:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.5);
}
.btn-prime:active {
    transform: translateY(1px);
}