/* ========== Reset & Base ========== */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --primary: #667eea;
  --primary-dark: #764ba2;
  --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --bg: #f5f7fa;
  --card-bg: #ffffff;
  --text: #1a1a2e;
  --text-secondary: #6b7280;
  --border: #e5e7eb;
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  --shadow: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
  --radius: 8px;
  --nav-height: 56px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; font-family: inherit; }
input, select, textarea { font-family: inherit; outline: none; }

/* ========== Top Navigation ========== */
.top-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: #fff;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 24px;
  z-index: 1000;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-right: 40px;
  cursor: pointer;
}

.nav-logo svg { width: 28px; height: 28px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.nav-link {
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all 0.2s;
  cursor: pointer;
  white-space: nowrap;
}

.nav-link:hover { color: var(--primary); background: rgba(102,126,234,0.06); }
.nav-link.active { color: var(--primary); background: rgba(102,126,234,0.1); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-balance {
  font-size: 13px;
  color: var(--text-secondary);
}
.nav-balance span { color: var(--danger); font-weight: 600; font-size: 14px; }

.btn-login {
  padding: 6px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--primary);
  background: transparent;
  border: 1px solid var(--primary);
  transition: all 0.2s;
}
.btn-login:hover { background: rgba(102,126,234,0.06); }

.btn-register {
  padding: 6px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  background: var(--primary-gradient);
  transition: all 0.2s;
}
.btn-register:hover { opacity: 0.9; transform: translateY(-1px); }

.user-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

/* ========== Hero Section ========== */
.hero {
  margin-top: var(--nav-height);
  background: var(--primary-gradient);
  padding: 80px 24px 60px;
  position: relative;
  overflow: hidden;
  min-height: 360px;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-text h1 {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -1px;
}

.hero-text p {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
}

.hero-buttons { display: flex; gap: 16px; }

.btn-hero-primary {
  padding: 12px 36px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--primary);
  background: #fff;
  transition: all 0.2s;
}
.btn-hero-primary:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.15); }

.btn-hero-secondary {
  padding: 12px 36px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.6);
  transition: all 0.2s;
}
.btn-hero-secondary:hover { background: rgba(255,255,255,0.1); }

.hero-visual {
  width: 400px;
  height: 280px;
  opacity: 0.9;
}

/* ========== Feature Bar ========== */
.feature-bar {
  background: #fff;
  padding: 24px;
  border-bottom: 1px solid var(--border);
}

.feature-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-item {
  text-align: center;
  padding: 16px;
  cursor: pointer;
  border-radius: var(--radius);
  transition: all 0.2s;
}
.feature-item:hover { background: var(--bg); }
.feature-item h4 { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.feature-item p { font-size: 12px; color: var(--text-secondary); }

/* ========== Page Layout ========== */
.page-layout {
  margin-top: var(--nav-height);
  min-height: calc(100vh - var(--nav-height));
}

/* Auth pages: full width, no sidebar */
.page-auth {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
}

/* Internal pages: sidebar + content + panel */
.page-internal {
  display: flex;
  max-width: 1440px;
  margin: 0 auto;
  padding: 24px;
  gap: 20px;
}

/* ========== Sidebar ========== */
.sidebar {
  width: 220px;
  flex-shrink: 0;
  position: sticky;
  top: calc(var(--nav-height) + 24px);
  height: fit-content;
}

.sidebar-nav {
  background: var(--card-bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
}

.sidebar-section-title {
  padding: 12px 16px 8px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  font-size: 14px;
  color: var(--text-secondary);
  transition: all 0.15s;
  cursor: pointer;
}
.sidebar-link:hover { background: var(--bg); color: var(--text); }
.sidebar-link.active { background: rgba(102,126,234,0.08); color: var(--primary); font-weight: 500; }
.sidebar-link svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ========== Main Content ========== */
.main-content {
  flex: 1;
  min-width: 0;
}

/* ========== Right Panel ========== */
.right-panel {
  width: 320px;
  flex-shrink: 0;
}

.panel-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 20px;
  position: sticky;
  top: calc(var(--nav-height) + 24px);
}

.panel-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ========== Cards Grid ========== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 16px;
}

