:root {
  --text-color: #e0e0e0;
  --accent-blue: #00f0ff;
  --accent-purple: #b026ff;
  --accent-pink: #ff0055;
  --accent-green: #00ff66;
  
  --glass-bg: rgba(20, 20, 25, 0.7);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-color);
  overflow-x: hidden;
  transition: background 1.5s ease-in-out, color 0.5s ease, filter 0.1s;
  cursor: none; margin: 0; padding: 0;
}
body.theme-intro { background: #08080c; }
body.theme-learning { background: linear-gradient(135deg, #1f1c2c, #928DAB); }
body.theme-debugging { background: linear-gradient(to bottom, #1a0525, #0a0310); }
body.theme-deadline { background: #050000; }
body.theme-pro { background: #050f15; }

/* Global Screen-Wide VFX */
.vfx-overlay {
  position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
  pointer-events: none; z-index: 10000;
  display: flex; justify-content: center; align-items: center;
}

body.css-chaos main { animation: skewChaos 2s forwards; }
@keyframes skewChaos {
  0% { transform: skewX(0) rotate(0); filter: hue-rotate(0deg); }
  20% { transform: skewX(20deg) rotate(5deg); outline: 5px solid yellow; filter: hue-rotate(90deg); }
  40% { transform: skewY(-15deg) scale(0.9); outline: 10px solid magenta; border-radius: 50%; filter: invert(0.2); }
  60% { transform: skewX(-20deg) rotate(-5deg); outline: 5px dashed lime; }
  80% { transform: scale(1.1); outline: 5px solid cyan; filter: hue-rotate(180deg); }
  100% { transform: none; outline: none; filter: none; border-radius: 0; }
}

body.flicker-screen { animation: screenFlicker 0.4s forwards; }
@keyframes screenFlicker {
  0% { filter: invert(0) brightness(1); }
  25% { filter: invert(1) brightness(2); background: #fff; }
  50% { filter: invert(0) brightness(0.5); }
  75% { filter: invert(1) brightness(1.5); }
  100% { filter: invert(0) brightness(1); }
}

h1, h2, h3, code, pre, .terminal, .code-snippet, .funny-desc { font-family: 'Fira Code', monospace; }
.z-10 { z-index: 10; } .z-0 { z-index: 0; } .relative { position: relative; }

/* Custom Cursor */
#cursor-dot { position: fixed; top: 0; left: 0; width: 8px; height: 8px; background: var(--accent-blue); border-radius: 50%; pointer-events: none; z-index: 10000; transform: translate(-50%, -50%); transition: background 0.3s, transform 0.1s; }
#cursor-follower { position: fixed; top: 0; left: 0; width: 40px; height: 40px; border: 2px solid var(--accent-purple); border-radius: 50%; pointer-events: none; z-index: 9999; transform: translate(-50%, -50%); transition: width 0.3s, height 0.3s, border-color 0.3s, background 0.3s; }
body:hover #cursor-dot, body:hover #cursor-follower { opacity: 1; }

/* Custom Loader Animation */
#loader { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background-color: #050508; z-index: 10001; display: flex; justify-content: center; align-items: center; transition: opacity 0.8s ease, visibility 0.8s ease; }
.loader-content { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
.loader-spinner { width: 50px; height: 50px; border: 4px solid var(--glass-border); border-top-color: var(--accent-purple); border-right-color: var(--accent-blue); border-radius: 50%; animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.loader-text { font-family: 'Fira Code', monospace; color: var(--accent-green); font-size: 1.2rem; }
.loader-dots::after { content: '.'; animation: typingDots 1.5s steps(4, end) infinite; }
@keyframes typingDots { 0%, 20% { content: '.'; } 40% { content: '..'; } 60% { content: '...'; } 80%, 100% { content: ''; } }

/* Cinematic Hero Scene */
.cinematic-desk { position: absolute; bottom: -50px; right: 5%; width: 400px; height: 300px; pointer-events: none; opacity: 0.8; }
.developer-silhouette { position: absolute; bottom: 0; right: -50px; width: 250px; height: 350px; background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M50 40 Q70 40 70 70 L70 100 L30 100 L30 70 Q30 40 50 40 Z" fill="black"/><circle cx="50" cy="20" r="15" fill="black"/></svg>') no-repeat bottom right; background-size: contain; z-index: 3; }
.laptop { position: absolute; bottom: 80px; left: 50px; width: 140px; height: 100px; z-index: 2; transform: perspective(600px) rotateY(-20deg) rotateX(10deg); transform-style: preserve-3d; }
.laptop-screen { width: 100%; height: 90%; background: #111; border: 4px solid #333; border-radius: 8px 8px 0 0; position: relative; overflow: hidden; }
.laptop-base { width: 120%; height: 10px; background: #555; border-radius: 0 0 10px 10px; position: absolute; bottom: -10px; left: -10%; transform: rotateX(80deg); transform-origin: top; }
.screen-glow { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(circle at center, rgba(0, 240, 255, 0.5) 0%, transparent 80%); animation: pulseGlow 3s infinite alternate; }
.code-lines { position: absolute; top: 10px; left: 10px; width: 80%; height: 80%; background: repeating-linear-gradient(to bottom, transparent, transparent 5px, var(--accent-green) 5px, var(--accent-green) 7px); opacity: 0.4; animation: scrollCode 2s linear infinite; }
.glow-source { position: absolute; bottom: 100px; left: 100px; width: 300px; height: 300px; background: radial-gradient(circle, rgba(0, 240, 255, 0.15) 0%, transparent 60%); z-index: 1; border-radius: 50%; animation: pulseGlow 3s infinite alternate; }
@keyframes pulseGlow { from { opacity: 0.5; filter: blur(5px); } to { opacity: 1; filter: blur(10px); } }
@keyframes scrollCode { from { transform: translateY(0); } to { transform: translateY(-12px); } }

/* Toast Notifications */
#toast-container { position: fixed; bottom: 6rem; right: 2rem; display: flex; flex-direction: column; gap: 1rem; z-index: 9000; pointer-events: none; }
.toast { background: var(--glass-bg); backdrop-filter: blur(10px); border-left: 4px solid var(--accent-blue); padding: 1rem 1.5rem; border-radius: 6px; color: #fff; font-family: 'Fira Code', monospace; font-size: 0.9rem; box-shadow: 0 5px 15px rgba(0,0,0,0.4); animation: slideInRight 0.4s ease-out forwards; }
@keyframes slideInRight { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

/* 3D Background Container */
#canvas-3d-background { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; z-index: -2; perspective: 1000px; pointer-events: none; overflow: hidden; }
.floating-3d-element { position: absolute; font-size: 3rem; font-family: 'Fira Code', monospace; font-weight: bold; opacity: 0.1; text-shadow: 0 0 20px currentColor; transform-style: preserve-3d; will-change: transform; }

/* FIXED UI NAV ELEMENTS OVERHAUL */
.ui-container { transition: opacity 1s ease; pointer-events: none; }

/* Fixed Top Bar */
.top-bar { 
  position: fixed; top: 1.5rem; left: 50%; transform: translateX(-50%); width: 90%; max-width: 1200px;
  background: rgba(20, 20, 25, 0.85); backdrop-filter: blur(16px);
  display: flex; justify-content: space-between; align-items: center; 
  padding: 1rem 2rem; pointer-events: auto; z-index: 1000;
  border: 1px solid var(--glass-border); border-radius: 15px; 
  box-sizing: border-box; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Bulletproof Bottom Dock Centering via Flex Wrapper */
.bottom-dock-wrapper {
  position: fixed; bottom: 2rem; left: 0; width: 100%;
  display: flex; justify-content: center; align-items: center;
  pointer-events: none; z-index: 1000;
}

.bottom-dock { 
  display: flex; align-items: center; gap: 1.5rem;
  padding: 0.5rem 1.5rem; pointer-events: auto; 
  border-radius: 50px; background: rgba(15, 15, 20, 0.85);
  box-sizing: border-box; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); border: 1px solid var(--glass-border);
}

.dev-avatar {
  position: fixed; bottom: 2rem; left: 2rem;
  display: flex; align-items: center; gap: 0.7rem;
  pointer-events: auto; z-index: 1000;
  padding: 0.5rem; border-radius: 30px; border: 1px solid var(--glass-border);
  background: rgba(15, 15, 20, 0.85);
  animation: floatAvatar 4s infinite alternate ease-in-out;
}

.dock-divider { width: 1px; height: 30px; background: var(--glass-border); }
.stress-meter-horizontal { display: flex; align-items: center; gap: 1rem; font-size: 0.8rem; font-weight: bold; font-family: 'Fira Code', monospace; }
input[type=range] { -webkit-appearance: none; appearance: none; width: 100px; height: 6px; background: rgba(255,255,255,0.1); border-radius: 3px; outline: none; }
input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 16px; height: 16px; border-radius: 50%; background: var(--accent-purple); cursor: pointer; box-shadow: 0 0 10px var(--accent-purple); }

.effects-dock { display: flex; align-items: center; gap: 0.8rem; }
.dock-title { font-size: 0.7rem; color: var(--accent-blue); letter-spacing: 1px; font-weight: bold; }
.effect-btn { background: rgba(255,255,255,0.05); color: var(--text-color); border: 1px solid var(--glass-border); padding: 0.4rem 0.8rem; border-radius: 20px; font-family: 'Fira Code', monospace; font-size: 0.75rem; cursor: pointer; transition: all 0.3s; }

/* DEV AVATAR STYLES */
@keyframes floatAvatar { from { transform: translateY(0px); } to { transform: translateY(-5px); } }
.avatar-box { width: 45px; height: 45px; background: linear-gradient(135deg, var(--accent-purple), var(--accent-blue)); border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 1.5rem; box-shadow: 0 0 15px rgba(0, 240, 255, 0.4); transition: transform 0.3s ease; }
.dev-avatar:hover .avatar-box { transform: scale(1.1) rotate(10deg); }
.avatar-msg { font-family: 'Fira Code', monospace; font-size: 0.8rem; color: var(--text-color); font-weight: bold; padding-right: 0.5rem; }

.journey-tracker { display: flex; flex-direction: column; gap: 0.5rem; width: 300px; }
.progress-bar-container { width: 100%; height: 6px; background: rgba(255,255,255,0.1); border-radius: 4px; overflow: hidden; }
.progress-bar { height: 100%; width: 0%; background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple)); transition: width 0.1s; }
.tracker-labels { display: flex; justify-content: space-between; font-size: 0.65rem; text-transform: uppercase; font-family: 'Fira Code', monospace; opacity: 0.7; }
.tracker-labels span.active { color: var(--accent-green); font-weight: bold; opacity: 1; text-shadow: 0 0 5px var(--accent-green); }
.funny-status { font-size: 0.8rem; font-style: italic; color: var(--accent-blue); }
.ui-controls { display: flex; gap: 1rem; align-items: center; }
.icon-btn { background: transparent; border: none; font-size: 1.5rem; cursor: pointer; transition: transform 0.2s; filter: grayscale(0%); }
.icon-btn.muted { filter: grayscale(100%); opacity: 0.5; }

/* Micro-interactions */
.hover-bounce:hover { transform: translateY(-3px); box-shadow: 0 5px 15px rgba(0,240,255,0.3); border-color: var(--accent-blue); }
.text-pink { color: var(--accent-pink) !important; border-color: rgba(255,0,85, 0.3); } 
.text-pink:hover { border-color: var(--accent-pink) !important; box-shadow: 0 5px 15px rgba(255,0,85,0.3); }
.letter-split span { display: inline-block; transition: transform 0.3s, color 0.3s; }
.letter-split:hover span { transform: translateY(-5px); color: var(--accent-blue); }

/* Glass & Gradients */
.glass-panel { background: var(--glass-bg); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid var(--glass-border); border-radius: 16px; box-shadow: var(--glass-shadow); }
.gradient-border { position: relative; background-clip: padding-box; border: solid 2px transparent; }
.gradient-border::before { content: ''; position: absolute; top: 0; right: 0; bottom: 0; left: 0; z-index: -1; margin: -2px; border-radius: inherit; background: linear-gradient(45deg, var(--accent-purple), var(--accent-blue)); opacity: 0.3; transition: opacity 0.5s; }
.gradient-border:hover::before { opacity: 0.8; }
.glass-btn { background: rgba(255,255,255,0.05); color: var(--text-color); border: 1px solid var(--glass-border); padding: 0.6rem 1.2rem; border-radius: 8px; font-family: 'Fira Code', monospace; font-weight: 600; cursor: pointer; transition: all 0.3s ease; }

/* Sections */
main { transition: opacity 1s ease; }
.fullscreen { min-height: 100vh; display: flex; justify-content: center; align-items: center; position: relative; overflow: hidden; padding: 7rem 2rem 7rem 2rem; box-sizing: border-box; }
.centered-content { display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; width: 100%; max-width: 1200px; z-index: 10; will-change: transform, opacity; }

/* 3D Cards */
.cards-container { display: flex; gap: 2rem; margin-top: 4rem; flex-wrap: wrap; justify-content: center; }
.hover-card { padding: 2.5rem; width: 300px; cursor: pointer; transform-style: preserve-3d; transition: transform 0.2s ease, box-shadow 0.3s ease; position: relative; overflow: hidden; display: flex; flex-direction: column; align-items: center; text-align: center; box-sizing: border-box; }
.glare { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(105deg, transparent 20%, rgba(255,255,255,0.4) 25%, transparent 30%); transform: translateX(-150%); transition: transform 0.1s; pointer-events: none; z-index: 2; }
.hover-card:hover .glare { transform: translateX(150%); transition: transform 0.5s ease-in-out; }

/* Debugging Hell - Rain Canvas */
#rain-canvas { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 1; opacity: 0.6; mix-blend-mode: screen; }

/* Deadlines & Time Warp */
.clock-icon { font-size: 4rem; margin-bottom: 1rem; }
.spinning-fast { animation: fastSpin 1s infinite linear; }
@keyframes fastSpin { to { transform: rotate(360deg); } }
.text-shake { animation: mildShake 0.1s infinite alternate; }
@keyframes mildShake { from { transform: translate(1px, 1px); } to { transform: translate(-1px, -1px); } }

/* FLAT COFFEE MACHINE REWORK */
.flat-coffee-machine {
   position: relative; width: 200px; height: 250px;
   display: flex; flex-direction: column; align-items: center; justify-content: flex-start;
   margin-bottom: 2rem;
}
.fc-top {
   width: 100%; height: 60px; background: var(--accent-purple);
   border-radius: 20px; position: relative; z-index: 5;
   display: flex; justify-content: flex-start; align-items: center; padding-left: 20px; box-sizing: border-box;
   box-shadow: inset 0 -6px rgba(0,0,0,0.15), 0 10px 20px rgba(0,0,0,0.5);
}
.fc-btn {
   width: 25px; height: 25px; border-radius: 50%; margin-right: 15px;
   box-shadow: inset 0 -3px rgba(0,0,0,0.3);
}
.fc-back {
   width: 160px; height: 140px; background: #2a2c35; position: relative; z-index: 2;
   border-left: 20px solid #dddddd; border-right: 20px solid #dddddd; box-sizing: border-box;
}
.fc-portafilter {
   position: absolute; top: 60px; left: 50%; transform: translateX(-50%);
   width: 80px; height: 30px; background: #dddddd; border-radius: 0 0 15px 15px; z-index: 4;
}
.fc-handle {
   position: absolute; top: 5px; right: -40px; width: 40px; height: 12px;
   background: #c78b53; border-radius: 0 10px 10px 0;
}
.fc-nozzle {
   position: absolute; bottom: -15px; left: 50%; transform: translateX(-50%);
   width: 20px; height: 15px; background: #888; border-radius: 0 0 5px 5px;
}
.coffee-drop-stream {
   position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
   width: 6px; height: 0; background: linear-gradient(to bottom, #4d2b18, #6d4b38);
   transition: height 0.4s ease; z-index: 3;
}
.coffee-drop-stream.pouring { height: 110px; }

.fc-cup {
   position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
   width: 70px; height: 50px; background: var(--accent-green);
   border-radius: 5px 5px 25px 25px; z-index: 4; overflow: hidden;
}
.fc-cup-handle {
   position: absolute; bottom: 50px; left: calc(50% + 15px);
   width: 30px; height: 25px; border: 6px solid var(--accent-green);
   border-radius: 0 15px 15px 0; border-left: none; z-index: 3;
}
.fc-cup-liquid.empty { height: 0%; opacity: 0; }
.fc-cup-liquid {
   position: absolute; bottom: 0; left: 0; width: 100%; height: 0%;
   background: rgba(77, 43, 24, 0.95); transition: height 0.3s ease, opacity 0.3s;
}

.fc-base {
   width: 200px; height: 40px; background: var(--accent-purple);
   border-radius: 20px; position: absolute; bottom: 0; left: 0; z-index: 5;
   display: flex; justify-content: center; align-items: flex-start;
   box-shadow: inset 0 -6px rgba(0,0,0,0.15), 0 15px 30px rgba(0,0,0,0.5);
}
.fc-tray {
   width: 80px; height: 12px; background: #222; border-radius: 0 0 10px 10px; margin-top: 5px;
}

/* Coffee Overflow Spill Animation */
.coffee-spill {
    position: absolute; bottom: 85px; left: calc(50% - 37px);
    width: 6px; height: 0px; background: rgba(77, 43, 24, 0.95);
    border-radius: 4px; animation: spillDown 0.8s forwards cubic-bezier(0.5, 0, 1, 1); z-index: 5;
}
.coffee-spill::after {
    content: ''; position: absolute; top: 0px; left: 70px;
    width: 6px; height: 0px; background: rgba(77, 43, 24, 0.95);
    border-radius: 3px; animation: spillDown 0.8s forwards cubic-bezier(0.5, 0, 1, 1) 0.1s;
}
@keyframes spillDown {
    0% { height: 0px; transform: translateY(0); opacity: 1; }
    50% { height: 35px; transform: translateY(10px); opacity: 1; }
    80% { height: 40px; transform: translateY(20px); opacity: 0.5; }
    100% { height: 45px; transform: translateY(30px); opacity: 0; }
}

/* Debugging console */
.terminal { width: 100%; max-width: 800px; margin: 3rem auto 0; text-align: left; }
.terminal-body { padding: 2rem; height: 300px; overflow-y: auto; line-height: 1.6; }
.err-msg { color: var(--accent-pink); margin: 0.5rem 0; animation: flash 0.3s; }

/* WOW Moment (Final) */
.wow-section { position: relative; }
.blackout-screen { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: #000; z-index: 50; display: flex; justify-content: center; align-items: center; transition: opacity 2s ease; }
.slow-reveal-text { font-size: 2.5rem; font-family: 'Fira Code', monospace; color: #fff; opacity: 0; transform: scale(0.9); transition: opacity 3s ease, transform 5s ease; }

/* Text & Neons */
.neon-text { font-size: clamp(2rem, 4vw, 3.5rem); color: #fff; text-shadow: 0 0 10px var(--accent-purple), 0 0 20px var(--accent-purple); margin-bottom: 1.5rem; }
.glitch-text, .glitch { font-size: clamp(3rem, 6vw, 5rem); font-weight: 800; animation: glitch 500ms infinite; }
.success-text { font-size: clamp(2.5rem, 5vw, 4rem); color: var(--accent-green); text-shadow: 0 0 20px rgba(0,255,102,0.6); margin-bottom: 1.5rem; }

@keyframes glitch { 0% { text-shadow: 0.05em 0 0 rgba(255,0,0,0.75), -0.05em -0.025em 0 rgba(0,255,0,0.75), -0.025em 0.05em 0 rgba(0,0,255,0.75); } 50% { text-shadow: 0.025em 0.05em 0 rgba(255,0,0,0.75), 0.05em 0 0 rgba(0,255,0,0.75), 0 -0.05em 0 rgba(0,0,255,0.75); } 100% { text-shadow: -0.025em 0 0 rgba(255,0,0,0.75), -0.025em -0.025em 0 rgba(0,255,0,0.75), -0.025em -0.05em 0 rgba(0,0,255,0.75); } }

/* Rest */
.jittery { animation: jitter 0.15s infinite; }
@keyframes jitter { 0% { transform: translate(1px, 1px) rotate(0deg); } 50% { transform: translate(2px, 2px) rotate(1deg); } 100% { transform: translate(1px, -2px) rotate(-1deg); } }
.panic-mode { animation: panic 1s infinite alternate; }
@keyframes panic { from { box-shadow: inset 0 0 0px rgba(255,0,0,0); } to { box-shadow: inset 0 0 100px rgba(255,0,0,0.5); } }
.err-tag { position: absolute; font-family: 'Fira Code', monospace; color: var(--accent-pink); opacity: 0.15; font-size: clamp(1.2rem, 4vw, 3rem); white-space: nowrap; }

/* Interactive Modals & Mini-Games */
.custom-modal-overlay {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.8); backdrop-filter: blur(10px);
    z-index: 10000; display: flex; justify-content: center; align-items: center;
    opacity: 0; transition: opacity 0.3s ease;
}
.custom-modal {
    background: var(--glass-bg); padding: 3rem; border-radius: 20px;
    border: 1px solid var(--accent-blue); box-shadow: 0 10px 40px rgba(0,240,255,0.2);
    text-align: center; max-width: 500px; transform: scale(0.8); transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative; overflow: hidden;
}
.custom-modal.active { transform: scale(1); }
.modal-close {
    position: absolute; top: 15px; right: 20px; cursor: pointer; color: #aaa; font-size: 2rem; transition: color 0.3s;
}
.modal-close:hover { color: var(--accent-pink); }

/* Catch the Div Game */
.runaway-div {
    width: 60px; height: 60px; background: var(--accent-purple); border-radius: 10px;
    position: absolute; cursor: pointer; transition: all 0.2s ease-out;
    box-shadow: 0 0 15px var(--accent-purple); display: flex; justify-content: center; align-items: center;
    font-size: 0.8rem; font-weight: bold; color: white;
}

/* JS Alert Spam */
.fake-js-alert {
    position: absolute; background: #fff; color: #333; padding: 1rem 2rem;
    border: 2px solid #ccc; border-top: 25px solid var(--accent-pink);
    border-radius: 5px; box-shadow: 5px 5px 15px rgba(0,0,0,0.5);
    font-family: Arial, sans-serif; cursor: pointer; animation: popIn 0.2s;
    user-select: none; z-index: 10001; min-width: 250px;
}
.fake-js-alert::before {
    content: "JavaScript Alert"; position: absolute; top: -18px; left: 10px;
    color: white; font-size: 0.75rem; font-weight: bold;
}
@keyframes popIn { from { transform: scale(0); } to { transform: scale(1); } }

/* Game Cursor Visibility Override */
body.modal-open { cursor: default; }
body.modal-open #cursor-dot, body.modal-open #cursor-follower { display: none; }

/* SVG Brackets Cursor for HTML Modal */
.cursor-brackets, .cursor-brackets * {
   cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'><text x='0' y='24' font-family='monospace' font-size='24' font-weight='900' fill='%2300f0ff'>&lt;&gt;</text></svg>") 16 12, pointer !important;
}

/* Laughing Emoji */
@keyframes tiltLaugh { 
  0% { transform: translateY(0) rotate(-15deg) scale(1); } 
  100% { transform: translateY(-10px) rotate(15deg) scale(1.2); } 
}
.laughing-emoji {
  font-size: 4rem; display: inline-block; animation: tiltLaugh 0.3s infinite alternate ease-in-out; margin-bottom: 0.5rem;
}

@media (max-width: 900px) {
  .top-bar { top: 1rem; width: 95%; padding: 0.8rem 1rem; }
  .bottom-dock-wrapper { bottom: 1rem; }
  .bottom-dock { flex-direction: column; border-radius: 15px; width: 90%; gap: 0.5rem; }
  .dock-divider { width: 100%; height: 1px; }
  .effects-dock { flex-wrap: wrap; justify-content: center; }
  .dev-avatar { bottom: 120px; } /* move above dock */
}
@media (max-width: 768px) {
  body { cursor: auto; }
  #cursor-dot, #cursor-follower { display: none; }
  .cards-container { flex-direction: column; align-items: center; }
  .journey-tracker { width: 150px; }
  .tracker-labels span { display: none; }
  .tracker-labels span.active { display: inline-block; }
  .cinematic-desk { width: 250px; right: -50px; }
  .fullscreen { padding: 6rem 1rem 12rem 1rem; }
}
