/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-dark);
    z-index: 2000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.mobile-menu-overlay.active {
    transform: translateX(0);
}

.mobile-menu-content {
    max-width: 480px;
    margin: 0 auto;
    padding: 1rem 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1.5rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-header .logo {
    height: 32px;
}

.mobile-menu-header .logo img {
    height: 32px;
    width: auto;
}

.mobile-close {
    background: transparent;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: background 0.2s;
}

.mobile-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-close svg {
    width: 24px;
    height: 24px;
}

.mobile-nav {
    padding: 1rem 1.5rem;
}

.mobile-nav-item {
    margin-bottom: 0.25rem;
}

.mobile-nav-item a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 12px;
    transition: background 0.2s;
    font-size: 1rem;
    font-weight: 500;
}

.mobile-nav-item a:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-nav-item a:active {
    background: rgba(255, 255, 255, 0.15);
}

.mobile-nav-icon {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.mobile-menu-actions {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 1rem 1.5rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
}

.mobile-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    border-radius: 12px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.2s;
}

.mobile-btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.mobile-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.mobile-btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border: none;
}

.mobile-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 168, 255, 0.4);
}

@media (min-width: 993px) {
    .mobile-menu-overlay {
        display: none;
    }
}
