
:root {
  --cp-yellow: #f7f000;
  --cp-yellow-soft: #f7f000cc;
  --cp-black: #04050a;
  --cp-dark: #02040a;
  --cp-accent-cyan: #00ffd7;
  --cp-accent-red: #ff003c;
  --cp-border: #111827;
  --cp-text-main: #050608;
  --cp-text-invert: #f9fafb;
  --cp-muted: #6b7280;
}

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

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body.cp-body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #020617, #000);
  color: var(--cp-text-main);
  overflow-x: hidden;
}

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

.container {
  width: min(1180px, 100% - 32px);
  margin-inline: auto;
}

.cp-bg-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.2;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='noStitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.4'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
  z-index: -1;
}

/* HEADER */

.cp-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(20px);
  background: linear-gradient(to bottom, #000000f5, #000000db 60%, #00000033);
  border-bottom: 1px solid rgba(148, 163, 184, 0.3);
}

.cp-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-block: 10px;
}

.cp-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  font-family: "Rajdhani", system-ui;
}

.cp-logo-main {
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cp-yellow);
}

.cp-logo-main span {
  color: var(--cp-accent-cyan);
}

.cp-logo-sub {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #9ca3af;
}

/* NAV */

.cp-nav {
  flex: 1;
}

.cp-nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
}

.cp-nav-toggle span {
  width: 20px;
  height: 2px;
  background: #f9fafb;
}

.cp-nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.cp-nav-item a {
  font-family: "Rajdhani", system-ui;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  color: #e5e7eb;
  padding: 6px 8px;
  border-radius: 999px;
  border: 1px solid transparent;
  position: relative;
  transition: all 0.16s ease-out;
}

.cp-nav-item a:hover {
  color: var(--cp-yellow);
  border-color: var(--cp-yellow);
  background: rgba(15, 23, 42, 0.8);
}

.cp-nav-disabled {
  opacity: 0.6;
  cursor: default;
}

.cp-nav-tag {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #9ca3af;
  display: block;
  text-align: center;
  margin-top: -6px;
}

.cp-lang {
  display: flex;
  align-items: center;
  gap: 4px;
}

.lang-btn {
  border-radius: 999px;
  border: 1px solid #4b5563;
  background: #020617;
  color: #e5e7eb;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 4px 6px;
  cursor: pointer;
  transition: all 0.15s ease-out;
}

.lang-btn.active {
  background: var(--cp-yellow);
  color: #020617;
  border-color: var(--cp-yellow);
}

.cp-buy-btn {
  background: var(--cp-yellow);
  color: #020617;
  font-family: "Rajdhani", system-ui;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid #000;
  box-shadow: 0 12px 30px rgba(234, 179, 8, 0.5);
  transition: transform 0.12s ease-out, box-shadow 0.12s ease-out, background 0.12s ease-out;
}

.cp-buy-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(234, 179, 8, 0.7);
}

/* HERO */

.cp-hero {
  position: relative;
  background: var(--cp-yellow);
  color: var(--cp-text-main);
  padding-block: 60px 44px;
  border-bottom: 3px solid #020617;
  overflow: hidden;
}

.cp-hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 0, rgba(56, 189, 248, 0.35), transparent 55%),
    radial-gradient(circle at 90% 30%, rgba(248, 113, 113, 0.25), transparent 55%);
  mix-blend-mode: multiply;
  pointer-events: none;
}

.cp-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 32px;
  align-items: flex-end;
}

.cp-hero-kicker {
  font-family: "Rajdhani", system-ui;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 11px;
  margin: 0 0 8px;
}

.cp-hero-title {
  font-family: "Rajdhani", system-ui;
  font-weight: 700;
  font-size: clamp(32px, 4vw, 44px);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 12px;
}

.cp-hero-title span {
  display: block;
  font-size: 18px;
  letter-spacing: 0.16em;
}

.cp-hero-lead {
  font-size: 16px;
  max-width: 540px;
  margin: 0 0 22px;
}

.cp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.cp-btn {
  border-radius: 999px;
  font-family: "Rajdhani", system-ui;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 11px;
  padding: 10px 18px;
  border: 1px solid #020617;
  background: transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.16s ease-out;
}

.cp-btn-primary {
  background: #020617;
  color: #f9fafb;
}

.cp-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.7);
}

.cp-btn-ghost {
  background: transparent;
  color: #020617;
}

