/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #0a0a0f;
  --bg2: #0f0f1a;
  --bg3: #13131f;
  --card: #16162a;
  --card2: #1c1c32;
  --border: rgba(124,58,237,0.18);
  --border2: rgba(255,255,255,0.07);
  --primary: #7c3aed;
  --primary2: #9f5cff;
  --cyan: #06b6d4;
  --text: #f0f0f8;
  --text2: #a0a0c0;
  --text3: #60607a;
  --sidebar-w: 220px;
  --topbar-h: 56px;
  --radius: 12px;
  --radius-sm: 8px;
}
html, body {
  height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, sans-serif;
  font-size: 14px;
  overflow: hidden;
}

/* ===== LAYOUT ===== */
body { display: flex; height: 100vh; overflow: hidden; }

/* SIDEBAR */
.sidebar {
  width: var(--sidebar-w);
  min-width: var(--sidebar-w);
  height: 100vh;
  background: var(--bg2);
  border-right: 1px solid var(--border2);
  display: flex;
  flex-direction: column;
  padding: 0;
  position: relative;
  z-index: 10;
}
.sidebar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 16px 14px;
  border-bottom: 1px solid var(--border2);
}
.logo-icon { display: flex; align-items: center; }
.logo-text { font-size: 16px; font-weight: 700; color: var(--text); letter-spacing: -0.3px; }
.logo-ai { background: linear-gradient(135deg, var(--primary2), var(--cyan)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.sidebar-nav {
  display: flex;
  flex-direction: column;
  padding: 12px 10px;
  gap: 2px;
  flex: 1;
}
.snav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  color: var(--text2);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  font-size: 13.5px;
  font-weight: 500;
  user-select: none;
}
.snav-item:hover { background: rgba(124,58,237,0.1); color: var(--text); }
.snav-item.active { background: rgba(124,58,237,0.18); color: var(--primary2); }
.snav-item svg { flex-shrink: 0; }

.sidebar-bottom {
  padding: 12px 16px;
  border-top: 1px solid var(--border2);
}
.model-badge {
  display: flex; align-items: center; gap: 7px;
  background: rgba(124,58,237,0.12);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 6px 12px;
  font-size: 12px;
  color: var(--primary2);
  font-weight: 600;
}

/* MAIN WRAP */
.main-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  height: 100vh;
  overflow: hidden;
  min-width: 0;
}

/* TOP BAR */
.topbar {
  height: var(--topbar-h);
  min-height: var(--topbar-h);
  background: var(--bg2);
  border-bottom: 1px solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
}
.page-title { font-size: 16px; font-weight: 600; color: var(--text); }
.topbar-right { display: flex; align-items: center; gap: 12px; }

.status-badge {
  display: flex; align-items: center; gap: 8px;
  background: rgba(124,58,237,0.15);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 13px;
  color: var(--primary2);
  font-weight: 500;
}
.status-badge.hidden { display: none; }
.status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--primary2);
}
.status-dot.pulsing { animation: pulse-dot 1.4s ease-in-out infinite; }
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.75); }
}

/* CONTENT AREA */
.content-area {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  background: var(--bg);
}
.content-area::-webkit-scrollbar { width: 6px; }
.content-area::-webkit-scrollbar-track { background: transparent; }
.content-area::-webkit-scrollbar-thumb { background: rgba(124,58,237,0.3); border-radius: 3px; }

/* PANELS */
.panel { display: none; padding: 24px; }
.panel.active { display: block; }

/* ===== PROMPT ZONE ===== */
.prompt-zone {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 24px;
}
.prompt-wrap { position: relative; margin-bottom: 16px; }
.prompt-textarea {
  width: 100%;
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 14px;
  line-height: 1.6;
  padding: 14px 16px;
  resize: none;
  outline: none;
  transition: border-color 0.2s;
  font-family: inherit;
}
.prompt-textarea::placeholder { color: var(--text3); }
.prompt-textarea:focus { border-color: var(--primary); }
.prompt-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 8px;
}
.btn-enhance {
  display: flex; align-items: center; gap: 6px;
  background: rgba(124,58,237,0.12);
  border: 1px solid var(--border);
  border-radius: 20px;
  color: var(--primary2);
  font-size: 12.5px;
  font-weight: 500;
  padding: 6px 14px;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}
