/**
 * Network Page Styles
 * Minimalist three-column layout matching base.css aesthetic
 */

/* ========================================
   PAGE SETUP
   ======================================== */

body.network-page {
    overflow: hidden;
}

body.network-page .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: #fff;
}

body.network-page footer {
    display: none !important;
}

/* ========================================
   LOADING OVERLAY
   ======================================== */

.network-loading-overlay {
    position: fixed;
    top: 68px; /* Start below header */
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.95);
    z-index: 999; /* Below header (z-index: 100) but above content */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
}

.network-loading-overlay.visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.network-loading-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.network-loading-spinner {
    width: 40px;
    height: 40px;
    border: 2px solid #e5e5e5;
    border-top-color: #1a1a1a;
    border-radius: 50%;
    animation: network-loading-spin 0.8s linear infinite;
}

@keyframes network-loading-spin {
    to {
        transform: rotate(360deg);
    }
}

.network-loading-text {
    font-size: 0.85rem;
    color: #666;
    letter-spacing: 0.02em;
    margin: 0;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .network-loading-overlay {
        bottom: 60px; /* Account for bottom tab bar */
    }
}

/* ========================================
   NETWORK APP CONTAINER
   ======================================== */

.network-app {
    padding-top: 68px; /* Header height */
    height: 100vh;
    overflow: hidden;
}

@media (max-width: 768px) {
    .network-app {
        padding-bottom: 60px; /* Space for bottom tab bar */
        height: calc(100vh - 60px); /* Adjust height to account for tab bar */
    }
}

/* Info bar */
.info-bar {
    padding: 0.5rem 2rem;
    background: #fafafa;
    font-size: 0.7rem;
    color: #666;
    border-bottom: 1px solid #e5e5e5;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.info-bar a {
    font-weight: 500;
    color: #1a1a1a;
    border-bottom: none;
}

.info-bar a:hover {
    border-bottom: 1px solid currentColor;
}

html.is-authenticated .info-bar {
    display: none;
}

/* ========================================
   THREE-COLUMN GRID
   ======================================== */

.network-layout {
    display: grid;
    grid-template-columns: 5fr 4fr 3fr;
    height: calc(100vh - 68px - 28px); /* viewport - header - info bar */
    overflow: hidden;
}

html.is-authenticated .network-layout {
    height: calc(100vh - 68px); /* No info bar when authenticated */
}

.network-column {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-right: 1px solid #e5e5e5;
    background: #fff;
}

.network-column:last-child {
    border-right: none;
}

/* ========================================
   LEFT COLUMN - MAP
   ======================================== */

.network-column--visual {
    background: #f5f5f5;
    position: relative;
    min-height: 0; /* Allow flexbox shrinking */
    overflow: hidden;
}

.network-visual-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.network-map-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

/* MapLibre GL - Critical: map canvas must have explicit dimensions */
.network-map-container .maplibregl-map {
    position: absolute !important;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100% !important;
    height: 100% !important;
}

.network-map-container .maplibregl-canvas-container {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}

.network-map-container .maplibregl-canvas {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}

/* Map controls - minimal style */
.map-controls {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    z-index: 10;
}

.map-control-btn {
    width: 32px;
    height: 32px;
    background: #fff;
    border: 1px solid #e5e5e5;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    transition: background 0.15s;
}

.map-control-btn:hover {
    background: #f5f5f5;
}

/* Exhibition markers */
.exhibition-marker {
    cursor: pointer;
    transition: transform 0.15s;
}

.exhibition-marker:hover {
    transform: scale(1.1);
    z-index: 100;
}

.exhibition-marker.selected {
    z-index: 200;
}

.marker-pin {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.2));
}

.marker-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.marker-label {
    position: absolute;
    top: 36px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    background: #fff;
    padding: 0.25rem 0.5rem;
    font-size: 0.65rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    border: 1px solid #e5e5e5;
    opacity: 0;
    transition: opacity 0.15s;
    pointer-events: none;
    color: #1a1a1a;
}

