:root {
  --bg: #15102e;
  --bg-elevated: #1d1842;
  --text: #ffffff;
  --text-muted: #a5a8cc;
  --accent-blue: #5d7df2;
  --accent-purple: #b07ce0;
  --gradient: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-purple) 100%);
  --radius: 10px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

[hidden] { display: none !important; }

html, body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter", "Segoe UI", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 48px 24px;
  text-align: center;
}

.logo {
  width: 360px;
  max-width: 82vw;
  height: auto;
  margin-bottom: 28px;
}

.tagline {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.55;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gradient);
  color: #ffffff;
  border: none;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.08s ease, opacity 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 6px 18px rgba(93, 125, 242, 0.25);
}

.btn:hover {
  opacity: 0.94;
  box-shadow: 0 8px 24px rgba(93, 125, 242, 0.35);
}

.btn:active {
  transform: translateY(1px);
}

.btn-secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: none;
}

.footer {
  position: fixed;
  bottom: 16px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  opacity: 0.55;
}

/* ===== Sub-pages with header + main content ===== */

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.page-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.brand {
  display: inline-flex;
}

.brand-logo {
  width: 44px;
  height: auto;
  border-radius: 6px;
  display: block;
}

.page-title {
  font-size: 22px;
  font-weight: 700;
  margin: 0;
}

.page-header-spacer { flex: 1; }

.section-title {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 14px;
}

/* Empty state on home */

.hero-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px 80px;
}
.hero-empty .logo {
  width: 280px;
  max-width: 70vw;
  margin-bottom: 24px;
}

/* Template grid (home) */

.templates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px;
}

.template-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-elevated);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 14px;
  cursor: pointer;
  color: inherit;
  text-decoration: none;
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.05s ease;
}
.template-card:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.03);
}
.template-card:active { transform: translateY(1px); }

.template-thumb {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.3);
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}
.template-thumb-badge {
  position: absolute;
  bottom: -4px;
  right: -4px;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 11px;
  background: var(--gradient);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 2px var(--bg-elevated);
}

.template-body {
  flex: 1;
  min-width: 0;
}
.template-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.template-meta {
  font-size: 12px;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
}

.template-actions {
  display: flex;
  align-items: center;
}

.icon-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 12px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}
.icon-btn:hover {
  border-color: #ff8b8b;
  color: #ff8b8b;
  background: rgba(255, 139, 139, 0.08);
}

.page-content {
  max-width: 760px;
  width: 100%;
  margin: 0 auto;
  padding: 32px 24px 80px;
  flex: 1;
}

/* Cards / sections */

.card {
  background: var(--bg-elevated);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 22px 24px;
  margin-bottom: 18px;
}

.card-title {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 14px;
}

/* Inputs */

.text-input {
  display: block;
  width: 100%;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--text);
  font-size: 15px;
  font-family: inherit;
}
.text-input:focus {
  outline: none;
  border-color: var(--accent-blue);
  background: rgba(0, 0, 0, 0.35);
}

/* Segmented control (voice-source tabs) */

.seg-control {
  display: inline-flex;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 4px;
  margin-bottom: 16px;
  gap: 2px;
}
.seg-tab {
  background: transparent;
  color: var(--text-muted);
  border: none;
  padding: 8px 16px;
  border-radius: 7px;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s ease, color 0.15s ease;
}
.seg-tab:hover { color: var(--text); }
.seg-tab.is-active {
  background: var(--gradient);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(93, 125, 242, 0.25);
}

/* Built-in voice cards */

.voice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 10px;
  margin-bottom: 12px;
}
.voice-card {
  position: relative;
  display: block;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 14px 16px;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.voice-card:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(0, 0, 0, 0.32);
}
.voice-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.voice-card.is-selected {
  border-color: var(--accent-blue);
  background: rgba(93, 125, 242, 0.12);
  box-shadow: 0 0 0 2px rgba(93, 125, 242, 0.35) inset;
}
.voice-name {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 2px;
  text-transform: lowercase;
}
.voice-meta {
  font-size: 11.5px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.voice-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
  margin-bottom: 10px;
}

