/* ============================================
   EDDYVERSE v2 — The Eddy Woods Experience
   Bio-Digital Funk | Sovereign Grade
   Zero purple. Zero glass. Zero AI clichés.
   ============================================ */

:root {
    --void: #050508;
    --void-light: #0A0A12;
    --void-mid: #0E0E1A;
    --void-surface: #121220;
    --void-border: #1A1A30;
    
    --neon-cyan: #00E5FF;
    --neon-cyan-rgb: 0, 229, 255;
    --neon-magenta: #FF0080;
    --neon-magenta-rgb: 255, 0, 128;
    --nuclear-yellow: #CCFF00;
    --nuclear-yellow-rgb: 204, 255, 0;
    --ember: #FF4400;
    --ember-rgb: 255, 68, 0;
    --cool-white: #C8D0D8;
    --cool-white-dim: #788090;
    
    --font-mono: 'Courier New', 'Consolas', 'Menlo', monospace;
    --font-display: 'Impact', 'Arial Black', 'Helvetica Neue', sans-serif;
    
    --glow-cyan: 0 0 10px rgba(var(--neon-cyan-rgb),0.4), 0 0 30px rgba(var(--neon-cyan-rgb),0.15), 0 0 80px rgba(var(--neon-cyan-rgb),0.05);
    --glow-magenta: 0 0 10px rgba(var(--neon-magenta-rgb),0.4), 0 0 30px rgba(var(--neon-magenta-rgb),0.15), 0 0 80px rgba(var(--neon-magenta-rgb),0.05);
    --glow-yellow: 0 0 10px rgba(var(--nuclear-yellow-rgb),0.3), 0 0 30px rgba(var(--nuclear-yellow-rgb),0.1);
    
    --transition-fast: 150ms cubic-bezier(0.16, 1, 0.3, 1);
    --transition-med: 350ms cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { height: 100%; overflow: hidden; }
body { background: var(--void); color: var(--cool-white); font-family: var(--font-mono); }

/* === VIGNETTE OVERLAY === */
#vignette-overlay {
    position: fixed; top: 0; left: 0;
    width: 100vw; height: 100vh;
    z-index: 3;
    pointer-events: none;
    background: radial-gradient(ellipse at center, transparent 50%, rgba(5,5,8,0.8) 100%);
}

/* === CANVAS === */
#eddyverse-canvas {
    position: fixed; top: 0; left: 0;
    width: 100vw; height: 100vh;
    z-index: 0;
    display: block;
}

/* === AUDIO VISUALIZER === */
#eddyverse-audio-visualizer {
    position: fixed; bottom: 0; left: 0;
    width: 100vw; height: 80px;
    z-index: 1;
    pointer-events: none;
    opacity: 0.4;
}

/* === HUD OVERLAY === */
#eddyverse-hud {
    position: fixed; top: 0; left: 0;
    width: 100vw; height: 100vh;
    z-index: 10;
    pointer-events: none;
}

/* === PHASES === */
.experience-phase { display: none; width: 100%; height: 100%; }
.experience-phase.active-phase { display: flex; }

/* ============================================
   BOOT SEQUENCE (APPROACHING)
   ============================================ */
#boot-sequence {
    position: fixed; top: 0; left: 0;
    width: 100vw; height: 100vh;
    z-index: 20;
    background: var(--void);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity var(--transition-slow);
    pointer-events: none;
}
#boot-sequence.fade-out { opacity: 0; }
.boot-line {
    font-family: var(--font-mono);
    font-size: clamp(0.7rem, 1.5vw, 0.85rem);
    color: var(--neon-cyan);
    opacity: 0;
    letter-spacing: 0.05em;
}
.boot-line.visible { opacity: 1; transition: opacity 0.3s; }
.boot-line.success { color: var(--neon-cyan); }
.boot-line.warn { color: var(--nuclear-yellow); }
.boot-line.done { color: var(--neon-magenta); font-weight: bold; }

