/* ── Hero ── */
.hero {
  position: relative !important;
  width: 100% !important;
  min-height: 320px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  overflow: hidden !important;
  padding: 0 !important;
  background: linear-gradient(135deg, #e8edf5 0%, #dde4f0 100%) !important;
}

.hero img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  top: 0;
  left: 0;
  z-index: 0;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(248, 250, 252, 0.45);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 800px;
  padding: 5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 1rem;
}

.hero-gradient-text {
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.05rem;
  color: #334155;
  max-width: 520px;
  line-height: 1.65;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: #1e293b;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 1.1rem;
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  background: #667eea;
  border-radius: 50%;
  display: inline-block;
}

@media (max-width: 768px) {
  /* .hero {
    min-height: 44vh !important;
  } */

  .hero .container {
    padding: 3rem 1.2rem;
  }

  .hero h1 {
    font-size: clamp(1.6rem, 6vw, 2rem);
  }

  .hero p {
    font-size: 0.93rem;
  }

  .hero-badge {
    font-size: 0.76rem;
  }
}

/* ── Page layout ── */
.page-content {
  background: linear-gradient(160deg, #f1f5f9 0%, #e8edf5 100%);
  padding: 0;
  min-height: 60vh;
}

/* ── Terms Layout: Sidebar + Main ── */
.terms-layout {
  display: flex;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px 60px;
  gap: 32px;
}

/* ── TOC Sidebar ── */
.toc-sidebar {
  width: 230px;
  flex-shrink: 0;
  position: sticky;
  top: 80px;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
}

.toc-inner {
  background: white;
  border-radius: 16px;
  padding: 20px 16px;
  box-shadow: 0 4px 24px rgba(102, 126, 234, 0.10);
  border: 1px solid #e8edf5;
}

.toc-header {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #94a3b8;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.toc-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.toc-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 8px;
  font-size: 0.81rem;
  color: #64748b;
  text-decoration: none;
  transition: background 0.18s, color 0.18s;
  font-weight: 500;
}

.toc-link:hover,
.toc-link.active {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.10), rgba(118, 75, 162, 0.10));
  color: #667eea;
}

.toc-num {
  font-size: 0.68rem;
  font-weight: 700;
  min-width: 22px;
}

.toc-link.active .toc-num {
  color: #667eea;
}

.toc-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 16px;
  padding: 9px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s;
}

.toc-cta:hover {
  opacity: 0.88;
}

/* ── Main Content Area ── */
.terms-main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ── Content Box ── */
.content-box {
  background: white;
  padding: 30px 32px;
  margin-bottom: 0;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(102, 126, 234, 0.07);
  border: 1px solid #e8edf5;
  width: 100%;
  transition: box-shadow 0.2s, transform 0.2s;
  scroll-margin-top: 90px;
}

.content-box:hover {
  box-shadow: 0 6px 28px rgba(102, 126, 234, 0.13);
  transform: translateY(-2px);
}

.content-box h2 {
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid #f1f5f9;
}

.content-box p {
  color: #475569;
  line-height: 1.8;
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.content-box p:last-child {
  margin-bottom: 0;
}

.content-box strong {
  color: #1e293b;
  font-weight: 700;
}

/* ── Section Icon ── */
.section-icon-wrap {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.12), rgba(118, 75, 162, 0.12));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.section-icon-wrap i {
  color: #667eea;
  font-size: 1.1rem;
}

/* ── Info Boxes ── */
.info-box {
  /* display: flex; */
  align-items: flex-start;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 14px;
}

.info-box i {
  margin-top: 3px;
  flex-shrink: 0;
}

.info-blue {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #1e40af;
}

.info-blue i {
  color: #3b82f6;
}

.info-green {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #166534;
}

.info-green i {
  color: #22c55e;
}

.info-warn {
  background: #fffbeb;
  border: 1px solid #fde68a;
  color: #92400e;
}

.info-warn i {
  color: #f59e0b;
}

/* ── Highlight Strip ── */
.highlight-strip {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.08), rgba(118, 75, 162, 0.08));
  border-left: 4px solid #667eea;
  padding: 12px 16px;
  border-radius: 0 10px 10px 0;
  color: #334155;
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

