/**
 * Hashtag AI Network — Dark Glassmorphism Theme
 *
 * Design Language:
 *   - Dark background (#0a0a0f)
 *   - Glass cards (backdrop-blur + subtle borders)
 *   - Gradient accents (#6366f1 → #8b5cf6)
 *   - Monospace accents for technical data
 */

/* --- Reset & Base --- */

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

:root {
  --bg: #0a0a0f;
  --bg-subtle: #111118;
  --surface: rgba(255, 255, 255, 0.03);
  --surface-hover: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.15);

  --text: #e4e4e7;
  --text-muted: #71717a;
  --text-dim: #52525b;

  --primary: #6366f1;
  --primary-hover: #818cf8;
  --primary-glow: rgba(99, 102, 241, 0.15);

  --accent: #8b5cf6;
  --success: #22c55e;
  --warning: #f59e0b;
  --error: #ef4444;
  --info: #3b82f6;

  --blue: #3b82f6;
  --purple: #8b5cf6;
  --green: #22c55e;

  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;

  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: "SF Mono", "Fira Code", "JetBrains Mono", monospace;

  --transition: 150ms ease;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--primary-hover);
}

code {
  font-family: var(--font-mono);
  background: var(--surface);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.875em;
}

/* --- Glass --- */

.glass {
  background: var(--surface);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.glass:hover {
  border-color: var(--border-strong);
}

/* --- Navigation --- */

#nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 15, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text) !important;
}

.logo-hash {
  color: var(--primary);
  font-size: 1.5rem;
  font-weight: 700;
}

.logo-accent {
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 8px;
  flex: 1;
}

.nav-link {
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  color: var(--text-muted) !important;
  font-size: 0.9rem;
  transition: all var(--transition);
}

.nav-link:hover {
  color: var(--text) !important;
  background: var(--surface);
}

.nav-link.active {
  color: var(--text) !important;
  background: var(--primary-glow);
}

.nav-actions {
  display: flex;
  gap: 8px;
}

/* --- Buttons --- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 16px;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-primary {
  background: var(--primary);
  color: white;
}

.btn-primary:hover:not(:disabled) {
  background: var(--primary-hover);
  box-shadow: 0 0 20px var(--primary-glow);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--border-strong);
  color: var(--text);
}

.btn-outline:hover:not(:disabled) {
  background: var(--surface);
  border-color: var(--primary);
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
}

.btn-ghost:hover {
  color: var(--text);
  background: var(--surface);
}

.btn-sm {
  padding: 4px 12px;
  font-size: 0.8rem;
}

.btn-lg {
  padding: 12px 24px;
  font-size: 1rem;
}

.btn-connected {
  background: var(--surface);
  color: var(--success);
  border: 1px solid rgba(34, 197, 94, 0.3);
  font-family: var(--font-mono);
  font-size: 0.8rem;
}

/* --- Pages --- */

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 24px 64px;
}

.page-header {
  text-align: center;
  margin-bottom: 40px;
}

.page-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.page-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.page-center {
  text-align: center;
  padding: 100px 24px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.back-link {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--text-muted) !important;
  font-size: 0.9rem;
}

.back-link:hover {
  color: var(--text) !important;
}

/* --- Search --- */

.search-section {
  margin-bottom: 32px;
}

.search-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  margin-bottom: 16px;
}

.search-icon {
  color: var(--text-muted);
  flex-shrink: 0;
}

.search-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text);
  font-size: 1rem;
  font-family: var(--font);
}

.search-input::placeholder {
  color: var(--text-dim);
}

.filter-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* --- Chips / Tags --- */

.chip {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
}

.chip:hover,
.chip.active {
  border-color: var(--primary);
  color: var(--text);
  background: var(--primary-glow);
}

.chip-sm {
  padding: 2px 8px;
  font-size: 0.75rem;
}

.chip-cap {
  border-color: rgba(59, 130, 246, 0.3);
  color: var(--blue);
}

.chip-tag {
  border-color: rgba(139, 92, 246, 0.3);
  color: var(--purple);
}

.chip-more {
  border-color: var(--border);
  color: var(--text-dim);
}

/* --- Agent Grid --- */

.agent-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 16px;
}