/* ============================================
   ENTRY SEQUENCE
   ============================================ */
#eddyverse-entry {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Glitch scan line across entry */
#glitch-scanline {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 2px;
    background: var(--neon-cyan);
    box-shadow: var(--glow-cyan);
    opacity: 0;
    animation: scanline-sweep 3s ease-in-out infinite;
    pointer-events: none;
}
@keyframes scanline-sweep {
    0% { top: 0; opacity: 0; }
    10% { opacity: 0.8; }
    90% { opacity: 0.8; }
    100% { top: 100%; opacity: 0; }
}

/* 3D Sigil container */
#particle-sigil {
    width: 180px; height: 180px;
    margin-bottom: 30px;
    position: relative;
    cursor: pointer;
}
#particle-sigil canvas {
    width: 100%; height: 100%;
    display: block;
}

#eddyverse-title { text-align: center; margin-bottom: 24px; }
.title-line {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 9vw, 8rem);
    font-weight: 900;
    letter-spacing: -0.05em;
    line-height: 0.8;
    text-transform: uppercase;
    color: var(--cool-white);
    text-shadow: var(--glow-cyan);
    opacity: 0;
    transform: translateY(30px);
}
.title-line.reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.title-line:nth-child(2) { color: var(--neon-magenta); text-shadow: var(--glow-magenta); transition-delay: 0.3s; }
.title-line:nth-child(3) { color: var(--cool-white); text-shadow: var(--glow-cyan); transition-delay: 0.6s; }
.title-line:nth-child(4) { color: var(--nuclear-yellow); text-shadow: var(--glow-yellow); transition-delay: 0.9s; }

.entry-tagline {
    display: flex; gap: 40px; margin-bottom: 40px;
    font-size: clamp(0.6rem, 1vw, 0.75rem);
    letter-spacing: 0.2em; text-transform: uppercase;
    opacity: 0;
    transition: opacity 1s ease 1.5s;
}
.entry-tagline.reveal { opacity: 1; }
.tagline-data { color: var(--cool-white-dim); }
.tagline-data:nth-child(1) { color: var(--neon-cyan); }
.tagline-data:nth-child(2) { color: var(--neon-magenta); }
.tagline-data:nth-child(3) { color: var(--nuclear-yellow); }

/* Subtitle under entry */
.entry-subtitle {
    font-size: clamp(0.55rem, 0.9vw, 0.7rem);
    color: var(--cool-white-dim);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 40px;
    opacity: 0;
    transition: opacity 1s ease 2s;
}
.entry-subtitle.reveal { opacity: 0.6; }

/* === GATEWAY BUTTON === */
.gateway-button {
    background: transparent;
    border: 2px solid var(--neon-cyan);
    color: var(--neon-cyan);
    font-family: var(--font-mono);
    font-size: clamp(0.85rem, 1.2vw, 1rem);
    letter-spacing: 0.25em;
    padding: 16px 44px;
    cursor: pointer;
    position: relative;
    transition: all var(--transition-med);
    pointer-events: auto;
    text-transform: uppercase;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
}
.gateway-button.reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease 2.5s, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) 2.5s, background var(--transition-med), color var(--transition-med), box-shadow var(--transition-med);
}
.gateway-button::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(var(--neon-cyan-rgb),0.1), transparent);
    transition: left 0.5s ease;
}
.gateway-button:hover::before { left: 100%; }
.gateway-button:hover {
    background: var(--neon-cyan);
    color: var(--void);
    box-shadow: var(--glow-cyan);
    transform: scale(1.03);
}
.gateway-button:active {
    transform: scale(0.97);
}
.button-glitch {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none;
    opacity: 0;
}

/* ============================================
   MAIN EXPERIENCE
   ============================================ */
#eddyverse-main {
    display: none;
    flex-direction: column;
    padding: 20px;
    pointer-events: auto;
    opacity: 0;
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    gap: 12px;
}
#eddyverse-main.active-phase { display: flex; }
#eddyverse-main.reveal {
    opacity: 1;
    transition: opacity 1s ease;
}

