/* Tutero Math Tools - Shared Background Styles */
/* Deep Space Theme */

body {
    background: 
        /* Distant nebula glow - purple */
        radial-gradient(ellipse at 15% 20%, rgba(131, 46, 197, 0.15) 0%, transparent 40%),
        /* Distant nebula glow - blue */
        radial-gradient(ellipse at 85% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 35%),
        /* Subtle magenta accent */
        radial-gradient(ellipse at 50% 10%, rgba(185, 0, 255, 0.08) 0%, transparent 50%),
        /* Deep space gradient - almost black */
        linear-gradient(180deg, #030108 0%, #0a0612 20%, #050210 50%, #020106 80%, #000000 100%);
    background-attachment: fixed;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}
