:root { 
    --p-main: #8b5cf6; 
    --p-dark: #4c1d95; 
    --bg: #0a0514; 
}

body { 
    background: 
        linear-gradient(rgba(10, 5, 20, 0.8), rgba(10, 5, 20, 0.9)), 
        url('../img/bg.jpg') !important;
    
    background-size: cover !important;
    background-position: center !important;
    background-attachment: fixed !important;
    background-repeat: no-repeat !important;
    
    color: #d1d5db; 
    font-family: 'Inter', sans-serif; 
    min-height: 100vh;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(139, 92, 246, 0.15), transparent 40%),
                radial-gradient(circle at bottom left, rgba(139, 92, 246, 0.1), transparent 40%);
    pointer-events: none;
    z-index: -1;
}

.font-gaming { font-family: 'Rajdhani', sans-serif; }

.glass-box { 
    background: rgba(15, 7, 25, 0.75); 
    backdrop-filter: blur(12px); 
    border: 1px solid rgba(139, 92, 246, 0.1); 
}

.nav-active { border-bottom: 2px solid var(--p-main); color: white; }
.btn-purple { background: var(--p-main); box-shadow: 0 0 15px rgba(139, 92, 246, 0.4); transition: 0.3s; }
.btn-purple:hover { transform: translateY(-2px); background: #7c3aed; }
.trnx-gradient { background: linear-gradient(to right, #fff, var(--p-main), #fff); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.map-glow { filter: drop-shadow(0 0 10px var(--p-main)); opacity: 0.1; }