
.navbar { display: flex; justify-content: space-between; align-items: center; padding: 1rem 5%; background: var(--dark-card); border-bottom: 1px solid var(--gray); }
.nav-brand a { font-size: 1.3rem; font-weight: 900; color: #FFF; letter-spacing: 0.5px; }
.nav-brand span { color: var(--primary); }
.nav-links { display: flex; list-style: none; gap: 1.2rem; align-items: center; }
.nav-links a { color: var(--text); font-size: 0.9rem; font-weight: 600; }
.btn-cta { background: var(--primary); color: #FFF !important; padding: 0.4rem 1rem; border-radius: 6px; }
.btn-logout { border: 1px solid var(--primary); padding: 0.35rem 0.8rem; border-radius: 6px; }

/* Mobile Bottom Nav */
.mobile-only { display: none; }
.desktop-only { display: flex; }

.pwa-banner {
    position: fixed;
    top: 12px;
    left: 4%;
    right: 4%;
    background: #252528;
    border: 1px solid var(--primary);
    padding: 10px 14px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}
.btn-pwa { background: var(--primary); color: #FFF; border: none; padding: 6px 12px; border-radius: 5px; font-weight: bold; cursor: pointer; }

@media (max-width: 768px) {
    .desktop-only { display: none; }
    .mobile-only { display: flex; }
    body { padding-bottom: 75px; }
    .bottom-nav {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        height: 60px;
        background: #161618;
        border-top: 1px solid var(--gray);
        justify-content: space-around;
        align-items: center;
        z-index: 999;
    }
    .bottom-nav .nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        color: var(--text-muted);
        font-size: 0.75rem;
    }
    .bottom-nav .nav-item .icon { font-size: 1.2rem; margin-bottom: 2px; }
    .bottom-nav .nav-item:hover, .bottom-nav .nav-item.highlight { color: var(--primary); }
}
