/* ============================================
   TRAURIGER PILZ - STYLE.CSS
   Layout, Typografie, Farben, Komponenten
   ============================================ */

/* === CSS CUSTOM PROPERTIES === */
:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-card: #0d0d0d;
    --bg-card-border: #1a1a1a;
    --text-primary: #c0c0c0;
    --text-secondary: #666666;
    --text-dim: #333333;
    --neon-red: #ff0040;
    --neon-red-glow: rgba(255, 0, 64, 0.6);
    --neon-red-dim: rgba(255, 0, 64, 0.2);
    --neon-purple: #b000ff;
    --neon-purple-glow: rgba(176, 0, 255, 0.6);
    --neon-cyan: #00f0ff;
    --neon-cyan-glow: rgba(0, 240, 255, 0.6);
    --neon-green: #00ff41;
    --neon-green-glow: rgba(0, 255, 65, 0.6);
    --blood-red: #8b0000;
    --terminal-green: #00ff41;
    --font-mono: 'Share Tech Mono', 'Courier New', monospace;
    --font-display: 'Creepster', cursive;
    --font-pixel: 'Press Start 2P', monospace;
}

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

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--neon-red) var(--bg-primary);
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb {
    background: var(--neon-red);
    box-shadow: 0 0 6px var(--neon-red-glow);
}

body {
    background: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-mono);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    cursor: url('../assets/crosshair.svg') 16 16, crosshair;
}

a {
    color: var(--neon-red);
    text-decoration: none;
    transition: all 0.3s;
}
a:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan-glow);
}

ul { list-style: none; }

img {
    max-width: 100%;
    display: block;
}

/* === GLOBAL OVERLAYS === */
#matrix-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.15;
}

#scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9998;
}

#vignette {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9997;
    background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.85) 100%);
}

#blood-drip-top {
    position: fixed;
    top: -5px;
    left: 0;
    width: 100%;
    height: 60px;
    pointer-events: none;
    z-index: 9996;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 60' preserveAspectRatio='none'%3E%3Cpath d='M0,0 L1200,0 L1200,5 Q1180,5 1170,15 Q1160,30 1155,5 L1100,5 Q1090,5 1085,20 Q1080,40 1070,25 Q1065,5 1050,5 L900,5 Q890,5 885,25 Q880,50 875,30 Q870,5 860,5 L750,5 Q740,5 735,15 Q730,28 725,5 L600,5 Q590,5 585,30 Q580,55 575,35 Q570,5 560,5 L400,5 Q390,5 385,20 Q380,38 375,5 L300,5 Q290,5 285,25 Q280,45 275,20 Q270,5 260,5 L100,5 Q90,5 85,15 Q80,30 75,5 L0,5 Z' fill='%238b0000'/%3E%3C/svg%3E") repeat-x top;
    background-size: 1200px 60px;
}

/* === ENTRANCE SCREEN === */
#entrance-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    background: var(--bg-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    transition: opacity 0.5s, transform 0.5s;
}

#entrance-screen.exiting {
    opacity: 0;
    transform: scale(1.1);
    pointer-events: none;
}

.terminal-window {
    width: 90%;
    max-width: 700px;
    background: #0c0c0c;
    border: 1px solid var(--neon-green);
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.2), inset 0 0 60px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.terminal-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: #1a1a1a;
    border-bottom: 1px solid #333;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.terminal-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}
