:root {
    --bg-color: #0D0D0D; /* Negro corporativo premium */
    --card-bg: rgba(58, 58, 58, 0.7); /* Gris oscuro translúcido */
    --border-color: rgba(141, 141, 154, 0.15); /* Gris claro */
    --primary-color: #3F8F3A; /* Verde Bosque corporativo */
    --primary-hover: #2E6E2E; /* Verde Oliva */
    --text-main: #FFFFFF; /* Blanco */
    --text-muted: #8D8D9A; /* Gris Claro */
    --error-color: #FB6965; /* Rojo error corporativo */
    --success-color: #3F8F3A;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Sora', sans-serif;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    position: relative;
}

/* Custom Sleek Scrollbar System (Firefox, WebKit - Chrome/Safari/Edge) */
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(16, 185, 129, 0.3) rgba(255, 255, 255, 0.02);
}

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

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

::-webkit-scrollbar-thumb {
    background: rgba(16, 185, 129, 0.3);
    border-radius: 10px;
    transition: background 0.2s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(16, 185, 129, 0.6);
}

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


/* Ambient background glow */
body::before {
    content: '';
    position: fixed;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    top: -100px;
    left: -100px;
    z-index: -1;
    pointer-events: none;
}

body::after {
    content: '';
    position: fixed;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    bottom: -150px;
    right: -150px;
    z-index: -1;
    pointer-events: none;
}