.btn-enhance:hover { background: rgba(124,58,237,0.22); border-color: var(--primary); }

/* SETTINGS ROW */
.settings-row {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}
.setting-group { display: flex; flex-direction: column; gap: 6px; }
.setting-label { font-size: 11px; font-weight: 600; color: var(--text3); text-transform: uppercase; letter-spacing: 0.6px; }
.setting-select-wrap { position: relative; }
.setting-select {
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 13px;
  padding: 8px 32px 8px 12px;
  cursor: pointer;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  font-family: inherit;
  min-width: 120px;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%237c3aed' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  transition: border-color 0.2s;
}
.setting-select:hover, .setting-select:focus { border-color: var(--primary); }

/* RATIO BUTTONS */
.ratio-btns { display: flex; gap: 4px; }
.ratio-btn {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: var(--radius-sm);
  color: var(--text2);
  padding: 8px 12px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 500;
  transition: all 0.15s;
  min-width: 58px;
}
.ratio-btn:hover { border-color: var(--primary); color: var(--primary2); }
.ratio-btn.active { border-color: var(--primary); background: rgba(124,58,237,0.15); color: var(--primary2); }
.ratio-btn svg { color: currentColor; stroke: currentColor; }

/* GENERATE BUTTON */
.btn-generate {
  display: flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--primary), var(--cyan));
  border: none;
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 24px;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.1s;
  margin-left: auto;
  white-space: nowrap;
  font-family: inherit;
  min-height: 40px;
}
.btn-generate:hover { opacity: 0.9; }
.btn-generate:active { transform: scale(0.98); }
.btn-generate:disabled { opacity: 0.5; cursor: not-allowed; }

/* ===== GENERATION SCREEN AREA ===== */
.gen-screen-area {
  margin-bottom: 24px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.gen-screen-area.hidden { display: none; }
.gen-screen-wrap { padding: 24px; }

/* GEN SCREEN - THE VIDEO MONITOR DURING GENERATION */
.gen-monitor {
  background: var(--bg);
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
}
.gen-monitor-screen {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--bg2);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Animated scan lines during generation */
.gen-scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(124,58,237,0.04) 2px,
    rgba(124,58,237,0.04) 4px
  );
  pointer-events: none;
}

/* Animated corner brackets */
.gen-corners {
  position: absolute;
  inset: 12px;
  pointer-events: none;
}
.gen-corners::before,
.gen-corners::after {
  content: '';
  position: absolute;
  width: 28px;
  height: 28px;
  border-color: var(--primary);
  border-style: solid;
  animation: corner-pulse 2s ease-in-out infinite;
}
.gen-corners::before {
  top: 0; left: 0;
  border-width: 2px 0 0 2px;
  border-radius: 4px 0 0 0;
}
.gen-corners::after {
  bottom: 0; right: 0;
  border-width: 0 2px 2px 0;
  border-radius: 0 0 4px 0;
}
@keyframes corner-pulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* Scanning beam */
.gen-beam {
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), var(--cyan), transparent);
  animation: beam-scan 2.5s ease-in-out infinite;
  box-shadow: 0 0 12px var(--primary), 0 0 24px rgba(124,58,237,0.5);
}
@keyframes beam-scan {
  0% { top: 0%; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

/* Frame grid during generation */
.gen-frame-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  padding: 12px;
  opacity: 0.6;
}
.gen-frame-cell {
  background: rgba(124,58,237,0.08);
  border-radius: 3px;
  border: 1px solid rgba(124,58,237,0.12);
  position: relative;
  overflow: hidden;
}
.gen-frame-cell.active {
  background: rgba(124,58,237,0.18);
  border-color: rgba(124,58,237,0.4);
  animation: cell-glow 0.8s ease-in-out;
}
@keyframes cell-glow {
  0% { background: rgba(124,58,237,0.05); }
  50% { background: rgba(124,58,237,0.35); box-shadow: inset 0 0 8px rgba(124,58,237,0.4); }
  100% { background: rgba(124,58,237,0.18); }
}

/* Generation center content */
.gen-center-info {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  z-index: 2;
}
.gen-spinner {
  width: 48px; height: 48px;
  border: 3px solid rgba(124,58,237,0.2);
  border-top-color: var(--primary2);
  border-right-color: var(--cyan);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.gen-step-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--text2);
  text-align: center;
  max-width: 240px;
}
.gen-step-sub { font-size: 12px; color: var(--text3); text-align: center; }