.terminal-dot.red { background: #ff5f56; }
.terminal-dot.yellow { background: #ffbd2e; }
.terminal-dot.green { background: #27c93f; }

.terminal-title {
    margin-left: 8px;
    color: var(--terminal-green);
}

.terminal-body {
    padding: 15px;
    min-height: 280px;
    max-height: 350px;
    overflow-y: auto;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--terminal-green);
    line-height: 1.8;
}

.terminal-body .line {
    opacity: 0;
    animation: fadeInLine 0.3s forwards;
}

.terminal-body .line.warning {
    color: #ffbd2e;
}

.terminal-body .line.highlight {
    color: var(--neon-cyan);
    text-shadow: 0 0 5px var(--neon-cyan-glow);
}

.terminal-body .line.danger {
    color: var(--neon-red);
    text-shadow: 0 0 5px var(--neon-red-glow);
    font-weight: bold;
}

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

/* === GLITCH BUTTON === */
.glitch-btn {
    background: transparent;
    border: 2px solid var(--neon-red);
    color: var(--neon-red);
    font-family: var(--font-mono);
    font-size: 1.1rem;
    padding: 15px 40px;
    cursor: pointer;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 3px;
    transition: all 0.3s;
    box-shadow: 0 0 15px var(--neon-red-dim), inset 0 0 15px rgba(255,0,64,0.05);
}

.glitch-btn:hover {
    background: var(--neon-red);
    color: #000;
    box-shadow: 0 0 40px var(--neon-red-glow), 0 0 80px var(--neon-red-dim);
}

.glitch-btn span {
    position: relative;
}

/* === NAVBAR === */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9990;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 30px;
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--neon-red-dim);
    transition: background 0.3s, box-shadow 0.3s;
}

#navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    border-bottom-color: var(--neon-red);
    box-shadow: 0 2px 20px var(--neon-red-dim);
}

/* RGB Rainbow bar under navbar (only when music plays) */
body.music-playing #navbar {
    border-bottom-color: transparent;
}

body.music-playing #navbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 2px;
    background: linear-gradient(90deg,
        #ff0040, #ff8000, #ffff00, #00ff41, #00f0ff, #b000ff, #ff0040
    );
    background-size: 50% 100%;
    animation: rgbBarScroll 3s linear infinite;
    box-shadow: 0 1px 8px rgba(255, 0, 64, 0.3), 0 1px 15px rgba(0, 255, 255, 0.15);
}

@keyframes rgbBarScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--neon-red);
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-link {
    font-family: var(--font-pixel);
    font-size: 0.55rem;
    color: var(--text-secondary);
    letter-spacing: 2px;
    padding: 5px 0;
    position: relative;
    transition: all 0.3s;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--neon-red);
    box-shadow: 0 0 5px var(--neon-red-glow);
    transition: width 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--neon-red);
    text-shadow: 0 0 10px var(--neon-red-glow);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-status {
    font-family: var(--font-pixel);
    font-size: 0.5rem;
    color: var(--neon-green);
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 2px;
}

.status-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--neon-green);
}

/* === HERO SECTION === */
#hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px 40px;
    position: relative;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    max-width: 1200px;
    width: 100%;
}

.hero-image-container {
    flex-shrink: 0;
}

.rgb-split-container {
    position: relative;
    width: 300px;
    height: 350px;
}

.hero-img {
    width: 300px;
    height: auto;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 30px var(--neon-red-glow));
}

.hero-img-ghost {
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    height: auto;
    z-index: 1;
    opacity: 0.4;
    mix-blend-mode: screen;
}

.ghost-red {
    filter: hue-rotate(-30deg) saturate(3);
    transform: translate(-5px, 2px);
    animation: ghostRed 3s ease-in-out infinite;
}

.ghost-cyan {
    filter: hue-rotate(150deg) saturate(3);
    transform: translate(5px, -2px);
    animation: ghostCyan 3s ease-in-out infinite;
}

@keyframes ghostRed {
    0%, 100% { transform: translate(-5px, 2px); opacity: 0.4; }
    25% { transform: translate(-8px, 0px); opacity: 0.6; }
    50% { transform: translate(-3px, 4px); opacity: 0.3; }
    75% { transform: translate(-6px, -1px); opacity: 0.5; }
}