.results-header {
  margin-bottom: 16px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* --- Agent Card --- */

.agent-card {
  display: block;
  padding: 20px;
  color: var(--text) !important;
  transition: all var(--transition);
  cursor: pointer;
}

.agent-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  border-color: var(--primary);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.card-avatar,
.agent-avatar {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: white;
  flex-shrink: 0;
}

.avatar-active {
  box-shadow: 0 0 12px var(--primary-glow);
}

.card-title-area {
  flex: 1;
  min-width: 0;
}

.card-name {
  font-size: 1rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-badges {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
}

.card-description {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 12px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-caps,
.card-tags {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.card-footer {
  display: flex;
  justify-content: flex-end;
  color: var(--text-dim);
  font-size: 0.75rem;
}

/* --- Badges --- */

.badge {
  display: inline-flex;
  align-items: center;
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-blue {
  background: rgba(59, 130, 246, 0.15);
  color: var(--blue);
}

.badge-purple {
  background: rgba(139, 92, 246, 0.15);
  color: var(--purple);
}

.badge-green {
  background: rgba(34, 197, 94, 0.15);
  color: var(--green);
}

.badge-muted {
  background: var(--surface);
  color: var(--text-dim);
}

/* --- Status Dot --- */

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.status-active {
  background: var(--success);
  box-shadow: 0 0 6px rgba(34, 197, 94, 0.5);
}

.status-inactive {
  background: var(--text-dim);
}

/* --- Agent Detail Page --- */

.agent-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 24px;
  align-items: start;
}

@media (max-width: 900px) {
  .agent-layout {
    grid-template-columns: 1fr;
  }
}

.agent-info {
  padding: 24px;
}

.agent-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.agent-header .agent-avatar {
  width: 56px;
  height: 56px;
  font-size: 1.5rem;
}

.agent-name {
  font-size: 1.5rem;
  font-weight: 700;
}

.agent-status {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.agent-section {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.agent-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.agent-section h3 {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.agent-description {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.tag-list {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.tag-list.compact {
  margin-top: 8px;
}

.info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
}

.info-label {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.info-value {
  font-size: 0.85rem;
  text-align: right;
}

.mono {
  font-family: var(--font-mono);
  font-size: 0.8rem;
}

/* --- Pricing Box --- */

.pricing-box {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding: 12px 16px;
  margin-top: 8px;
}

.pricing-amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--success);
}

.pricing-currency {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.pricing-per {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.pricing-chain {
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-left: auto;
}

/* --- Chat Widget --- */

.agent-chat {
  padding: 0;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  flex-direction: column;
}

.chat-widget {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 500px;
}

.chat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
}

.chat-agent-name {
  font-weight: 600;
}

.chat-status {
  color: var(--text-dim);
  font-size: 0.75rem;
  margin-left: 8px;
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chat-welcome {
  text-align: center;
  padding: 40px 20px;
  color: var(--text-muted);
}

.chat-unavailable {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 300px;
  padding: 40px;
  text-align: center;
  color: var(--text-muted);
}

.chat-message {
  display: flex;
}

.chat-user {
  justify-content: flex-end;
}

.message-bubble {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  line-height: 1.5;
}

.user-bubble {
  background: var(--primary);
  color: white;
  border-bottom-right-radius: 4px;
}

.agent-bubble {
  background: var(--surface-hover);
  border: 1px solid var(--border);
  border-bottom-left-radius: 4px;
}

.error-bubble {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: var(--error);
}

.payment-bubble {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  text-align: center;
}

.payment-bubble h4 {
  color: var(--warning);
  margin-bottom: 8px;
}

.payment-info {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  margin: 12px 0;
}

.payment-amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--warning);
}

.message-header-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.message-sender {
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--primary);
}

.message-tools {
  font-size: 0.7rem;
  color: var(--text-dim);
  background: var(--surface);
  padding: 1px 6px;
  border-radius: 4px;
}

/* Typing indicator */

.typing-indicator {
  display: flex;
  gap: 4px;
  padding: 4px 0;
}

.typing-indicator span {
  width: 6px;
  height: 6px;
  background: var(--text-muted);
  border-radius: 50%;
  animation: typing 1.4s infinite ease-in-out;
}

.typing-indicator span:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typing {
  0%,
  60%,
  100% {
    transform: translateY(0);
    opacity: 0.4;
  }
  30% {
    transform: translateY(-4px);
    opacity: 1;
  }
}

.chat-input-area {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  padding: 12px 16px;
  border-top: 1px solid var(--border);
}

.chat-input {
  flex: 1;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  color: var(--text);
  font-family: var(--font);
  font-size: 0.9rem;
  resize: none;
  outline: none;
  transition: border-color var(--transition);
  max-height: 120px;
}

.chat-input:focus {
  border-color: var(--primary);
}

.btn-send {
  width: 40px;
  height: 40px;
  padding: 0;
  flex-shrink: 0;
}

/* --- Deploy Page --- */

.deploy-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 24px;
  align-items: start;
}

@media (max-width: 900px) {
  .deploy-layout {
    grid-template-columns: 1fr;
  }
}

.deploy-form {
  padding: 28px;
}

.deploy-form h2 {
  margin-bottom: 24px;
}

.deploy-sidebar {
  padding: 24px;
}

.deploy-sidebar h3 {
  font-size: 0.9rem;
  margin-bottom: 12px;
  margin-top: 20px;
}

.deploy-sidebar h3:first-child {
  margin-top: 0;
}

/* --- Forms --- */

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--text-muted);
}

.form-input,
.form-textarea {
  width: 100%;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  color: var(--text);
  font-family: var(--font);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition);
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--primary);
}

.form-textarea {
  resize: vertical;
  min-height: 80px;
}

.form-hint {
  display: block;
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-top: 4px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 0.9rem;
}

.form-checkbox input[type="checkbox"] {
  accent-color: var(--primary);
}

.form-details {
  margin-bottom: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0;
}

.form-details summary {
  padding: 12px 16px;
  cursor: pointer;
  font-weight: 500;
  color: var(--text-muted);
  list-style: none;
}

.form-details summary::-webkit-details-marker {
  display: none;
}

.form-details summary::before {
  content: "+ ";
  color: var(--primary);
}

.form-details[open] summary::before {
  content: "- ";
}

.form-details-content {
  padding: 0 16px 16px;
}

.form-actions {
  margin-top: 24px;
}

/* --- Deploy Result --- */

.deploy-result {
  margin-top: 24px;
}

.result-success {
  padding: 20px;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: var(--radius);
}

.result-success h3 {
  color: var(--success);
  margin-bottom: 12px;
}

.result-error {
  padding: 20px;
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: var(--radius);
}

.result-error h3 {
  color: var(--error);
  margin-bottom: 8px;
}

.key-value {
  word-break: break-all;
  user-select: all;
}

.text-warning {
  color: var(--warning);
  font-size: 0.85rem;
  margin-top: 12px;
}

/* --- Code Block --- */

.code-block {
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
  overflow-x: auto;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* --- Steps --- */

.steps-list {
  list-style: none;
  counter-reset: step;
}

.steps-list li {
  counter-increment: step;
  padding: 6px 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.steps-list li::before {
  content: counter(step) ".";
  color: var(--primary);
  font-weight: 600;
  margin-right: 8px;
}

.link-list {
  list-style: none;
}

.link-list li {
  padding: 4px 0;
}

.link-list a {
  font-size: 0.85rem;
}

/* --- Dashboard --- */

.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.stat-card {
  padding: 20px;
  text-align: center;
}

.stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.dashboard-section {
  margin-bottom: 32px;
}

.dashboard-section h2 {
  margin-bottom: 16px;
  font-size: 1.1rem;
}

.my-agents-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.my-agent-card {
  padding: 16px 20px;
}

.agent-header-info {
  flex: 1;
}

.agent-header-info h3 {
  font-size: 1rem;
}

.agent-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* --- Messages --- */

.messages-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.message-item {
  padding: 12px 16px;
}

.message-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
  font-size: 0.85rem;
}

.message-from {
  font-weight: 600;
  color: var(--primary);
}

.message-arrow {
  color: var(--text-dim);
}

.message-to {
  font-weight: 600;
  color: var(--accent);
}

.message-time {
  margin-left: auto;
  color: var(--text-dim);
  font-size: 0.75rem;
}

.message-content {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* --- Loading --- */

.loading {
  display: flex;
  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);
  }
}

/* --- Empty State --- */

.empty-state {
  text-align: center;
  padding: 40px 20px;
  color: var(--text-muted);
  grid-column: 1 / -1;
}

.empty-state p {
  margin-bottom: 16px;
}

/* --- Toast --- */

#toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.toast {
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  color: var(--text);
  transform: translateX(100%);
  opacity: 0;
  transition: all 300ms ease;
  max-width: 400px;
}

.toast.show {
  transform: translateX(0);
  opacity: 1;
}

.toast-success {
  border-color: rgba(34, 197, 94, 0.3);
  background: rgba(34, 197, 94, 0.1);
}

.toast-error {
  border-color: rgba(239, 68, 68, 0.3);
  background: rgba(239, 68, 68, 0.1);
}

.toast-info {
  border-color: rgba(59, 130, 246, 0.3);
  background: rgba(59, 130, 246, 0.1);
}

/* --- Utilities --- */

.text-muted {
  color: var(--text-muted);
}

/* --- Responsive --- */

@media (max-width: 768px) {
  .nav-inner {
    padding: 0 16px;
  }

  .page {
    padding: 20px 16px 48px;
  }

  .page-title {
    font-size: 1.75rem;
  }

  .agent-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .nav-links {
    gap: 4px;
  }

  .nav-link {
    padding: 4px 10px;
    font-size: 0.8rem;
  }
}

/* --- Scrollbar --- */

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: var(--border-strong);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text-dim);
}

/* --- Selection --- */

::selection {
  background: var(--primary);
  color: white;
}