/* ========== Task Card ========== */
.task-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.2s;
  cursor: pointer;
}
.task-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }

.task-card-cover {
  height: 160px;
  background: var(--primary-gradient);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
}

.task-card-badges {
  position: absolute;
  top: 8px;
  left: 8px;
  display: flex;
  gap: 6px;
}

.badge {
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
}
.badge-hot { background: var(--danger); color: #fff; }
.badge-new { background: var(--success); color: #fff; }
.badge-rec { background: var(--primary); color: #fff; }

.task-card-body { padding: 14px 16px; }

.task-card-name {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}

.task-card-desc {
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.task-card-stats {
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 10px;
}
.task-card-stats span { display: flex; align-items: center; gap: 4px; }
.task-card-stats .stat-value { color: var(--text); font-weight: 500; }

.task-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}

.task-card-price {
  font-size: 13px;
  color: var(--text-secondary);
}
.task-card-price span {
  color: var(--danger);
  font-size: 18px;
  font-weight: 700;
}

.btn-submit-task {
  padding: 6px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background: var(--primary-gradient);
  transition: all 0.2s;
}
.btn-submit-task:hover { opacity: 0.9; }

/* ========== Node Card ========== */
.node-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 16px;
  transition: all 0.2s;
  cursor: pointer;
}
.node-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }

.node-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.node-location {
  font-size: 12px;
  color: var(--text-secondary);
}

.node-status {
  padding: 2px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
}
.status-online { background: rgba(16,185,129,0.1); color: var(--success); }
.status-busy { background: rgba(245,158,11,0.1); color: var(--warning); }
.status-offline { background: rgba(107,114,128,0.1); color: var(--text-secondary); }

.node-gpu {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}

.node-gpu-sub {
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.node-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 12px;
}

.node-spec {
  font-size: 12px;
  color: var(--text-secondary);
}
.node-spec strong { color: var(--text); }

.node-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.node-owner {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-secondary);
}

.node-owner-avatar {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 10px;
}

.node-trust {
  font-size: 12px;
  color: var(--success);
  font-weight: 500;
}

/* ========== Filter Bar ========== */
.filter-bar {
  background: var(--card-bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 16px 20px;
  margin-bottom: 20px;
}

.filter-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.filter-row:last-child { margin-bottom: 0; }

.filter-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  min-width: 70px;
}

.filter-tabs {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 4px 14px;
  border-radius: 6px;
  font-size: 13px;
  color: var(--text-secondary);
  background: var(--bg);
  transition: all 0.15s;
  cursor: pointer;
  white-space: nowrap;
}
.filter-tab:hover { color: var(--primary); }
.filter-tab.active { background: var(--primary); color: #fff; }

.filter-tag {
  padding: 4px 12px;
  border-radius: 14px;
  font-size: 12px;
  color: var(--text-secondary);
  background: var(--bg);
  border: 1px solid var(--border);
  transition: all 0.15s;
  cursor: pointer;
}
.filter-tag:hover { border-color: var(--primary); color: var(--primary); }
.filter-tag.active { background: rgba(102,126,234,0.1); border-color: var(--primary); color: var(--primary); }

/* ========== Form Elements ========== */
.form-group { margin-bottom: 16px; }

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.form-input {
  width: 100%;
  padding: 8px 12px;
  border-radius: 6px;
  border: 1px solid var(--border);
  font-size: 14px;
  transition: border-color 0.15s;
}
.form-input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(102,126,234,0.1); }

.form-textarea {
  width: 100%;
  padding: 8px 12px;
  border-radius: 6px;
  border: 1px solid var(--border);
  font-size: 14px;
  resize: vertical;
  min-height: 80px;
  transition: border-color 0.15s;
}
.form-textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(102,126,234,0.1); }

