body { 
    background-color: #050A1F; 
    color: #E6F0FF; 
    font-family: 'Inter', system-ui, -apple-system, sans-serif; 
}

.glow-border { 
    border: 1px solid rgba(0, 212, 255, 0.2); 
    transition: all 0.3s ease; 
}

.glow-border:hover { 
    border-color: #00D4FF; 
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3); 
    transform: translateY(-5px); 
}

.btn-primary { 
    background-color: #0047FF; 
    color: #E6F0FF; 
    transition: all 0.3s ease; 
    border: 1px solid transparent; 
}

.btn-primary:hover { 
    background-color: #00D4FF; 
    color: #050A1F; 
    box-shadow: 0 0 15px #00D4FF; 
    border-color: #00D4FF; 
}

.btn-outline { 
    border: 2px solid #00D4FF; 
    color: #00D4FF; 
    transition: all 0.3s ease; 
    background: transparent; 
}

.btn-outline:hover { 
    background-color: #00D4FF; 
    color: #050A1F; 
    box-shadow: 0 0 15px #00D4FF; 
}

.text-gradient { 
    background: linear-gradient(to right, #00D4FF, #0047FF); 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
}

html { 
    scroll-behavior: smooth; 
}