.navbar-custom {
    position: fixed;
    top: 0;
    padding: 16px 24px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.08); */
    z-index: 1000;
}

.nav-container-custom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: -0.02em;
    outline: none;
}

.logo-icon {
    width: 24px;
    height: 24px;
    margin-right: 8px;
    /* background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%); */
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    color: white;
}

.nav-back {
    color: #b3b3b3;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-back:hover {
    color: #ffffff;
}

.nav-back::before {
    content: "←";
    font-size: 16px;
}

.nav-links-custom {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
    margin: 0 !important;
    padding-left: 0 !important;
}

.nav-links-custom a {
    color: #b3b3b3;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-links-custom a:hover {
    color: #ffffff;
}

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

.login-btn {
    color: #b3b3b3;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.login-btn:hover {
    color: #ffffff;
}

.signup-btn {
    background: #ffffff;
    color: #000000;
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.signup-btn:hover {
    background: #f0f0f0;
}



/* Mobile Menu Styles */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    padding: 4px;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 24px;
    z-index: 999;
}

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

.mobile-nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-links li {
    margin-bottom: 16px;
}

.mobile-nav-links a {
    color: #b3b3b3;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    display: block;
    padding: 8px 0;
    transition: color 0.2s ease;
}

.mobile-nav-links a:hover {
    color: #ffffff;
}

.mobile-auth-buttons {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    gap: 12px;
}

.mobile-auth-buttons .login-btn {
    flex: 1;
    text-align: center;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
}

.mobile-auth-buttons .signup-btn {
    flex: 1;
    text-align: center;
    padding: 12px;
}


@media (max-width: 768px) {
    .navbar-custom {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
    }

    .nav-right-custom .login-btn,
    .nav-right-custom .signup-btn {
        display: none;
    }

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

    .nav-links-custom {
        display: none;
    }
}

@media (min-width: 769px) {
    .navbar-custom {
        width: 100%;
    }
}