.form-select {
  width: 100%;
  padding: 8px 12px;
  border-radius: 6px;
  border: 1px solid var(--border);
  font-size: 14px;
  background: #fff;
  transition: border-color 0.15s;
}
.form-select:focus { border-color: var(--primary); }

.upload-area {
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
}
.upload-area:hover { border-color: var(--primary); background: rgba(102,126,234,0.02); }
.upload-area p { font-size: 13px; color: var(--text-secondary); }
.upload-area .upload-icon { font-size: 28px; margin-bottom: 8px; }

/* ========== Buttons ========== */
.btn-primary {
  width: 100%;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: var(--primary-gradient);
  transition: all 0.2s;
  text-align: center;
}
.btn-primary:hover { opacity: 0.9; transform: translateY(-1px); }
.btn-primary:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

.btn-secondary {
  width: 100%;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  background: rgba(102,126,234,0.08);
  transition: all 0.2s;
  text-align: center;
}

/* ========== Price Display ========== */
.price-display {
  background: var(--bg);
  border-radius: 6px;
  padding: 12px 16px;
  margin-bottom: 16px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 6px;
}
.price-row:last-child { margin-bottom: 0; }
.price-row .price-value { color: var(--text); font-weight: 600; }
.price-row.total { font-size: 15px; font-weight: 700; }
.price-row.total .price-value { color: var(--danger); font-size: 18px; }

/* ========== Stats Row ========== */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.stat-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 20px;
  text-align: center;
}
.stat-card .stat-number { font-size: 28px; font-weight: 700; color: var(--primary); }
.stat-card .stat-label { font-size: 12px; color: var(--text-secondary); margin-top: 4px; }

/* ========== Table ========== */
.data-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.data-table th {
  padding: 12px 16px;
  text-align: left;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.data-table td {
  padding: 12px 16px;
  font-size: 13px;
  border-bottom: 1px solid var(--border);
}

.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: rgba(102,126,234,0.02); }

/* ========== Fragment Timeline ========== */
.fragment-timeline {
  position: relative;
  padding-left: 24px;
}

.fragment-timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.fragment-item {
  position: relative;
  padding-bottom: 20px;
}

.fragment-dot {
  position: absolute;
  left: -21px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--border);
  border: 2px solid #fff;
}
.fragment-dot.active { background: var(--primary); box-shadow: 0 0 0 3px rgba(102,126,234,0.2); }
.fragment-dot.done { background: var(--success); }

.fragment-content {
  background: var(--card-bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 12px 16px;
}

.fragment-title { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.fragment-desc { font-size: 12px; color: var(--text-secondary); }
.fragment-time { font-size: 11px; color: var(--text-secondary); margin-top: 4px; }

/* ========== Task Status ========== */
.status-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
}
.status-pending { background: rgba(107,114,128,0.1); color: var(--text-secondary); }
.status-processing { background: rgba(102,126,234,0.1); color: var(--primary); }
.status-completed { background: rgba(16,185,129,0.1); color: var(--success); }
.status-failed { background: rgba(239,68,68,0.1); color: var(--danger); }

/* ========== Auth Page ========== */
.auth-container {
  width: 100%;
  max-width: 420px;
}

.auth-card {
  background: var(--card-bg);
  border-radius: 12px;
  border: 1px solid var(--border);
  padding: 32px;
  box-shadow: var(--shadow-lg);
}

.auth-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 4px;
  text-align: center;
}

.auth-subtitle {
  font-size: 13px;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 24px;
}

.auth-form .form-group { margin-bottom: 18px; }

.auth-switch {
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  color: var(--text-secondary);
}
.auth-switch a { color: var(--primary); cursor: pointer; font-weight: 500; }

/* ========== Section Title ========== */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.section-title {
  font-size: 18px;
  font-weight: 700;
}

.section-more {
  font-size: 13px;
  color: var(--primary);
  cursor: pointer;
}

/* ========== Empty State ========== */
.empty-state {
  text-align: center;
  padding: 60px 24px;
  color: var(--text-secondary);
}
.empty-state .empty-icon { font-size: 48px; margin-bottom: 12px; }
.empty-state p { font-size: 14px; }

