/* ==========================================================================
   WhatsApp Past Member Extractor — Modern Design System
   ========================================================================== */

:root {
  --bg-dark: #06090f;
  --bg-card: rgba(15, 23, 42, 0.75);
  --bg-card-hover: rgba(22, 35, 60, 0.85);
  --bg-surface: #0b1322;
  --border-light: rgba(255, 255, 255, 0.08);
  --border-focus: rgba(37, 211, 102, 0.4);
  
  --primary: #25d366;
  --primary-glow: rgba(37, 211, 102, 0.25);
  --primary-dark: #1da851;
  --primary-light: #4ade80;
  
  --accent-cyan: #38bdf8;
  --accent-amber: #fbbf24;
  --accent-purple: #a855f7;
  
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 35px -5px rgba(37, 211, 102, 0.2);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  background-image: 
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(37, 211, 102, 0.15), transparent),
    radial-gradient(circle at 80% 20%, rgba(56, 189, 248, 0.08), transparent 40%),
    radial-gradient(circle at 20% 80%, rgba(168, 85, 247, 0.05), transparent 40%);
  min-height: 100vh;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-center { text-align: center; }
.text-gradient {
  background: linear-gradient(135deg, #ffffff 30%, #a7f3d0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.text-emerald { color: var(--primary); }

/* Header & Navigation */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(6, 9, 15, 0.75);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
}

.logo-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #25d366, #128c7e);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.4);
}

.logo-icon img {
  width: 24px;
  height: 24px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-link {
  color: var(--text-muted);
  font-size: 0.938rem;
  font-weight: 500;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-main);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  cursor: pointer;
  padding: 8px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 22px;
  font-size: 0.938rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #25d366, #1da851);
  color: #06180c;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
  background: linear-gradient(135deg, #2ae772, #20bd5a);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  border-color: var(--border-light);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 14px 28px;
  font-size: 1.05rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.813rem;
  font-weight: 600;
  border: 1px solid var(--border-light);
  background: rgba(255, 255, 255, 0.03);
}

.badge-emerald {
  border-color: rgba(37, 211, 102, 0.3);
  background: rgba(37, 211, 102, 0.1);
  color: #4ade80;
}

.badge-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 10px var(--primary);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(37, 211, 102, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Hero Section */
.hero {
  padding: 80px 0 60px;
  position: relative;
}

.hero-content {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}

.hero-title {
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 24px 0 20px;
}

.hero-description {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  color: var(--text-dim);
  font-size: 0.875rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-item svg {
  color: var(--primary);
  flex-shrink: 0;
}

/* Live Demo Interactive Card */
.demo-section {
  padding: 40px 0 80px;
}

.demo-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card), var(--shadow-glow);
  overflow: hidden;
  position: relative;
}

.demo-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: rgba(11, 19, 34, 0.9);
  border-bottom: 1px solid var(--border-light);
}