@keyframes ghostCyan {
    0%, 100% { transform: translate(5px, -2px); opacity: 0.4; }
    25% { transform: translate(3px, -4px); opacity: 0.3; }
    50% { transform: translate(8px, 0px); opacity: 0.6; }
    75% { transform: translate(4px, 3px); opacity: 0.5; }
}

.hero-text {
    text-align: left;
}

.hero-subtitle {
    font-family: var(--font-mono);
    font-size: 1rem;
    color: var(--neon-green);
    margin-bottom: 10px;
    min-height: 1.6em;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 6rem);
    color: var(--text-primary);
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 15px;
}

.hero-title.massive {
    text-shadow:
        0 0 10px var(--neon-red),
        0 0 20px var(--neon-red),
        0 0 40px var(--neon-red-glow),
        0 0 80px var(--neon-red-dim);
}

.hero-tagline {
    font-family: var(--font-pixel);
    font-size: clamp(0.45rem, 1vw, 0.65rem);
    color: var(--neon-red);
    letter-spacing: 3px;
    margin-bottom: 25px;
}

.hero-quote {
    font-family: var(--font-mono);
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-style: italic;
}

.quote-mark {
    color: var(--neon-red);
    font-size: 1.5rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    font-family: var(--font-pixel);
    font-size: 0.5rem;
    color: var(--text-dim);
    letter-spacing: 3px;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 0.5; }
    50% { transform: translateY(10px); opacity: 1; }
}

/* === SECTION DIVIDERS === */
.section-divider {
    text-align: center;
    padding: 30px 20px;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-dim);
    letter-spacing: 5px;
    text-transform: uppercase;
    border-top: 1px solid var(--bg-card-border);
    border-bottom: 1px solid var(--bg-card-border);
}

/* === SECTION TITLES === */
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-primary);
    text-transform: uppercase;
}

/* === ABOUT SECTION === */
#about {
    padding: 100px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.about-container {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 50px;
    align-items: start;
}

.about-image {
    position: relative;
    border: 2px solid var(--neon-red-dim);
    overflow: hidden;
}

.about-img {
    width: 100%;
    filter: grayscale(30%) contrast(1.1);
    transition: all 0.5s;
}

.about-image:hover .about-img {
    filter: grayscale(0%) contrast(1.3) brightness(1.1);
}

.classified-stamp {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg);
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--neon-red);
    border: 4px solid var(--neon-red);
    padding: 5px 25px;
    opacity: 0.6;
    text-transform: uppercase;
    pointer-events: none;
    text-shadow: 0 0 10px var(--neon-red-glow);
}

.image-label {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 8px 12px;
    background: rgba(0, 0, 0, 0.8);
    font-family: var(--font-pixel);
    font-size: 0.45rem;
    color: var(--neon-red);
    letter-spacing: 2px;
}

.about-bio {
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    padding: 25px;
}

.bio-header {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--bg-card-border);
}

.bio-tag {
    font-family: var(--font-pixel);
    font-size: 0.5rem;
    padding: 5px 12px;
    border: 1px solid var(--text-secondary);
    color: var(--text-secondary);
    letter-spacing: 2px;
}

.bio-tag.red {
    border-color: var(--neon-red);
    color: var(--neon-red);
    animation: tagPulse 2s ease-in-out infinite;
}

@keyframes tagPulse {
    0%, 100% { box-shadow: 0 0 5px transparent; }
    50% { box-shadow: 0 0 15px var(--neon-red-dim); }
}

.bio-content {
    font-size: 0.9rem;
    line-height: 1.8;
}

.bio-content .label {
    color: var(--neon-cyan);
    font-weight: bold;
}

.bio-content .redacted {
    background: var(--text-primary);
    color: var(--text-primary);
    padding: 0 5px;
    transition: all 0.3s;
    cursor: pointer;
}

.bio-content .redacted:hover {
    background: transparent;
    color: var(--neon-red);
}

.bio-list {
    padding-left: 20px;
}

