/* Workshop 3D scene overlay styles */ * { margin: 0; padding: 0; box-sizing: border-box; } body { overflow: hidden; background: #0a0a14; font-family: "Courier New", monospace; color: #e0e0e0; touch-action: none; } canvas { display: block; } #overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 10; } #status { position: absolute; top: 16px; left: 16px; font-size: 14px; opacity: 0.8; } #status .name { font-size: 18px; font-weight: bold; color: #daa520; } #status .mood { font-size: 13px; color: #aaa; margin-top: 4px; } #speech-area { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); max-width: 480px; width: 90%; text-align: center; font-size: 15px; line-height: 1.5; color: #ccc; opacity: 0; transition: opacity 0.4s ease; } #speech-area.visible { opacity: 1; } #speech-area .bubble { background: rgba(10, 10, 20, 0.85); border: 1px solid rgba(218, 165, 32, 0.3); border-radius: 8px; padding: 12px 20px; } #connection-dot { position: absolute; top: 18px; right: 16px; width: 8px; height: 8px; border-radius: 50%; background: #555; } #connection-dot.connected { background: #00b450; } /* Info button */ .info-button { position: absolute; top: 14px; right: 36px; width: 28px; height: 28px; padding: 0; background: rgba(10, 10, 20, 0.7); border: 1px solid rgba(218, 165, 32, 0.4); border-radius: 50%; color: #daa520; cursor: pointer; pointer-events: auto; transition: all 0.2s ease; display: flex; align-items: center; justify-content: center; } .info-button:hover { background: rgba(218, 165, 32, 0.15); border-color: rgba(218, 165, 32, 0.7); transform: scale(1.05); } .info-button svg { width: 16px; height: 16px; } /* About Panel */ .about-panel { position: fixed; top: 0; right: 0; width: 100%; height: 100%; z-index: 100; pointer-events: none; visibility: hidden; opacity: 0; transition: opacity 0.3s ease, visibility 0.3s ease; } .about-panel.open { pointer-events: auto; visibility: visible; opacity: 1; } .about-panel-content { position: absolute; top: 0; right: 0; width: 380px; max-width: 90%; height: 100%; background: rgba(10, 10, 20, 0.97); border-left: 1px solid rgba(218, 165, 32, 0.3); padding: 60px 24px 24px 24px; overflow-y: auto; transform: translateX(100%); transition: transform 0.3s ease; box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5); } .about-panel.open .about-panel-content { transform: translateX(0); } .about-close { position: absolute; top: 16px; right: 16px; width: 32px; height: 32px; padding: 0; background: transparent; border: 1px solid rgba(160, 160, 160, 0.3); border-radius: 50%; color: #aaa; cursor: pointer; transition: all 0.2s ease; display: flex; align-items: center; justify-content: center; } .about-close:hover { background: rgba(255, 255, 255, 0.1); border-color: rgba(218, 165, 32, 0.5); color: #daa520; } .about-close svg { width: 18px; height: 18px; } .about-panel-content h2 { font-size: 20px; color: #daa520; margin-bottom: 24px; font-weight: 600; } .about-panel-content section { margin-bottom: 24px; } .about-panel-content h3 { font-size: 14px; color: #e0e0e0; margin-bottom: 10px; font-weight: 600; } .about-panel-content p { font-size: 13px; line-height: 1.6; color: #aaa; margin-bottom: 10px; } .about-panel-content ul { list-style: none; padding: 0; margin: 0; } .about-panel-content li { font-size: 13px; line-height: 1.6; color: #aaa; margin-bottom: 8px; padding-left: 16px; position: relative; } .about-panel-content li::before { content: "•"; position: absolute; left: 0; color: #daa520; } .about-panel-content li strong { color: #ccc; } .about-footer { margin-top: 32px; padding-top: 16px; border-top: 1px solid rgba(160, 160, 160, 0.2); font-size: 12px; color: #666; text-align: center; } .about-backdrop { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.5); opacity: 0; transition: opacity 0.3s ease; } .about-panel.open .about-backdrop { opacity: 1; } /* Submit Job Button */ .submit-job-button { position: absolute; top: 14px; right: 72px; height: 28px; padding: 0 12px; background: rgba(10, 10, 20, 0.7); border: 1px solid rgba(0, 180, 80, 0.4); border-radius: 14px; color: #00b450; cursor: pointer; pointer-events: auto; transition: all 0.2s ease; display: flex; align-items: center; gap: 6px; font-family: "Courier New", monospace; font-size: 12px; } .submit-job-button:hover { background: rgba(0, 180, 80, 0.15); border-color: rgba(0, 180, 80, 0.7); transform: scale(1.05); } .submit-job-button svg { width: 14px; height: 14px; } /* Submit Job Modal */ .submit-job-modal { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 100; pointer-events: none; visibility: hidden; opacity: 0; transition: opacity 0.3s ease, visibility 0.3s ease; } .submit-job-modal.open { pointer-events: auto; visibility: visible; opacity: 1; } .submit-job-content { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0.95); width: 480px; max-width: 90%; max-height: 90vh; background: rgba(10, 10, 20, 0.98); border: 1px solid rgba(218, 165, 32, 0.3); border-radius: 12px; padding: 32px; overflow-y: auto; transition: transform 0.3s ease; box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6); } .submit-job-modal.open .submit-job-content { transform: translate(-50%, -50%) scale(1); } .submit-job-close { position: absolute; top: 16px; right: 16px; width: 32px; height: 32px; padding: 0; background: transparent; border: 1px solid rgba(160, 160, 160, 0.3); border-radius: 50%; color: #aaa; cursor: pointer; transition: all 0.2s ease; display: flex; align-items: center; justify-content: center; } .submit-job-close:hover { background: rgba(255, 255, 255, 0.1); border-color: rgba(218, 165, 32, 0.5); color: #daa520; } .submit-job-close svg { width: 18px; height: 18px; } .submit-job-content h2 { font-size: 22px; color: #daa520; margin: 0 0 8px 0; font-weight: 600; } .submit-job-subtitle { font-size: 13px; color: #888; margin: 0 0 24px 0; } /* Form Styles */ .submit-job-form { display: flex; flex-direction: column; gap: 20px; } .submit-job-form.hidden { display: none; } .form-group { display: flex; flex-direction: column; gap: 8px; } .form-group label { font-size: 13px; color: #ccc; font-weight: 500; } .form-group label .required { color: #ff4444; margin-left: 4px; } .form-group input, .form-group textarea, .form-group select { background: rgba(30, 30, 40, 0.8); border: 1px solid rgba(160, 160, 160, 0.3); border-radius: 6px; padding: 10px 12px; color: #e0e0e0; font-family: "Courier New", monospace; font-size: 14px; transition: border-color 0.2s ease, box-shadow 0.2s ease; } .form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: rgba(218, 165, 32, 0.6); box-shadow: 0 0 0 2px rgba(218, 165, 32, 0.1); } .form-group input.error, .form-group textarea.error { border-color: #ff4444; box-shadow: 0 0 0 2px rgba(255, 68, 68, 0.1); } .form-group input::placeholder, .form-group textarea::placeholder { color: #666; } .form-group textarea { resize: vertical; min-height: 100px; } .form-group select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; } .form-group select option { background: #1a1a2e; color: #e0e0e0; } /* Character Count */ .char-count { font-size: 11px; color: #666; text-align: right; margin-top: 4px; transition: color 0.2s ease; } .char-count.near-limit { color: #ffaa33; } .char-count.over-limit { color: #ff4444; font-weight: bold; } /* Validation Messages */ .validation-error { font-size: 12px; color: #ff4444; margin-top: 4px; min-height: 16px; opacity: 0; transition: opacity 0.2s ease; } .validation-error.visible { opacity: 1; } .validation-warning { font-size: 12px; color: #ffaa33; margin-top: 4px; min-height: 16px; opacity: 0; transition: opacity 0.2s ease; } .validation-warning.visible { opacity: 1; } /* Action Buttons */ .submit-job-actions { display: flex; gap: 12px; justify-content: flex-end; margin-top: 8px; } .btn-secondary { padding: 10px 20px; background: transparent; border: 1px solid rgba(160, 160, 160, 0.4); border-radius: 6px; color: #aaa; font-family: "Courier New", monospace; font-size: 14px; cursor: pointer; transition: all 0.2s ease; } .btn-secondary:hover { background: rgba(255, 255, 255, 0.05); border-color: rgba(160, 160, 160, 0.6); color: #ccc; } .btn-primary { padding: 10px 20px; background: linear-gradient(135deg, rgba(0, 180, 80, 0.8), rgba(0, 140, 60, 0.9)); border: 1px solid rgba(0, 180, 80, 0.5); border-radius: 6px; color: #fff; font-family: "Courier New", monospace; font-size: 14px; cursor: pointer; transition: all 0.2s ease; } .btn-primary:hover:not(:disabled) { background: linear-gradient(135deg, rgba(0, 200, 90, 0.9), rgba(0, 160, 70, 1)); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0, 180, 80, 0.3); } .btn-primary:disabled { background: rgba(100, 100, 100, 0.3); border-color: rgba(100, 100, 100, 0.3); color: #666; cursor: not-allowed; } /* Success State */ .submit-job-success { text-align: center; padding: 32px 16px; } .submit-job-success.hidden { display: none; } .success-icon { width: 64px; height: 64px; margin: 0 auto 20px; color: #00b450; } .success-icon svg { width: 100%; height: 100%; } .submit-job-success h3 { font-size: 20px; color: #00b450; margin: 0 0 12px 0; } .submit-job-success p { font-size: 14px; color: #888; margin: 0 0 24px 0; line-height: 1.5; } /* Backdrop */ .submit-job-backdrop { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.6); opacity: 0; transition: opacity 0.3s ease; } .submit-job-modal.open .submit-job-backdrop { opacity: 1; } /* Mobile adjustments */ @media (max-width: 480px) { .about-panel-content { width: 100%; max-width: 100%; padding: 56px 20px 20px 20px; } .info-button { right: 32px; width: 26px; height: 26px; } .info-button svg { width: 14px; height: 14px; } .submit-job-button { right: 64px; height: 26px; padding: 0 10px; font-size: 11px; } .submit-job-button svg { width: 12px; height: 12px; } .submit-job-content { width: 95%; padding: 24px 20px; } .submit-job-content h2 { font-size: 20px; } .submit-job-actions { flex-direction: column-reverse; } .btn-secondary, .btn-primary { width: 100%; } }