body.chorushub-theme {
  --bg: #fbf9ff;
  --surface: rgba(11,18,32,0.04);
  --surface-alt: #f0efe9;
  --text: #0b1220;
  --muted: #555555;
  --accent: #7c3aed;
  --accent-2: #06b6d4;
  --accent-3: rgba(255,255,255,0.24);
  --border: rgba(17,17,17,0.12);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
  --radius: 22px;
  --font-display: "Space Grotesk", sans-serif;
  --font-body: "IBM Plex Sans", sans-serif;
  background: radial-gradient(circle at 10% 10%, rgba(124, 58, 237, 0.18), transparent 52%),
    radial-gradient(circle at 90% 30%, rgba(6, 182, 212, 0.14), transparent 54%),
    #fbf9ff;
}

body.chorushub-theme .site-header {
  background: rgba(255, 255, 255, 0.82);
  border-bottom-color: rgba(17,17,17,0.12);
}

body.chorushub-theme .nav-links a:hover {
  border-bottom-color: var(--accent);
}

body.chorushub-theme .hero-art {
  position: relative;
  min-height: 320px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0));
  overflow: hidden;
}

body.chorushub-theme .hero-glow {
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle, rgba(255,255,255,0.18), transparent 60%);
  filter: blur(40px);
}

body.chorushub-theme .hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.12) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.25;
}

body.chorushub-theme .hero-chip {
  position: absolute;
  right: 18%;
  top: 22%;
  width: 160px;
  height: 160px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.16);
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.35), rgba(6, 182, 212, 0.18));
  box-shadow: 0 34px 90px rgba(0,0,0,0.32);
  transform: rotate(-8deg);
}

body.chorushub-theme .arch-diagram {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

body.chorushub-theme .arch-node {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.12);
}

body.chorushub-theme .arch-node p {
  margin: 0.6rem 0 0;
  color: var(--muted);
}

body.chorushub-theme .timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  border-left: 2px solid var(--border);
}

body.chorushub-theme .timeline li {
  position: relative;
  padding: 0.7rem 0 0.7rem 1.2rem;
  margin-left: 0.25rem;
  color: var(--muted);
}

body.chorushub-theme .timeline li::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 1.05rem;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(124, 58, 237, 0.14);
}

body.chorushub-theme .table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: 0 16px 56px rgba(0, 0, 0, 0.1);
}

body.chorushub-theme .storefront-search {
  display: grid;
  gap: 0.9rem;
}

body.chorushub-theme .storefront-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

body.chorushub-theme .storefront-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.75rem;
  margin-top: 0.85rem;
  color: var(--muted);
  font-size: 0.9rem;
}

body.chorushub-theme .storefront-price {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text);
}

body.chorushub-theme [data-storefront].is-loading {
  opacity: 0.92;
}

body.chorushub-theme .support-messages {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-height: 340px;
  overflow: auto;
  padding: 0.75rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--surface-alt);
}

body.chorushub-theme .support-bubble {
  max-width: 95%;
  padding: 0.75rem 0.9rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: 0 12px 32px rgba(0,0,0,0.06);
}

body.chorushub-theme .support-bubble.me {
  margin-left: auto;
  border-color: rgba(255,255,255,0.18);
  background: linear-gradient(135deg, rgba(255,255,255,0.92), rgba(255,255,255,0.76));
}

body.chorushub-theme .support-bubble .kicker {
  margin-bottom: 0.35rem;
}