/* ========== Loading ========== */
.loading-spinner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.spinner {
  width: 32px;
  height: 32px;
  border: 3px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ========== Footer ========== */
.footer {
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 32px 24px;
  margin-top: 40px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-left { font-size: 12px; color: var(--text-secondary); }
.footer-right { display: flex; gap: 16px; }
.footer-link { font-size: 12px; color: var(--text-secondary); cursor: pointer; }
.footer-link:hover { color: var(--primary); }

/* ========== Floating Buttons ========== */
.float-buttons {
  position: fixed;
  right: 20px;
  bottom: 80px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 999;
}

.float-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--card-bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow);
  font-size: 18px;
  transition: all 0.2s;
}
.float-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

/* ========== Responsive ========== */
@media (max-width: 1200px) {
  .right-panel { display: none; }
}
@media (max-width: 900px) {
  .sidebar { display: none; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .feature-bar-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .hero-text h1 { font-size: 32px; }
  .hero-visual { display: none; }
  .cards-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
}

/* ========== Region Stats (NodesPage) ========== */
.region-stats {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.region-stat-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  transition: background 0.15s;
  border-radius: 6px;
  padding: 6px 8px;
  margin: 0 -8px;
}
.region-stat-row:hover {
  background: rgba(102, 126, 234, 0.05);
}
.region-stat-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
  min-width: 36px;
}
.region-stat-bar {
  flex: 1;
  height: 6px;
  background: #f0f0f0;
  border-radius: 3px;
  overflow: hidden;
}
.region-stat-fill {
  height: 100%;
  background: var(--primary-gradient);
  border-radius: 3px;
  transition: width 0.3s ease;
  min-width: 8px;
}
.region-stat-num {
  font-size: 12px;
  color: var(--text-primary);
  font-weight: 500;
  min-width: 80px;
  text-align: right;
}

/* ========== Dashboard Page ========== */
.dashboard-page {
  min-height: 100vh;
  background: #f5f6fa;
  padding-top: 60px;
}
.dashboard-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 32px 24px;
}
.dashboard-header-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.dashboard-welcome h1 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 4px;
}
.dashboard-welcome p {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
}
.dashboard-quick-actions {
  display: flex;
  gap: 10px;
}
.dashboard-quick-actions .btn-primary {
  background: #fff;
  color: var(--primary);
  border: none;
  padding: 8px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
}
.dashboard-quick-actions .btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.dashboard-quick-actions .btn-secondary {
  background: rgba(255,255,255,0.2);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 8px 20px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s;
}
.dashboard-quick-actions .btn-secondary:hover {
  background: rgba(255,255,255,0.3);
}
.dashboard-quick-actions .btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 8px 20px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s;
}
.dashboard-quick-actions .btn-ghost:hover {
  background: rgba(255,255,255,0.1);
}

.dashboard-body {
  max-width: 1400px;
  margin: 0 auto;
  padding: 24px;
}

/* Dashboard Stats Row */
.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.dash-stat-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  transition: all 0.2s;
}
.dash-stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.dash-stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.dash-stat-content {
  flex: 1;
  min-width: 0;
}
.dash-stat-value {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}
.dash-stat-label {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 2px;
}