/* Generation progress bar */
.gen-progress-bar-wrap {
  padding: 16px;
  background: var(--bg2);
  border-top: 1px solid var(--border2);
}
.gen-progress-label {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 8px;
  font-size: 12px;
}
.gen-progress-label-left { color: var(--text2); font-weight: 500; }
.gen-progress-label-right { color: var(--primary2); font-weight: 600; }
.gen-progress-track {
  width: 100%;
  height: 4px;
  background: rgba(124,58,237,0.12);
  border-radius: 2px;
  overflow: hidden;
}
.gen-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--cyan));
  border-radius: 2px;
  transition: width 0.8s ease;
  position: relative;
}
.gen-progress-fill::after {
  content: '';
  position: absolute;
  right: 0;
  top: -2px;
  width: 8px;
  height: 8px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--cyan);
}

/* Gen steps row */
.gen-steps-row {
  display: flex; gap: 0; margin-top: 12px;
}
.gen-step-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: relative;
}
.gen-step-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 11px;
  right: -50%;
  width: 100%;
  height: 1px;
  background: var(--border2);
  z-index: 0;
}
.gen-step-item.done:not(:last-child)::after { background: var(--primary); }
.gen-step-dot {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--bg3);
  border: 2px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: var(--text3);
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}
.gen-step-item.done .gen-step-dot {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.gen-step-item.active .gen-step-dot {
  background: rgba(124,58,237,0.2);
  border-color: var(--primary2);
  color: var(--primary2);
  animation: pulse-dot 1.2s infinite;
}
.gen-step-name { font-size: 10px; color: var(--text3); text-align: center; font-weight: 500; }
.gen-step-item.done .gen-step-name { color: var(--primary2); }
.gen-step-item.active .gen-step-name { color: var(--text2); }

/* ===== VIDEO SECTION ===== */
.videos-section { margin-top: 4px; }
.section-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px;
}
.section-title { font-size: 15px; font-weight: 600; color: var(--text); }
.btn-icon {
  width: 32px; height: 32px;
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: var(--radius-sm);
  color: var(--text2);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.15s;
}
.btn-icon:hover { border-color: var(--primary); color: var(--primary2); background: rgba(124,58,237,0.1); }

/* ===== VIDEO MONITORS GRID ===== */
.video-monitors {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}

/* VIDEO MONITOR CARD */
.vmonitor {
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
  cursor: default;
}
.vmonitor:hover { border-color: var(--border); transform: translateY(-2px); }
.vmonitor.processing { border-color: rgba(124,58,237,0.35); }

/* Monitor screen (actual video area) */
.vmonitor-screen {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--bg);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vmonitor-screen.ratio-916 { aspect-ratio: 9/16; max-height: 280px; }
.vmonitor-screen.ratio-11 { aspect-ratio: 1/1; }

/* Processing state: animated background */
.vmonitor.processing .vmonitor-screen {
  background: linear-gradient(135deg, #0f0f1a, #13132a, #0f0f1a);
}
.vmonitor.processing .vmonitor-screen::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(124,58,237,0.08), rgba(6,182,212,0.08));
  animation: proc-shimmer 2s ease-in-out infinite alternate;
}
@keyframes proc-shimmer {
  from { opacity: 0.5; }
  to { opacity: 1; }
}

/* Processing scanlines */
.proc-scan {
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124,58,237,0.8), rgba(6,182,212,0.8), transparent);
  animation: proc-scan 2s linear infinite;
}
@keyframes proc-scan {
  0% { top: 0%; opacity: 0; }
  5% { opacity: 1; }
  95% { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

/* Processing spinner overlay */
.proc-info {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px;
}
.proc-spinner {
  width: 36px; height: 36px;
  border: 3px solid rgba(124,58,237,0.15);
  border-top-color: var(--primary2);
  border-right-color: var(--cyan);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
.proc-label { font-size: 12px; color: var(--text2); font-weight: 500; }
.proc-mini-bar { width: 80px; height: 2px; background: rgba(124,58,237,0.15); border-radius: 1px; overflow: hidden; }
.proc-mini-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--cyan));
  animation: mini-fill 3s ease-in-out infinite;
}
@keyframes mini-fill {
  0% { width: 5%; }
  50% { width: 75%; }
  100% { width: 95%; }
}