.browser-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.dot-red { background: #ef4444; }
.dot-yellow { background: #eab308; }
.dot-green { background: #22c55e; }

.browser-url {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-dim);
  background: rgba(255, 255, 255, 0.04);
  padding: 4px 16px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 6px;
}

.demo-body {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  min-height: 480px;
}

.demo-preview-left {
  padding: 32px;
  border-right: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(11, 19, 34, 0.4);
}

.extension-mockup-card {
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

.mockup-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mockup-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mockup-brand span {
  font-weight: 700;
  font-size: 0.875rem;
}

.mockup-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.stat-box {
  background: rgba(255, 255, 255, 0.03);
  padding: 12px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

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

.stat-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
  margin-top: 4px;
}

.demo-controls {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-demo-action {
  width: 100%;
  padding: 12px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
}

.demo-output-right {
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.output-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.output-title {
  font-size: 0.938rem;
  font-weight: 600;
}

.output-table-wrap {
  flex: 1;
  overflow-y: auto;
  max-height: 320px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  background: rgba(6, 9, 15, 0.6);
}

.demo-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.813rem;
}

.demo-table th {
  text-align: left;
  padding: 10px 14px;
  background: rgba(15, 23, 42, 0.9);
  color: var(--text-muted);
  font-weight: 600;
  position: sticky;
  top: 0;
  border-bottom: 1px solid var(--border-light);
}

.demo-table td {
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  color: var(--text-main);
}

.tag-badge {
  display: inline-block;
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-weight: 600;
}

.tag-left {
  background: rgba(239, 68, 68, 0.15);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.tag-removed {
  background: rgba(245, 158, 11, 0.15);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

/* Features Grid */
.features-section {
  padding: 90px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 16px 0 14px;
}

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

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(37, 211, 102, 0.3);
  background: var(--bg-card-hover);
  box-shadow: 0 16px 32px -8px rgba(0, 0, 0, 0.5);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon-box {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.35rem;
}

.icon-emerald { background: rgba(37, 211, 102, 0.12); color: var(--primary); }
.icon-cyan { background: rgba(56, 189, 248, 0.12); color: var(--accent-cyan); }
.icon-amber { background: rgba(251, 191, 36, 0.12); color: var(--accent-amber); }
.icon-purple { background: rgba(168, 85, 247, 0.12); color: var(--accent-purple); }

.feature-heading {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-desc {
  color: var(--text-muted);
  font-size: 0.938rem;
  line-height: 1.6;
}

/* Screenshots Showcase Gallery */
.screenshots-section {
  padding: 80px 0;
  background: radial-gradient(ellipse 60% 40% at 50% 50%, rgba(37, 211, 102, 0.05), transparent);
}

.gallery-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.tab-btn {
  padding: 8px 18px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-light);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.tab-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-main);
}

.tab-btn.active {
  background: var(--primary);
  color: #06180c;
  border-color: var(--primary);
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.4);
}

.gallery-display {
  max-width: 950px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-card);
  background: #000;
  position: relative;
}

.screenshot-slide {
  display: none;
}

.screenshot-slide.active {
  display: block;
  animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.98); }
  to { opacity: 1; transform: scale(1); }
}

.slide-caption {
  padding: 16px 24px;
  background: rgba(11, 19, 34, 0.95);
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* How It Works Steps */
.steps-section {
  padding: 80px 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
}

.step-number {
  font-family: var(--font-mono);
  font-size: 2.2rem;
  font-weight: 800;
  color: rgba(37, 211, 102, 0.25);
  margin-bottom: 12px;
}

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

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

/* Security & Chrome Permission Card */
.security-banner {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(6, 182, 212, 0.05));
  border: 1px solid rgba(37, 211, 102, 0.25);
  border-radius: var(--radius-lg);
  padding: 44px;
  margin: 60px 0;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 36px;
  align-items: center;
}

.security-text h3 {
  font-size: 1.65rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.security-text p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.permission-pills {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.perm-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(15, 23, 42, 0.6);
  padding: 10px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  font-size: 0.85rem;
}

.perm-pill code {
  font-family: var(--font-mono);
  color: #34d399;
  font-weight: 600;
}

/* FAQ Accordion */
.faq-section {
  padding: 80px 0;
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  text-align: left;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.05rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-question svg {
  transition: transform 0.3s ease;
  color: var(--primary);
  flex-shrink: 0;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out;
  padding: 0 24px;
  color: var(--text-muted);
  font-size: 0.938rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  padding-bottom: 20px;
  max-height: 400px;
}

/* CTA Card */
.cta-section {
  padding: 60px 0 100px;
}

.cta-box {
  background: radial-gradient(circle at 50% 0%, rgba(37, 211, 102, 0.2), transparent 70%), var(--bg-card);
  border: 1px solid rgba(37, 211, 102, 0.3);
  border-radius: var(--radius-lg);
  padding: 60px 32px;
  text-align: center;
  box-shadow: var(--shadow-card), var(--shadow-glow);
}

.cta-box h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-box p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 32px;
  font-size: 1.1rem;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border-light);
  background: rgba(6, 9, 15, 0.9);
  padding: 60px 0 36px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 320px;
  margin-top: 14px;
}

.footer-col h4 {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-main);
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  color: var(--text-muted);
  font-size: 0.875rem;
}

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

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--text-dim);
  font-size: 0.813rem;
}

.footer-disclaimer {
  max-width: 650px;
  font-size: 0.78rem;
  line-height: 1.5;
}

/* Static Docs Layout (Support / Privacy / Terms) */
.doc-page {
  padding: 60px 0 100px;
}

.doc-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 48px;
  max-width: 860px;
  margin: 0 auto;
  box-shadow: var(--shadow-card);
}

.doc-header {
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 24px;
  margin-bottom: 32px;
}

.doc-title {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.doc-meta {
  color: var(--text-dim);
  font-size: 0.875rem;
}

.doc-body h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #a7f3d0;
  margin: 32px 0 12px;
}

.doc-body h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-main);
  margin: 20px 0 8px;
}

.doc-body p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 0.97rem;
  line-height: 1.7;
}

.doc-body ul, .doc-body ol {
  margin: 12px 0 20px 24px;
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.7;
}

.doc-body li {
  margin-bottom: 6px;
}

.doc-callout {
  background: rgba(37, 211, 102, 0.08);
  border-left: 4px solid var(--primary);
  padding: 16px 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 24px 0;
}

.doc-callout p {
  margin: 0;
  color: #d1fae5;
  font-weight: 500;
}

/* Support Form Cards */
.support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

.support-channel-card {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.support-channel-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.support-channel-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .demo-body {
    grid-template-columns: 1fr;
  }
  .demo-preview-left {
    border-right: none;
    border-bottom: 1px solid var(--border-light);
  }
  .security-banner {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .support-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(6, 9, 15, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    flex-direction: column;
    padding: 24px;
    gap: 18px;
  }
  .nav-links.active {
    display: flex;
  }
  .mobile-toggle {
    display: block;
  }
  .doc-card {
    padding: 28px 20px;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Breadcrumb Navigation System (Accessible & Responsive)
   ========================================================================== */
.breadcrumb-container-wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 24px 0;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 8px;
  margin: 0;
  padding: 6px 14px;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  max-width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.breadcrumb-list::-webkit-scrollbar {
  display: none;
}

.breadcrumb-item {
  display: inline-flex;
  align-items: center;
  font-size: 0.825rem;
  white-space: nowrap;
}

.breadcrumb-link {
  color: var(--text-muted);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  transition: var(--transition);
}

.breadcrumb-link:hover {
  color: var(--primary);
}

.breadcrumb-separator {
  display: inline-flex;
  align-items: center;
  color: var(--text-dim);
  opacity: 0.6;
  user-select: none;
}

.breadcrumb-current {
  color: var(--text-main);
  font-weight: 600;
  max-width: 240px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .breadcrumb-container-wrap {
    padding: 12px 20px 0;
  }
  .breadcrumb-list {
    padding: 5px 12px;
  }
  .breadcrumb-current {
    max-width: 150px;
  }
}
