/**
 * Saolix Technologies Inc.
 * Project: Saolix Eagle AML
 * Description: Stylesheet - aether-theme.css
 * File Path: frontend/public/styles/aether-theme.css
 * Version: 0.75.713
 * Last Modified: 2024-12-05
 */

[data-theme-service="aether-modern"] {
    --background: 222 47% 4%;
    --foreground: 210 40% 98%;

    --primary: 199 89% 48%;
    /* Sky Blue Neon */
    --primary-foreground: 210 40% 98%;

    --secondary: 222 47% 11%;
    --secondary-foreground: 210 40% 98%;

    --accent: 199 89% 48%;
    --accent-foreground: 210 40% 98%;

    --border: 217 33% 17%;
    --ring: 199 89% 48%;

    --card: 222 47% 4%;
    --card-foreground: 210 40% 98%;

    --glass: 222 47% 4%;
    --glass-opacity: 0.3;
}

/* Aether-specific components can go here */
.aether-modern .glass-card {
    background: rgba(var(--background), 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.aether-modern .neon-text {
    color: hsl(var(--primary));
    text-shadow: 0 0 10px hsla(var(--primary), 0.5);
}