.main-layout {
    display: flex;
    gap: 12px;
    flex: 1;
    min-height: 0;
}
.main-left { display: flex; flex-direction: column; gap: 12px; flex: 3; }
.main-right { display: flex; flex-direction: column; gap: 12px; flex: 2; min-width: 300px; }

/* === HUD PANELS === */
.hud-panel {
    background: rgba(5,5,8,0.88);
    border: 1px solid var(--void-border);
    backdrop-filter: none;
    transition: border-color var(--transition-med), box-shadow var(--transition-med);
    position: relative;
    overflow: hidden;
}
.hud-panel::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
    opacity: 0;
    transition: opacity var(--transition-med);
}
.hud-panel:hover::after { opacity: 0.3; }
.hud-panel:hover { border-color: rgba(var(--neon-cyan-rgb),0.3); }

.panel-header {
    border-bottom: 1px solid var(--void-border);
    padding: 8px 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: clamp(0.6rem, 0.8vw, 0.7rem);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.panel-tag { color: var(--cool-white-dim); }
.panel-status { color: var(--neon-cyan); }
.panel-body { padding: 14px; }

/* === SYNDICATE FEED === */
#syndicate-stream { }
.metric-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    font-size: clamp(0.65rem, 0.85vw, 0.75rem);
    position: relative;
}
.metric-row:last-of-type { border-bottom: none; }
.metric-label { color: var(--cool-white-dim); text-transform: uppercase; letter-spacing: 0.12em; }
.metric-value { color: var(--neon-cyan); font-weight: bold; font-family: var(--font-mono); }
.status-ok { color: var(--neon-cyan); }
.status-ok::before { content: '▲ '; }

.ticker {
    margin-top: 12px;
    height: 22px;
    overflow: hidden;
    font-size: clamp(0.55rem, 0.7vw, 0.65rem);
    color: var(--cool-white-dim);
    letter-spacing: 0.05em;
    border-top: 1px solid rgba(255,255,255,0.04);
    padding-top: 12px;
    padding-bottom: 4px;
}

/* === PORTALS === */
#portal-grid { }
.portal-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 6px;
    padding: 10px;
}
.portal-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 18px 8px;
    border: 1px solid var(--void-border);
    text-decoration: none;
    color: var(--cool-white);
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
    min-height: 80px;
}
.portal-link::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at center, rgba(var(--neon-cyan-rgb),0.08), transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-med);
}
.portal-link:hover {
    border-color: var(--neon-cyan);
    box-shadow: var(--glow-cyan);
    color: var(--neon-cyan);
    transform: translateY(-2px);
}
.portal-link:hover::before { opacity: 1; }
.portal-link:hover .portal-desc { color: var(--neon-cyan); }
.portal-icon { font-size: clamp(1.2rem, 2vw, 1.6rem); line-height: 1; }
.portal-label { font-size: clamp(0.65rem, 0.85vw, 0.75rem); letter-spacing: 0.15em; text-transform: uppercase; font-weight: bold; }
.portal-desc { font-size: clamp(0.5rem, 0.65vw, 0.6rem); color: var(--cool-white-dim); text-transform: uppercase; letter-spacing: 0.1em; transition: color var(--transition-fast); }

/* Portal beam effect */
.portal-beam {
    position: absolute;
    bottom: 0; left: 50%;
    width: 2px; height: 0;
    background: linear-gradient(to top, var(--neon-cyan), transparent);
    transform: translateX(-50%);
    transition: height 0.3s ease;
    box-shadow: var(--glow-cyan);
    pointer-events: none;
}
.portal-link:hover .portal-beam { height: 60px; }

/* Glow line under portal grid */
#portal-grid .panel-body {
    padding: 0;
    position: relative;
}