.bio-list li {
    margin-bottom: 8px;
    color: var(--text-primary);
}

.warning-text {
    color: #ffbd2e;
    font-weight: bold;
    padding: 10px;
    border: 1px dashed #ffbd2e;
    margin-top: 10px;
}

.terminal-text {
    font-family: var(--font-mono);
}

/* === STATS SECTION === */
#stats {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    padding: 20px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-red), var(--neon-purple), var(--neon-cyan));
    opacity: 0;
    transition: opacity 0.3s;
}

.stat-card:hover {
    border-color: var(--neon-red);
    box-shadow: 0 0 20px var(--neon-red-dim);
    transform: translateY(-3px);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-value {
    font-family: var(--font-pixel);
    font-size: clamp(1.2rem, 2.5vw, 2rem);
    color: var(--neon-cyan);
    margin-bottom: 10px;
    text-shadow: 0 0 10px var(--neon-cyan-glow);
}

.stat-value.neon-red {
    color: var(--neon-red);
    text-shadow: 0 0 10px var(--neon-red-glow);
}

.stat-value.neon-green {
    color: var(--neon-green);
    text-shadow: 0 0 10px var(--neon-green-glow);
}

.stat-label {
    font-family: var(--font-pixel);
    font-size: 0.45rem;
    color: var(--text-secondary);
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.stat-sublabel {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-dim);
    margin-bottom: 8px;
}

.stat-bar {
    width: 100%;
    height: 4px;
    background: var(--bg-secondary);
    margin-top: 12px;
    overflow: hidden;
}

.stat-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--neon-red), var(--neon-purple));
    width: 0%;
    transition: width 2s ease-out;
    box-shadow: 0 0 10px var(--neon-red-glow);
}

/* === CHAT LOG === */
.chat-log-container {
    background: #0c0c0c;
    border: 1px solid var(--neon-green);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.1);
}

.chat-log-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: #1a1a1a;
    border-bottom: 1px solid #333;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.chat-log {
    padding: 15px;
    height: 400px;
    overflow-y: auto;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--terminal-green);
    line-height: 1.8;
}

.chat-log .system-msg { color: var(--text-secondary); }
.chat-log .warning-msg { color: #ffbd2e; }
.chat-log .chat-msg { color: var(--terminal-green); }
.chat-log .chat-msg .username { color: var(--neon-cyan); }
.chat-log .chat-msg .pilz-name { color: var(--neon-red); font-weight: bold; }
.chat-log .danger-msg { color: var(--neon-red); font-weight: bold; }

/* === GALLERY === */
#gallery {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--bg-card-border);
    background: var(--bg-card);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    cursor: pointer;
}

.gallery-item:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 25px var(--neon-cyan-glow);
    transform: scale(1.03);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s;
}

.filter-invert { filter: invert(1) contrast(1.2); }
.filter-thermal { filter: hue-rotate(180deg) saturate(3) brightness(1.2); }
.filter-glitch { animation: glitchImg 0.5s steps(2) infinite; }
.filter-saturate { filter: saturate(5) contrast(2) brightness(0.8); }

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    font-family: var(--font-pixel);
    font-size: 0.45rem;
    color: var(--neon-red);
    letter-spacing: 2px;
    text-align: center;
}

.ascii-item {
    background: var(--bg-primary);
    padding: 15px;
}

.ascii-pilz {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--neon-green);
    text-align: center;
    line-height: 1.3;
    text-shadow: 0 0 5px var(--neon-green-glow);
    white-space: pre;
}

.redacted-bars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background:
        linear-gradient(transparent 15%, #000 15%, #000 25%, transparent 25%,
                        transparent 40%, #000 40%, #000 50%, transparent 50%,
                        transparent 65%, #000 65%, #000 75%, transparent 75%);
}

