.navbar-premium {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1200px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 80px;
    padding: 12px 24px;
    z-index: 100;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

/* --- ADD THIS ANIMATION FOR MOBILE MENU --- */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

[data-theme="dark"] .navbar-premium {
    background: rgba(0, 0, 0, 0.8);
}

.navbar-premium.scrolled {
    top: 10px;
    background: var(--card-bg);
    box-shadow: var(--shadow-lg);
}

.nav-container-premium {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-premium a {
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
}

.logo-text {
    color: var(--text-primary);
}

.logo-dot {
    color: var(--accent);
    font-size: 1.8rem;
}

.nav-links-premium {
    display: flex;
    gap: 2rem;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.3s;
    font-size: 0.9rem;
}

.nav-link span:first-child {
    font-size: 20px;
}

.nav-link:hover, .nav-link.active-nav {
    color: var(--accent);
}

/* ========== ADD THESE MOBILE MENU STYLES ========== */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 101;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile menu panel */
.mobile-nav-panel {
    position: fixed;
    top: 80px;
    left: 20px;
    right: 20px;
    background: var(--card-bg);
    backdrop-filter: blur(30px);
    border-radius: 28px;
    padding: 24px;
    display: none;
    flex-direction: column;
    gap: 20px;
    z-index: 99;
    border: 1px solid var(--border-light);
    animation: slideDown 0.3s ease;
}

.mobile-nav-panel.active {
    display: flex;
}

.mobile-nav-panel .nav-link {
    padding: 12px;
    border-radius: 60px;
    background: rgba(99, 102, 241, 0.05);
}

@media (max-width: 968px) {
    .nav-links-premium {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
}