/* ── Rule Cards ── */
.rule-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rule-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid #e8edf5;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.rule-card:hover {
  box-shadow: 0 4px 14px rgba(102, 126, 234, 0.10);
  border-color: #c7d2fe;
}

.rule-card>i {
  color: #667eea;
  font-size: 1.1rem;
  margin-top: 3px;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}

.rule-card strong {
  display: block;
  color: #1e293b;
  font-size: 0.93rem;
  margin-bottom: 3px;
}

.rule-card p {
  color: #64748b;
  font-size: 0.88rem;
  line-height: 1.55;
  margin: 0;
}

.rule-card--warn>i {
  color: #ef4444;
}

.rule-card--warn {
  border-color: #fecaca;
  background: #fff5f5;
}

/* ── Fee Showcase ── */
.fee-showcase {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.fee-card {
  flex: 1;
  min-width: 120px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  border-radius: 14px;
  padding: 18px 14px;
  text-align: center;
}

.fee-card--green {
  background: linear-gradient(135deg, #22c55e, #16a34a);
}

.fee-card--purple {
  background: linear-gradient(135deg, #8b5cf6, #6d28d9);
}

.fee-num {
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1;
}

.fee-label {
  font-size: 0.82rem;
  font-weight: 700;
  margin: 4px 0 2px;
  opacity: 0.95;
}

.fee-sub {
  font-size: 0.75rem;
  opacity: 0.8;
}

/* ── Steps List ── */
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 14px;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 13px 16px;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid #e8edf5;
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.6;
}

.step-num {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 800;
}

.step-item--warn .step-num {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

/* ── Contact Card ── */
.contact-card {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid #e8edf5;
  color: #475569;
  font-size: 0.92rem;
  text-decoration: none;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.contact-item:hover {
  box-shadow: 0 4px 14px rgba(102, 126, 234, 0.12);
  border-color: #c7d2fe;
  color: #667eea;
}

.contact-item i {
  color: #667eea;
  font-size: 1rem;
}

/* ── Benefits List ── */
.benefits-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}

/* ── Shimmer Loading ── */
@keyframes shimmerSweep {
  0%   { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}

.shimmer-title,
.shimmer-text,
.shimmer-icon {
  display: block;
  border-radius: 6px;
  background: linear-gradient(90deg, #e8edf5 25%, #f8fafc 50%, #e8edf5 75%);
  background-size: 800px 100%;
  animation: shimmerSweep 1.5s ease-in-out infinite;
}

.shimmer-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  margin-bottom: 16px;
}

.shimmer-title {
  height: 20px;
  width: 50%;
  margin-bottom: 18px;
  border-radius: 8px;
}

.shimmer-text {
  height: 13px;
  width: 100%;
  margin-bottom: 10px;
}

.shimmer-text.w85 { width: 85%; }
.shimmer-text.w70 { width: 70%; }
.shimmer-text.w90 { width: 90%; }
.shimmer-text.w60 { width: 60%; }

/* shimmer card — no hover lift, no pointer */
.shimmer-card {
  pointer-events: none;
  cursor: default;
}
.shimmer-card:hover {
  transform: none !important;
  box-shadow: 0 2px 12px rgba(102,126,234,0.07) !important;
}

/* shimmer sidebar — always visible */
.shimmer-sidebar .toc-inner {
  background: white;
  border-radius: 16px;
  padding: 20px 16px;
  box-shadow: 0 4px 24px rgba(102,126,234,0.10);
  border: 1px solid #e8edf5;
}

.benefits-list li {
  padding: 11px 14px;
  color: #475569;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.65;
  font-size: 0.93rem;
  background: #f8fafc;
  border-radius: 10px;
  border: 1px solid #e8edf5;
  transition: background 0.18s, border-color 0.18s, box-shadow 0.18s;
}

.benefits-list li:hover {
  background: #fff;
  border-color: #c7d2fe;
  box-shadow: 0 2px 10px rgba(102,126,234,0.09);
}

.benefits-list i {
  color: #667eea;
  margin-top: 3px;
  font-size: 0.95rem;
  flex-shrink: 0;
  width: 16px;
  text-align: center;
}



/* ── Responsive ── */
@media (max-width: 900px) {
  .toc-sidebar {
    display: none;
  }
  .shimmer-sidebar {
    display: none;
  }
  .terms-layout {
    padding: 20px 16px 40px;
  }
}

@media (max-width: 768px) {
  .content-box {
    padding: 22px 18px;
    border-radius: 12px;
  }

  .content-box h2 {
    font-size: 1.1rem;
  }

  .content-box p {
    font-size: 0.92rem;
  }

  .benefits-list li {
    padding: 10px 13px;
    font-size: 0.9rem;
  }

  .shimmer-title {
    width: 60%;
  }

  .fee-showcase {
    gap: 8px;
  }

  .fee-card {
    min-width: 90px;
    padding: 14px 10px;
  }

  .fee-num {
    font-size: 1.3rem;
  }
}

/* ── Contact Us Strip ── */
.contact-us-strip {
  background: white;
  border: 1px solid #e8edf5;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(102, 126, 234, 0.07);
}

.contact-us-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-us-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-us-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.12), rgba(118, 75, 162, 0.12));
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-us-icon i {
  color: #667eea;
  font-size: 1.3rem;
}

.contact-us-left h3 {
  font-size: 1rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 4px;
}

.contact-us-left p {
  font-size: 0.85rem;
  color: #64748b;
  margin: 0;
}

.contact-us-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  font-weight: 800;
  font-size: 0.9rem;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(102, 126, 234, 0.3);
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}

.contact-us-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
}

