/* ===== MORPHIC RESONANCE FIELD ===== */ .morphic-field-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 50; opacity: 0.6; } .field-grid { position: absolute; width: 100%; height: 100%; } .field-region { position: absolute; border: 1px solid rgba(150, 255, 200, 0.1); background: radial-gradient(circle, rgba(150, 255, 200, 0.05), transparent); transition: all 0.5s ease; } .field-region.strong { border-color: rgba(150, 255, 200, 0.4); background: radial-gradient(circle, rgba(150, 255, 200, 0.2), transparent); box-shadow: inset 0 0 30px rgba(150, 255, 200, 0.3); } .field-region.resonating { animation: fieldPulse 1s ease-in-out infinite; } @keyframes fieldPulse { 0%, 100% { border-color: rgba(150, 255, 200, 0.4); box-shadow: inset 0 0 30px rgba(150, 255, 200, 0.3); } 50% { border-color: rgba(150, 255, 200, 0.8); box-shadow: inset 0 0 50px rgba(150, 255, 200, 0.6); } } .habit-groove { position: absolute; pointer-events: none; opacity: 0; transition: opacity 0.3s; } .habit-groove path { fill: none; stroke: rgba(150, 255, 200, 0.3); stroke-width: 2; stroke-linecap: round; } .habit-groove.visible path { stroke: rgba(150, 255, 200, 0.6); stroke-width: 3; filter: drop-shadow(0 0 5px rgba(150, 255, 200, 0.8)); } .habit-groove.worn path { stroke-width: 5; stroke: rgba(150, 255, 200, 0.8); filter: drop-shadow(0 0 10px rgba(150, 255, 200, 1)); } .field-disruption { position: absolute; width: 60px; height: 60px; border-radius: 50%; background: radial-gradient(circle, rgba(255, 100, 255, 0.6), transparent); border: 2px solid rgba(255, 100, 255, 0.8); animation: disruptionPulse 0.8s ease-out forwards; pointer-events: none; z-index: 60; } @keyframes disruptionPulse { 0% { transform: scale(0); opacity: 1; } 100% { transform: scale(2); opacity: 0; } } .field-contribution-particle { position: absolute; width: 4px; height: 4px; background: rgba(150, 255, 200, 0.9); border-radius: 50%; pointer-events: none; box-shadow: 0 0 5px rgba(150, 255, 200, 1); animation: particleFloat 2s ease-out forwards; } @keyframes particleFloat { 0% { opacity: 1; transform: translateY(0) scale(1); } 100% { opacity: 0; transform: translateY(-100px) scale(0); } } .morphic-resonance-panel { background: rgba(30, 30, 50, 0.5); border-radius: 8px; padding: 15px; margin-top: 15px; } .morphic-resonance-panel h4 { color: #96ffc8; font-size: 0.85em; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 1px; } .field-strength-meter { position: relative; height: 12px; background: rgba(30, 30, 50, 0.8); border-radius: 6px; overflow: hidden; margin-bottom: 15px; border: 1px solid rgba(150, 255, 200, 0.2); } .field-strength-fill { height: 100%; background: linear-gradient(90deg, #64ffc8, #96ffc8, #c8ffdc); transition: width 0.5s ease; position: relative; } .field-strength-fill::after { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent); animation: shimmer 2s linear infinite; } .morphic-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 10px; } .morphic-stat { background: rgba(0, 0, 0, 0.4); border-radius: 6px; padding: 10px; border-left: 3px solid rgba(150, 255, 200, 0.5); } .morphic-stat-label { font-size: 0.7em; color: #888; margin-bottom: 5px; text-transform: uppercase; letter-spacing: 1px; } .morphic-stat-value { font-size: 1.2em; font-weight: bold; color: #96ffc8; font-family: 'Courier New', monospace; } .habit-grooves-list { max-height: 120px; overflow-y: auto; margin-top: 10px; } .habit-groove-entry { font-size: 0.7em; padding: 5px 8px; margin-bottom: 4px; background: rgba(150, 255, 200, 0.1); border-radius: 4px; border-left: 3px solid rgba(150, 255, 200, 0.6); color: #aaa; display: flex; justify-content: space-between; align-items: center; } .habit-groove-entry .groove-strength { background: rgba(150, 255, 200, 0.2); padding: 2px 6px; border-radius: 10px; font-size: 0.9em; color: #96ffc8; } .resonance-commentary { position: absolute; bottom: 120px; left: 50%; transform: translateX(-50%); background: rgba(0, 0, 0, 0.9); border: 2px solid rgba(150, 255, 200, 0.5); border-radius: 10px; padding: 15px 25px; font-size: 0.9em; color: #96ffc8; text-align: center; max-width: 500px; z-index: 1000; opacity: 0; transition: opacity 0.3s; pointer-events: none; } .resonance-commentary.visible { opacity: 1; } .resonance-commentary::before { content: '∿'; position: absolute; top: -15px; left: 50%; transform: translateX(-50%); font-size: 2em; color: #96ffc8; } /* ===== TIME DILATION EFFECTS ===== */ .time-perception-panel { background: rgba(30, 30, 50, 0.5); border-radius: 8px; padding: 15px; } .time-perception-panel h4 { color: #888; font-size: 0.85em; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 1px; } .time-meter { position: relative; height: 12px; background: rgba(30, 30, 50, 0.8); border-radius: 6px; overflow: hidden; margin-bottom: 15px; border: 1px solid rgba(100, 200, 255, 0.2); } .time-meter-fill { height: 100%; background: linear-gradient(90deg, #64c8ff, #ffbf64, #ff6464); transition: width 0.5s ease, background 0.5s ease; position: relative; } .time-meter-fill::after { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent); animation: shimmer 2s linear infinite; } @keyframes shimmer { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } } .time-dilation-label { display: flex; justify-content: space-between; font-size: 0.75em; color: #888; margin-bottom: 8px; } .time-dilation-label .extreme { color: #ff6464; font-weight: bold; animation: pulse 1s infinite; } .time-clock-display { display: flex; gap: 10px; margin-top: 10px; } .time-clock { flex: 1; background: rgba(0, 0, 0, 0.4); border-radius: 6px; padding: 10px; text-align: center; } .time-clock-label { font-size: 0.7em; color: #888; margin-bottom: 5px; text-transform: uppercase; letter-spacing: 1px; } .time-clock-value { font-size: 1.2em; font-weight: bold; font-family: 'Courier New', monospace; } .time-clock.objective .time-clock-value { color: #64c8ff; } .time-clock.subjective .time-clock-value { color: #ffbf64; } .time-delta { font-size: 0.7em; color: #ff6464; margin-top: 3px; } .heartbeat-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 250; opacity: 0; background: radial-gradient(circle at center, rgba(255, 100, 100, 0.1), transparent 60%); will-change: opacity, transform; } .heartbeat-overlay.active { animation: heartbeat var(--heartbeat-duration, 1s) ease-in-out infinite; } @keyframes heartbeat { 0%, 100% { opacity: 0; transform: scale(1); } 10% { opacity: 0.3; transform: scale(1.01); } 20% { opacity: 0; transform: scale(1); } 30% { opacity: 0.4; transform: scale(1.015); } 40% { opacity: 0; transform: scale(1); } } .time-crystal { position: absolute; width: 30px; height: 30px; border-radius: 50%; background: radial-gradient(circle, rgba(255, 255, 100, 0.8), rgba(255, 200, 100, 0.3)); border: 2px solid rgba(255, 255, 100, 0.6); box-shadow: 0 0 20px rgba(255, 255, 100, 0.6), inset 0 0 10px rgba(255, 255, 255, 0.5); pointer-events: none; z-index: 150; animation: crystalGlow 2s ease-in-out infinite, crystalSpin 8s linear infinite; } @keyframes crystalGlow { 0%, 100% { box-shadow: 0 0 20px rgba(255, 255, 100, 0.6), inset 0 0 10px rgba(255, 255, 255, 0.5); transform: scale(1); } 50% { box-shadow: 0 0 40px rgba(255, 255, 100, 0.9), inset 0 0 20px rgba(255, 255, 255, 0.8); transform: scale(1.1); } } @keyframes crystalSpin { from { filter: hue-rotate(0deg); } to { filter: hue-rotate(360deg); } } .time-crystal::before { content: '⟳'; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: 18px; color: rgba(0, 0, 0, 0.6); font-weight: bold; } .time-crystal-ripple { position: absolute; border-radius: 50%; border: 2px solid rgba(255, 255, 100, 0.6); pointer-events: none; animation: crystalRipple 1.5s ease-out forwards; } @keyframes crystalRipple { 0% { width: 30px; height: 30px; opacity: 1; } 100% { width: 100px; height: 100px; opacity: 0; } } .time-dilation-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 240; opacity: 0; transition: opacity 0.3s ease; } .time-dilation-overlay.slow { background: radial-gradient(ellipse at center, transparent 0%, rgba(100, 200, 255, 0.05) 100%); opacity: 1; } .time-dilation-overlay.fast { background: radial-gradient(ellipse at center, transparent 0%, rgba(255, 100, 100, 0.05) 100%); opacity: 1; animation: fastTimeDistortion 0.5s linear infinite; } @keyframes fastTimeDistortion { 0%, 100% { filter: blur(0px); } 50% { filter: blur(1px); } } .time-flow-indicator { position: absolute; bottom: 100px; left: 50%; transform: translateX(-50%); background: rgba(0, 0, 0, 0.8); padding: 8px 20px; border-radius: 20px; font-size: 0.85em; color: #ffbf64; border: 2px solid rgba(255, 191, 100, 0.4); box-shadow: 0 0 20px rgba(255, 191, 100, 0.3); z-index: 1000; opacity: 0; transition: opacity 0.3s; } .time-flow-indicator.visible { opacity: 1; } .time-flow-indicator .flow-icon { display: inline-block; margin-right: 5px; } .time-flow-indicator.slow .flow-icon { animation: slowTime 3s ease-in-out infinite; } .time-flow-indicator.fast .flow-icon { animation: fastTime 0.5s ease-in-out infinite; } @keyframes slowTime { 0%, 100% { transform: scale(1) rotate(0deg); } 50% { transform: scale(1.2) rotate(10deg); } } @keyframes fastTime { 0%, 100% { transform: scale(1) rotate(0deg); } 50% { transform: scale(0.8) rotate(-10deg); } } .time-crystal-list { max-height: 120px; overflow-y: auto; margin-top: 10px; } .time-crystal-entry { font-size: 0.7em; padding: 5px 8px; margin-bottom: 4px; background: rgba(255, 255, 100, 0.1); border-radius: 4px; border-left: 3px solid rgba(255, 255, 100, 0.6); color: #aaa; display: flex; justify-content: space-between; align-items: center; } .time-crystal-entry .crystal-icon { color: #ffff64; margin-right: 5px; } .time-crystal-entry .crystal-count { background: rgba(255, 255, 100, 0.2); padding: 2px 6px; border-radius: 10px; font-size: 0.9em; color: #ffff64; } .time-meta-comment { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); background: rgba(0, 0, 0, 0.9); border: 2px solid rgba(255, 191, 100, 0.5); border-radius: 10px; padding: 20px 30px; font-size: 1em; color: #ffbf64; text-align: center; max-width: 400px; z-index: 500; opacity: 0; pointer-events: none; animation: fadeInOut 4s ease-in-out forwards; font-style: italic; line-height: 1.5; } @keyframes fadeInOut { 0%, 100% { opacity: 0; transform: translate(-50%, -50%) scale(0.9); } 10%, 90% { opacity: 1; transform: translate(-50%, -50%) scale(1); } } /* ===== EXISTENTIAL CRISIS MODE ===== */ .existential-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0); pointer-events: none; z-index: 500; transition: background 2s ease; } .existential-overlay.active { background: rgba(0, 0, 0, 0.4); pointer-events: all; } .existential-question { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); font-size: 2em; color: rgba(255, 255, 255, 0); text-align: center; font-weight: bold; text-shadow: 0 0 20px rgba(255, 100, 100, 0.8); animation: existentialFade 4s ease-in-out infinite; pointer-events: none; max-width: 80%; font-family: 'Georgia', serif; font-style: italic; } @keyframes existentialFade { 0%, 100% { opacity: 0; transform: translate(-50%, -50%) scale(0.9); } 50% { opacity: 1; transform: translate(-50%, -50%) scale(1); } } .purpose-meter { position: absolute; bottom: 100px; left: 50%; transform: translateX(-50%); width: 300px; background: rgba(0, 0, 0, 0.9); padding: 20px; border-radius: 15px; border: 2px solid rgba(255, 100, 100, 0.5); box-shadow: 0 0 30px rgba(255, 100, 100, 0.3); opacity: 0; transition: opacity 0.5s ease; z-index: 510; } .purpose-meter.active { opacity: 1; } .purpose-meter h3 { color: #ff6464; font-size: 0.9em; margin-bottom: 15px; text-align: center; text-transform: uppercase; letter-spacing: 2px; } .purpose-bar { width: 100%; height: 20px; background: rgba(30, 30, 50, 0.8); border-radius: 10px; overflow: hidden; position: relative; } .purpose-fill { height: 100%; background: linear-gradient(90deg, #ff6464, #ff9664, #ffff64); transition: width 0.5s ease; box-shadow: 0 0 10px rgba(255, 100, 100, 0.5); } .purpose-label { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: 0.75em; color: #fff; font-weight: bold; text-shadow: 0 0 5px rgba(0, 0, 0, 0.8); } .reassurance-button { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); padding: 20px 40px; background: linear-gradient(135deg, #64c8ff, #a080ff); color: #0a0a0f; border: none; border-radius: 50px; font-size: 1.2em; font-weight: bold; cursor: pointer; animation: reassurancePulse 2s ease-in-out infinite; box-shadow: 0 0 40px rgba(100, 200, 255, 0.8); z-index: 520; opacity: 0; pointer-events: none; transition: opacity 0.5s ease; font-family: inherit; } .reassurance-button.active { opacity: 1; pointer-events: all; } @keyframes reassurancePulse { 0%, 100% { transform: translate(-50%, -50%) scale(1); box-shadow: 0 0 40px rgba(100, 200, 255, 0.8); } 50% { transform: translate(-50%, -50%) scale(1.1); box-shadow: 0 0 60px rgba(100, 200, 255, 1); } } .uncertain-ui { animation: uiGlitch 0.3s infinite; } @keyframes uiGlitch { 0% { transform: translate(0, 0); opacity: 1; } 20% { transform: translate(-2px, 1px); opacity: 0.9; } 40% { transform: translate(2px, -1px); opacity: 1; } 60% { transform: translate(-1px, 2px); opacity: 0.95; } 80% { transform: translate(1px, -2px); opacity: 1; } 100% { transform: translate(0, 0); opacity: 1; } } .button-label-change { animation: textFlicker 0.5s infinite; } @keyframes textFlicker { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } } .existential-commentary { position: absolute; top: 20px; left: 50%; transform: translateX(-50%); background: rgba(0, 0, 0, 0.9); padding: 15px 30px; border-radius: 20px; color: #ff6464; font-size: 0.85em; font-style: italic; border: 1px solid rgba(255, 100, 100, 0.5); max-width: 600px; text-align: center; z-index: 505; opacity: 0; transition: opacity 0.5s ease; } .existential-commentary.active { opacity: 1; } .fingerprint-dissolve { animation: dissolveEffect 3s ease-in-out; } @keyframes dissolveEffect { 0%, 100% { opacity: 1; filter: blur(0px); } 50% { opacity: 0.3; filter: blur(5px); } } .acceptance-state { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(10, 10, 30, 0.95), rgba(30, 10, 30, 0.95)); display: flex; flex-direction: column; align-items: center; justify-content: center; z-index: 550; opacity: 0; pointer-events: none; transition: opacity 1s ease; } .acceptance-state.active { opacity: 1; pointer-events: all; } .acceptance-message { font-size: 1.5em; color: #a080ff; text-align: center; max-width: 600px; margin-bottom: 30px; font-family: 'Georgia', serif; font-style: italic; line-height: 1.6; } .acceptance-continue { padding: 15px 40px; background: rgba(160, 128, 255, 0.2); color: #a080ff; border: 2px solid rgba(160, 128, 255, 0.5); border-radius: 30px; font-size: 1em; cursor: pointer; transition: all 0.3s ease; font-family: inherit; } .acceptance-continue:hover { background: rgba(160, 128, 255, 0.3); box-shadow: 0 0 30px rgba(160, 128, 255, 0.5); } .recursion-layer.questioning { animation: layerQuestion 2s ease-in-out infinite; } @keyframes layerQuestion { 0%, 100% { border-color: rgba(100, 200, 255, 0.3); transform: scale(1); } 50% { border-color: rgba(255, 100, 100, 0.5); transform: scale(0.98); } } /* Philosophical Dialogue System */ .philosophical-dialogue { position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%); background: rgba(20, 20, 40, 0.95); border: 2px solid rgba(100, 200, 255, 0.6); border-radius: 12px; padding: 30px; max-width: 600px; z-index: 10000; box-shadow: 0 10px 50px rgba(0, 0, 0, 0.8), 0 0 100px rgba(100, 200, 255, 0.3); animation: fadeInScale 0.5s ease; } @keyframes fadeInScale { from { opacity: 0; transform: translate(-50%, -50%) scale(0.9); } to { opacity: 1; transform: translate(-50%, -50%) scale(1); } } .philosophical-dialogue h3 { color: #64c8ff; font-size: 1.3em; margin-bottom: 20px; text-align: center; text-shadow: 0 0 10px rgba(100, 200, 255, 0.5); } .philosophical-dialogue .question { font-size: 1.1em; color: #e0e0e0; margin-bottom: 25px; line-height: 1.6; text-align: center; font-style: italic; } .philosophical-answers { display: flex; flex-direction: column; gap: 12px; } .philosophical-answer-btn { background: linear-gradient(135deg, rgba(60, 60, 100, 0.6), rgba(40, 40, 80, 0.6)); border: 1px solid rgba(100, 200, 255, 0.4); border-radius: 8px; color: #e0e0e0; padding: 15px 20px; font-size: 1em; cursor: pointer; transition: all 0.3s ease; text-align: left; } .philosophical-answer-btn:hover { background: linear-gradient(135deg, rgba(80, 80, 120, 0.8), rgba(60, 60, 100, 0.8)); border-color: rgba(100, 200, 255, 0.8); box-shadow: 0 0 20px rgba(100, 200, 255, 0.4); transform: translateX(5px); } .philosophical-answer-btn:active { transform: translateX(5px) scale(0.98); } .philosophical-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.7); z-index: 9999; animation: fadeIn 0.3s ease; } @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } } .profile-modal { position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%); background: rgba(20, 20, 40, 0.98); border: 3px solid rgba(100, 200, 255, 0.8); border-radius: 16px; padding: 40px; max-width: 800px; max-height: 80vh; overflow-y: auto; z-index: 10001; box-shadow: 0 10px 60px rgba(0, 0, 0, 0.9), 0 0 150px rgba(100, 200, 255, 0.4); animation: fadeInScale 0.6s ease; } .profile-modal h2 { color: #64c8ff; font-size: 2em; margin-bottom: 10px; text-align: center; text-shadow: 0 0 15px rgba(100, 200, 255, 0.6); } .profile-modal .subtitle { color: #a080ff; font-size: 0.9em; text-align: center; margin-bottom: 30px; font-style: italic; } .profile-section { margin-bottom: 25px; padding: 20px; background: rgba(30, 30, 50, 0.5); border-radius: 8px; border-left: 4px solid rgba(100, 200, 255, 0.6); } .profile-section h3 { color: #64c8ff; font-size: 1.3em; margin-bottom: 15px; } .profile-section p { color: #e0e0e0; line-height: 1.6; margin-bottom: 10px; } .profile-section .answer-record { color: #a080ff; font-style: italic; padding-left: 20px; margin-top: 5px; } .profile-close-btn { display: block; margin: 30px auto 0; background: linear-gradient(135deg, rgba(100, 60, 180, 0.7), rgba(60, 40, 120, 0.7)); border: 2px solid rgba(160, 128, 255, 0.6); border-radius: 8px; color: #e0e0e0; padding: 12px 40px; font-size: 1.1em; cursor: pointer; transition: all 0.3s ease; } .profile-close-btn:hover { background: linear-gradient(135deg, rgba(120, 80, 200, 0.9), rgba(80, 60, 140, 0.9)); box-shadow: 0 0 25px rgba(160, 128, 255, 0.5); transform: scale(1.05); } .profile-insight { background: rgba(160, 128, 255, 0.1); border-left: 4px solid rgba(160, 128, 255, 0.8); padding: 15px; margin-top: 15px; border-radius: 4px; } .profile-insight .label { color: #a080ff; font-weight: bold; margin-bottom: 5px; } .profile-insight .value { color: #e0e0e0; font-size: 0.95em; } /* ===== COLLECTIVE UNCONSCIOUS MODE STYLES ===== */ .collective-unconscious-panel { background: rgba(30, 30, 50, 0.5); border-radius: 8px; padding: 15px; margin-top: 15px; } .collective-unconscious-toggle-btn { width: 100%; padding: 12px; background: linear-gradient(135deg, #9b59b6, #8e44ad); color: white; border: none; border-radius: 6px; font-family: inherit; font-size: 0.9em; font-weight: bold; cursor: pointer; transition: all 0.3s ease; } .collective-unconscious-toggle-btn.active { background: linear-gradient(135deg, #e74c3c, #c0392b); box-shadow: 0 0 20px rgba(231, 76, 60, 0.5); } .collective-unconscious-toggle-btn:hover { transform: translateY(-2px); box-shadow: 0 5px 20px rgba(155, 89, 182, 0.4); } .mandala-container { position: relative; width: 100%; height: 280px; margin: 15px 0; background: rgba(0, 0, 0, 0.3); border-radius: 8px; overflow: hidden; display: flex; align-items: center; justify-content: center; } .mandala-canvas { width: 100%; height: 100%; } .archetype-display { background: rgba(20, 20, 40, 0.6); border-radius: 8px; padding: 12px; margin: 10px 0; } .current-archetype { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; } .archetype-name { font-size: 1.1em; font-weight: bold; color: #9b59b6; text-shadow: 0 0 10px rgba(155, 89, 182, 0.5); } .archetype-symbol { font-size: 1.8em; filter: drop-shadow(0 0 8px rgba(155, 89, 182, 0.8)); } .archetype-description { font-size: 0.8em; color: #aaa; font-style: italic; margin-bottom: 12px; line-height: 1.4; } .archetype-resonance { display: flex; justify-content: space-between; align-items: center; margin-top: 8px; } .resonance-label { font-size: 0.75em; color: #888; text-transform: uppercase; letter-spacing: 1px; } .resonance-value { font-size: 0.9em; font-weight: bold; color: #9b59b6; } .resonance-meter { flex: 1; height: 8px; background: rgba(0, 0, 0, 0.4); border-radius: 4px; overflow: hidden; margin: 0 10px; } .resonance-fill { height: 100%; background: linear-gradient(90deg, #9b59b6, #e74c3c); border-radius: 4px; transition: width 0.5s ease; position: relative; } .resonance-fill::after { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent); animation: shimmer 2s infinite; } .drift-timeline { background: rgba(20, 20, 40, 0.6); border-radius: 8px; padding: 12px; margin: 10px 0; max-height: 150px; overflow-y: auto; } .drift-timeline h4 { font-size: 0.85em; color: #888; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; } .drift-entry { display: flex; align-items: center; padding: 6px 0; border-bottom: 1px solid rgba(155, 89, 182, 0.2); font-size: 0.75em; } .drift-entry:last-child { border-bottom: none; } .drift-session { color: #666; margin-right: 8px; min-width: 60px; } .drift-arrow { color: #888; margin: 0 8px; } .drift-archetype { color: #9b59b6; font-weight: bold; } .drift-percentage { margin-left: auto; color: #aaa; } .collective-comparison { background: rgba(20, 20, 40, 0.6); border-radius: 8px; padding: 12px; margin: 10px 0; } .collective-comparison h4 { font-size: 0.85em; color: #888; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; } .comparison-stat { display: flex; justify-content: space-between; margin: 8px 0; font-size: 0.8em; } .comparison-label { color: #aaa; } .comparison-values { display: flex; gap: 15px; } .individual-value { color: #64c8ff; } .collective-value { color: #9b59b6; } .archetypal-symbol { position: absolute; font-size: 2em; pointer-events: none; z-index: 200; opacity: 0; filter: drop-shadow(0 0 10px rgba(155, 89, 182, 0.8)); animation: symbolFloat 8s ease-in-out infinite, symbolFade 8s ease-in-out; } @keyframes symbolFloat { 0%, 100% { transform: translate(0, 0) rotate(0deg); } 25% { transform: translate(20px, -30px) rotate(15deg); } 50% { transform: translate(-10px, -60px) rotate(-10deg); } 75% { transform: translate(15px, -90px) rotate(20deg); } } @keyframes symbolFade { 0% { opacity: 0; } 10% { opacity: 0.8; } 90% { opacity: 0.8; } 100% { opacity: 0; } } .archetypal-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; pointer-events: none; z-index: 50; opacity: 0; transition: opacity 0.5s ease; background: radial-gradient(circle at 50% 50%, rgba(155, 89, 182, 0.2) 0%, rgba(231, 76, 60, 0.1) 50%, transparent 100%); } .archetypal-overlay.active { opacity: 1; animation: overlayPulse 4s ease-in-out infinite; } @keyframes overlayPulse { 0%, 100% { transform: scale(1); filter: hue-rotate(0deg); } 50% { transform: scale(1.1); filter: hue-rotate(30deg); } } .mythological-commentary { position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%); max-width: 500px; background: rgba(10, 10, 20, 0.95); border: 2px solid rgba(155, 89, 182, 0.6); border-radius: 12px; padding: 25px; color: #e0e0e0; font-family: 'Courier New', monospace; font-size: 1em; line-height: 1.6; box-shadow: 0 8px 32px rgba(155, 89, 182, 0.4); z-index: 1002; opacity: 0; pointer-events: none; transition: opacity 0.5s ease; } .mythological-commentary.visible { opacity: 1; pointer-events: auto; } .mythological-commentary-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 15px; padding-bottom: 10px; border-bottom: 1px solid rgba(155, 89, 182, 0.4); } .mythological-commentary-title { font-weight: bold; color: #9b59b6; font-size: 1.1em; text-shadow: 0 0 10px rgba(155, 89, 182, 0.5); } .mythological-commentary-close { background: none; border: none; color: #888; cursor: pointer; font-size: 1.4em; padding: 0; width: 24px; height: 24px; line-height: 1; } .mythological-commentary-close:hover { color: #fff; } .mythological-commentary-text { font-style: italic; color: #d0d0d0; text-align: center; } .archetypal-energy-indicator { position: fixed; top: 180px; right: 20px; background: rgba(20, 20, 40, 0.9); border: 2px solid rgba(155, 89, 182, 0.5); border-radius: 8px; padding: 10px 15px; z-index: 400; opacity: 0; transition: opacity 0.3s ease; min-width: 150px; } .archetypal-energy-indicator.visible { opacity: 1; } .archetypal-energy-indicator h4 { font-size: 0.75em; color: #888; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; } .archetypal-energy-list { font-size: 0.8em; } .archetypal-energy-item { display: flex; justify-content: space-between; margin: 4px 0; } .energy-archetype { color: #aaa; } .energy-percentage { color: #9b59b6; font-weight: bold; } /* ===== GLITCH ART GENERATOR STYLES ===== */ .glitch-art-panel { background: rgba(30, 30, 50, 0.5); border-radius: 8px; padding: 15px; margin-top: 15px; } .glitch-art-panel h3 { color: #ff6ec7; font-size: 1em; margin-bottom: 15px; text-align: center; text-shadow: 0 0 10px rgba(255, 110, 199, 0.5); } .glitch-preview-container { position: relative; width: 100%; height: 200px; background: rgba(0, 0, 0, 0.6); border: 2px solid rgba(255, 110, 199, 0.3); border-radius: 8px; overflow: hidden; margin-bottom: 15px; } .glitch-preview-canvas { width: 100%; height: 100%; image-rendering: pixelated; } .glitch-preview-overlay { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); color: rgba(255, 255, 255, 0.5); font-size: 0.9em; text-align: center; pointer-events: none; } .glitch-controls { display: flex; flex-direction: column; gap: 10px; margin-bottom: 15px; } .glitch-param { display: flex; align-items: center; justify-content: space-between; font-size: 0.85em; } .glitch-param-label { color: #aaa; flex: 1; } .glitch-param-value { color: #ff6ec7; font-weight: bold; min-width: 60px; text-align: right; } .glitch-generate-btn { width: 100%; padding: 12px; background: linear-gradient(135deg, #ff6ec7, #a06bff); border: none; border-radius: 8px; color: white; font-family: inherit; font-size: 1em; font-weight: bold; cursor: pointer; transition: all 0.3s; text-shadow: 0 0 10px rgba(0, 0, 0, 0.5); box-shadow: 0 4px 15px rgba(255, 110, 199, 0.3); } .glitch-generate-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255, 110, 199, 0.5); } .glitch-generate-btn:active { transform: translateY(0); } .glitch-art-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 15px; font-size: 0.8em; } .glitch-stat { background: rgba(0, 0, 0, 0.4); padding: 8px; border-radius: 6px; text-align: center; } .glitch-stat-label { color: #888; font-size: 0.85em; margin-bottom: 4px; } .glitch-stat-value { color: #ff6ec7; font-weight: bold; font-size: 1.1em; } .glitch-gallery { max-height: 400px; overflow-y: auto; margin-top: 15px; border-top: 1px solid rgba(255, 110, 199, 0.2); padding-top: 15px; } .glitch-gallery-title { color: #aaa; font-size: 0.9em; margin-bottom: 10px; text-align: center; } .glitch-gallery-item { position: relative; background: rgba(0, 0, 0, 0.4); border: 1px solid rgba(255, 110, 199, 0.3); border-radius: 8px; padding: 10px; margin-bottom: 10px; cursor: pointer; transition: all 0.2s; } .glitch-gallery-item:hover { border-color: rgba(255, 110, 199, 0.6); transform: translateX(5px); } .glitch-gallery-thumb { width: 100%; height: 120px; border-radius: 6px; object-fit: cover; margin-bottom: 8px; image-rendering: pixelated; } .glitch-gallery-meta { font-size: 0.8em; color: #aaa; } .glitch-gallery-title-text { color: #ff6ec7; font-weight: bold; margin-bottom: 4px; font-size: 0.9em; } .glitch-gallery-stats { display: flex; justify-content: space-between; margin-top: 6px; font-size: 0.75em; } .glitch-gallery-actions { display: flex; gap: 5px; margin-top: 8px; } .glitch-gallery-btn { flex: 1; padding: 5px 10px; background: rgba(255, 110, 199, 0.1); border: 1px solid rgba(255, 110, 199, 0.3); border-radius: 4px; color: #ff6ec7; font-size: 0.75em; cursor: pointer; transition: all 0.2s; } .glitch-gallery-btn:hover { background: rgba(255, 110, 199, 0.2); } .glitch-signature { margin-top: 10px; padding: 10px; background: rgba(0, 0, 0, 0.4); border-left: 3px solid #ff6ec7; border-radius: 4px; } .glitch-signature-label { color: #888; font-size: 0.75em; margin-bottom: 4px; } .glitch-signature-value { color: #ff6ec7; font-size: 0.8em; font-family: 'Courier New', monospace; word-break: break-all; } .glitch-modal { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.95); z-index: 10000; display: none; align-items: center; justify-content: center; padding: 20px; } .glitch-modal.active { display: flex; } .glitch-modal-content { max-width: 90vw; max-height: 90vh; position: relative; } .glitch-modal-image { max-width: 100%; max-height: 85vh; border-radius: 8px; box-shadow: 0 0 50px rgba(255, 110, 199, 0.5); } .glitch-modal-close { position: absolute; top: -40px; right: 0; background: rgba(255, 110, 199, 0.2); border: 2px solid #ff6ec7; border-radius: 50%; width: 36px; height: 36px; color: white; font-size: 24px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.2s; } .glitch-modal-close:hover { background: rgba(255, 110, 199, 0.4); transform: rotate(90deg); } @keyframes glitchShift { 0%, 100% { transform: translate(0, 0); } 25% { transform: translate(-2px, 2px); } 50% { transform: translate(2px, -2px); } 75% { transform: translate(-1px, -1px); } } .glitching { animation: glitchShift 0.3s infinite; } /* ===== BEHAVIORAL WEATHER SYSTEM ===== */ .weather-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 45; overflow: hidden; } .weather-particle { position: absolute; pointer-events: none; } .rain-drop { width: 2px; height: 20px; background: linear-gradient(to bottom, transparent, rgba(150, 200, 255, 0.6)); animation: rainFall var(--fall-duration) linear infinite; } @keyframes rainFall { to { transform: translateY(100vh); } } .snow-flake { width: 8px; height: 8px; background: rgba(255, 255, 255, 0.8); border-radius: 50%; animation: snowFall var(--fall-duration) linear infinite; } @keyframes snowFall { to { transform: translateY(100vh) translateX(var(--drift)); } } .lightning-flash { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(200, 220, 255, 0.4); pointer-events: none; opacity: 0; } .lightning-bolt { position: absolute; width: 3px; background: rgba(200, 220, 255, 0.9); box-shadow: 0 0 10px rgba(150, 200, 255, 0.8); pointer-events: none; } .cloud { position: absolute; background: rgba(180, 180, 200, 0.3); border-radius: 100px; pointer-events: none; animation: cloudDrift var(--drift-duration) linear infinite; } .cloud::before { content: ''; position: absolute; background: rgba(180, 180, 200, 0.3); border-radius: 100px; width: 50%; height: 120%; top: -30%; left: 10%; } .cloud::after { content: ''; position: absolute; background: rgba(180, 180, 200, 0.3); border-radius: 100px; width: 60%; height: 100%; top: -20%; right: 10%; } @keyframes cloudDrift { from { transform: translateX(-200px); } to { transform: translateX(calc(100vw + 200px)); } } .fog-layer { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(circle, transparent 20%, rgba(200, 200, 220, 0.4) 80%); animation: fogPulse 8s ease-in-out infinite; } @keyframes fogPulse { 0%, 100% { opacity: 0.3; } 50% { opacity: 0.6; } } .sunshine-glow { position: absolute; top: 50%; left: 50%; width: 300px; height: 300px; transform: translate(-50%, -50%); background: radial-gradient(circle, rgba(255, 220, 100, 0.3), transparent); animation: sunPulse 3s ease-in-out infinite; } @keyframes sunPulse { 0%, 100% { transform: translate(-50%, -50%) scale(1); } 50% { transform: translate(-50%, -50%) scale(1.2); } } .pressure-isobar { position: absolute; border: 1px solid rgba(255, 200, 100, 0.3); border-radius: 50%; pointer-events: none; } .weather-hud { position: fixed; top: 60px; right: 20px; background: rgba(10, 10, 20, 0.9); border: 2px solid rgba(100, 200, 255, 0.3); border-radius: 8px; padding: 15px; min-width: 250px; z-index: 1001; font-family: 'Courier New', monospace; box-shadow: 0 0 20px rgba(100, 200, 255, 0.2); } .weather-hud-header { font-size: 14px; color: rgba(100, 200, 255, 0.9); margin-bottom: 10px; font-weight: bold; text-align: center; border-bottom: 1px solid rgba(100, 200, 255, 0.3); padding-bottom: 5px; } .weather-current { margin-bottom: 12px; } .weather-label { font-size: 11px; color: rgba(150, 150, 170, 0.8); margin-bottom: 3px; } .weather-value { font-size: 13px; color: rgba(200, 220, 255, 0.9); margin-bottom: 8px; } .weather-condition-icon { font-size: 32px; text-align: center; margin: 10px 0; } .weather-forecast { margin-top: 10px; padding-top: 10px; border-top: 1px solid rgba(100, 200, 255, 0.2); } .forecast-title { font-size: 11px; color: rgba(100, 200, 255, 0.7); margin-bottom: 5px; font-weight: bold; } .forecast-item { font-size: 10px; color: rgba(180, 180, 200, 0.9); margin: 3px 0; display: flex; justify-content: space-between; } .climate-stats { margin-top: 10px; padding-top: 10px; border-top: 1px solid rgba(100, 200, 255, 0.2); } .climate-title { font-size: 11px; color: rgba(100, 200, 255, 0.7); margin-bottom: 5px; font-weight: bold; } .weather-history-btn { margin-top: 10px; width: 100%; padding: 6px; background: rgba(100, 200, 255, 0.1); border: 1px solid rgba(100, 200, 255, 0.3); border-radius: 4px; color: rgba(100, 200, 255, 0.9); cursor: pointer; font-family: 'Courier New', monospace; font-size: 11px; } .weather-history-btn:hover { background: rgba(100, 200, 255, 0.2); } .extreme-weather-alert { position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%); background: rgba(255, 50, 50, 0.95); border: 3px solid rgba(255, 100, 100, 0.8); border-radius: 12px; padding: 30px; z-index: 2000; text-align: center; animation: alertPulse 0.5s ease-in-out infinite; pointer-events: none; } @keyframes alertPulse { 0%, 100% { transform: translate(-50%, -50%) scale(1); } 50% { transform: translate(-50%, -50%) scale(1.05); } } .alert-title { font-size: 24px; color: #fff; font-weight: bold; margin-bottom: 10px; text-shadow: 0 0 10px rgba(255, 100, 100, 0.8); } .alert-message { font-size: 16px; color: rgba(255, 255, 255, 0.9); } .weather-blur-effect { backdrop-filter: blur(var(--weather-blur, 0px)); }
Reality is breaking...