/* Essentials Theme Variables */
:root {
    --accent: #39ff14; /* Neon Green */
    --accent-secondary: #00f2fe; /* Electric Blue */
}

/* Mesh Gradient Background for Essentials */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 90%, rgba(57, 255, 20, 0.05) 0%, transparent 40%),
                radial-gradient(circle at 90% 10%, rgba(0, 242, 254, 0.05) 0%, transparent 40%);
    z-index: -1;
    pointer-events: none;
}
