

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --bg:      #040608;
    --surface: #080c10;
    --border:  #1a2230;
    --text:    #8ab0c8;
    --muted:   #2a4050;
    --accent:  #00aaff;
    --accent2: #00ffcc;
    --dim:     #4a7090;
}

html, body { height: 100%; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Share Tech Mono', monospace;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* ── BACKGROUND CANVAS ── */
#bg-canvas {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.85;
}

/* ── OVERLAYS ── */
.scanlines {
    position: fixed;
    inset: 0;
    background: repeating-linear-gradient(
            0deg,
            transparent,
            transparent 3px,
            rgba(0,0,0,0.18) 3px,
            rgba(0,0,0,0.18) 4px
    );
    pointer-events: none;
    z-index: 2;
}

.vignette {
    position: fixed;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.85) 100%);
    pointer-events: none;
    z-index: 3;
}

.glitch-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 4;
    overflow: hidden;
}
.glitch-bar {
    position: absolute;
    left: 0; right: 0;
    height: 2px;
    background: var(--accent);
    opacity: 0;
    animation: sweep 6s infinite;
}
.glitch-bar:nth-child(1) { animation-delay: 0s;   animation-duration: 5s; }
.glitch-bar:nth-child(2) { animation-delay: 1.8s; animation-duration: 7s; background: var(--accent2); }
.glitch-bar:nth-child(3) { animation-delay: 3.5s; animation-duration: 4s; }

@keyframes sweep {
    0%   { top: -2px; opacity: 0; }
    2%   { opacity: 0.4; }
    98%  { opacity: 0.15; }
    100% { top: 100%; opacity: 0; }
}

/* ── NAVIGATION ── */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    height: 52px;
    border-bottom: 1px solid var(--border);
    background: rgba(4,6,8,0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.nav-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 0.1em;
    color: #fff;
    text-decoration: none;
    text-shadow: 0 0 20px rgba(0,170,255,0.4);
    transition: text-shadow 0.2s;
}
.nav-logo:hover {
    text-shadow: 0 0 30px rgba(0,170,255,0.8);
}

.nav-links {
    display: flex;
    gap: 0;
    list-style: none;
}

.nav-links a {
    display: block;
    padding: 0 1rem;
    height: 52px;
    line-height: 52px;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    border-left: 1px solid transparent;
    transition: color 0.15s, border-color 0.15s, background 0.15s;
}

.nav-links a:hover {
    color: var(--accent);
    border-left-color: var(--border);
    background: rgba(0,170,255,0.04);
}

/* active page highlight */
.nav-links a.active {
    color: var(--accent);
    border-left-color: var(--accent);
    background: rgba(0,170,255,0.06);
}

/* ── PAGE WRAPPER ── */
/* all page content sits inside this */
.page {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    padding: 72px 1rem 3rem; /* 52px nav + 20px breathing room */
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ── LOGO / HERO ── */
.logo-wrap {
    margin-bottom: 2.8rem;
    margin-top: 1rem;
    text-align: center;
}

.logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(7rem, 22vw, 10rem);
    line-height: 0.85;
    letter-spacing: -0.02em;
    color: #ffffff;
    position: relative;
    display: inline-block;
    user-select: none;
    text-shadow: 0 0 40px rgba(0,170,255,0.3);
}
.logo::before, .logo::after {
    content: 'U';
    position: absolute;
    inset: 0;
}
.logo::before {
    animation: glitch-r 3.5s infinite steps(1);
    clip-path: polygon(0 15%, 100% 15%, 100% 35%, 0 35%);
    color: #ff2244;
    opacity: 0;
}
.logo::after {
    animation: glitch-b 3.5s infinite steps(1) 0.08s;
    clip-path: polygon(0 55%, 100% 55%, 100% 72%, 0 72%);
    color: var(--accent);
    opacity: 0;
    mix-blend-mode: screen;
}
@keyframes glitch-r {
    0%,84%,100% { opacity:0; transform:none; }
    85% { opacity:1; transform:translateX(-4px) skewX(-2deg); }
    87% { opacity:1; transform:translateX(3px); }
    89% { opacity:0; }
    92% { opacity:1; transform:translateX(-2px); }
    94% { opacity:0; }
}
@keyframes glitch-b {
    0%,84%,100% { opacity:0; transform:none; }
    85% { opacity:1; transform:translateX(4px) skewX(1deg); }
    87% { opacity:1; transform:translateX(-3px); }
    89% { opacity:0; }
    92% { opacity:1; transform:translateX(2px); }
    94% { opacity:0; }
}

