.navbar {
    position: fixed;
    top: 20px;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    padding: 0 20px;
}

.nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-menu {
    display: flex;
    gap: 30px;
    background: #1a1a1a;
    padding: 15px 40px;
    border-radius: 50px;
    border: 2px solid #555;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.05);
}

.nav-link {
    text-decoration: none;
    color: white;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 16px;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-link:hover {
    color: #73d77d;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    background: #1a1a1a;
    border-radius: 50px;
    border: 2px solid #555;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.05);
}

.bar {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 90px;
    left: 20px;
    right: 20px;
    background: #1a1a1a;
    border: 2px solid #555;
    border-radius: 20px;
    padding: 20px;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.05);
}

.mobile-menu.active {
    display: block;
}

.mobile-nav-link {
    display: block;
    padding: 15px 0;
    text-decoration: none;
    color: white;
    font-weight: 500;
    text-transform: uppercase;
    border-bottom: 1px solid #333;
    transition: color 0.3s ease;
}

.mobile-nav-link:last-child {
    border-bottom: none;
}

.mobile-nav-link:hover {
    color: #73d77d;
}


@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        padding: 12px 25px;
        gap: 20px;
    }

    .nav-link {
        font-size: 14px;
    }

    .navbar {
        padding: 0 15px;
    }
}