:root {
    --bg-dark: #0a0a0f;
    --primary: #b94ef0;
    --text: #e8e8e8;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Poppins', sans-serif; background: var(--bg-dark); color: var(--text); }
.navbar { display: flex; justify-content: space-between; padding: 1rem 2rem; background: rgba(10,10,15,0.9); position: fixed; width: 100%; }
.logo { font-family: 'Orbitron', sans-serif; font-size: 1.5rem; font-weight: bold; background: linear-gradient(135deg, #b94ef0, #0db1fc); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.nav-links { display: flex; list-style: none; gap: 2rem; }
.nav-links a { color: var(--text); text-decoration: none; }
.hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; padding-top: 4rem; }
.hero h1 { font-size: 4rem; background: linear-gradient(135deg, #b94ef0, #0db1fc, #ff6b9d); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.tagline { font-size: 1.5rem; color: #9ca3af; margin: 1rem 0 2rem; }
.btn { padding: 1rem 2rem; background: var(--primary); color: white; border-radius: 50px; text-decoration: none; display: inline-block; }
section { padding: 6rem 2rem; text-align: center; }
section h2 { font-size: 2.5rem; margin-bottom: 2rem; color: var(--primary); }
footer { text-align: center; padding: 2rem; background: #12121a; }