/* Dashboard Grid Layout */
.dashboard-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 24px;
}
.dashboard-main {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.dashboard-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Dashboard Cards */
.dash-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.dash-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.dash-card-header h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
}
.dash-card-link {
  font-size: 13px;
  color: var(--primary);
  cursor: pointer;
  transition: opacity 0.2s;
}
.dash-card-link:hover {
  opacity: 0.7;
}
.dash-card-badge {
  font-size: 11px;
  background: rgba(16,185,129,0.1);
  color: #10b981;
  padding: 2px 8px;
  border-radius: 10px;
  font-weight: 500;
  animation: pulse-badge 2s infinite;
}
@keyframes pulse-badge {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

/* Recent Tasks List */
.dash-task-list {
  display: flex;
  flex-direction: column;
}
.dash-task-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid #f5f5f5;
  cursor: pointer;
  transition: background 0.15s;
  padding-left: 8px;
  padding-right: 8px;
  margin: 0 -8px;
  border-radius: 8px;
}
.dash-task-item:last-child {
  border-bottom: none;
}
.dash-task-item:hover {
  background: rgba(102,126,234,0.03);
}
.dash-task-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.dash-task-info {
  flex: 1;
  min-width: 0;
}
.dash-task-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
}
.dash-task-meta {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 2px;
  display: flex;
  gap: 12px;
}
.dash-task-status {
  font-size: 12px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 12px;
}
.dash-task-status.status-running {
  background: rgba(245,158,11,0.1);
  color: #f59e0b;
}
.dash-task-status.status-completed {
  background: rgba(16,185,129,0.1);
  color: #10b981;
}
.dash-task-status.status-failed {
  background: rgba(239,68,68,0.1);
  color: #ef4444;
}
.dash-task-status.status-pending {
  background: rgba(102,126,234,0.1);
  color: #667eea;
}
.dash-task-status.status-online {
  background: rgba(16,185,129,0.1);
  color: #10b981;
}
.dash-task-status.status-busy {
  background: rgba(245,158,11,0.1);
  color: #f59e0b;
}
.dash-task-cost {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  min-width: 50px;
  text-align: right;
}

/* Fragment Tracking */
.dash-fragment-demo {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.dash-fragment-main {
  background: linear-gradient(135deg, rgba(102,126,234,0.05), rgba(118,75,162,0.05));
  border-radius: 10px;
  padding: 16px;
}
.dash-fragment-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.dash-fragment-task-id {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  font-family: monospace;
}
.dash-fragment-status {
  font-size: 11px;
  font-weight: 500;
  padding: 2px 8px;
  border-radius: 10px;
}
.dash-fragment-status.status-running {
  background: rgba(245,158,11,0.1);
  color: #f59e0b;
}
.dash-fragment-text {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 12px;
  font-style: italic;
}
.dash-fragment-progress {
  display: flex;
  align-items: center;
  gap: 10px;
}
.dash-fragment-progress-bar {
  flex: 1;
  height: 8px;
  background: #e5e7eb;
  border-radius: 4px;
  overflow: hidden;
}
.dash-fragment-progress-fill {
  height: 100%;
  background: var(--primary-gradient);
  border-radius: 4px;
  transition: width 0.3s ease;
}
.dash-fragment-progress-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  min-width: 36px;
}
.dash-fragment-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.dash-fragment-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  position: relative;
}
.dash-fragment-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 7px;
  top: 28px;
  bottom: -2px;
  width: 2px;
  background: #e5e7eb;
}
.dash-fragment-step.done:not(:last-child)::after {
  background: var(--primary);
}
.dash-fragment-step-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid #e5e7eb;
  background: #fff;
  flex-shrink: 0;
  margin-top: 2px;
}
.dash-fragment-step.done .dash-fragment-step-dot {
  border-color: var(--primary);
  background: var(--primary);
}
.dash-fragment-step.active .dash-fragment-step-dot {
  border-color: #f59e0b;
  background: #f59e0b;
  animation: pulse-dot 1.5s infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245,158,11,0.4); }
  50% { box-shadow: 0 0 0 6px rgba(245,158,11,0); }
}
.dash-fragment-step-info {
  flex: 1;
}
.dash-fragment-step-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
}
.dash-fragment-step-desc {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 1px;
}
.dash-fragment-step-time {
  font-size: 12px;
  color: var(--text-secondary);
  font-family: monospace;
  min-width: 70px;
  text-align: right;
}

