:root {
    --plasma-purple: #6A0DAD;
    --fusion-orange: #FF4500;
    --super-silver: #E5E4E2;
    --vacuum-black: #111111;
    --glow-purple: rgba(106, 13, 173, 0.6);
    --glow-orange: rgba(255, 69, 0, 0.6);
}

body {
    background-color: var(--vacuum-black);
    color: var(--super-silver);
    font-family: 'Space Mono', 'Courier New', monospace;
    overflow-x: hidden;
}

.navbar {
    background: rgba(17, 17, 17, 0.9);
    border-bottom: 1px solid var(--plasma-purple);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.navbar-brand {
    font-weight: bold;
    color: var(--super-silver) !important;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-link {
    color: var(--super-silver) !important;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--plasma-purple) !important;
    text-shadow: 0 0 10px var(--plasma-purple);
}

.btn-fusion {
    background: transparent;
    border: 1px solid var(--plasma-purple);
    color: var(--plasma-purple);
    padding: 10px 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.btn-fusion:hover {
    background: var(--plasma-purple);
    color: white;
    box-shadow: 0 0 20px var(--plasma-purple);
}

.btn-fusion-orange {
    border-color: var(--fusion-orange);
    color: var(--fusion-orange);
}

.btn-fusion-orange:hover {
    background: var(--fusion-orange);
    color: white;
    box-shadow: 0 0 20px var(--fusion-orange);
}

.card-stellar {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(106, 13, 173, 0.3);
    border-radius: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card-stellar:hover {
    border-color: var(--plasma-purple);
    box-shadow: 0 0 30px rgba(106, 13, 173, 0.2);
    transform: translateY(-5px);
}

/* Background Particle Effect */
#bg-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.section-title {
    border-left: 4px solid var(--plasma-purple);
    padding-left: 15px;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

/* Glow effects */
.text-glow-purple { text-shadow: 0 0 10px var(--plasma-purple); }
.text-glow-orange { text-shadow: 0 0 10px var(--fusion-orange); }

footer {
    border-top: 1px solid rgba(229, 228, 226, 0.1);
    padding: 40px 0;
    margin-top: 60px;
    background: #0a0a0a;
}