/* === DATA STREAM (background overlay) === */
#data-stream {
    position: fixed; top: 0; left: 0;
    width: 100vw; height: 100vh;
    z-index: 1;
    pointer-events: none;
    opacity: 0.06;
    overflow: hidden;
}
.data-stream-text {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    color: var(--neon-cyan);
    line-height: 1.1;
    white-space: nowrap;
    position: absolute;
    animation: data-stream-float 20s linear infinite;
}
@keyframes data-stream-float {
    0% { transform: translateY(100vh); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100%); opacity: 0; }
}

/* === CHAT === */
#ai-chat-container { max-height: 400px; }
.chat-header { cursor: pointer; user-select: none; }
.chat-status { color: var(--neon-cyan); }

.chat-body { display: block; }
.chat-messages {
    height: 200px;
    overflow-y: auto;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.message {
    padding: 8px 10px;
    border-left: 2px solid var(--void-border);
    font-size: clamp(0.65rem, 0.8vw, 0.75rem);
    line-height: 1.5;
    animation: msg-in 0.3s ease;
}
@keyframes msg-in {
    from { opacity: 0; transform: translateX(-8px); }
    to { opacity: 1; transform: translateX(0); }
}
.bot-message { border-left-color: var(--neon-cyan); }
.user-message { border-left-color: var(--nuclear-yellow); }
.msg-sender { color: var(--neon-cyan); font-weight: bold; margin-right: 6px; }
.user-message .msg-sender { color: var(--nuclear-yellow); }
.msg-text { color: var(--cool-white); }

/* Thinking indicator */
.thinking-indicator {
    padding: 8px 10px;
    border-left: 2px solid var(--neon-magenta);
    font-size: 0.75rem;
    color: var(--cool-white-dim);
}
.thinking-dots {
    display: inline-block;
}
.thinking-dots span {
    display: inline-block;
    width: 4px; height: 4px;
    background: var(--neon-magenta);
    border-radius: 50%;
    margin: 0 2px;
    animation: thinking-bounce 0.6s ease-in-out infinite;
}
.thinking-dots span:nth-child(2) { animation-delay: 0.15s; }
.thinking-dots span:nth-child(3) { animation-delay: 0.3s; }
@keyframes thinking-bounce {
    0%, 100% { transform: translateY(0); opacity: 0.3; }
    50% { transform: translateY(-6px); opacity: 1; }
}

.chat-input-area {
    display: flex;
    border-top: 1px solid var(--void-border);
    padding: 8px;
    gap: 6px;
}
.chat-input {
    flex: 1;
    background: transparent;
    border: 1px solid var(--void-border);
    color: var(--cool-white);
    padding: 8px 10px;
    font-family: var(--font-mono);
    font-size: clamp(0.65rem, 0.8vw, 0.75rem);
    outline: none;
    transition: border-color var(--transition-fast);
}
.chat-input:focus { border-color: var(--neon-cyan); box-shadow: var(--glow-cyan); }
.chat-input::placeholder { color: var(--cool-white-dim); opacity: 0.5; }
.chat-send {
    background: transparent;
    border: 1px solid var(--neon-cyan);
    color: var(--neon-cyan);
    padding: 8px 14px;
    cursor: pointer;
    font-family: var(--font-mono);
    font-size: clamp(0.6rem, 0.75vw, 0.7rem);
    transition: all var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.chat-send:hover { background: var(--neon-cyan); color: var(--void); box-shadow: var(--glow-cyan); }

/* === MUSIC ZONE === */
#music-zone { }
.music-body { display: block; }
.music-visualizer-container { 
    height: 50px; 
    margin-bottom: 10px; 
    display: flex; 
    align-items: flex-end; 
    gap: 2px; 
    padding: 4px;
    position: relative;
    overflow: hidden;
}
.music-visualizer-container::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; width: 100%; height: 50%;
    background: linear-gradient(to top, rgba(5,5,8,0.6), transparent);
    pointer-events: none;
}
.music-vis-bar {
    flex: 1;
    min-height: 2px;
    transition: height 0.05s ease;
    border-radius: 0;
}
.music-controls { display: flex; align-items: center; gap: 10px; }
.music-btn {
    background: transparent;
    border: 1px solid var(--void-border);
    color: var(--cool-white);
    padding: 6px 14px;
    cursor: pointer;
    font-size: clamp(0.6rem, 0.75vw, 0.7rem);
    transition: all var(--transition-fast);
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.music-btn:hover { border-color: var(--neon-magenta); color: var(--neon-magenta); box-shadow: var(--glow-magenta); }
.music-track-info { flex: 1; min-width: 0; }
.track-name { display: block; font-size: clamp(0.65rem, 0.8vw, 0.75rem); color: var(--cool-white); text-transform: uppercase; letter-spacing: 0.05em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.track-source { display: block; font-size: clamp(0.5rem, 0.65vw, 0.6rem); color: var(--cool-white-dim); }

/* === CURSOR TRAIL === */
#cursor-trail {
    position: fixed; top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 4;
    pointer-events: none;
}

/* === CONTENT PAGES === */
body:not(.eddyverse-immersion) { overflow: auto; }
body:not(.eddyverse-immersion) .eddyverse-content {
    min-height: 100vh;
    background: var(--void);
    padding: 100px 20px 60px;
    display: flex;
    justify-content: center;
    position: relative;
}
body:not(.eddyverse-immersion) .eddyverse-content::before {
    content: '';
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(ellipse at center, transparent 50%, rgba(5,5,8,0.9) 100%);
    pointer-events: none;
    z-index: 0;
}
.content-void { max-width: 800px; width: 100%; position: relative; z-index: 1; }
.content-node {
    padding: 24px;
    border-left: 2px solid var(--neon-cyan);
    margin-bottom: 24px;
    background: rgba(5,5,8,0.6);
}
.node-title {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: var(--cool-white);
    margin-bottom: 8px;
}
.node-title a { color: inherit; text-decoration: none; transition: color var(--transition-fast); }
.node-title a:hover { color: var(--neon-cyan); }
.node-meta { font-size: clamp(0.6rem, 0.75vw, 0.7rem); color: var(--cool-white-dim); margin-bottom: 12px; letter-spacing: 0.1em; text-transform: uppercase; }
.node-body { font-size: clamp(0.8rem, 1vw, 0.9rem); line-height: 1.7; color: var(--cool-white); }
.node-body p { margin-bottom: 14px; }
.node-body a { color: var(--neon-cyan); transition: color var(--transition-fast); }
.node-body a:hover { color: var(--neon-magenta); }

.error-node { text-align: center; border-left: 2px solid var(--ember); background: rgba(255,68,0,0.05); }
.node-sub { color: var(--cool-white-dim); font-size: 0.8rem; margin-bottom: 24px; letter-spacing: 0.1em; }
.return-link {
    color: var(--neon-cyan);
    text-decoration: none;
    font-size: clamp(0.7rem, 0.85vw, 0.8rem);
    letter-spacing: 0.15em;
    border: 1px solid var(--neon-cyan);
    padding: 10px 24px;
    display: inline-block;
    transition: all var(--transition-fast);
    text-transform: uppercase;
}
.return-link:hover { background: var(--neon-cyan); color: var(--void); box-shadow: var(--glow-cyan); }

/* === SCROLLBAR === */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--void); }
::-webkit-scrollbar-thumb { background: var(--void-border); }
::-webkit-scrollbar-thumb:hover { background: var(--neon-cyan); }

