/* Ultra Soft - Core Variables & Reset */
:root {
    /* Color Palette - Dark Glass */
    --bg-deep: #0f0f12;
    /* Ultra Dark Background */
    --bg-glass: rgba(26, 26, 35, 0.4);
    /* Glass Panel Base */
    --bg-glass-hover: rgba(255, 255, 255, 0.03);

    /* Accents - Vibrant Aurora */
    --accent-primary: #6366f1;
    /* Indigo */
    --accent-secondary: #06b6d4;
    /* Cyan */
    --accent-success: #10b981;
    /* Green */
    --accent-warning: #f59e0b;
    /* Amber */
    --accent-danger: #ef4444;
    /* Red */

    /* Typography */
    --font-primary: 'Urbanist', 'Inter', sans-serif;

    /* Effects */
    --glass-blur: blur(20px);
    --glass-border: 1px solid rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);

    /* Transitions */
    --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bouncy: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-deep);
    color: #ffffff;
    font-family: var(--font-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Global Mesh Gradient Background */
.app-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -10;
    background: radial-gradient(circle at 10% 20%, rgba(99, 102, 241, 0.15), transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(6, 182, 212, 0.1), transparent 40%);
    pointer-events: none;
}

/* Utility Classes */
.hidden {
    display: none !important;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.z-top {
    z-index: 9999;
}

/* Horizontal Scroll Carousel */
.scroll-snap-wrapper {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
}

.scroll-snap-wrapper::-webkit-scrollbar {
    height: 4px;
}

.scroll-snap-wrapper::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
}

.scroll-snap-wrapper::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
}