/* Completed video screen - shows video element */
.vmonitor-screen video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Video overlay on hover */
.vmonitor-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
}
.vmonitor-screen:hover .vmonitor-overlay { opacity: 1; }
.vmonitor-play-btn {
  width: 52px; height: 52px;
  background: rgba(124,58,237,0.9);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid rgba(255,255,255,0.2);
  transition: transform 0.2s, background 0.2s;
}
.vmonitor-play-btn:hover { transform: scale(1.1); background: var(--primary); }
.vmonitor-play-btn svg { margin-left: 3px; }

/* Monitor info bar */
.vmonitor-info {
  padding: 10px 14px;
  background: var(--card);
}
.vmonitor-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 4px;
}
.vmonitor-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.vmonitor-tags { display: flex; gap: 4px; flex-wrap: wrap; }
.vtag {
  font-size: 10px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.vtag-style { background: rgba(124,58,237,0.15); color: var(--primary2); }
.vtag-done { background: rgba(16,185,129,0.15); color: #34d399; }
.vtag-processing { background: rgba(245,158,11,0.15); color: #fbbf24; }
.vtag-error { background: rgba(239,68,68,0.15); color: #f87171; }
.vmonitor-date { font-size: 10px; color: var(--text3); white-space: nowrap; }

/* Progress mini bar in info */
.vmonitor-proc-bar {
  height: 2px;
  background: rgba(124,58,237,0.12);
  border-radius: 1px;
  overflow: hidden;
  margin-top: 6px;
}
.vmonitor-proc-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--cyan));
  animation: mini-fill 3s ease-in-out infinite;
}

/* ===== EMPTY STATE ===== */
.empty-state {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  gap: 12px;
}
.empty-icon { opacity: 0.6; margin-bottom: 4px; }
.empty-title { font-size: 16px; font-weight: 600; color: var(--text2); }
.empty-sub { font-size: 13px; color: var(--text3); text-align: center; max-width: 320px; line-height: 1.6; }

/* ===== EXPLORE PANEL ===== */
.explore-hero {
  position: relative;
  padding: 40px 0 32px;
  text-align: center;
  margin-bottom: 32px;
  overflow: hidden;
}
.explore-glow {
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 600px; height: 200px;
  background: radial-gradient(ellipse at center, rgba(124,58,237,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.explore-title { font-size: 28px; font-weight: 700; color: var(--text); margin-bottom: 8px; position: relative; }
.explore-sub { font-size: 14px; color: var(--text2); margin-bottom: 32px; position: relative; }

.style-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  text-align: left;
}
.style-card {
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s;
}
.style-card:hover { border-color: var(--primary); transform: translateY(-3px); }
.style-preview {
  width: 100%;
  height: 140px;
  position: relative;
  overflow: hidden;
}
.cinema-preview { background: linear-gradient(135deg, #0f0c29, #302b63, #24243e); }
.anime-preview { background: linear-gradient(135deg, #ff6b9d, #c44dff, #3b82f6); }
.real-preview { background: linear-gradient(135deg, #134e5e, #71b280); }
.anim3d-preview { background: linear-gradient(135deg, #f093fb, #f5576c, #4facfe); }
.scifi-preview { background: linear-gradient(135deg, #0f2027, #203a43, #2c5364); }
.nature-preview { background: linear-gradient(135deg, #11998e, #38ef7d); }
.style-preview::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(0,0,0,0.08) 3px, rgba(0,0,0,0.08) 4px);
}
.style-info { padding: 12px 16px; display: flex; flex-direction: column; gap: 2px; }
.style-name { font-size: 14px; font-weight: 600; color: var(--text); }
.style-desc { font-size: 12px; color: var(--text2); }

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  background: var(--card2);
  border: 1px solid var(--border2);
  color: var(--text);
  font-size: 13px;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 24px;
  z-index: 9999;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  animation: toast-in 0.2s ease;
}
.toast.hidden { display: none; }
.toast.success { border-color: #34d399; color: #34d399; }
.toast.error { border-color: #f87171; color: #f87171; }
@keyframes toast-in { from { transform: translateX(-50%) translateY(8px); opacity: 0; } to { transform: translateX(-50%) translateY(0); opacity: 1; } }

/* ===== SCROLLBAR ===== */
select option { background: var(--card); color: var(--text); }