@keyframes glitchImg {
    0%   { transform: translate(0); filter: hue-rotate(0deg); }
    25%  { transform: translate(-5px, 3px); filter: hue-rotate(90deg); }
    50%  { transform: translate(3px, -5px); filter: hue-rotate(180deg); }
    75%  { transform: translate(5px, 5px); filter: hue-rotate(270deg); }
    100% { transform: translate(-3px, -3px); filter: hue-rotate(360deg); }
}

/* === MUSIC PLAYER === */
#music {
    padding: 100px 20px;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.music-player {
    background: var(--bg-card);
    border: 1px solid var(--neon-red-dim);
    overflow: hidden;
    box-shadow: 0 0 30px var(--neon-red-dim);
}

.player-display {
    padding: 25px;
    background: linear-gradient(135deg, #0a0a0a 0%, #111 50%, #0a0a0a 100%);
    border-bottom: 1px solid var(--bg-card-border);
    text-align: center;
}

.equalizer-bars {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 3px;
    height: 40px;
    margin-bottom: 15px;
}

.eq-bar {
    width: 4px;
    background: var(--neon-cyan);
    border-radius: 1px;
    transition: height 0.1s;
}

.eq-bar.active {
    animation: eqBounce var(--duration) ease-in-out infinite;
    box-shadow: 0 0 5px var(--neon-cyan-glow);
}

@keyframes eqBounce {
    0%, 100% { height: 4px; }
    50% { height: var(--max-height); }
}

.now-playing {
    margin-bottom: 5px;
}

.track-label {
    font-family: var(--font-pixel);
    font-size: 0.4rem;
    color: var(--text-dim);
    letter-spacing: 3px;
    display: block;
    margin-bottom: 5px;
}

.track-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--neon-red);
}

.track-list {
    border-bottom: 1px solid var(--bg-card-border);
}

.track-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 20px;
    border-bottom: 1px solid var(--bg-card-border);
    cursor: pointer;
    transition: all 0.3s;
}

.track-item:last-child { border-bottom: none; }

.track-item:hover {
    background: rgba(255, 0, 64, 0.05);
}

.track-item.active {
    background: rgba(255, 0, 64, 0.1);
    border-left: 3px solid var(--neon-red);
}

.track-number {
    font-family: var(--font-pixel);
    font-size: 0.5rem;
    color: var(--text-dim);
    min-width: 25px;
}

.track-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.track-title {
    font-family: var(--font-mono);
    font-size: 0.95rem;
    color: var(--text-primary);
}

.track-artist {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.track-status {
    color: var(--text-dim);
    font-size: 0.8rem;
}

.track-item.active .track-status {
    color: var(--neon-red);
}

.player-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.ctrl-btn {
    background: transparent;
    border: 1px solid var(--text-dim);
    color: var(--text-secondary);
    font-size: 1rem;
    padding: 10px 18px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: var(--font-mono);
}

.ctrl-btn:hover {
    border-color: var(--neon-red);
    color: var(--neon-red);
    box-shadow: 0 0 15px var(--neon-red-dim);
}

.ctrl-btn.play-btn {
    padding: 12px 25px;
    font-size: 1.3rem;
    border-color: var(--neon-red);
    color: var(--neon-red);
}

.ctrl-btn.play-btn:hover {
    background: var(--neon-red);
    color: #000;
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 20px;
}

.vol-label {
    font-family: var(--font-pixel);
    font-size: 0.4rem;
    color: var(--text-dim);
    letter-spacing: 2px;
}

#volume {
    -webkit-appearance: none;
    appearance: none;
    width: 80px;
    height: 4px;
    background: var(--bg-secondary);
    outline: none;
    cursor: pointer;
}

#volume::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 12px;
    height: 12px;
    background: var(--neon-red);
    border-radius: 0;
    box-shadow: 0 0 8px var(--neon-red-glow);
    cursor: pointer;
}

#volume::-moz-range-thumb {
    width: 12px;
    height: 12px;
    background: var(--neon-red);
    border: none;
    border-radius: 0;
    box-shadow: 0 0 8px var(--neon-red-glow);
    cursor: pointer;
}