.exhibition-marker:hover .marker-label,
.exhibition-marker.selected .marker-label {
    opacity: 1;
}

/* MapLibre attribution */
.maplibregl-ctrl-attrib {
    font-size: 0.6rem;
    background: rgba(255, 255, 255, 0.9);
}

/* ========================================
   CENTER COLUMN - DETAIL
   ======================================== */

.network-column--detail {
    background: #fff;
    overflow-y: auto;
}

.network-detail-container {
    padding: 2rem;
    min-height: 100%;
}

/* Hide mobile-only elements on desktop */
.network-drag-handle,
.network-pull-tab {
    display: none;
}

/* Empty state */
.exhibition-detail-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    text-align: center;
}

.exhibition-detail-empty .placeholder-content {
    color: #999;
}

.exhibition-detail-empty .placeholder-content svg {
    color: #ccc;
    margin-bottom: 1rem;
}

.exhibition-detail-empty .placeholder-content h3 {
    font-size: 0.85rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #666;
    margin-bottom: 0.5rem;
}

.exhibition-detail-empty .placeholder-content p {
    font-size: 0.75rem;
    color: #999;
}

/* Exhibition detail */
.exhibition-detail {
    max-width: 100%;
}

.exhibition-detail-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e5e5e5;
}

.exhibition-detail-title {
    font-size: 1rem;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
}

.exhibition-detail-space {
    font-size: 0.8rem;
    color: #666;
    margin: 0;
}

.exhibition-detail-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.detail-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: #666;
}

.detail-meta-item svg {
    flex-shrink: 0;
    color: #999;
    width: 14px;
    height: 14px;
}

.exhibition-detail-description {
    margin-bottom: 1.5rem;
    font-size: 0.8rem;
    line-height: 1.7;
    color: #333;
}

.exhibition-detail-description p {
    margin: 0 0 1rem 0;
}

.exhibition-detail-actions {
    margin-bottom: 1.5rem;
}

.exhibition-detail-actions .btn {
    font-size: 0.7rem;
}

