:root {
    --primary-bg: #0a0e17;
    --secondary-bg: #121826;
    --tertiary-bg: #1a2238;
    --accent-color: #00d4ff;
    --accent-secondary: #7b61ff;
    --success-color: #00ff9d;
    --warning-color: #ffcc00;
    --danger-color: #ff4d6d;
    --text-primary: #e0e0e0;
    --text-secondary: #a0aec0;
    --border-color: #2d3748;
    --card-glow: rgba(0, 212, 255, 0.1);
    --hover-glow: rgba(0, 212, 255, 0.2);
}

.futuristic-body {
    background: linear-gradient(135deg, var(--primary-bg) 0%, var(--secondary-bg) 100%);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: 'Exo 2', sans-serif;
    position: relative;
    overflow-x: hidden;
}

.futuristic-body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(123, 97, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.futuristic-navbar {
    background: rgba(10, 14, 23, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.futuristic-brand {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    color: var(--accent-color) !important;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
    font-size: 1.4rem;
    letter-spacing: 1px;
}

.futuristic-nav-link {
    color: var(--text-primary) !important;
    transition: all 0.3s ease;
    position: relative;
    font-weight: 500;
}

.futuristic-nav-link:hover {
    color: var(--accent-color) !important;
    text-shadow: 0 0 8px rgba(0, 212, 255, 0.7);
}

.futuristic-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
    box-shadow: 0 0 8px var(--accent-color);
}

.futuristic-nav-link:hover::after {
    width: 100%;
}

.futuristic-toggler {
    border: 1px solid var(--border-color);
}

.futuristic-footer {
    background: rgba(10, 14, 23, 0.8);
    backdrop-filter: blur(10px);
    color: var(--text-primary);
    padding: 20px 0;
    margin-top: auto;
    border-top: 1px solid var(--border-color);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer-glow {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    box-shadow: 0 0 10px var(--accent-color);
}