:root {
    --accent: #2563EB;
    --bg: #0a0a0a;
    --text: #e5e5e5;
}

body {
    margin: 0;
    font-family: system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 32px;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.logo i {
    width: 20px;
    height: 20px;
}

.nav-center {
    display: flex;
    gap: 28px;
}

.nav-center a {
    color: var(--text);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.25s ease;
}

.nav-center a:hover {
    color: var(--accent);
    transform: scale(1.08);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cta {
    background: var(--accent);
    color: white;
    padding: 10px 16px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.25s ease;
}

.cta:hover {
    transform: scale(1.06);
    filter: brightness(1.1);
}

.hamburger {
    display: none;
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
}

@media (max-width: 768px) {
    .nav-center {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: center;
        background: rgba(10, 10, 10, 0.98);
        padding: 20px 0;
        display: none;
    }

    .nav-center.active {
        display: flex;
    }

    .hamburger {
        display: block;
    }

    .cta {
        display: none;
    }
}