.voice-preview-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text);
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.voice-preview-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
}
.voice-preview-btn:disabled {
  opacity: 0.6;
  cursor: progress;
}

/* Verification phrase + recorder (clone tab) */

.phrase-box {
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 14px 16px;
  font-style: italic;
  font-size: 15.5px;
  margin-bottom: 14px;
  line-height: 1.55;
}

.record-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.status {
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
  font-size: 14px;
  min-width: 220px;
}

.level-meter {
  width: 320px;
  max-width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 12px;
}
.level-meter-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
  width: 0%;
  transition: width 0.06s linear;
}

.hint {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.55;
  margin-top: 6px;
}

.error {
  font-size: 13px;
  color: #ff8b8b;
  margin-top: 8px;
}
.error-text { color: #ff8b8b; }

/* Buttons (additional variants) */

.btn-destructive {
  background: linear-gradient(135deg, #e15555, #c94343);
  box-shadow: 0 6px 18px rgba(225, 85, 85, 0.25);
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: none;
  color: var(--text);
  font-weight: 500;
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: none;
}

.btn:disabled,
.btn[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
  box-shadow: none;
}

/* Twin Images grid (multi-reference) */

.faces-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 12px;
  outline: none;
}
.faces-grid:focus,
.faces-grid:focus-visible {
  box-shadow: 0 0 0 3px rgba(93, 125, 242, 0.35);
  border-radius: 12px;
}

.face-slot {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.3);
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
}
.face-slot.add-slot {
  border-style: dashed;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.35;
  text-align: center;
  padding: 8px;
}
.face-slot.add-slot:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}
.face-slot.add-slot .add-plus {
  font-size: 22px;
  line-height: 1;
  margin-bottom: 4px;
}

.face-slot .face-remove {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--text);
  font-size: 12px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  font-family: inherit;
  transition: background 0.12s ease, color 0.12s ease, border-color 0.12s ease;
}
.face-slot .face-remove:hover {
  background: rgba(255, 139, 139, 0.85);
  color: #15102e;
  border-color: rgba(255, 139, 139, 1);
}
.face-slot .face-badge {
  position: absolute;
  bottom: 4px;
  left: 6px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  background: rgba(0, 0, 0, 0.55);
  padding: 1px 6px;
  border-radius: 4px;
}

/* Full-page drop overlay */
.drop-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 16, 46, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.drop-overlay-card {
  background: var(--bg-elevated);
  border: 2px dashed var(--accent-blue);
  border-radius: 16px;
  padding: 36px 56px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.drop-overlay-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
}
.drop-overlay-sub {
  font-size: 14px;
  color: var(--text-muted);
}

.face-controls {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding-top: 6px;
}

/* Action row */

.actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 24px;
  align-items: center;
}

/* Visually hidden labels */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Configure Video: template summary */

.template-summary .summary-row {
  display: flex;
  align-items: center;
  gap: 14px;
}
.summary-thumb {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.3);
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}
.summary-body { flex: 1; min-width: 0; }
.summary-name {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 3px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.summary-meta {
  font-size: 12px;
  color: var(--text-muted);
}

/* Configure Video: script + chunks */

.script-input {
  font-family: inherit;
  resize: vertical;
  min-height: 160px;
  line-height: 1.5;
}

.brief-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 14px;
  margin-top: 12px;
}
.inline-field {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
}
.inline-field .text-input {
  width: auto;
  padding: 8px 10px;
  font-size: 14px;
}
.inline-field input[type="number"] {
  width: 78px;
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.inline-suffix {
  font-size: 13px;
  color: var(--text-muted);
}

/* Cinematic plan UI */

.field-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.segments-wrap {
  margin-top: 16px;
}
.segments-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.segments-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.segment-row {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 10px;
  align-items: start;
  background: rgba(0, 0, 0, 0.22);
  border-radius: 8px;
  padding: 10px 12px;
}
.segment-index {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  color: var(--text-muted);
  padding-top: 4px;
}
.segment-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.segment-text {
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--text);
}
.segment-visual {
  font-size: 13px;
  padding: 8px 10px;
}