/* Notices */
.dash-notice-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.dash-notice-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #f5f5f5;
}
.dash-notice-item:last-child {
  border-bottom: none;
}
.dash-notice-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
}
.dash-notice-dot.success { background: #10b981; }
.dash-notice-dot.info { background: #667eea; }
.dash-notice-dot.warning { background: #f59e0b; }
.dash-notice-dot.error { background: #ef4444; }
.dash-notice-title {
  font-size: 13px;
  color: var(--text-primary);
  line-height: 1.4;
}
.dash-notice-time {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 2px;
}

/* My Nodes */
.dash-node-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.dash-node-item {
  background: #f9fafb;
  border-radius: 10px;
  padding: 14px;
}
.dash-node-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}
.dash-node-id {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  font-family: monospace;
}
.dash-node-status {
  font-size: 11px;
  font-weight: 500;
  padding: 2px 8px;
  border-radius: 10px;
}
.dash-node-gpu {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}
.dash-node-stats {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-secondary);
}
.dash-node-stats strong {
  color: var(--text-primary);
}

/* Shortcuts Grid */
.dash-shortcuts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.dash-shortcut {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 14px 8px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
}
.dash-shortcut:hover {
  background: #f9fafb;
  transform: translateY(-2px);
}
.dash-shortcut-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.dash-shortcut-text {
  font-size: 12px;
  color: var(--text-primary);
  font-weight: 500;
}

/* Platform Stats */
.dash-platform-stats {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.dash-platform-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #f5f5f5;
  font-size: 13px;
  color: var(--text-secondary);
}
.dash-platform-row:last-child {
  border-bottom: none;
}
.dash-platform-row strong {
  color: var(--text-primary);
  font-size: 14px;
}

/* Responsive for Dashboard */
@media (max-width: 1200px) {
  .dashboard-stats {
    grid-template-columns: repeat(3, 1fr);
  }
  .dashboard-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .dashboard-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .dashboard-header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .dash-shortcuts {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ========== Home Stats Section ========== */
.home-stats-section {
  background: var(--primary-gradient);
  padding: 48px 24px;
}
.home-stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 24px;
}
.home-stat-item {
  text-align: center;
  min-width: 120px;
}
.home-stat-number {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
}
.home-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  margin-top: 4px;
}

/* ========== Home How-It-Works Section ========== */
.home-how-section {
  padding: 60px 24px;
  background: #fff;
}
.home-how-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.home-how-subtitle {
  text-align: center;
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 40px;
}
.home-how-steps {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  position: relative;
}
.home-how-step {
  flex: 1;
  text-align: center;
  position: relative;
  padding: 0 8px;
}
.home-how-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary-gradient);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}
.home-how-step-icon {
  font-size: 36px;
  margin-bottom: 12px;
}
.home-how-step-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.home-how-step-desc {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.5;
}
.home-how-arrow {
  position: absolute;
  right: -18px;
  top: 50px;
  font-size: 20px;
  color: var(--primary);
  font-weight: 700;
}