.cp-btn-ghost:hover {
  background: rgba(15, 23, 42, 0.08);
}

.cp-btn-full {
  width: 100%;
}

.cp-hero-platforms {
  font-size: 12px;
}

.cp-hero-platforms-title {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-family: "Rajdhani", system-ui;
  font-size: 11px;
}

.cp-hero-platforms-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}

.cp-hero-platforms-list span {
  border: 1px solid #111827;
  padding: 4px 8px;
  font-size: 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
}

/* HERO RIGHT MODERN */

.cp-hero-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cp-hero-art {
  position: relative;
  height: 240px;
  border-radius: 20px;
  overflow: hidden;
  background: radial-gradient(circle at top left, #0f172a, #020617), url("assets/necropolis_cover.png") center/cover no-repeat;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.9);
}

.cp-hero-art-glow {
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 10% 0, rgba(34, 211, 238, 0.35), transparent 60%),
    radial-gradient(circle at 80% 80%, rgba(244, 63, 94, 0.5), transparent 60%);
  opacity: 0.85;
}

.cp-hero-art-frame {
  position: absolute;
  inset: 10px;
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  backdrop-filter: blur(10px);
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.7));
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

.cp-hero-art-inner {
  color: #e5e7eb;
}

.cp-hero-art-title {
  font-family: "Rajdhani", system-ui;
  font-size: 20px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.cp-hero-art-caption {
  margin-top: 8px;
  font-size: 12px;
  color: #9ca3af;
}

.cp-hero-note {
  font-size: 11px;
  color: #4b5563;
}

/* NEWSLETTER */

.cp-newsletter {
  background: rgba(15, 23, 42, 0.98);
  color: #e5e7eb;
  padding-block: 28px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.3);
}

.cp-newsletter-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.3fr);
  gap: 24px;
  align-items: center;
}

.cp-newsletter h2 {
  margin: 0 0 6px;
  font-family: "Rajdhani", system-ui;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 16px;
}

.cp-newsletter p {
  margin: 0;
  font-size: 14px;
  color: #d1d5db;
}

.cp-newsletter-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.cp-newsletter-row {
  display: flex;
  margin-top: 6px;
  gap: 8px;
}

.cp-newsletter-row input {
  flex: 1;
}

.cp-newsletter-note {
  margin-top: 6px;
  font-size: 10px;
  color: #9ca3af;
}

/* INPUTS */

input,
textarea {
  border-radius: 999px;
  border: 1px solid #111827;
  background: #020617;
  color: #f9fafb;
  padding: 8px 12px;
  font-family: inherit;
  font-size: 13px;
  outline: none;
  transition: border-color 0.16s ease-out, box-shadow 0.16s ease-out, background 0.16s ease-out;
}

textarea {
  border-radius: 16px;
}

input::placeholder,
textarea::placeholder {
  color: #6b7280;
}

input:focus,
textarea:focus {
  border-color: var(--cp-accent-cyan);
  box-shadow: 0 0 0 1px rgba(34, 211, 238, 0.35);
}

/* HIGHLIGHTS */

.cp-highlights {
  background: radial-gradient(circle at top, #020617, #020617 40%, #000);
  color: #e5e7eb;
  padding-block: 32px 40px;
}

.cp-highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}

.cp-highlight-card {
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: radial-gradient(circle at top left, rgba(34, 211, 238, 0.16), transparent 55%),
    rgba(15, 23, 42, 0.98);
  padding: 14px 14px 16px;
  position: relative;
  overflow: hidden;
  transition: transform 0.16s ease-out, box-shadow 0.16s ease-out, border-color 0.16s ease-out;
}

.cp-highlight-card::after {
  content: "";
  position: absolute;
  inset-inline: -40px;
  bottom: -6px;
  height: 2px;
  background: linear-gradient(90deg, var(--cp-accent-cyan), var(--cp-accent-red));
  opacity: 0.9;
}

.cp-highlight-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.9);
  border-color: rgba(248, 250, 252, 0.5);
}

.cp-highlight-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
  font-family: "Rajdhani", system-ui;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 10px;
}

.cp-highlight-tag {
  color: var(--cp-accent-cyan);
}

.cp-highlight-kicker {
  color: #f9fafb;
}

.cp-highlight-card p {
  margin: 0;
  font-size: 13px;
  color: #9ca3af;
}

/* GENERIC PAGE LAYOUTS */

