/* Static Dark Background */
body {
    background: #0a0a0a;
    min-height: 100vh;
}

/* Subtle gradient overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 80% 20%, rgba(19, 145, 135, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 20% 80%, rgba(19, 145, 135, 0.02) 0%, transparent 40%);
    pointer-events: none;
    z-index: -1;
}