/* ========== Home Why Section ========== */
.home-why-section {
  padding: 60px 24px;
  background: linear-gradient(180deg, #f8f9ff 0%, #fff 100%);
}
.home-why-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.home-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 36px;
}
.home-why-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  border: 1px solid var(--border);
  transition: all 0.25s ease;
}
.home-why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(102,126,234,0.12);
  border-color: var(--primary);
}
.home-why-icon {
  font-size: 36px;
  margin-bottom: 12px;
}
.home-why-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.home-why-desc {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ========== Task Form - Voice Options ========== */
.voice-option {
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid var(--border);
  font-size: 12px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  background: #fff;
}
.voice-option:hover {
  border-color: var(--primary);
}
.voice-option.active {
  border-color: var(--primary);
  background: rgba(102,126,234,0.08);
  color: var(--primary);
  font-weight: 600;
}

/* ========== Task Form - Style Tags ========== */
.style-tag {
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid var(--border);
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s;
  background: #fff;
}
.style-tag:hover {
  border-color: var(--primary);
}
.style-tag.active {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
}

/* ========== Task Form - Ratio Options ========== */
.ratio-option {
  padding: 6px 14px;
  border-radius: 6px;
  border: 1px solid var(--border);
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s;
  background: #fff;
}
.ratio-option:hover {
  border-color: var(--primary);
}
.ratio-option.active {
  border-color: var(--primary);
  background: rgba(102,126,234,0.08);
  color: var(--primary);
  font-weight: 600;
}

/* ========== Dashboard Trend Chart ========== */
.dash-trend-legend {
  font-size: 11px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 4px;
}
.trend-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}
.dash-trend-chart {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 120px;
  padding: 12px 0 0;
  gap: 8px;
}
.dash-trend-bar-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}
.dash-trend-bars {
  flex: 1;
  display: flex;
  align-items: flex-end;
  gap: 3px;
  width: 100%;
  justify-content: center;
}
.dash-trend-bar {
  width: 14px;
  border-radius: 3px 3px 0 0;
  min-height: 4px;
  transition: height 0.5s ease;
}
.dash-trend-bar.tasks {
  background: var(--primary-gradient);
}
.dash-trend-bar.cost {
  background: linear-gradient(180deg, #f59e0b, #f97316);
}
.dash-trend-label {
  font-size: 11px;
  color: var(--text-secondary);
  margin-top: 6px;
}

/* ========== Filter Search Input ========== */
.filter-search-input {
  flex: 1;
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid var(--border);
  font-size: 12px;
  outline: none;
  transition: border-color 0.2s;
  background: #fff;
}
.filter-search-input:focus {
  border-color: var(--primary);
}
.filter-search-input::placeholder {
  color: #bbb;
}

/* ========== Responsive adjustments ========== */
@media (max-width: 768px) {
  .home-how-steps {
    flex-direction: column;
    align-items: center;
  }
  .home-how-arrow {
    display: none;
  }
  .home-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .home-stats-inner {
    gap: 16px;
  }
  .home-stat-number {
    font-size: 28px;
  }
  .dash-trend-bar {
    width: 10px;
  }
}

/* ===== ModelsPage (模型广场) ===== */
.model-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.2s;
}
.model-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(102,126,234,0.15);
}
.model-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 16px 0;
}
.model-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.model-badges {
  display: flex;
  gap: 4px;
}
.model-card-body {
  padding: 12px 16px 16px;
}
.model-card-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.model-card-framework {
  font-size: 11px;
  color: var(--primary);
  background: rgba(102,126,234,0.1);
  padding: 2px 8px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 8px;
}
.model-card-desc {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.model-card-meta {
  display: flex;
  gap: 12px;
  font-size: 11px;
  color: var(--text-secondary);
  margin-bottom: 12px;
}
.model-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 10px;
}
.model-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--danger);
}
.model-price.free {
  color: var(--success);
}
.btn-use-model {
  background: var(--primary-gradient);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
}
.btn-use-model:hover {
  opacity: 0.9;
}

/* ===== ImagesPage (镜像广场) ===== */
.image-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.2s;
}
.image-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(102,126,234,0.15);
}
.image-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 16px 0;
}
.image-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.image-badges {
  display: flex;
  gap: 4px;
}
.badge-official {
  background: var(--primary-gradient);
  color: #fff;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 600;
}
.image-card-body {
  padding: 12px 16px 16px;
}
.image-card-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.image-card-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.image-tag {
  font-size: 11px;
  color: var(--text-secondary);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  padding: 2px 8px;
  border-radius: 4px;
}
.image-card-desc {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.image-card-meta {
  display: flex;
  gap: 12px;
  font-size: 11px;
  color: var(--text-secondary);
  margin-bottom: 12px;
}
.image-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 10px;
}
.btn-use-image {
  background: var(--primary-gradient);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
}
.btn-use-image:hover {
  opacity: 0.9;
}
.image-source {
  font-size: 11px;
  color: var(--text-secondary);
}

/* ===== Hot Model Item (右侧面板) ===== */
.hot-model-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  cursor: pointer;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}
.hot-model-item:last-child {
  border-bottom: none;
}
.hot-model-item:hover {
  background: rgba(102,126,234,0.05);
  border-radius: 6px;
}
.hot-model-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.hot-model-info {
  flex: 1;
  min-width: 0;
}
.hot-model-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hot-model-calls {
  font-size: 11px;
  color: var(--text-secondary);
}
