/* ══════════════════════════════════════════════
   CrewLoyal — Navigation
   ══════════════════════════════════════════════ */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(30, 41, 59, 0.6);
}
.nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #F8FAFC;
    font-weight: 800;
    font-size: 20px;
    letter-spacing: -0.5px;
}
.nav-brand .logo-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}
.nav-brand .logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
}
.nav-links a {
    color: #94A3B8;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 7px 14px;
    border-radius: 8px;
    transition: all 0.2s ease;
}
.nav-links a:hover,
.nav-links a.active {
    color: #E2E8F0;
    background: rgba(30, 41, 59, 0.7);
}

/* ── Responsive ──────────────────────────── */
@media (max-width: 640px) {
    .nav-inner { padding: 12px 16px; }
    .nav-links a { font-size: 12px; padding: 5px 8px; }
}
