/* ==========================================
   GLOBAL BASE — SAFE, NON-BLEEDING
   ========================================== */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* 
   IMPORTANT:
   Your body background was being overridden somewhere else.
   This !important ensures the Shadowmere gradient ALWAYS applies.
*/
html, body {
    background: radial-gradient(circle at top, #1b1b24 0, #050509 60%) !important;
    color: #f5f5f5;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
