:root{--red-accent: #dc2626;--red-dark: #991b1b;--bg-dark: #000000;--bg-surface: #111111;--bg-surface-hover: #1a1a1a;--text-light: #ffffff;--text-muted: #9ca3af;--border-color: #333333}*{margin:0;padding:0;box-sizing:border-box}html,body{height:100dvh;background-color:var(--bg-dark);color:var(--text-light);font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,sans-serif;overflow:hidden}.app-container{position:relative;height:100dvh;padding-top:env(safe-area-inset-top);padding-left:env(safe-area-inset-left);padding-right:env(safe-area-inset-right);overflow:hidden}.video-container{position:absolute;inset:0;background-color:var(--bg-surface);overflow:hidden}#preview{width:100%;height:100%;object-fit:cover;background-color:var(--bg-dark)}.recording-indicator{position:absolute;top:16px;left:16px;display:flex;align-items:center;gap:8px;padding:8px 12px;background-color:#0009;border-radius:8px;backdrop-filter:blur(4px);-webkit-backdrop-filter:blur(4px)}.red-dot{width:12px;height:12px;background-color:var(--red-accent);border-radius:50%;animation:pulse 1s ease-in-out infinite}@keyframes pulse{0%,to{opacity:1;transform:scale(1)}50%{opacity:.5;transform:scale(.9)}}.rec-text{font-size:14px;font-weight:600;letter-spacing:.5px;color:var(--red-accent)}.controls{position:absolute;bottom:0;left:0;right:0;padding:16px;padding-bottom:calc(16px + env(safe-area-inset-bottom));background:linear-gradient(transparent,#000c);z-index:10}.status-text{text-align:center;font-size:14px;color:var(--text-muted);margin-bottom:12px;min-height:20px}.button-group{display:flex;justify-content:center;gap:12px}.btn{min-width:160px;min-height:48px;padding:12px 24px;font-size:16px;font-weight:600;border:none;border-radius:12px;cursor:pointer;transition:background-color .2s,transform .1s,opacity .2s;-webkit-tap-highlight-color:transparent}.btn:active{transform:scale(.98)}.btn:disabled{opacity:.5;cursor:not-allowed}.btn:disabled:active{transform:none}.btn-record{background-color:var(--red-accent);color:var(--text-light)}.btn-record:hover:not(:disabled){background-color:var(--red-dark)}.btn-stop{background-color:var(--text-light);color:var(--bg-dark)}.btn-stop:hover{background-color:#e5e5e5}.btn-save{background-color:#22c55e;color:var(--text-light);min-width:140px}.btn-save:hover{background-color:#16a34a}.record-button-container{position:relative;display:flex;flex-direction:column;align-items:center}#record-btn{width:80px;height:80px;min-width:80px;min-height:80px;padding:0;border-radius:50%;display:flex;align-items:center;justify-content:center;transition:transform .15s ease,background-color .2s}#record-btn.recording{background-color:var(--text-light)}.record-btn-icon{width:28px;height:28px;background-color:var(--text-light);border-radius:50%;transition:border-radius .15s ease,background-color .15s ease}#record-btn.recording .record-btn-icon{width:24px;height:24px;border-radius:4px;background-color:var(--red-accent)}#record-btn.holding{transform:scale(1.1)}.lock-indicator{position:absolute;bottom:100%;left:50%;transform:translate(-50%);display:flex;flex-direction:column;align-items:center;padding:12px 16px;margin-bottom:12px;background-color:#000c;border-radius:12px;backdrop-filter:blur(4px);-webkit-backdrop-filter:blur(4px);opacity:0;transition:opacity .2s ease;pointer-events:none}.lock-indicator.visible{opacity:1}.lock-arrow{font-size:20px;color:var(--text-light);animation:bounce-up .8s ease-in-out infinite}.lock-text{font-size:12px;color:var(--text-muted);margin-top:4px;white-space:nowrap}.lock-indicator.locked .lock-arrow{animation:none}.lock-indicator.locked .lock-text:after{content:" ✓";color:#22c55e}@keyframes bounce-up{0%,to{transform:translateY(0)}50%{transform:translateY(-6px)}}.drawer-toggle{display:flex;flex-direction:column;align-items:center;gap:4px;margin-top:16px;padding:8px 16px;background:transparent;border:none;cursor:pointer;-webkit-tap-highlight-color:transparent}.drawer-toggle-line{width:40px;height:4px;background-color:var(--text-muted);border-radius:2px;opacity:.6}.drawer-toggle-text{font-size:12px;color:var(--text-muted);text-transform:uppercase;letter-spacing:.5px}.recordings-drawer{position:absolute;bottom:0;left:0;right:0;height:70vh;background-color:var(--bg-dark);border-top-left-radius:20px;border-top-right-radius:20px;transform:translateY(100%);transition:transform .3s ease-out;z-index:100;display:flex;flex-direction:column}.recordings-drawer.open{transform:translateY(0)}.drawer-handle{display:flex;justify-content:center;padding:12px;cursor:grab;-webkit-tap-highlight-color:transparent}.drawer-handle-bar{width:40px;height:4px;background-color:var(--text-muted);border-radius:2px;opacity:.6}.drawer-content{flex:1;padding:0 16px 16px;padding-bottom:calc(16px + env(safe-area-inset-bottom));overflow-y:auto}.drawer-content h2{font-size:14px;font-weight:600;color:var(--text-muted);text-transform:uppercase;letter-spacing:.5px;margin-bottom:12px}.recordings-list{list-style:none;display:flex;flex-direction:column;gap:8px}.recording-item{padding:12px;background-color:var(--bg-surface);border-radius:8px;transition:background-color .2s}.recording-item:hover{background-color:var(--bg-surface-hover)}.recording-info{display:flex;flex-direction:column;gap:4px}.recording-filename{font-size:14px;font-weight:500;color:var(--text-light);word-break:break-all}.recording-meta{font-size:12px;color:var(--text-muted)}.no-recordings{text-align:center;font-size:14px;color:var(--text-muted);padding:32px 0}.drawer-backdrop{position:absolute;inset:0;background-color:#00000080;opacity:0;pointer-events:none;transition:opacity .3s ease;z-index:50}.drawer-backdrop.visible{opacity:1;pointer-events:auto}.hidden{display:none!important}.drawer-content::-webkit-scrollbar{width:4px}.drawer-content::-webkit-scrollbar-track{background:var(--bg-dark)}.drawer-content::-webkit-scrollbar-thumb{background:var(--border-color);border-radius:2px}.drawer-content::-webkit-scrollbar-thumb:hover{background:var(--text-muted)}.modal-overlay{position:fixed;inset:0;background:#000000f2;display:flex;align-items:center;justify-content:center;z-index:1000;padding:20px}.modal-overlay.hidden{display:none}.modal-content{background:var(--bg-dark);border-radius:16px;padding:32px 24px;max-width:380px;width:100%;border:1px solid rgba(255,255,255,.1)}.login-modal .modal-header{text-align:center;margin-bottom:32px}.app-title{font-size:24px;font-weight:600;color:var(--text-light);margin:0 0 8px}.app-subtitle{font-size:14px;color:var(--text-muted);margin:0}.login-step{display:flex;flex-direction:column;gap:16px}.login-step.hidden{display:none}.login-instruction{text-align:center;color:var(--text-muted);font-size:14px;margin:0;line-height:1.5}.login-input{background:#ffffff0d;border:1px solid rgba(255,255,255,.15);border-radius:8px;padding:14px 16px;font-size:16px;color:var(--text-light);width:100%;box-sizing:border-box;transition:border-color .2s}.login-input:focus{outline:none;border-color:var(--text-light)}.login-input::placeholder{color:var(--text-muted)}.code-input{text-align:center;font-size:24px;letter-spacing:8px;font-family:monospace}.btn-primary{background:var(--text-light);color:var(--bg-dark);border:none;border-radius:8px;padding:14px 24px;font-size:16px;font-weight:600;cursor:pointer;transition:opacity .2s}.btn-primary:hover{opacity:.9}.btn-primary:disabled{opacity:.5;cursor:not-allowed}.btn-full{width:100%}.btn-link{background:none;border:none;color:var(--text-muted);font-size:14px;cursor:pointer;padding:8px;text-decoration:underline}.btn-link:hover{color:var(--text-light)}.email-display{color:var(--text-light);font-weight:500}.loading-spinner{width:40px;height:40px;border:3px solid rgba(255,255,255,.1);border-top-color:var(--text-light);border-radius:50%;animation:spin 1s linear infinite;margin:0 auto}@keyframes spin{to{transform:rotate(360deg)}}.loading-message{text-align:center;color:var(--text-muted);font-size:14px;margin:16px 0 0}.login-error{background:#ef44441a;border:1px solid rgba(239,68,68,.3);color:#ef4444;padding:12px;border-radius:8px;font-size:14px;text-align:center;margin-top:16px}.login-error.hidden{display:none}.wallet-indicator{position:fixed;top:calc(12px + env(safe-area-inset-top));right:calc(12px + env(safe-area-inset-right));display:flex;align-items:center;gap:8px;background:#0009;-webkit-backdrop-filter:blur(8px);backdrop-filter:blur(8px);padding:8px 12px;border-radius:20px;z-index:100}.wallet-indicator.hidden{display:none}.wallet-dot{width:8px;height:8px;background:#22c55e;border-radius:50%}.wallet-address{color:var(--text-muted);font-size:12px;font-family:monospace}.drawer-footer{margin-top:24px;padding:16px 20px 20px;border-top:1px solid var(--border-color)}.drawer-footer-grid{display:grid;grid-template-columns:1fr 1fr;gap:12px}.drawer-grid-btn{display:flex;flex-direction:column;align-items:center;justify-content:center;gap:6px;padding:16px 12px;min-height:72px;background:var(--bg-surface);border:1px solid var(--border-color);border-radius:12px;cursor:pointer;transition:background-color .15s ease,border-color .15s ease;-webkit-tap-highlight-color:transparent}.drawer-grid-btn:hover{background:var(--bg-surface-hover, rgba(255, 255, 255, .1))}.drawer-grid-btn:active{background:var(--bg-surface-hover, rgba(255, 255, 255, .1));transform:scale(.98)}.drawer-grid-icon{font-size:24px;line-height:1}.drawer-grid-label{font-size:12px;font-weight:500;color:var(--text-muted);text-transform:uppercase;letter-spacing:.5px}.drawer-grid-btn--danger{border-color:#ef44444d}.drawer-grid-btn--danger:hover{background:#ef44441a;border-color:#ef444480}.drawer-grid-btn--danger .drawer-grid-label{color:#ef4444}.registration-status{padding:1rem;border:1px solid var(--border-color);border-radius:8px;margin:1rem 0;background:var(--bg-surface)}.registration-status h3{margin-top:0;margin-bottom:.5rem;font-size:1rem;color:var(--text-light)}.registration-status .loading{color:var(--text-muted)}.registration-status .status{font-weight:700;font-size:1.1rem}.registration-status .status.success{color:#4ade80}.registration-status .status.pending{color:#fbbf24}.registration-status .error{color:#ef4444}.registration-status .timestamp{font-size:.9rem;color:var(--text-muted)}.registration-status .tx-link a{color:#60a5fa}.registration-status .info{font-size:.9rem;color:var(--text-muted);margin-bottom:1rem}.registration-status .btn-primary{background:var(--red-accent);color:#fff;border:none;padding:.75rem 1.5rem;border-radius:4px;font-size:1rem;cursor:pointer;width:100%}.registration-status .btn-primary:disabled{background:#666;cursor:not-allowed}.registration-status .btn-primary:hover:not(:disabled){background:var(--red-dark)}.registration-status .btn-secondary{background:transparent;color:var(--text-light);border:1px solid var(--border-color);padding:.5rem 1rem;border-radius:4px;font-size:.9rem;cursor:pointer}.registration-status .btn-secondary:hover{background:var(--bg-surface-hover)}.encryption-test-modal{max-width:400px}.encryption-test-modal .modal-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:1.5rem}.encryption-test-modal .modal-header h2{margin:0;font-size:1.25rem;color:var(--text-light)}.modal-close{background:none;border:none;color:var(--text-muted);font-size:1.5rem;cursor:pointer;padding:0;line-height:1}.modal-close:hover{color:var(--text-light)}.test-section{margin-bottom:1.5rem;padding-bottom:1rem;border-bottom:1px solid var(--border-color)}.test-section:last-child{border-bottom:none;margin-bottom:0}.test-section h3{margin:0 0 .75rem;font-size:.85rem;color:var(--text-muted);text-transform:uppercase;letter-spacing:.05em}.text-input{width:100%;padding:.75rem;margin-bottom:.5rem;background:var(--bg-surface);border:1px solid var(--border-color);border-radius:8px;color:var(--text-light);font-size:1rem}.text-input:focus{outline:none;border-color:var(--red-accent)}.primary-btn{width:100%;padding:.75rem;background:var(--red-accent);color:#fff;border:none;border-radius:8px;font-size:1rem;cursor:pointer}.primary-btn:hover{background:var(--red-dark)}.secondary-btn{width:100%;padding:.75rem;background:var(--bg-surface);color:#fff;border:1px solid var(--border-color);border-radius:8px;font-size:.9rem;cursor:pointer;margin-top:.5rem}.secondary-btn:hover{background:var(--bg-surface-hover)}.test-result{margin-top:1rem;padding:.75rem;border-radius:8px;font-size:.9rem}.test-result.success{background:#4ade801a;border:1px solid rgba(74,222,128,.3)}.test-result.error{background:#ef44441a;border:1px solid rgba(239,68,68,.3)}.test-result.warning{background:#fbbf241a;border:1px solid rgba(251,191,36,.3)}.result-row{margin:.25rem 0}.result-row code{background:var(--bg-surface);padding:.2rem .4rem;border-radius:4px;font-size:.8rem}.group-secret-item{display:flex;align-items:center;gap:.5rem;padding:.5rem;background:var(--bg-surface);border-radius:6px;margin-bottom:.5rem}.group-secret-item strong{flex:1}.group-secret-item code{font-size:.75rem;color:var(--text-muted)}.tag{font-size:.7rem;padding:.2rem .4rem;background:var(--red-accent);color:#fff;border-radius:4px}.muted{color:var(--text-muted);font-style:italic}.status-success{color:#4ade80}.status-error{color:#f87171}.groups-modal{max-width:400px}.groups-modal .modal-header{display:flex;align-items:center;margin-bottom:1.5rem}.groups-modal .modal-header h2{flex:1;margin:0;font-size:1.25rem;color:var(--text-light)}.groups-view{display:flex;flex-direction:column;gap:1rem}.groups-list{max-height:300px;overflow-y:auto}.group-item{display:flex;align-items:center;justify-content:space-between;padding:.75rem;background:var(--bg-surface);border-radius:8px;margin-bottom:.5rem}.group-info{display:flex;flex-direction:column;gap:.25rem}.group-name{font-weight:500}.group-meta{font-size:.8rem;color:var(--text-muted)}.group-share-btn{background:none;border:none;font-size:1.2rem;cursor:pointer;padding:.5rem;border-radius:4px;transition:background .2s}.group-share-btn:hover{background:var(--bg-surface-hover)}.groups-actions{display:flex;flex-direction:column;gap:.5rem;margin-top:1rem}.groups-instruction{color:var(--text-muted);text-align:center;margin-bottom:.5rem}.empty-state{text-align:center;padding:2rem 1rem}.muted-small{font-size:.8rem;color:var(--text-muted);margin-top:.5rem}.qr-container{display:flex;justify-content:center;padding:1rem;background:#fff;border-radius:12px;margin:1rem 0}.qr-image{width:280px;height:280px}.invite-group-name{text-align:center;font-weight:600;font-size:1.1rem}.invite-hint{text-align:center;font-size:.85rem;color:var(--text-muted);margin:.5rem 0 1rem}.qr-scanner-modal{max-width:400px}.qr-scanner-modal .modal-header{display:flex;align-items:center;justify-content:space-between;margin-bottom:1.5rem}.qr-scanner-modal .modal-header h2{margin:0;font-size:1.25rem;color:var(--text-light)}.scanner-view{display:flex;flex-direction:column;align-items:center;gap:1rem}.qr-reader{width:100%;max-width:300px;border-radius:12px;overflow:hidden}.qr-reader video{border-radius:12px}.scan-status{color:var(--text-muted);text-align:center}.confirm-invite{text-align:center;padding:1rem;background:var(--bg-surface);border-radius:12px;width:100%}.confirm-label{color:var(--text-muted);margin-bottom:.5rem}.confirm-group-name{font-size:1.3rem;font-weight:600}.confirm-info{color:var(--text-muted);margin-top:1rem}.confirm-list{color:var(--text-muted);margin:.5rem 0 1rem 1.5rem;font-size:.9rem}.confirm-list li{margin-bottom:.25rem}.joining-spinner{padding:2rem}.joining-status{color:var(--text-muted)}.success-icon{font-size:3rem;margin-bottom:.5rem}.success-text{font-size:1.2rem;font-weight:500;margin-bottom:.25rem}.success-group-name{color:var(--text-muted);margin-bottom:1.5rem}.modal-back{background:none;border:none;font-size:1.5rem;color:var(--text-light);cursor:pointer;padding:.25rem .5rem;margin-right:.5rem}.modal-back:hover{opacity:.7}.btn-secondary{background:var(--bg-surface);color:var(--text-light);border:1px solid var(--border-color)}.btn-secondary:hover{background:var(--bg-surface-hover)}.error-text{color:#ef4444;font-size:.9rem;text-align:center}.upload-modal{max-width:450px}.upload-section{margin-bottom:1.25rem}.upload-label{display:block;font-weight:500;margin-bottom:.5rem;color:var(--text-light)}.upload-textarea{width:100%;padding:.75rem;background:var(--bg-surface);border:1px solid var(--border-color);border-radius:8px;color:var(--text-light);font-size:1rem;font-family:inherit;resize:vertical;min-height:100px}.upload-textarea:focus{outline:none;border-color:var(--red-accent)}.upload-textarea::placeholder{color:var(--text-muted)}.upload-groups-list{max-height:150px;overflow-y:auto}.group-checkbox{display:flex;align-items:center;gap:.75rem;padding:.75rem;background:var(--bg-surface);border-radius:8px;margin-bottom:.5rem;cursor:pointer;transition:background .2s}.group-checkbox:hover{background:var(--bg-surface-hover)}.group-check-input{width:18px;height:18px;accent-color:var(--red-accent)}.group-check-label{flex:1;font-weight:500}.group-check-meta{font-size:.8rem;color:var(--text-muted)}.upload-progress{margin-top:1rem}.progress-bar{height:8px;background:var(--bg-surface);border-radius:4px;overflow:hidden}.progress-fill{height:100%;background:var(--red-accent);border-radius:4px;transition:width .3s ease}.progress-message{text-align:center;color:var(--text-muted);font-size:.9rem;margin-top:.5rem}.upload-result{margin-top:1rem}.result-success{text-align:center;padding:1rem;background:var(--bg-surface);border-radius:12px}.result-icon{font-size:2.5rem;margin-bottom:.5rem}.result-success h3{margin:0 0 1rem;color:var(--text-light)}.result-details{text-align:left}.result-row{display:flex;justify-content:space-between;align-items:center;padding:.5rem 0;border-bottom:1px solid var(--border-color)}.result-row:last-child{border-bottom:none}.result-label{color:var(--text-muted);font-size:.85rem}.result-value{font-family:monospace;font-size:.85rem;background:var(--bg-dark);padding:.25rem .5rem;border-radius:4px}.result-link{color:var(--red-accent);text-decoration:none;font-size:.85rem}.result-link:hover{text-decoration:underline}.config-warning{display:flex;align-items:flex-start;gap:.75rem;padding:1rem;background:#eab3081a;border:1px solid rgba(234,179,8,.3);border-radius:8px;margin-bottom:1rem}.warning-icon{font-size:1.25rem}.config-warning p{margin:0;font-size:.9rem;color:var(--text-light)}.content-browser-modal{max-width:500px;max-height:80vh;display:flex;flex-direction:column}.content-browser-modal .modal-body{flex:1;overflow-y:auto;padding-top:0}.filter-tabs{display:flex;gap:.5rem;padding:.75rem 0;overflow-x:auto;border-bottom:1px solid var(--border-color);margin-bottom:1rem;-webkit-overflow-scrolling:touch}.filter-tab{background:var(--bg-surface);border:1px solid var(--border-color);border-radius:20px;padding:.5rem 1rem;font-size:.85rem;color:var(--text-light);cursor:pointer;white-space:nowrap;transition:all .2s}.filter-tab:hover{background:var(--bg-surface-hover)}.filter-tab.active{background:var(--red-accent);border-color:var(--red-accent);color:#fff}.content-loading{text-align:center;padding:3rem 1rem}.content-loading p{color:var(--text-muted);margin-top:1rem}.content-list{display:flex;flex-direction:column;gap:.75rem}.content-item{display:flex;align-items:center;gap:1rem;padding:1rem;background:var(--bg-surface);border-radius:12px;cursor:pointer;transition:background .2s}.content-item:hover{background:var(--bg-surface-hover)}.content-item-icon{font-size:1.5rem}.content-item-info{flex:1;min-width:0}.content-item-date{font-weight:500;color:var(--text-light)}.content-item-meta{display:flex;gap:.5rem;font-size:.8rem;color:var(--text-muted);margin-top:.25rem}.content-item-groups{color:var(--red-accent)}.content-item-arrow{color:var(--text-muted);font-size:1.5rem}.content-empty{text-align:center;padding:3rem 1rem}.empty-icon{font-size:3rem;margin-bottom:1rem}.content-empty p{color:var(--text-muted);margin:.5rem 0}.content-detail-modal{max-width:500px;max-height:90vh;display:flex;flex-direction:column}.content-detail-modal .modal-header{display:flex;justify-content:space-between;align-items:center}.content-detail-modal .modal-body{flex:1;overflow-y:auto}.content-preview{background:var(--bg-surface);border-radius:12px;min-height:200px;display:flex;align-items:center;justify-content:center;margin-bottom:1rem;overflow:hidden}.preview-loading{text-align:center;padding:2rem}.preview-loading p{color:var(--text-muted);margin-top:.5rem;font-size:.9rem}.chunk-progress{margin-top:1rem;width:100%;max-width:300px;margin-left:auto;margin-right:auto}.chunk-progress-bar{height:4px;background:var(--primary-color);border-radius:2px;width:0%;transition:width .3s ease}.chunk-progress-text{font-size:.875rem;color:var(--text-muted);margin-top:.5rem;text-align:center}.chunk-info{background:var(--bg-surface);border-radius:12px;padding:1rem;margin-bottom:1rem}.chunk-info-header{font-weight:500;margin-bottom:.75rem;color:var(--text-light)}.chunk-info-row{display:flex;justify-content:space-between;padding:.5rem 0;border-bottom:1px solid var(--border-color)}.chunk-info-row:last-child{border-bottom:none}.chunk-info-label{color:var(--text-muted);font-size:.9rem}.chunk-info-value{color:var(--text-light);font-size:.9rem;font-weight:500}.chunk-info-value.status-warning{color:var(--warning-color, #f59e0b)}.preview-content{width:100%}.text-preview{padding:1rem;margin:0;white-space:pre-wrap;word-break:break-word;font-family:monospace;font-size:.9rem;color:var(--text-light);max-height:300px;overflow-y:auto}.image-preview{width:100%;height:auto;display:block}.video-preview{width:100%;display:block;max-height:300px}.binary-preview{text-align:center;padding:2rem}.binary-preview p{color:var(--text-muted);margin-bottom:1rem}.preview-error{color:var(--error-color, #ef4444);padding:2rem;text-align:center}.content-metadata{background:var(--bg-surface);border-radius:12px;padding:1rem;margin-bottom:1rem}.metadata-row{display:flex;justify-content:space-between;padding:.5rem 0;border-bottom:1px solid var(--border-color)}.metadata-row:last-child{border-bottom:none}.metadata-label{color:var(--text-muted);font-size:.9rem}.metadata-value{color:var(--text-light);font-size:.9rem;text-align:right}.verification-status{background:var(--bg-surface);border-radius:12px;padding:1rem;margin-bottom:1rem}.verification-header{font-weight:500;color:var(--text-light);margin-bottom:.75rem}.verification-row{display:flex;align-items:center;gap:.75rem;padding:.5rem 0}.verify-icon{font-size:1.1rem}.verify-text{color:var(--text-muted);font-size:.9rem}.content-actions{margin-top:1rem}.spinner{width:32px;height:32px;border:3px solid var(--border-color);border-top-color:var(--red-accent);border-radius:50%;animation:spin 1s linear infinite;margin:0 auto}.attestation-section{margin-top:1.5rem;padding-top:1.25rem;border-top:1px solid var(--border-color)}.attestation-section h3{font-size:.85rem;text-transform:uppercase;letter-spacing:.05em;color:var(--text-muted);margin-bottom:1rem;font-weight:500}.attestation-count-box{background:var(--bg-surface);border:1px solid var(--border-color);border-radius:12px;padding:1.25rem;display:flex;flex-direction:column;align-items:center;text-align:center;gap:.5rem}.attestation-icon{font-size:2rem}.attestation-info{display:flex;flex-direction:column;gap:.25rem}.attestation-count{font-size:2.5rem;font-weight:700;color:var(--text-light);line-height:1}.attestation-label{font-size:.9rem;color:var(--text-muted)}.attestation-privacy-note{font-size:.75rem;color:var(--text-muted);font-style:italic;margin-top:.5rem}.already-attested{background:#22c55e26;color:#22c55e;padding:1rem;border-radius:8px;text-align:center;font-weight:500;margin-top:1rem;border:1px solid rgba(34,197,94,.3)}.attest-form{margin-top:1rem;display:flex;flex-direction:column;gap:.75rem}.attest-form label{font-size:.85rem;color:var(--text-muted)}.attest-form .form-select{padding:.625rem;border:1px solid var(--border-color);border-radius:6px;font-size:.95rem;background:var(--bg-surface);color:var(--text-light)}.btn-attest{background:var(--red-accent);color:#fff;border:none;padding:.875rem 1.5rem;border-radius:8px;font-size:1rem;font-weight:600;cursor:pointer;display:flex;align-items:center;justify-content:center;gap:.5rem;transition:transform .1s,background .2s}.btn-attest:hover{background:var(--red-dark)}.btn-attest:active{transform:scale(.98)}.btn-attest:disabled{opacity:.5;cursor:not-allowed}.attest-progress{display:flex;align-items:center;justify-content:center;gap:.75rem;padding:1rem;background:var(--bg-surface);border-radius:8px;color:var(--text-muted)}.attest-progress .spinner{width:20px;height:20px;border-width:2px}.no-attest-access{background:#eab30826;color:#eab308;padding:1rem;border-radius:8px;text-align:center;font-size:.9rem;margin-top:1rem;border:1px solid rgba(234,179,8,.3)}.recovery-modal{max-width:450px}.recovery-description{color:var(--text-muted);margin-bottom:1.25rem;font-size:.95rem}.recovery-sessions-list{display:flex;flex-direction:column;gap:.75rem;margin-bottom:1.5rem;max-height:300px;overflow-y:auto}.recovery-session{display:flex;align-items:center;justify-content:space-between;gap:1rem;padding:1rem;background:var(--bg-surface);border-radius:10px;border:1px solid var(--border-color);transition:opacity .3s}.recovery-session.processing{opacity:.5;pointer-events:none}.session-info{flex:1;min-width:0}.session-date{font-weight:500;color:var(--text-light);margin-bottom:.25rem}.session-stats{display:flex;flex-wrap:wrap;gap:.5rem;font-size:.8rem}.session-stats .stat{color:var(--text-muted)}.session-stats .stat-pending{color:#f59e0b}.session-stats .stat-failed{color:#ef4444}.session-actions{display:flex;gap:.5rem}.recovery-bulk-actions{display:flex;gap:.75rem}.recovery-bulk-actions .btn{flex:1}.btn-small{padding:.5rem .75rem;font-size:.85rem}.btn-danger{background:transparent;color:#ef4444;border:1px solid #ef4444}.btn-danger:hover{background:#ef44441a}.storage-warning{position:fixed;top:0;left:0;right:0;z-index:2000;background:linear-gradient(135deg,#f59e0b,#d97706);color:#1a1a1a;padding:.75rem 1rem;font-size:.9rem;box-shadow:0 2px 8px #0003}.storage-warning-content{display:flex;align-items:center;gap:.75rem;max-width:600px;margin:0 auto}.storage-warning-icon{font-size:1.25rem;flex-shrink:0}.storage-warning-text{flex:1;font-weight:500}.storage-warning-dismiss{background:#0003;border:none;color:#1a1a1a;width:28px;height:28px;border-radius:50%;cursor:pointer;font-size:1rem;display:flex;align-items:center;justify-content:center;flex-shrink:0;transition:background .2s}.storage-warning-dismiss:hover{background:#0000004d}.recording-screen{position:fixed;inset:0;background-color:#000;z-index:2000;display:flex;flex-direction:column}.recording-screen.hidden{display:none}#recording-preview{position:absolute;top:0;left:0;width:100%;height:100%;object-fit:cover;background-color:#000}.recording-status-bar{position:absolute;top:0;left:0;right:0;display:flex;justify-content:space-between;align-items:center;padding:12px 16px;padding-top:calc(12px + env(safe-area-inset-top));padding-left:calc(16px + env(safe-area-inset-left));padding-right:calc(16px + env(safe-area-inset-right));background:linear-gradient(to bottom,rgba(0,0,0,.6),transparent);z-index:10}.recording-status-left{display:flex;align-items:center;gap:8px}.recording-dot{width:12px;height:12px;background-color:#ef4444;border-radius:50%;animation:recording-pulse 1s ease-in-out infinite}@keyframes recording-pulse{0%,to{opacity:1;transform:scale(1)}50%{opacity:.5;transform:scale(.85)}}.recording-time{font-size:16px;font-weight:600;color:#fff;font-variant-numeric:tabular-nums}.recording-status-right{display:flex;align-items:center}.chunk-status{display:flex;align-items:center;gap:4px;padding:4px 10px;background:#0006;border-radius:12px;backdrop-filter:blur(4px);-webkit-backdrop-filter:blur(4px)}.chunk-icon{font-size:14px}.chunk-status.confirmed .chunk-icon{color:#22c55e}.chunk-status.pending .chunk-icon{color:#eab308}.chunk-status.error .chunk-icon{color:#ef4444}#chunk-count{font-size:14px;font-weight:600;color:#fff}.stop-recording-btn{position:absolute;bottom:40px;left:50%;transform:translate(-50%);margin-bottom:env(safe-area-inset-bottom);width:72px;height:72px;border-radius:50%;background-color:#ffffffe6;border:none;cursor:pointer;display:flex;align-items:center;justify-content:center;z-index:10;transition:transform .1s,background-color .2s;-webkit-tap-highlight-color:transparent}.stop-recording-btn:active{transform:translate(-50%) scale(.95);background-color:#fff}.stop-icon{width:24px;height:24px;background-color:#ef4444;border-radius:4px}.recording-summary{position:fixed;inset:0;background:#000000e6;display:flex;align-items:center;justify-content:center;z-index:2100;padding:20px}.recording-summary.hidden{display:none}.summary-content{text-align:center;max-width:320px}.summary-icon{width:64px;height:64px;border-radius:50%;background:#22c55e;color:#fff;font-size:32px;display:flex;align-items:center;justify-content:center;margin:0 auto 16px}.summary-content h3{font-size:20px;font-weight:600;color:#fff;margin:0 0 8px}.summary-content p{font-size:14px;color:var(--text-muted);margin:0 0 24px}.summary-actions{display:flex;flex-direction:column;gap:12px}.summary-actions .btn{width:100%}.recording-group-modal{max-width:400px}.recording-group-modal .modal-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:1rem}.recording-group-modal .modal-header h2{margin:0;font-size:1.25rem;color:var(--text-light)}.group-select-hint{color:var(--text-muted);font-size:.9rem;margin:0 0 1rem;line-height:1.4}.recording-group-modal .modal-footer{margin-top:1.5rem}.settings-modal{max-width:400px}.settings-modal .modal-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:1rem}.settings-modal .modal-header h2{margin:0;font-size:1.25rem;color:var(--text-light)}.settings-section{margin-bottom:1.5rem}.settings-section h3{font-size:1rem;margin:0 0 .5rem;color:var(--text-light)}.settings-hint{color:var(--text-muted);font-size:.9rem;margin:0 0 1rem;line-height:1.4}.settings-modal .modal-footer{margin-top:1.5rem}