@media (max-width: 640px) {
  .contact-us-strip-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-us-btn {
    width: 100%;
    justify-content: center;
  }
}
/* ══════════════════════════════════════════
   DARK MODE — instant via html.dark-mode
   Applies to: About, FAQ, Terms, Privacy, Contact
   ══════════════════════════════════════════ */

/* Body & page bg */
html.dark-mode body,
body.dark-mode {
  background: #0d1117 !important;
  color: #e6edf3 !important;
  transition: none !important;
}
html.dark-mode .page-content,
body.dark-mode .page-content {
  background: #0d1117 !important;
  transition: none !important;
}



/* Hero */
html.dark-mode .hero::before,
body.dark-mode .hero::before {
  background: rgba(13,17,23,0.55) !important;
}
html.dark-mode .hero-badge,
body.dark-mode .hero-badge {
  background: rgba(124,106,247,0.18) !important;
  border-color: rgba(124,106,247,0.35) !important;
  color: #c9d1d9 !important;
}
html.dark-mode .hero-badge-dot,
body.dark-mode .hero-badge-dot { background: #a78bfa !important; }
html.dark-mode .hero h1,
body.dark-mode .hero h1 { color: #e6edf3 !important; }
html.dark-mode .hero p,
body.dark-mode .hero p { color: #8b949e !important; }

/* Feature items */
html.dark-mode .feature-item,
body.dark-mode .feature-item {
  background: #1c2333 !important;
  border-color: #30363d !important;
  transition: none !important;
}
html.dark-mode .feature-item:hover,
body.dark-mode .feature-item:hover {
  background: #21293d !important;
  border-color: #7c6af7 !important;
}
html.dark-mode .feature-item h3,
body.dark-mode .feature-item h3 { color: #e6edf3 !important; }
html.dark-mode .feature-item p,
body.dark-mode .feature-item p { color: #8b949e !important; }

/* Benefits list */
html.dark-mode .benefits-list li,
body.dark-mode .benefits-list li {
  background: #1c2333 !important;
  border-color: #30363d !important;
  transition: none !important;
}
html.dark-mode .benefits-list li:hover,
body.dark-mode .benefits-list li:hover {
  background: #21293d !important;
  border-color: #7c6af7 !important;
}
html.dark-mode .benefits-list i,
body.dark-mode .benefits-list i { color: #a78bfa !important; }
html.dark-mode .benefits-list li strong,
body.dark-mode .benefits-list li strong { color: #e6edf3 !important; }
html.dark-mode .benefits-list li span,
body.dark-mode .benefits-list li span { color: #8b949e !important; }

/* Value cards */
html.dark-mode .value-card,
body.dark-mode .value-card {
  background: #1c2333 !important;
  border-color: #30363d !important;
  transition: none !important;
}
html.dark-mode .value-card:hover,
body.dark-mode .value-card:hover {
  background: #21293d !important;
  border-color: #7c6af7 !important;
}
html.dark-mode .value-card h3,
body.dark-mode .value-card h3 { color: #e6edf3 !important; }
html.dark-mode .value-card p,
body.dark-mode .value-card p { color: #8b949e !important; }

/* FAQ accordion */
html.dark-mode .faq-item,
body.dark-mode .faq-item {
  background: #161b22 !important;
  border-color: #30363d !important;
  transition: none !important;
}
html.dark-mode .faq-item:hover,
body.dark-mode .faq-item:hover {
  border-color: #7c6af7 !important;
}
html.dark-mode .faq-item.open,
body.dark-mode .faq-item.open {
  background: #1c2333 !important;
  border-color: #7c6af7 !important;
  border-left-color: #7c6af7 !important;
}
html.dark-mode .faq-q,
body.dark-mode .faq-q { color: #e6edf3 !important; }
html.dark-mode .faq-icon,
body.dark-mode .faq-icon { color: #484f58 !important; }
html.dark-mode .faq-item.open .faq-icon,
body.dark-mode .faq-item.open .faq-icon { color: #a78bfa !important; }
html.dark-mode .faq-a,
body.dark-mode .faq-a {
  color: #8b949e !important;
  border-top-color: #30363d !important;
}
html.dark-mode .faq-cat-head,
body.dark-mode .faq-cat-head { border-bottom-color: #30363d !important; }
html.dark-mode .faq-cat-btn,
body.dark-mode .faq-cat-btn {
  background: #1c2333 !important;
  border-color: #30363d !important;
  color: #8b949e !important;
}
html.dark-mode .faq-cat-btn:hover,
body.dark-mode .faq-cat-btn:hover {
  background: rgba(124,106,247,0.1) !important;
  border-color: #7c6af7 !important;
  color: #a78bfa !important;
}

/* Contact us strip */
html.dark-mode .contact-us-strip,
body.dark-mode .contact-us-strip {
  background: #161b22 !important;
  border-color: #30363d !important;
  transition: none !important;
}
html.dark-mode .contact-us-icon,
body.dark-mode .contact-us-icon { background: rgba(124,106,247,0.15) !important; }
html.dark-mode .contact-us-icon i,
body.dark-mode .contact-us-icon i { color: #a78bfa !important; }
html.dark-mode .contact-us-left h3,
body.dark-mode .contact-us-left h3 { color: #e6edf3 !important; }
html.dark-mode .contact-us-left p,
body.dark-mode .contact-us-left p { color: #8b949e !important; }

/* ── Shimmer — dark mode ── */
html.dark-mode .shimmer-title,
html.dark-mode .shimmer-text,
html.dark-mode .shimmer-icon,
body.dark-mode .shimmer-title,
body.dark-mode .shimmer-text,
body.dark-mode .shimmer-icon {
  background: linear-gradient(90deg, #1c2333 25%, #252f3f 50%, #1c2333 75%) !important;
  background-size: 800px 100% !important;
  animation: shimmerSweep 1.5s ease-in-out infinite !important;
}
html.dark-mode .shimmer-card,
body.dark-mode .shimmer-card {
  background: #161b22 !important;
  border-color: #30363d !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3) !important;
}
html.dark-mode .shimmer-sidebar .toc-inner,
body.dark-mode .shimmer-sidebar .toc-inner {
  background: #161b22 !important;
  border-color: #30363d !important;
  box-shadow: 0 4px 24px rgba(0,0,0,0.4) !important;
}

/* ── Terms/Privacy specific dark mode ── */

/* TOC sidebar */
html.dark-mode .toc-inner,
body.dark-mode .toc-inner {
  background: #161b22 !important;
  border-color: #30363d !important;
  transition: none !important;
}
html.dark-mode .toc-header,

html.dark-mode .toc-link,
body.dark-mode .toc-link { color: #8b949e !important; }
html.dark-mode .toc-link:hover,
html.dark-mode .toc-link.active,
body.dark-mode .toc-link:hover,
body.dark-mode .toc-link.active {
  background: rgba(124,106,247,0.12) !important;
  color: #a78bfa !important;
}

html.dark-mode .toc-link.active .toc-num,
body.dark-mode .toc-link.active .toc-num { color: #a78bfa !important; }

/* Content box */
html.dark-mode .content-box,
body.dark-mode .content-box {
  background: #161b22 !important;
  border-color: #30363d !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3) !important;
  transition: none !important;
}
html.dark-mode .content-box:nth-child(even),
body.dark-mode .content-box:nth-child(even) {
  background: #161b22 !important;
}
html.dark-mode .content-box h2,
body.dark-mode .content-box h2 { border-bottom-color: #30363d !important; }
html.dark-mode .content-box p,
body.dark-mode .content-box p { color: #8b949e !important; }
html.dark-mode .content-box strong,
body.dark-mode .content-box strong { color: #e6edf3 !important; }

/* Section icon */
html.dark-mode .section-icon-wrap,
body.dark-mode .section-icon-wrap {
  background: rgba(124,106,247,0.15) !important;
}
html.dark-mode .section-icon-wrap i,
body.dark-mode .section-icon-wrap i { color: #a78bfa !important; }

/* Info boxes */
html.dark-mode .info-blue,
body.dark-mode .info-blue {
  background: rgba(59,130,246,0.12) !important;
  border-color: rgba(96,165,250,0.3) !important;
  color: #bfdbfe !important;
}
html.dark-mode .info-blue i,
body.dark-mode .info-blue i { color: #60a5fa !important; }
html.dark-mode .info-blue a,
body.dark-mode .info-blue a { color: #7dd3fc !important; }
html.dark-mode .info-blue a:hover,
body.dark-mode .info-blue a:hover { color: #93c5fd !important; }
html.dark-mode .info-green,
body.dark-mode .info-green {
  background: rgba(34,197,94,0.12) !important;
  border-color: rgba(74,222,128,0.3) !important;
  color: #86efac !important;
}
html.dark-mode .info-green i,
body.dark-mode .info-green i { color: #4ade80 !important; }
html.dark-mode .info-warn,
body.dark-mode .info-warn {
  background: rgba(245,158,11,0.12) !important;
  border-color: rgba(251,191,36,0.3) !important;
  color: #fcd34d !important;
}
html.dark-mode .info-warn i,
body.dark-mode .info-warn i { color: #fbbf24 !important; }
html.dark-mode .info-warn i,
body.dark-mode .info-warn i { color: #fbbf24 !important; }

/* Highlight strip */
html.dark-mode .highlight-strip,
body.dark-mode .highlight-strip {
  background: rgba(124,106,247,0.1) !important;
  border-left-color: #7c6af7 !important;
  color: #c9d1d9 !important;
}

/* Rule cards */
html.dark-mode .rule-card,
body.dark-mode .rule-card {
  background: #1c2333 !important;
  border-color: #30363d !important;
  transition: none !important;
}
html.dark-mode .rule-card:hover,
body.dark-mode .rule-card:hover { border-color: #7c6af7 !important; }
html.dark-mode .rule-card > i,
body.dark-mode .rule-card > i { color: #a78bfa !important; }
html.dark-mode .rule-card strong,
body.dark-mode .rule-card strong { color: #e6edf3 !important; }
html.dark-mode .rule-card p,
body.dark-mode .rule-card p { color: #8b949e !important; }
html.dark-mode .rule-card--warn,
body.dark-mode .rule-card--warn {
  background: rgba(239,68,68,0.08) !important;
  border-color: rgba(239,68,68,0.25) !important;
}
html.dark-mode .rule-card--warn > i,
body.dark-mode .rule-card--warn > i { color: #f87171 !important; }

/* Step items */
html.dark-mode .step-item,
body.dark-mode .step-item {
  background: #1c2333 !important;
  border-color: #30363d !important;
  color: #8b949e !important;
  transition: none !important;
}
html.dark-mode .step-item strong,
body.dark-mode .step-item strong { color: #e6edf3 !important; }

/* Contact items */
html.dark-mode .contact-item,
body.dark-mode .contact-item {
  background: #1c2333 !important;
  border-color: #30363d !important;
  color: #8b949e !important;
  transition: none !important;
}
html.dark-mode .contact-item:hover,
body.dark-mode .contact-item:hover {
  border-color: #7c6af7 !important;
  color: #a78bfa !important;
}
html.dark-mode .contact-item i,
body.dark-mode .contact-item i { color: #a78bfa !important; }