.tagline {
    font-family: 'Space Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.4em;
    color: var(--muted);
    text-transform: uppercase;
    margin-top: 0.6rem;
}

/* ── DIVIDER ── */
.divider {
    width: 100%;
    max-width: 480px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.6rem;
}
.divider::before, .divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}
.divider span {
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    color: var(--muted);
}

/* ── PAGE CONTENT AREA ── */
.page-content {
    width: 100%;
    max-width: 680px;
    animation: fadein 1.2s ease both;
}

@keyframes fadein {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── LINKS (index page) ── */
.links {
    width: 100%;
    max-width: 480px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.link-item {
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
    background: rgba(8,12,16,0.7);
    text-decoration: none;
    color: var(--text);
    position: relative;
    overflow: hidden;
    transition: border-color 0.12s;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    animation: slidein 0.5s ease both;
}
.link-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent);
    transform: translateX(-100%);
    transition: transform 0.18s cubic-bezier(0.4,0,0.2,1);
    z-index: 0;
}
.link-item:hover::before  { transform: translateX(0); }
.link-item:hover          { border-color: var(--accent); }
.link-item:hover .link-label  { color: #000; }
.link-item:hover .link-cmd    { color: rgba(0,0,0,0.5); }
.link-item:hover .link-gutter { color: #000; border-right-color: rgba(0,0,0,0.15); }
.link-item:hover .link-arrow  { color: #000; }

.link-gutter {
    width: 40px;
    min-width: 40px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid var(--border);
    font-size: 0.6rem;
    color: var(--muted);
    position: relative;
    z-index: 1;
    transition: color 0.12s, border-color 0.12s;
}
.link-body {
    flex: 1;
    padding: 0 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
}
.link-cmd {
    font-size: 0.58rem;
    color: var(--muted);
    letter-spacing: 0.15em;
    transition: color 0.12s;
}
.link-label {
    font-family: 'Space Mono', monospace;
    font-size: 0.8rem;
    color: var(--accent);
    letter-spacing: 0.04em;
    transition: color 0.12s;
}
.link-arrow {
    padding: 0 16px;
    font-size: 0.8rem;
    color: var(--muted);
    position: relative;
    z-index: 1;
    transition: color 0.12s;
}

.link-item:nth-child(1) { animation-delay: 0.1s; }
.link-item:nth-child(2) { animation-delay: 0.2s; }
.link-item:nth-child(3) { animation-delay: 0.3s; }
.link-item:nth-child(4) { animation-delay: 0.4s; }
.link-item:nth-child(5) { animation-delay: 0.5s; }
.link-item:nth-child(6) { animation-delay: 0.6s; }

@keyframes slidein {
    from { opacity:0; transform:translateX(-10px); }
    to   { opacity:1; transform:translateX(0); }
}

/* ── FOOTER ── */
.footer {
    margin-top: 2.5rem;
    font-size: 0.58rem;
    letter-spacing: 0.25em;
    color: var(--muted);
    text-align: center;
    line-height: 2.2;
}

/* ── INNER PAGE STYLES (about, music, presskit) ── */
.page-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 8vw, 4rem);
    letter-spacing: 0.05em;
    color: #fff;
    text-shadow: 0 0 30px rgba(0,170,255,0.2);
    margin-bottom: 0.3rem;
}

.page-subtitle {
    font-size: 0.6rem;
    letter-spacing: 0.35em;
    color: var(--muted);
    text-transform: uppercase;
    margin-bottom: 2.5rem;
}

/* placeholder card for empty sections */
.placeholder-card {
    border: 1px dashed var(--border);
    padding: 2rem;
    text-align: center;
    color: var(--muted);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    line-height: 2;
}