body {
    font-family: 'Inter', sans-serif;
    /* Deepest Black to Charcoal Gradient */
    background: radial-gradient(circle at top left, #121212, #080808, #000000);
    min-height: 100vh;
    color: white;
    overflow-x: hidden;
}

/* Yellow Glow Accents */
.glow-sphere {
    position: absolute;
    width: 450px;
    height: 450px;
    background: rgba(254, 240, 7, 0.1);
    /* Subtle yellow glow */
    filter: blur(120px);
    border-radius: 50%;
    z-index: -1;
}

/* Industrial Glassmorphism */
.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(254, 240, 7, 0.15);
    /* Yellow tinted border */
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.8);
}

.glass-nav {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(254, 240, 7, 0.2);
}

/* Custom selection color */
::selection {
    background: #fef08a;
    color: #000;
}