/* ============================================
   ADLUNA.CO - BASE STYLES
   Core typography and body styles
   ============================================ */

body {
    background-color: var(--space-black);
    color: var(--moon-surface);
    overflow-x: hidden;
    font-family: 'Rajdhani', sans-serif;
}

h1, h2, h3, .brand-font {
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 0.1em;
}

/* --- Typography & Gradients --- */
.text-glow {
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
}

.text-gradient-main {
    background: linear-gradient(135deg, #fff 0%, #a5a5a5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-neon {
    background: linear-gradient(90deg, var(--neon-blue), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