.chunks-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.chunk-row {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  gap: 12px;
  background: rgba(0, 0, 0, 0.22);
  border-radius: 8px;
  padding: 10px 12px;
  align-items: start;
}
.chunk-index {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  color: var(--text-muted);
  padding-top: 2px;
}
.chunk-text {
  font-size: 14.5px;
  line-height: 1.45;
}
.chunk-meta {
  font-size: 11.5px;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  padding-top: 2px;
}

/* Generate Video: progress + output */

.check-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  font-size: 14px;
}
.check-row input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--accent-blue);
}

.progress {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  overflow: hidden;
  margin: 12px 0 16px;
}
.progress-fill {
  height: 100%;
  width: 0%;
  background: var(--gradient);
  transition: width 0.25s ease;
}

.chunk-progress {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.chunk-progress-row {
  display: grid;
  grid-template-columns: 40px 1fr 140px;
  gap: 12px;
  background: rgba(0, 0, 0, 0.22);
  border-radius: 8px;
  padding: 8px 12px;
  align-items: start;
  font-size: 13px;
}
.chunk-progress-row .chunk-status {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  color: var(--text-muted);
  text-align: right;
}
.chunk-progress-row.status-done .chunk-status {
  color: #7dd3a3;
}
.chunk-progress-row.status-tts .chunk-status,
.chunk-progress-row.status-video-running .chunk-status,
.chunk-progress-row.status-video-queued .chunk-status {
  color: var(--accent-purple);
}

.output-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
}
.output-face {
  width: 320px;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  background: rgba(0, 0, 0, 0.3);
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.output-stage audio {
  width: 100%;
  max-width: 480px;
}

#outputVideo {
  width: 100%;
  max-width: 720px;
  display: block;
  margin: 8px auto;
  background: #000;
  border-radius: 12px;
}

.cost-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  padding: 10px 14px;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 8px;
  font-size: 13.5px;
}
.cost-label { color: var(--text-muted); }
.cost-value {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-variant-numeric: tabular-nums;
  color: var(--text);
}

.diagnostics {
  margin-top: 14px;
  padding: 10px 12px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  font-size: 12px;
}
.diagnostics summary {
  cursor: pointer;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}
.diagnostics pre {
  margin: 8px 0 0;
  white-space: pre-wrap;
  word-break: break-word;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11.5px;
  color: var(--text);
  line-height: 1.5;
}

/* === Brief-first home flow (post-2026-05-27 pivot) === */

.text-area {
  min-height: 110px;
  resize: vertical;
  font-family: inherit;
  line-height: 1.5;
}

.inline-row {
  display: flex;
  gap: 14px;
  margin-top: 12px;
  align-items: flex-end;
  flex-wrap: wrap;
}
.inline-label {
  display: flex;
  flex-direction: column;
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  gap: 6px;
}
.inline-label-grow { flex: 1 1 240px; }
.text-input-narrow { width: 90px; }

.stock-character-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
  margin-bottom: 12px;
}
.stock-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 0;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
  overflow: hidden;
  color: inherit;
  text-align: left;
  font: inherit;
}
.stock-card:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(0, 0, 0, 0.32);
  transform: translateY(-1px);
}
.stock-card[aria-pressed="true"] {
  border-color: var(--accent-blue);
  background: rgba(93, 125, 242, 0.12);
  box-shadow: 0 0 0 2px rgba(93, 125, 242, 0.35) inset;
}
.stock-card-image {
  width: 100%;
  aspect-ratio: 3 / 4;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-color: rgba(255, 255, 255, 0.04);
}
.stock-card-body {
  padding: 10px 12px 12px;
}
.stock-card-name {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 2px;
}
.stock-card-meta {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.btn-primary {
  background: var(--gradient);
  color: #ffffff;
  border-color: transparent;
}
.btn-primary:hover:not(:disabled) {
  filter: brightness(1.05);
}
.btn-primary:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin: 16px 0 24px;
}

.saved-projects {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