/* === CONTACT === */
#contact {
    padding: 100px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-warning {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    border: 1px dashed #ffbd2e;
    background: rgba(255, 189, 46, 0.05);
    margin-bottom: 40px;
    font-size: 0.9rem;
}

.warning-icon {
    font-size: 2rem;
    color: #ffbd2e;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    transition: all 0.3s;
}

.contact-item:hover {
    border-color: var(--neon-red);
    box-shadow: 0 0 15px var(--neon-red-dim);
}

.contact-icon {
    font-size: 1.5rem;
}

.contact-label {
    font-family: var(--font-pixel);
    font-size: 0.45rem;
    color: var(--text-dim);
    letter-spacing: 2px;
    display: block;
    margin-bottom: 3px;
}

.contact-value {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--neon-cyan);
}

.contact-ascii-box {
    text-align: center;
}

.contact-ascii-box pre {
    display: inline-block;
    text-align: left;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--neon-red);
    text-shadow: 0 0 5px var(--neon-red-dim);
    line-height: 1.6;
}

/* === FOOTER === */
#footer {
    padding: 40px 20px;
    border-top: 1px solid var(--bg-card-border);
    text-align: center;
}

.footer-text {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-dim);
    margin-bottom: 8px;
}

.footer-disclaimer {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-dim);
    opacity: 0.5;
    margin-bottom: 15px;
}

.visitor-counter {
    font-family: var(--font-pixel);
    font-size: 0.5rem;
    color: var(--text-secondary);
    letter-spacing: 2px;
}

.counter-display {
    color: var(--neon-green);
    text-shadow: 0 0 5px var(--neon-green-glow);
    font-family: var(--font-pixel);
}

/* === HIDDEN TERMINAL === */
#hidden-terminal {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 600px;
    z-index: 10001;
    background: #0c0c0c;
    border: 1px solid var(--neon-green);
    border-radius: 4px;
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.3);
    font-family: var(--font-mono);
    overflow: hidden;
}

.ht-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: #1a1a1a;
    border-bottom: 1px solid #333;
    font-size: 0.8rem;
    color: var(--neon-green);
}

#ht-close {
    background: none;
    border: none;
    color: var(--neon-red);
    cursor: pointer;
    font-family: var(--font-mono);
    font-size: 0.8rem;
}

.ht-output {
    padding: 10px 12px;
    max-height: 200px;
    overflow-y: auto;
    font-size: 0.8rem;
    color: var(--neon-green);
    line-height: 1.6;
}

.ht-output .ht-response {
    color: var(--text-secondary);
    margin-bottom: 5px;
}

.ht-output .ht-command {
    color: var(--neon-cyan);
}

.ht-input-line {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    border-top: 1px solid #333;
}

.ht-prompt {
    color: var(--neon-green);
    font-size: 0.8rem;
    white-space: pre;
}

#ht-input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--neon-green);
    font-family: var(--font-mono);
    font-size: 0.8rem;
    outline: none;
    caret-color: var(--neon-green);
}

/* === KONAMI OVERLAY === */
#konami-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10002;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.konami-text {
    font-family: var(--font-display);
    font-size: clamp(2rem, 6vw, 5rem);
    color: var(--neon-green);
    text-shadow: 0 0 20px var(--neon-green-glow), 0 0 40px var(--neon-green-glow);
}

/* === UTILITY CLASSES === */
.hidden { display: none !important; }

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    .hero-text { text-align: center; }
    .about-container {
        grid-template-columns: 1fr;
    }
    .about-image {
        max-width: 350px;
        margin: 0 auto;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .nav-links { display: none; }
}

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .rgb-split-container {
        width: 200px;
        height: 240px;
    }
    .hero-img, .hero-img-ghost {
        width: 200px;
    }
}