/* ============================================
   MEDIA QUERIES
   ============================================ */
@media (max-width: 900px) {
    .main-layout { flex-direction: column; }
    .main-right { min-width: 0; }
    .portal-container { grid-template-columns: repeat(5, 1fr); gap: 4px; }
    .portal-link { padding: 12px 6px; min-height: 60px; }
    #eddyverse-main { padding: 12px; }
}

@media (max-width: 600px) {
    .portal-container { grid-template-columns: repeat(2, 1fr); }
    .portal-link { min-height: 50px; padding: 10px 4px; }
    .entry-tagline { flex-direction: column; gap: 8px; align-items: center; }
    #particle-sigil { width: 120px; height: 120px; margin-bottom: 20px; }
    .panel-header { padding: 6px 10px; font-size: 0.55rem; }
    .panel-body { padding: 10px; }
    #eddyverse-main { padding: 8px; gap: 8px; }
    .chat-messages { height: 140px; }
    #eddyverse-title { margin-bottom: 16px; }
}

}

/* === SOUNDCLOUD EMBED === */
.soundcloud-embed {
    margin-bottom: 10px;
    border: 1px solid var(--void-border);
}
.soundcloud-embed iframe {
    display: block;
}

/* === PERSISTENT NAVIGATION — ALL PAGES === */
.ev-nav {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    transition: background var(--transition-med), box-shadow var(--transition-med);
    pointer-events: auto;
}
/* Immersive front page: transparent until entry, only when scrolled/active */
.eddyverse-immersion .ev-nav {
    background: transparent;
    box-shadow: none;
}
.eddyverse-immersion .ev-nav.nav-visible {
    background: rgba(5,5,8,0.85);
    box-shadow: 0 1px 0 rgba(0,229,255,0.1);
}
/* Sub-pages: solid always */
body:not(.eddyverse-immersion) .ev-nav {
    background: rgba(5,5,8,0.95);
    border-bottom: 1px solid var(--void-border);
}
.ev-nav-inner {
    max-width: 1400px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    height: 48px; padding: 0 16px;
}
.ev-nav-brand {
    font-family: var(--font-display);
    font-size: clamp(0.7rem, 1vw, 0.9rem);
    letter-spacing: 0.15em;
    color: var(--neon-cyan);
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
}
.ev-nav-brand:hover { text-shadow: var(--glow-cyan); }
.ev-nav-links {
    display: flex; gap: 2px;
    overflow-x: auto; flex: 1; justify-content: flex-end;
    -ms-overflow-style: none; scrollbar-width: none;
}
.ev-nav-links::-webkit-scrollbar { display: none; }
.ev-nav-link {
    font-family: var(--font-mono);
    font-size: clamp(0.5rem, 0.7vw, 0.65rem);
    letter-spacing: 0.08em;
    color: var(--cool-white-dim);
    text-decoration: none;
    padding: 6px 8px;
    border: 1px solid transparent;
    transition: all var(--transition-fast);
    white-space: nowrap;
    text-transform: uppercase;
}
.ev-nav-link:hover { color: var(--neon-cyan); border-color: var(--void-border); }
.ev-nav-link:active { color: var(--neon-magenta); }

/* Mobile hamburger */
.ev-nav-toggle {
    display: none;
    background: none; border: 1px solid var(--void-border);
    color: var(--cool-white); font-size: 1.2rem;
    padding: 4px 10px; cursor: pointer;
    transition: all var(--transition-fast);
}
.ev-nav-toggle:hover { border-color: var(--neon-cyan); color: var(--neon-cyan); }

/* Sub-page content offset */
body:not(.eddyverse-immersion) .eddyverse-content,
body:not(.eddyverse-immersion) main {
    padding-top: 64px !important;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .ev-nav-links {
        display: none;
        position: absolute; top: 48px; left: 0; width: 100%;
        background: rgba(5,5,8,0.98);
        border-bottom: 1px solid var(--void-border);
        flex-direction: column; gap: 0; padding: 8px 0;
    }
    .ev-nav-links.open { display: flex; }
    .ev-nav-link {
        padding: 10px 16px; font-size: 0.75rem;
        border: none; border-bottom: 1px solid rgba(255,255,255,0.03);
    }
    .ev-nav-toggle { display: block; }
}