.cp-page-hero {
  position: relative;
  padding-block: 40px 30px;
  border-bottom: 3px solid #020617;
  overflow: hidden;
}

.cp-page-hero--yellow {
  background: var(--cp-yellow);
}

.cp-page-hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 5% 0, rgba(34, 211, 238, 0.3), transparent 55%),
    radial-gradient(circle at 90% 20%, rgba(244, 63, 94, 0.3), transparent 55%);
  pointer-events: none;
  mix-blend-mode: multiply;
}

.cp-page-hero-inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.cp-page-hero h1 {
  margin: 4px 0 10px;
  font-family: "Rajdhani", system-ui;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 24px;
}

.cp-page-hero-text {
  margin: 0;
  max-width: 540px;
  font-size: 14px;
}

.cp-page-hero-meta {
  display: grid;
  gap: 6px;
  align-self: flex-start;
}

.cp-page-meta-item {
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.9);
  padding: 6px 10px;
  background: rgba(15, 23, 42, 0.96);
  color: #e5e7eb;
  font-size: 11px;
}

.cp-page-meta-item span {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #9ca3af;
  font-family: "Rajdhani", system-ui;
}

.cp-page-meta-item strong {
  font-size: 12px;
}

/* GENERIC SECTIONS */

.cp-section {
  padding-block: 32px;
}

.cp-section--dark {
  background: #020617;
  color: #e5e7eb;
}

.cp-two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr);
  gap: 24px;
}

.cp-section h2 {
  margin-top: 0;
  margin-bottom: 10px;
  font-family: "Rajdhani", system-ui;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 16px;
}

.cp-section-lead {
  margin-top: 0;
  margin-bottom: 14px;
  font-size: 13px;
  color: #9ca3af;
}

.cp-list {
  margin: 0;
  padding-left: 18px;
  font-size: 13px;
  color: inherit;
}

.cp-list li + li {
  margin-top: 4px;
}

/* MEDIA PLACEHOLDER */

.cp-media-placeholder {
  border-radius: 20px;
  border: 1px dashed #4b5563;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #9ca3af;
}

/* STUDIO */

.cp-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.cp-chip {
  border-radius: 999px;
  border: 1px solid #111827;
  padding: 4px 10px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-family: "Rajdhani", system-ui;
}

.cp-team-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.cp-team-list li {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 14px;
  border: 1px solid #111827;
  background: #020617;
}

.cp-team-role {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-family: "Rajdhani", system-ui;
  color: #9ca3af;
}

.cp-team-name {
  font-size: 13px;
}

/* ROADMAP */

.cp-roadmap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
}

.cp-roadmap-item {
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: radial-gradient(circle at top left, rgba(34, 211, 238, 0.16), transparent 55%),
    rgba(15, 23, 42, 0.98);
  color: #e5e7eb;
  padding: 14px;
}

.cp-roadmap-stage {
  font-family: "Rajdhani", system-ui;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--cp-accent-cyan);
}

.cp-roadmap-item h2 {
  margin: 6px 0 8px;
  font-family: "Rajdhani", system-ui;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 14px;
}

.cp-roadmap-item p {
  margin: 0;
  font-size: 13px;
  color: #9ca3af;
}

/* CONTACT */

.cp-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 13px;
}

.cp-contact-list li + li {
  margin-top: 10px;
}

.cp-contact-label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-family: "Rajdhani", system-ui;
  color: #9ca3af;
}

.cp-contact-value {
  display: block;
}

.cp-form {
  border-radius: 20px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  padding: 16px;
  background: radial-gradient(circle at top left, rgba(34, 211, 238, 0.16), transparent 55%),
    rgba(15, 23, 42, 0.98);
}

.cp-form-row {
  display: grid;
  gap: 4px;
  font-size: 12px;
  margin-bottom: 10px;
}

.cp-form-row span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-family: "Rajdhani", system-ui;
  color: #d1d5db;
}

.cp-form-note {
  margin: 6px 0 0;
  font-size: 10px;
  color: #9ca3af;
}

/* FOOTER */

.cp-footer {
  background: #000;
  color: #e5e7eb;
  margin-top: 32px;
  border-top: 1px solid rgba(148, 163, 184, 0.35);
  font-size: 12px;
}

.cp-footer-top {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-block: 20px 16px;
}

.cp-footer-logo {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cp-footer-game {
  font-family: "Rajdhani", system-ui;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cp-yellow);
}

