/* Shared styles for the M-26 social-audio effect tools + Audio Effects Studio hub.
   Extracted from slowed-reverb so every effect page looks identical. */
:root {
  --bg: #0a0a0f;
  --surface: #14141f;
  --surface2: #1e1e2e;
  --border: rgba(255,255,255,0.08);
  --border-bright: rgba(255,255,255,0.15);
  --text: #f0f0f5;
  --text-dim: #8888a0;
  --accent: #7c6fff;
  --accent-hover: #9184ff;
  --accent-glow: rgba(124,111,255,0.3);
  --accent-subtle: rgba(124,111,255,0.08);
  --green: #4caf50;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg); color: var(--text);
  min-height: 100vh; line-height: 1.6;
}
.header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 16px; border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(124,111,255,0.03) 0%, transparent 100%); backdrop-filter: blur(12px); position: sticky; top: 0; z-index: 100;
}
.header-left { display: flex; align-items: center; gap: 12px; }
.logo { font-size: 1.25rem; font-weight: 700; color: var(--text); text-decoration: none; }
.logo span { color: var(--accent); }
.header-subtitle { color: var(--text-dim); font-size: 0.85rem; border-left: 1px solid var(--border); padding-left: 12px; }
.header-nav { display: flex; gap: 20px; }
.header-nav a { color: var(--text-dim); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.header-nav a:hover { color: var(--text); }

.tools-subnav { background: var(--surface); border-bottom: 1px solid var(--border); overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.tools-subnav::-webkit-scrollbar { display: none; }
.tools-subnav-inner { display: flex; align-items: center; gap: 2px; max-width: 1080px; margin: 0 auto; padding: 6px 24px; white-space: nowrap; }
.tools-subnav a { padding: 10px 16px; font-size: 14px; font-weight: 500; color: var(--text-dim); border-radius: 8px; text-decoration: none; transition: color 0.15s, background 0.15s; position: relative; }
.tools-subnav a:hover { color: var(--text); background: var(--accent-subtle); }
.tools-subnav a.active { color: var(--text); }
.tools-subnav a.active::after { content: ''; position: absolute; left: 16px; right: 16px; bottom: -7px; height: 2px; background: var(--accent); border-radius: 2px; }
.tools-subnav .badge-new { display: inline-block; margin-left: 6px; padding: 1px 6px; font-size: 9px; font-weight: 700; background: var(--green); color: #fff; border-radius: 3px; letter-spacing: 0.5px; vertical-align: 1px; }

.container { max-width: 980px; margin: 0 auto; padding: 24px; }

.hero { text-align: center; padding: 0 0 32px; }
.hero h1 { font-size: 2.5rem; font-weight: 700; margin-bottom: 12px; letter-spacing: -1px; }
.hero h1 .accent { background: linear-gradient(135deg, var(--accent), #b599ff); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p { color: var(--text-dim); font-size: 1.05rem; max-width: 660px; margin: 0 auto; }

.drop-zone {
  background: var(--surface); border: 2px dashed var(--border-bright);
  border-radius: 16px; padding: 64px 32px; text-align: center;
  cursor: pointer; transition: border-color 0.2s, background 0.2s; margin-bottom: 24px;
}
.drop-zone:hover, .drop-zone.drag-over { border-color: var(--accent); background: var(--accent-subtle); }
.drop-icon { width: 64px; height: 64px; margin: 0 auto 16px; color: var(--accent); }
.drop-zone h2 { font-size: 1.25rem; margin-bottom: 8px; font-weight: 600; }
.drop-zone p { color: var(--text-dim); font-size: 0.9rem; }
.formats { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; }
.format-tag { padding: 3px 10px; background: var(--surface2); border-radius: 4px; font-size: 0.7rem; color: var(--text-dim); letter-spacing: 0.5px; font-weight: 500; }
#file-input { display: none; }

.privacy-notice { display: flex; align-items: center; justify-content: center; gap: 8px; margin: -8px auto 24px; padding: 10px 14px; color: var(--text-dim); font-size: 0.85rem; line-height: 1.4; max-width: 720px; text-align: center; }
.privacy-notice svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--green); }
.privacy-notice strong { color: var(--text); font-weight: 600; }
.privacy-notice a { color: var(--accent); text-decoration: none; }
.privacy-notice a:hover { text-decoration: underline; }

/* Upload-in-progress indicator (shown the instant a file is chosen) */
.fx-loading { display: none; align-items: center; justify-content: center; gap: 12px; background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 52px 32px; margin-bottom: 24px; color: var(--text-dim); font-size: 0.98rem; }
.fx-spinner { width: 22px; height: 22px; border-radius: 50%; border: 3px solid var(--surface2); border-top-color: var(--accent); animation: fx-spin 0.8s linear infinite; flex-shrink: 0; }
@keyframes fx-spin { to { transform: rotate(360deg); } }
/* Once a file is loaded, collapse + compact everything so the working tool fits
   the screen (the empty landing page stays roomy). */
body.fx-has-file .hero p { display: none; }
body.fx-has-file .container { padding-top: 14px; }
body.fx-has-file .hero { padding: 0 0 10px; }
body.fx-has-file .hero h1 { font-size: 1.35rem; }
body.fx-has-file .editor { padding: 16px 18px; margin-bottom: 16px; }
body.fx-has-file .file-info { margin-bottom: 13px; padding-bottom: 13px; }
body.fx-has-file .vibe-label { margin: 4px 0 6px !important; }
body.fx-has-file .fx-hub-grid { gap: 8px; grid-template-columns: repeat(auto-fit, minmax(118px, 1fr)); margin: 4px 0 10px; }
body.fx-has-file .fx-hub-card { padding: 9px 11px; gap: 2px; }
body.fx-has-file .fx-hub-card .fx-hub-emoji { font-size: 17px; }
body.fx-has-file .fx-hub-card .fx-hub-name { font-size: 13px; }
body.fx-has-file .fx-hub-card .fx-hub-desc { font-size: 10.5px; line-height: 1.35; }
body.fx-has-file .fx-presets { margin: 4px 0 10px; }
body.fx-has-file .fx-sliders { margin: 4px 0 8px; gap: 9px; }
body.fx-has-file .rate-meta { margin-top: 4px; }
body.fx-has-file .wave-hint { margin: 8px 0 2px; }
body.fx-has-file canvas.wave { height: 80px; }
body.fx-has-file .controls { margin-top: 14px; }
body.fx-has-file .fx-restart { margin: 12px 0 0; }
body.fx-has-file .fx-switch-help { margin-top: 5px; }

.editor { display: none; background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 24px; margin-bottom: 24px; }
.editor.active { display: block; }
.file-info { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.file-info .file-icon { width: 40px; height: 40px; background: var(--accent-subtle); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--accent); flex-shrink: 0; }
.file-info .file-name { font-weight: 600; color: var(--text); }
.file-info .file-meta { color: var(--text-dim); font-size: 0.85rem; margin-top: 2px; }
.file-info .file-remove { margin-left: auto; background: none; border: 1px solid var(--border-bright); color: var(--text-dim); padding: 6px 12px; border-radius: 8px; cursor: pointer; font-size: 0.85rem; font-family: inherit; transition: color 0.2s, border-color 0.2s; }
.file-info .file-remove:hover { color: var(--text); border-color: var(--text-dim); }

/* Preset buttons (data-preset → preset_selected analytics) */
.fx-presets { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin: 8px 0 18px; }
.fx-preset { display: inline-flex; align-items: center; gap: 7px; padding: 10px 18px; border-radius: 999px; background: var(--surface2); border: 1px solid var(--border-bright); color: var(--text); font-size: 14px; font-weight: 600; cursor: pointer; font-family: inherit; transition: all 0.15s; }
.fx-preset:hover { border-color: var(--accent); transform: translateY(-1px); }
.fx-preset.active { color: #fff; background: linear-gradient(135deg, var(--accent), var(--accent-hover)); border-color: var(--accent); box-shadow: 0 2px 12px var(--accent-glow); }
.fx-emoji { font-size: 16px; line-height: 1; }

/* Sliders */
.fx-sliders { display: flex; flex-direction: column; gap: 12px; margin: 6px 0 14px; }
.fx-slider-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.fx-slider-label { font-size: 0.85rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; min-width: 110px; }
.fx-slider-val { font-variant-numeric: tabular-nums; font-size: 1.4rem; font-weight: 700; background: linear-gradient(135deg, var(--accent), #b599ff); -webkit-background-clip: text; background-clip: text; color: transparent; min-width: 72px; }
.fx-slider { flex: 1; min-width: 200px; -webkit-appearance: none; appearance: none; height: 6px; background: var(--surface2); border-radius: 3px; outline: none; }
.fx-slider::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 22px; height: 22px; border-radius: 50%; background: var(--accent); cursor: pointer; box-shadow: 0 2px 8px var(--accent-glow); border: 3px solid var(--surface); }
.fx-slider::-moz-range-thumb { width: 22px; height: 22px; border-radius: 50%; background: var(--accent); cursor: pointer; border: 3px solid var(--surface); }

.rate-meta { display: flex; gap: 24px; justify-content: center; margin-top: 6px; font-size: 0.85rem; color: var(--text-dim); flex-wrap: wrap; }
.rate-meta strong { color: var(--text); font-weight: 600; }

.wave-hint { font-size: 0.78rem; color: var(--text-dim); text-align: center; margin: 14px 0 2px; }
canvas.wave { display: block; width: 100%; height: 100px; background: var(--bg); border-radius: 6px; margin: 4px 0 0; cursor: text; }
/* Region-selection overlay on the waveform */
.wave-selection { position: absolute; top: 0; bottom: 0; left: 0; width: 0; display: none; background: var(--accent-subtle); border-left: 2px solid var(--accent); border-right: 2px solid var(--accent); pointer-events: none; box-sizing: border-box; }
.wave-tools { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin: 10px 0 0; }
.wave-tools-info { font-size: 0.82rem; color: var(--accent); font-weight: 600; }
.wave-tools-btn { padding: 5px 12px; border-radius: 8px; background: var(--surface2); border: 1px solid var(--border-bright); color: var(--text-dim); font-size: 12px; font-weight: 600; cursor: pointer; font-family: inherit; transition: all 0.15s; }
.wave-tools-btn:hover:not(:disabled) { color: var(--accent); border-color: var(--accent); }
.wave-tools-btn:disabled { opacity: 0.45; cursor: not-allowed; }
.playhead { position: absolute; top: 0; bottom: 0; width: 2px; background: linear-gradient(180deg, transparent, var(--accent), transparent); box-shadow: 0 0 8px var(--accent-glow); pointer-events: none; display: none; left: 0; will-change: left; }
.playhead.active { display: block; }
/* Draggable restart-point marker */
.restart-marker { position: absolute; top: 0; bottom: 0; width: 2px; background: var(--green); left: 0; display: none; cursor: ew-resize; pointer-events: auto; z-index: 3; }
.restart-marker::before { content: '\27F3'; position: absolute; top: -16px; left: 50%; transform: translateX(-50%); font-size: 12px; color: #fff; background: var(--green); width: 18px; height: 18px; border-radius: 4px; display: flex; align-items: center; justify-content: center; line-height: 1; box-shadow: 0 1px 4px rgba(0,0,0,0.4); }
.btn-compact { padding: 11px 14px; }
.btn-icon { padding: 11px 13px; }
.btn-icon svg { margin: 0; }
.playhead::before { content: ''; position: absolute; top: -2px; left: -4px; width: 10px; height: 10px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 8px var(--accent-glow); }

.controls { display: flex; align-items: center; gap: 12px; margin-top: 20px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 11px 22px; border: none; border-radius: 10px; font-size: 0.95rem; font-weight: 600; cursor: pointer; transition: transform 0.15s, opacity 0.15s, background 0.15s; font-family: inherit; }
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: linear-gradient(135deg, var(--accent), var(--accent-hover)); color: #fff; box-shadow: 0 2px 12px var(--accent-glow); }
.btn-primary:hover:not(:disabled) { transform: translateY(-1px); box-shadow: 0 4px 18px var(--accent-glow); }
.btn-primary:disabled { opacity: 0.5; cursor: not-allowed; box-shadow: none; }
.btn-secondary { background: var(--surface2); color: var(--text); border: 1px solid var(--border-bright); }
.btn-secondary:hover:not(:disabled) { border-color: var(--accent); color: var(--accent); }
.status-text { margin-left: auto; color: var(--text-dim); font-size: 0.85rem; }

/* Replay-from-marker on/off switch (uses the same ⟲ icon as the waveform marker) */
.fx-restart { margin: 16px 0 0; }
.fx-switch { display: inline-flex; align-items: center; gap: 9px; cursor: pointer; user-select: none; font-size: 0.92rem; font-weight: 600; color: var(--text); }
.fx-switch input { display: none; }
.fx-switch-ico { color: var(--green); font-size: 15px; line-height: 1; }
.fx-switch-slider { position: relative; width: 38px; height: 22px; background: var(--surface2); border: 1px solid var(--border-bright); border-radius: 999px; transition: background 0.15s, border-color 0.15s; flex-shrink: 0; }
.fx-switch-slider::before { content: ''; position: absolute; top: 2px; left: 2px; width: 16px; height: 16px; border-radius: 50%; background: var(--text-dim); transition: transform 0.15s, background 0.15s; }
.fx-switch input:checked + .fx-switch-slider { background: var(--green); border-color: var(--green); }
.fx-switch input:checked + .fx-switch-slider::before { transform: translateX(16px); background: #fff; }
.fx-switch-help { font-size: 0.8rem; color: var(--text-dim); margin: 7px 0 0; max-width: 580px; line-height: 1.45; }
.fx-switch-help strong { color: var(--text); font-weight: 600; }
.fx-cross-hub { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--border); }
.fx-cross-hub .btn { text-decoration: none; }

/* How-it-works demo modal */
.fx-modal { position: fixed; inset: 0; z-index: 100000; display: none; align-items: center; justify-content: center; padding: 20px; background: rgba(0,0,0,0.66); }
.fx-modal.open { display: flex; }
.fx-modal-card { position: relative; background: var(--surface); border: 1px solid var(--border-bright); border-radius: 16px; padding: 28px; max-width: 540px; width: 100%; max-height: 88vh; overflow-y: auto; box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.fx-modal-card h2 { font-size: 1.4rem; margin-bottom: 16px; }
.fx-modal-x { position: absolute; top: 14px; right: 16px; background: none; border: none; color: var(--text-dim); font-size: 26px; line-height: 1; cursor: pointer; }
.fx-modal-x:hover { color: var(--text); }
.fx-howto-steps { padding-left: 22px; margin-bottom: 20px; }
.fx-howto-steps li { color: var(--text-dim); margin-bottom: 11px; line-height: 1.55; }
.fx-howto-steps li strong { color: var(--text); }

/* Share menu */
.fx-share-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.fx-share-opt { display: inline-flex; align-items: center; gap: 6px; padding: 11px 14px; border-radius: 10px; background: var(--surface2); border: 1px solid var(--border-bright); color: var(--text); font-size: 0.9rem; font-weight: 600; font-family: inherit; text-decoration: none; cursor: pointer; transition: all 0.15s; }
.fx-share-opt:hover { border-color: var(--accent); color: var(--accent); }

/* Cross-effect chips inside the editor */
.fx-cross { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--border); }
.fx-cross-label { font-size: 0.8rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.fx-chip { padding: 6px 14px; border-radius: 999px; background: var(--surface2); border: 1px solid var(--border-bright); color: var(--text-dim); font-size: 13px; font-weight: 600; text-decoration: none; transition: all 0.15s; }
.fx-chip:hover { color: var(--accent); border-color: var(--accent); }

.seo-section { margin: 48px 0; }
.seo-section h2 { font-size: 1.5rem; margin-bottom: 14px; letter-spacing: -0.3px; }
.seo-section h3 { font-size: 1.05rem; margin: 20px 0 6px; color: var(--text); font-weight: 600; }
.seo-section p, .seo-section li { color: var(--text-dim); margin-bottom: 10px; }
.seo-section ul { padding-left: 22px; }
.seo-section a { color: var(--accent); text-decoration: none; }

.faq h2 { font-size: 1.5rem; margin-bottom: 16px; letter-spacing: -0.3px; }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: 10px; margin-bottom: 8px; overflow: hidden; }
.faq-q { padding: 14px 18px; cursor: pointer; font-weight: 600; display: flex; justify-content: space-between; align-items: center; }
.faq-q .arrow { color: var(--text-dim); font-size: 0.75rem; transition: transform 0.2s; }
.faq-item.open .arrow { transform: rotate(180deg); }
.faq-a { padding: 0 18px 16px; color: var(--text-dim); display: none; }
.faq-item.open .faq-a { display: block; }
.faq-a a { color: var(--accent); text-decoration: none; }

.footer { text-align: center; padding: 24px; border-top: 1px solid var(--border); color: var(--text-dim); font-size: 0.8rem; }
.footer a { color: var(--accent); text-decoration: none; }

/* Hub: effect grid */
.fx-hub-carousel { position: relative; }
.fx-carousel-arrow { display: none; }
.fx-hub-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 12px; margin: 8px 0 20px; }
.fx-hub-card { display: flex; flex-direction: column; gap: 4px; padding: 16px; border-radius: 14px; background: var(--surface2); border: 1px solid var(--border-bright); color: var(--text); cursor: pointer; font-family: inherit; text-align: left; transition: all 0.15s; }
.fx-hub-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.fx-hub-card.active { background: linear-gradient(135deg, var(--accent-subtle), transparent); border-color: var(--accent); box-shadow: 0 2px 14px var(--accent-glow); }
.fx-hub-card .fx-hub-emoji { font-size: 22px; }
.fx-hub-card .fx-hub-name { font-weight: 700; font-size: 15px; }
.fx-hub-card .fx-hub-desc { font-size: 12px; color: var(--text-dim); }

/* Spoke-link bar — below the tool so dedicated-page links can't be mis-clicked
   while selecting an effect. */
.fx-spoke-bar { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin: 0 0 28px; padding: 14px 16px; background: var(--surface); border: 1px solid var(--border); border-radius: 12px; }
.fx-spoke-bar-label { font-size: 0.8rem; color: var(--text-dim); font-weight: 600; margin-right: 4px; }
.fx-spoke-bar #fx-spoke-chips { display: inline-flex; flex-wrap: wrap; gap: 8px; }

@media (max-width: 700px) {
  .header { flex-direction: column; gap: 10px; padding: 8px 12px; }
  .header-nav { gap: 14px; }
  .tools-subnav-inner { padding: 6px 12px; }
  .tools-subnav a { padding: 9px 12px; font-size: 13px; }
  .hero { padding: 0 0 20px; }
  .hero h1 { font-size: 1.6rem; }
  .drop-zone { padding: 40px 20px; }
  .fx-slider-label { min-width: 0; flex-basis: 100%; }
  canvas.wave { height: 80px; }
  .controls { gap: 8px; }
  .btn { padding: 10px 16px; font-size: 0.9rem; flex: 1 1 auto; justify-content: center; }
  .status-text { margin-left: 0; flex-basis: 100%; text-align: center; margin-top: 8px; }
}

/* ── Mobile: compact effect cards + smaller buttons ── */
@media (max-width: 640px) {
  .hero h1 { font-size: 1.5rem; }
  body.fx-has-file .hero h1 { font-size: 1.2rem; }
  .editor { padding: 14px; }
  /* Effect cards: a single-row swipe carousel (saves the most vertical space —
     a partial card peeks at the edge to signal there's more to swipe). */
  .fx-hub-grid { display: flex; overflow-x: auto; gap: 8px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding-bottom: 4px; }
  .fx-hub-grid::-webkit-scrollbar { display: none; }
  .fx-hub-card { flex: 0 0 auto; width: 100px; scroll-snap-align: start; padding: 9px 8px; align-items: center; text-align: center; gap: 3px; }
  .fx-hub-card .fx-hub-emoji { font-size: 18px; }
  .fx-hub-card .fx-hub-name { font-size: 11.5px; line-height: 1.15; }
  .fx-hub-card .fx-hub-desc { display: none; }
  /* No lift/glow in the carousel — the overflow clips it and the card looks cut
     off when tapped. Selection = border + tint only. */
  .fx-hub-card:hover, .fx-hub-card:active, .fx-hub-card.active { transform: none; box-shadow: none; }
  /* Preset pills (spoke pages) smaller */
  .fx-preset { padding: 7px 13px; font-size: 13px; }
  /* Controls: compact, no full-width stretch */
  .controls { gap: 8px; flex-wrap: wrap; }
  .controls .btn { padding: 9px 13px; font-size: 0.85rem; gap: 5px; flex: 0 0 auto; }
  .wave-tools { gap: 6px; }
  .wave-tools-btn { padding: 5px 9px; font-size: 11px; }
  /* Slider readouts sized to match the rest of the mobile type */
  .fx-slider-val { font-size: 0.98rem; min-width: 54px; }
  .fx-slider-label { font-size: 0.78rem; }
  .rate-meta { font-size: 0.78rem; }
  /* Strip desktop explainer text on mobile — keep it clean and simple */
  .vibe-label { display: none !important; }
  .wave-hint { display: none; }
  .fx-switch-help { display: none; }
  .wave-tools-info { display: none; }
  /* No arrows — the peeking half-card + snap-scroll signals there's more, and
     tapping a card auto-centres it so neighbours peek (handled in JS). */
  .fx-carousel-arrow { display: none; }
  .fx-hub-grid { margin: 4px 0 12px; }
}

/* Save/Export popup */
.fx-export-label { display: block; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-dim); margin: 4px 0 6px; font-weight: 600; }
.fx-export-select { width: 100%; padding: 11px 12px; border-radius: 10px; background: var(--surface2); border: 1px solid var(--border-bright); color: var(--text); font-family: inherit; font-weight: 600; font-size: 0.95rem; cursor: pointer; margin-bottom: 16px; }
.fx-export-actions { display: flex; flex-direction: column; gap: 8px; }
.fx-export-actions .btn { width: 100%; justify-content: center; }
#fx-export-modal .status-text { display: block; text-align: center; margin-top: 10px; }

/* Full-screen "working" overlay (render/encode feedback) */
.fx-busy { position: fixed; inset: 0; z-index: 100001; display: none; align-items: center; justify-content: center; background: rgba(0,0,0,0.6); }
.fx-busy-card { display: flex; align-items: center; gap: 12px; background: var(--surface); border: 1px solid var(--border-bright); border-radius: 14px; padding: 18px 22px; color: var(--text); box-shadow: 0 12px 40px rgba(0,0,0,0.5); max-width: 80vw; }
.fx-busy-msg { font-weight: 600; font-size: 0.95rem; }
