/* Avero OS Core Stylesheet
   Location: /share/theme.css
*/

:root {
    /* Deep Obsidian Palette */
    --avero-bg: #020205;
    --avero-surface: rgba(13, 13, 18, 0.7);
    --avero-surface-hover: rgba(30, 30, 40, 0.8);
    --avero-border: rgba(255, 255, 255, 0.08);

    /* Vibrant Indigo Accent */
    --avero-accent: #6366f1;
    --avero-accent-glow: rgba(99, 102, 241, 0.2);

    /* Typography */
    --avero-text: #f8fafc;
    --avero-text-muted: #94a3b8;

    /* Effects */
    --avero-radius: 24px;
    --avero-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

/* Global Reset & Base */
* {
    box-sizing: border-box;
    scrollbar-width: thin;
    scrollbar-color: var(--avero-border) transparent;
}

body.avero-app {
    margin: 0;
    background-color: var(--avero-bg);
    color: var(--avero-text);
    font-family: 'Inter', -apple-system, system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
}

/* Standardized Scrollbars */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
    background: var(--avero-border);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover { background: var(--avero-text-muted); }

/* --- Avero Component Library --- */

/* The Glass Card */
.avero-card {
    background: var(--avero-surface);
    backdrop-filter: blur(40px) saturate(150%);
    border: 1px solid var(--avero-border);
    border-radius: var(--avero-radius);
    box-shadow: var(--avero-shadow);
}

/* The High-Performance Button */
.avero-btn {
    background: var(--avero-accent);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 10px 20px;
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px var(--avero-accent-glow);
}

.avero-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
    box-shadow: 0 8px 25px var(--avero-accent-glow);
}

.avero-btn:active {
    transform: translateY(0) scale(0.95);
}

/* The Deep Input */
.avero-input {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--avero-border);
    border-radius: 12px;
    padding: 12px 16px;
    color: white;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
}

.avero-input:focus {
    border-color: var(--avero-accent);
    background: rgba(0, 0, 0, 0.5);
}

/* Transitions */
.fade-enter-active, .fade-leave-active { transition: opacity 0.3s ease; }
.fade-enter-from, .fade-leave-to { opacity: 0; }