.cp-footer-social span:first-child {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-family: "Rajdhani", system-ui;
  margin-bottom: 4px;
}

/* modern social icons */

.cp-footer-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cp-footer-icon {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid #111827;
  background: #020617;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Rajdhani", system-ui;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #e5e7eb;
  transition: transform 0.12s ease-out, box-shadow 0.12s ease-out, background 0.12s ease-out, border-color 0.12s ease-out;
}

.cp-footer-icon span {
  pointer-events: none;
}

.cp-footer-icon--yt:hover {
  background: #ff0000;
  border-color: #ff0000;
  box-shadow: 0 0 10px #ff000090;
  transform: translateY(-1px);
}

.cp-footer-icon--dc:hover {
  background: #5865f2;
  border-color: #5865f2;
  box-shadow: 0 0 10px #5865f290;
  transform: translateY(-1px);
}

.cp-footer-icon--steam:hover {
  background: #1b2838;
  border-color: #1b2838;
  box-shadow: 0 0 10px #1b283890;
  transform: translateY(-1px);
}

.cp-footer-icon--tg:hover {
  background: #229ed9;
  border-color: #229ed9;
  box-shadow: 0 0 10px #229ed990;
  transform: translateY(-1px);
}

.cp-footer-icon--tt:hover {
  background: #000000;
  border-color: #000000;
  box-shadow: 0 0 10px #ec489990;
  transform: translateY(-1px);
}

.cp-footer-bottom {
  border-top: 1px solid #111827;
  padding-block: 10px;
}

.cp-footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  align-items: center;
}

.cp-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cp-footer-links a {
  font-size: 11px;
  color: #93c5fd;
}

.cp-footer-copy {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  font-size: 11px;
  color: #9ca3af;
}

.cp-footer-dot {
  width: 3px;
  height: 3px;
  border-radius: 999px;
  background: #4b5563;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .cp-hero-inner,
  .cp-newsletter-inner,
  .cp-page-hero-inner,
  .cp-two-col {
    grid-template-columns: minmax(0, 1fr);
  }

  .cp-page-hero-meta {
    align-self: auto;
  }
}

@media (max-width: 760px) {
  .cp-nav-list {
    position: fixed;
    inset-inline: 0;
    top: 56px;
    background: rgba(0, 0, 0, 0.98);
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 8px 16px 12px;
    transform-origin: top;
    transform: scaleY(0.8);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.16s ease-out, opacity 0.16s ease-out;
  }

  .cp-nav-list.open {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .cp-nav-toggle {
    display: inline-flex;
  }

  .cp-lang {
    justify-content: flex-end;
  }

  .cp-header-inner {
    gap: 10px;
  }
}

@media (max-width: 640px) {
  .cp-hero {
    padding-block: 44px 30px;
  }

  .cp-footer-top {
    flex-direction: column;
  }
}

/* Browser check overlay */

.ds-check-overlay {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at top, rgba(15,23,42,0.9), rgba(0,0,0,0.98));
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 40;
  transition: opacity 0.3s ease-out, visibility 0.3s ease-out;
}

.ds-check-overlay--hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.ds-check-card {
  border-radius: 22px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: radial-gradient(circle at top left, rgba(34, 211, 238, 0.18), transparent 55%),
    rgba(15, 23, 42, 0.98);
  padding: 20px 22px 18px;
  min-width: min(360px, 100% - 40px);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.9);
}

.ds-check-logo {
  font-family: "Rajdhani", system-ui;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-size: 16px;
  color: var(--cp-yellow);
  margin-bottom: 10px;
}

.ds-check-logo span {
  color: var(--cp-accent-cyan);
}

.ds-check-label {
  margin: 0 0 10px;
  color: #e5e7eb;
  font-size: 14px;
}

.ds-check-progress {
  position: relative;
  height: 4px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  overflow: hidden;
  margin-bottom: 8px;
}

.ds-check-bar {
  position: absolute;
  inset: 0;
  width: 40%;
  background: linear-gradient(90deg, var(--cp-accent-cyan), var(--cp-yellow));
  animation: ds-check-move 1s infinite ease-in-out;
}

.ds-check-sub {
  margin: 0;
  font-size: 11px;
  color: #9ca3af;
}

@keyframes ds-check-move {
  0% { transform: translateX(-100%); }
  50% { transform: translateX(20%); }
  100% { transform: translateX(100%); }
}
