/* --- BLUEPRINT ENTERTAINMENT: SYSTEM STYLE ENGINE v3.0 --- */

:root {
    --cyan: #00ffff;
    --white: #ffffff;
    --black: #000000;
    --pink: #ff007f;
    --glass-bg: rgba(20, 20, 30, 0.4);
    --glass-border: rgba(0, 255, 255, 0.2);
}

body { background-color: var(--black); color: var(--white); font-family: 'Courier New', Courier, monospace; margin: 0; padding: 0; overflow-x: hidden; }

#bg-video { position: fixed; right: 0; bottom: 0; min-width: 100%; min-height: 100%; z-index: -1; filter: brightness(0.3); object-fit: cover; }

.about-layout { max-width: 1100px; margin: 0 auto 100px auto; padding: 40px; }
.glass-panel { background: var(--glass-bg); backdrop-filter: blur(15px); border: 1px solid var(--glass-border); border-radius: 10px; padding: 30px; }

.nav-link { color: var(--cyan); text-decoration: none; border: 1px solid var(--cyan); padding: 12px 25px; transition: 0.3s; text-transform: uppercase; font-weight: bold; display: inline-block; margin-top: 10px; }
.nav-link:hover { background: var(--cyan); color: var(--black); box-shadow: 0 0 20px var(--cyan); }

.scanlines { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,0) 50%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.2)); background-size: 100% 4px; z-index: 9999; pointer-events: none; }

.glitch-img { transition: all 0.2s ease; border: 1px solid var(--glass-border); cursor: pointer; }
.glitch-img:hover { animation: glitch-anim 0.2s cubic-bezier(.25, .46, .45, .94) both infinite; filter: contrast(150%) saturate(150%) hue-rotate(15deg); }

@keyframes glitch-anim { 0% { transform: translate(0); } 20% { transform: translate(-3px, 2px); } 40% { transform: translate(-3px, -2px); } 60% { transform: translate(3px, 2px); } 80% { transform: translate(3px, -2px); } 100% { transform: translate(0); } }

.theme-player { position: fixed; bottom: 20px; right: 20px; z-index: 10000; background: rgba(0, 0, 0, 0.8); border: 1px solid var(--cyan); padding: 10px; border-radius: 5px; }
#mini-play-btn { background: transparent; color: var(--cyan); border: none; font-size: 1.5rem; cursor: pointer; }

#fullscreen-player:fullscreen { background: var(--black); padding: 50px; display: flex; flex-direction: column; justify-content: center; }