/* ========================================
   NAVBAR - SINGLE SOURCE OF TRUTH
   Bitcoin Arcade Zone - Professional Navigation
   ======================================== */

/* ============ NAVBAR ============ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: #0a0a0a;
    z-index: 1030;
    opacity: 0;
    transform: translateY(-100%);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* ============ CONTENT FADE ============ */
.navbar-fade {
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(to bottom, #0a0a0a, transparent);
    pointer-events: none;
    z-index: 1029;
}

/* ============ NAVBAR LAYOUT ============ */
.navbar-container {
    width: 100%;
    margin: 0;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
}

.navbar-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: space-between;
    width: 100%;
    max-width: 800px;
    align-items: center;
}

.navbar-nav li {
    list-style: none;
}

/* ============ NAV LINKS ============ */
.nav-link {
    color: #cccccc;
    text-decoration: none;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
    display: inline-block;
}

.nav-link:hover {
    color: #F7931A;
}

.nav-link.active {
    color: #F7931A;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
    .navbar-container {
        padding: 0 1rem;
    }
    
    .nav-link {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .navbar-nav {
        gap: 0.25rem;
    }
    
    .nav-link {
        font-size: 0.75rem;
    }
}