.exhibition-detail-stats {
    display: flex;
    gap: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e5e5;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-value {
    font-size: 1.25rem;
    font-weight: 500;
    color: #1a1a1a;
}

.stat-label {
    font-size: 0.65rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Reviews section */
.exhibition-reviews-section {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e5e5;
}

.exhibition-likes-section {
    margin-top: 1.5rem;
}

.exhibition-likes-title {
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #666;
    margin-bottom: 1rem;
}

/* ========================================
   RIGHT COLUMN - FEED
   ======================================== */

.network-column--feed {
    background: #fafafa;
}

.network-feed-container {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.network-feed-header {
    padding: 1.5rem;
    border-bottom: 1px solid #e5e5e5;
    background: #fff;
    flex-shrink: 0;
}

.network-feed-header h2 {
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #1a1a1a;
    margin: 0;
}

.network-feed-list {
    flex: 1;
    overflow-y: auto;
    padding: 0.75rem;
}

/* Feed items */
.feed-item {
    display: flex;
    gap: 0.75rem;
    padding: 1rem;
    margin-bottom: 0.5rem;
    background: #fff;
    border: 1px solid #e5e5e5;
    cursor: pointer;
    transition: border-color 0.15s;
}

.feed-item:hover {
    border-color: #1a1a1a;
}

.feed-item.selected {
    border-color: #1a1a1a;
    border-width: 2px;
    padding: calc(1rem - 1px);
}

.feed-item-thumbnail {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
}

.feed-item-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail-placeholder {
    width: 100%;
    height: 100%;
    background: #e5e5e5;
}

.feed-item-content {
    flex: 1;
    min-width: 0;
}

.feed-item-header {
    cursor: pointer;
}

.feed-item-title {
    font-size: 0.8rem;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0 0 0.25rem 0;
    line-height: 1.3;
}

.feed-item-meta {
    font-size: 0.7rem;
    color: #666;
    margin: 0;
}

.feed-item-stats {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid #f0f0f0;
}

.feed-stat {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.65rem;
    color: #1a1a1a;
    font-weight: 500;
}

.feed-stat svg {
    width: 12px;
    height: 12px;
}

.feed-stat-zero {
    color: #ccc;
}

.feed-stat-zero svg {
    opacity: 0.5;
}

/* Feed states */
.feed-loading,
.feed-empty,
.feed-error {
    padding: 2rem;
    text-align: center;
    font-size: 0.75rem;
    color: #999;
}

.feed-error {
    color: #c00;
}

/* ========================================
   USER MENU BUTTON
   ======================================== */

.user-menu-button {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 56px !important;
    height: 56px !important;
    min-width: 56px !important;
    min-height: 56px !important;
    max-width: 56px !important;
    max-height: 56px !important;
    background: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    transition: background 0.15s, transform 0.15s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    padding: 0;
}

@media (max-width: 768px) {
    .user-menu-button {
        bottom: calc(1.5rem + 56px); /* Move up by 1x its own size (56px) */
    }
}

.user-menu-button:hover {
    background: #333;
    transform: scale(1.05);
}

.user-menu-icon {
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
    min-height: 28px !important;
    max-width: 28px !important;
    max-height: 28px !important;
    flex-shrink: 0;
    object-fit: contain;
    display: block;
    box-sizing: border-box;
}

/* ========================================
   MODAL STYLES
   ======================================== */

.user-menu-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s;
    padding: 1rem;
}

.user-menu-modal.active {
    opacity: 1;
    visibility: visible;
}

.user-menu-modal-content {
    background: #fff;
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    border: 1px solid #e5e5e5;
}

.user-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid #e5e5e5;
}

.user-menu-header h2 {
    margin: 0;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #1a1a1a;
}

.user-menu-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-menu-close:hover {
    color: #1a1a1a;
}

.user-menu-tabs {
    display: flex;
    border-bottom: 1px solid #e5e5e5;
    padding: 0 1rem;
}

.user-menu-tab {
    background: none;
    border: none;
    padding: 1rem 0.75rem;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #666;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: color 0.15s;
}

.user-menu-tab:hover {
    color: #1a1a1a;
}

.user-menu-tab.active {
    color: #1a1a1a;
    border-bottom-color: #1a1a1a;
    font-weight: 500;
}

.user-menu-tab-content {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

.user-menu-panel {
    display: none;
}

.user-menu-panel.active {
    display: block;
}

.user-menu-panel h3 {
    margin: 0 0 0.5rem 0;
    font-size: 0.8rem;
    font-weight: 500;
    color: #1a1a1a;
}

.user-menu-description {
    margin: 0 0 1.5rem 0;
    font-size: 0.75rem;
    color: #666;
}

/* Location search */
.location-search {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.location-search-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid #e5e5e5;
    font-size: 0.8rem;
    background: #fff;
}

.location-search-input:focus {
    outline: none;
    border-color: #1a1a1a;
}

.location-results-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.location-result-item {
    padding: 1rem;
    border: 1px solid #e5e5e5;
    cursor: pointer;
    transition: border-color 0.15s;
}

.location-result-item:hover {
    border-color: #1a1a1a;
}

.location-result-item strong {
    display: block;
    font-size: 0.8rem;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
}

.location-coords {
    font-size: 0.7rem;
    color: #666;
    margin: 0;
}

/* Location current */
.location-current {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #f0f0f0;
}

.location-current h4 {
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #999;
    margin: 0 0 0.75rem 0;
}

.current-location-display {
    font-size: 0.75rem;
    color: #666;
}

.current-location-display p {
    margin: 0.25rem 0;
}

.current-location-display span {
    font-family: monospace;
    color: #1a1a1a;
}

/* Location messages */
.location-results .loading,
.location-results .error,
.location-results .success {
    font-size: 0.75rem;
    padding: 0.75rem;
}

.location-results .loading {
    color: #666;
}

.location-results .error {
    color: #c00;
    background: #fff5f5;
    border: 1px solid #fecaca;
}

.location-results .success {
    color: #15803d;
    background: #f0fdf4;
    border: 1px solid #22c55e;
}

/* Admin tab link */
.user-menu-tab.admin-tab {
    color: #c00;
    text-decoration: none;
}

.user-menu-tab.admin-tab:hover {
    color: #900;
}

/* Settings placeholder */
.settings-placeholder,
.bookmarks-placeholder {
    padding: 2rem;
    text-align: center;
    color: #999;
    font-size: 0.75rem;
    background: #fafafa;
    border: 1px dashed #e5e5e5;
}

/* ========================================
   RESPONSIVE
   ======================================== */

/* Hide mobile nav toggle on desktop */
/* Mobile nav toggle button styling is handled in base.css */
.mobile-nav-overlay {
    display: none;
}

@media (max-width: 1200px) {
    .network-layout {
        grid-template-columns: 1fr 1fr;
    }
    
    .network-column--feed {
        display: none;
    }
}

@media (max-width: 768px) {
    .network-layout {
        display: flex;
        flex-direction: column;
        height: 100%;
    }
    
    /* Column 5 (visual/map) - full screen fixed */
    .network-column--visual {
        position: fixed;
        top: 68px; /* Header height */
        left: 0;
        right: 0;
        bottom: 60px; /* Tab bar height */
        width: 100%;
        height: calc(100vh - 68px - 60px);
        z-index: 1;
        order: 1;
    }
    
    /* Column 4 (detail) - starts mostly off-screen below, draggable bottom sheet */
    .network-column--detail {
        position: fixed;
        top: calc(95vh - 120px); /* Start mostly off-screen, showing ~80px peek */
        left: 0;
        right: 0;
        bottom: 60px; /* Tab bar height */
        width: 100%;
        height: calc(100vh - 68px - 60px);
        overflow: visible; /* No internal scrolling - whole container moves */
        z-index: 2;
        background: #fff;
        order: 2;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
        border-radius: 20px 20px 0 0;
        will-change: transform;
        touch-action: pan-y; /* Allow vertical panning */
    }
    
    /* Bounce animation for content updates */
    .network-column--detail.bounce {
        animation: bottomSheetBounce 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }
    
    @keyframes bottomSheetBounce {
        0% {
            transform: translateY(var(--current-translate, 0));
        }
        25% {
            transform: translateY(calc(var(--current-translate, 0) - 8px));
        }
        50% {
            transform: translateY(calc(var(--current-translate, 0) + 5px));
        }
        70% {
            transform: translateY(calc(var(--current-translate, 0) - 3px));
        }
        85% {
            transform: translateY(calc(var(--current-translate, 0) + 2px));
        }
        100% {
            transform: translateY(var(--current-translate, 0));
        }
    }
    
    /* Drag handle - show on mobile */
    .network-drag-handle {
        display: flex;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 40px;
        align-items: center;
        justify-content: center;
        cursor: grab;
        z-index: 10;
        background: #fff;
        border-radius: 20px 20px 0 0;
    }
    
    .network-drag-handle:active {
        cursor: grabbing;
    }
    
    .network-drag-handle-bar {
        width: 40px;
        height: 4px;
        background: #ccc;
        border-radius: 2px;
        margin-top: 8px;
    }
    
    /* Pull-up tab indicator - show on mobile */
    .network-pull-tab,
    #network-pull-tab {
        display: flex !important;
        position: fixed !important;
        bottom: calc(60px + 20px) !important; /* Tab bar height + offset */
        left: 50% !important;
        transform: translateX(-50%) translateY(0) !important;
        width: 56px !important;
        height: 32px !important;
        background: #fff !important;
        border: 1px solid #e5e5e5 !important;
        border-radius: 20px 20px 0 0 !important;
        align-items: center !important;
        justify-content: center !important;
        cursor: pointer !important;
        z-index: 3 !important;
        box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1) !important;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        color: #000000 !important;
        font-family: inherit !important;
        font-size: inherit !important;
        font-weight: inherit !important;
        text-transform: none !important;
        letter-spacing: normal !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .network-pull-tab.hidden,
    #network-pull-tab.hidden {
        opacity: 0 !important;
        pointer-events: none !important;
        transform: translateX(-50%) translateY(20px) !important;
    }
    
    .network-pull-tab:hover:not(.hidden),
    #network-pull-tab:hover:not(.hidden) {
        background: #f5f5f5 !important;
        box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15) !important;
        transform: translateX(-50%) translateY(-2px) !important;
        color: #000000 !important;
    }
    
    .network-pull-tab:active:not(.hidden),
    #network-pull-tab:active:not(.hidden) {
        transform: translateX(-50%) translateY(0px) !important;
        background: #fff !important;
        color: #000000 !important;
    }
    
    .network-pull-tab svg,
    #network-pull-tab svg {
        width: 20px !important;
        height: 20px !important;
        stroke: #000000 !important;
        fill: none !important;
        stroke-width: 2.5 !important;
        stroke-linecap: round !important;
        stroke-linejoin: round !important;
        transition: transform 0.3s ease !important;
        color: #000000 !important;
    }
    
    .network-pull-tab svg polyline,
    #network-pull-tab svg polyline {
        stroke: #000000 !important;
        fill: none !important;
    }
    
    .network-pull-tab:not(.hidden) svg {
        animation: slideUpBounce 0.6s ease-out;
    }
    
    @keyframes slideUpBounce {
        0% {
            transform: translateY(10px);
            opacity: 0;
        }
        60% {
            transform: translateY(-2px);
        }
        100% {
            transform: translateY(0);
            opacity: 1;
        }
    }
    
    /* Detail container - scrollable content */
    .network-detail-container {
        height: 100%;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding-top: 40px; /* Space for drag handle */
        padding: 2rem;
        padding-top: calc(2rem + 40px); /* Space for drag handle + padding */
        padding-bottom: calc(10vh + 50px); /* 10% margin + space for scroll indicator */
        position: relative;
        min-height: 100%;
    }
    
    /* Scroll indicator button */
    .network-scroll-indicator {
        position: absolute;
        bottom: 1rem;
        left: 50%;
        transform: translateX(-50%);
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.95);
        border: 1px solid #e5e5e5;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 10;
        transition: opacity 0.3s ease, transform 0.3s ease;
        opacity: 0;
        pointer-events: none;
    }
    
    .network-scroll-indicator.visible {
        opacity: 1;
        pointer-events: auto;
    }
    
    .network-scroll-indicator:hover {
        transform: translateX(-50%) translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }
    
    .network-scroll-indicator svg {
        width: 20px;
        height: 20px;
        stroke: #1a1a1a;
        stroke-width: 2;
    }
    
    /* Column 3 (feed) - slide-out menu */
    .network-column--feed {
        order: 3;
        display: block !important; /* Override display: none from 1200px breakpoint */
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        z-index: 1000;
        background: #fff;
        transition: right 0.3s ease;
        box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
    }
    
    .network-column--feed.mobile-nav-open {
        right: 0;
    }
    
    .info-bar {
        padding: 0.5rem 1rem;
    }
    
    /* Mobile nav toggle button */
    /* Mobile nav toggle button is now in header - styling handled in base.css */
    
    /* Mobile nav overlay */
    .mobile-nav-overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    
    .mobile-nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    /* Prevent body scroll when menu is open */
    body.mobile-nav-open {
        overflow: hidden;
    }
}
