/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', system-ui, sans-serif;
  background: #0d0d1a;
  color: #e0d8f0;
  min-height: 100vh;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ===== CSS VARIABLES ===== */
:root {
  --purple: #7c3aed;
  --purple-light: #a855f7;
  --purple-dark: #4c1d95;
  --pink: #ec4899;
  --gold: #f59e0b;
  --gold-light: #fcd34d;
  --bg-dark: #0d0d1a;
  --bg-card: #141428;
  --bg-card2: #1a1a32;
  --border: rgba(124, 58, 237, 0.3);
  --text: #e0d8f0;
  --text-muted: #9ca3af;
  --radius: 12px;
  --radius-lg: 20px;
  --glow: 0 0 20px rgba(124, 58, 237, 0.4);
  --glow-gold: 0 0 20px rgba(245, 158, 11, 0.4);
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--purple); border-radius: 3px; }

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13,13,26,0.85);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.header-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 24px;
  height: 72px;
}
.header-logo { display: flex; align-items: center; flex-shrink: 0; }
.header-logo img { height: 44px; width: auto; }

.nav { display: flex; align-items: center; gap: 4px; flex: 1; }
.nav-link {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  transition: all 0.2s;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: #fff;
  background: rgba(124,58,237,0.2);
}
.nav-link.active { color: var(--purple-light); }

.header-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  white-space: nowrap;
}
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--purple-light);
  color: var(--purple-light);
}
.btn-outline:hover { background: rgba(124,58,237,0.15); }

.btn-primary {
  background: linear-gradient(135deg, var(--purple) 0%, var(--pink) 100%);
  color: #fff;
  box-shadow: var(--glow);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 30px rgba(124,58,237,0.6);
}
.btn-gold {
  background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
  color: #000;
  box-shadow: var(--glow-gold);
}
.btn-gold:hover { transform: translateY(-1px); filter: brightness(1.1); }

/* ===== MOBILE NAV TOGGLE ===== */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  background-image: url('header-bg.webp');
  background-size: cover;
  background-position: center top;
  padding: 80px 20px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(13,13,26,0.55) 0%,
    rgba(13,13,26,0.75) 60%,
    rgba(13,13,26,0.97) 100%
  );
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(0deg, var(--bg-dark) 0%, transparent 100%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(124,58,237,0.2);
  border: 1px solid var(--border);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  color: var(--purple-light);
  margin-bottom: 20px;
}
.hero-badge .dot {
  width: 7px; height: 7px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-dot 1.5s infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.5); }
  50% { box-shadow: 0 0 0 5px rgba(34,197,94,0); }
}
.hero h1 {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #fff 30%, var(--purple-light) 70%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.6;
}
.hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ===== FEATURES STRIP ===== */
.features {
  display: flex;
  gap: 12px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 20px;
  flex-wrap: wrap;
}
.feature-item {
  flex: 1 1 180px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  transition: all 0.2s;
}
.feature-item:hover { border-color: var(--purple-light); box-shadow: var(--glow); }
.feature-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--purple-dark), var(--purple));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.feature-text strong { display: block; font-size: 14px; font-weight: 700; color: #fff; }
.feature-text span { font-size: 12px; color: var(--text-muted); }

/* ===== SECTION ===== */
.section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 20px;
}
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 12px;
}
.section-title {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 800;
  color: #fff;
}
.section-title span { color: var(--purple-light); }
.section-link {
  font-size: 13px;
  color: var(--purple-light);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}
.section-link:hover { color: var(--pink); }

/* ===== GAME GRID ===== */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 14px;
}
.game-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.25s;
  position: relative;
}
.game-card:hover {
  transform: translateY(-4px);
  border-color: var(--purple-light);
  box-shadow: var(--glow);
}
.game-card-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}
.game-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 12px;
  opacity: 0;
  transition: opacity 0.25s;
}
.game-card:hover .game-card-overlay { opacity: 1; }
.game-card-name { font-size: 13px; font-weight: 700; color: #fff; line-height: 1.3; }
.game-card-provider { font-size: 11px; color: var(--text-muted); margin-top: 2px; }
.game-card-play {
  margin-top: 8px;
  padding: 6px 12px;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  text-align: center;
}
.game-card-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: linear-gradient(135deg, var(--gold), #fbbf24);
  color: #000;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
}

/* ===== WINS TICKER ===== */
.wins-bar {
  background: var(--bg-card2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0 20px;
  overflow: hidden;
}
.wins-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  height: 46px;
}
.wins-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.wins-label svg { flex-shrink: 0; }
.wins-scroll {
  overflow: hidden;
  flex: 1;
  position: relative;
}
.wins-track {
  display: flex;
  gap: 32px;
  animation: wins-scroll 40s linear infinite;
  white-space: nowrap;
}
.wins-track:hover { animation-play-state: paused; }
@keyframes wins-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.win-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  flex-shrink: 0;
}
.win-avatar {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.win-name { color: var(--text-muted); }
.win-game { color: #fff; font-weight: 600; }
.win-amount { color: var(--gold); font-weight: 800; }

/* ===== WINS POPUP ===== */
.win-popup {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 999;
  background: var(--bg-card2);
  border: 1px solid rgba(245,158,11,0.4);
  border-radius: var(--radius);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 320px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5), var(--glow-gold);
  transform: translateX(-400px);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.win-popup.show { transform: translateX(0); }
.win-popup-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--gold), #fbbf24);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.win-popup-text {}
.win-popup-player { font-size: 12px; color: var(--text-muted); }
.win-popup-player strong { color: #fff; }
.win-popup-sum {
  font-size: 20px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin: 2px 0;
}
.win-popup-game { font-size: 11px; color: var(--text-muted); }

/* ===== PROMO BANNER ===== */
.promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px 40px;
}
.promo-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 28px 24px;
  position: relative;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform 0.25s;
}
.promo-card:hover { transform: translateY(-4px); }
.promo-card.purple {
  background: linear-gradient(135deg, #4c1d95 0%, #7c3aed 60%, #a855f7 100%);
  border: 1px solid rgba(168,85,247,0.4);
}
.promo-card.gold {
  background: linear-gradient(135deg, #78350f 0%, #b45309 60%, #f59e0b 100%);
  border: 1px solid rgba(245,158,11,0.4);
}
.promo-card.pink {
  background: linear-gradient(135deg, #831843 0%, #be185d 60%, #ec4899 100%);
  border: 1px solid rgba(236,72,153,0.4);
}
.promo-card.dark {
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 60%, #4338ca 100%);
  border: 1px solid rgba(67,56,202,0.4);
}
.promo-card-emoji {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 48px;
  opacity: 0.6;
}
.promo-card h3 { font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 6px; }
.promo-card p { font-size: 13px; color: rgba(255,255,255,0.75); line-height: 1.5; margin-bottom: 14px; }
.promo-card .btn { width: fit-content; padding: 8px 18px; font-size: 13px; }

/* ===== INFO SECTION ===== */
.info-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px 60px;
}
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 768px) { .info-grid { grid-template-columns: 1fr; } }
.info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
}
.info-card h3 { font-size: 18px; font-weight: 800; color: #fff; margin-bottom: 12px; }
.info-card p, .info-card li {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}
.info-card ol, .info-card ul {
  padding-left: 20px;
}
.info-card li { margin-bottom: 6px; }

/* ===== SEO TEXT ===== */
.seo-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px 60px;
}
.seo-section h2 { font-size: 24px; font-weight: 800; color: #fff; margin-bottom: 14px; }
.seo-section h3 { font-size: 18px; font-weight: 700; color: var(--purple-light); margin: 24px 0 10px; }
.seo-section p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 10px; }
.seo-section ol { padding-left: 20px; }
.seo-section li { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 6px; }

/* ===== LIVE SECTION ===== */
.live-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.live-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.25s;
  cursor: pointer;
}
.live-card:hover { transform: translateY(-4px); border-color: var(--pink); box-shadow: 0 0 20px rgba(236,72,153,0.3); }
.live-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: linear-gradient(135deg, #1a1a32, #2d1a4d);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  position: relative;
}
.live-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: #ef4444;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
  text-transform: uppercase;
}
.live-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #fff;
  animation: pulse-dot 1s infinite;
}
.live-card-body { padding: 14px; }
.live-card-name { font-size: 15px; font-weight: 700; color: #fff; }
.live-card-info { font-size: 12px; color: var(--text-muted); margin-top: 4px; }
.live-card-players {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
  font-size: 12px;
  color: #22c55e;
}

/* ===== BONUSES PAGE ===== */
.bonus-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.bonus-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: all 0.25s;
}
.bonus-card:hover { transform: translateY(-4px); border-color: var(--purple-light); box-shadow: var(--glow); }
.bonus-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 140px; height: 140px;
  background: radial-gradient(circle, rgba(124,58,237,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.bonus-tag {
  display: inline-block;
  background: rgba(124,58,237,0.2);
  border: 1px solid rgba(124,58,237,0.4);
  color: var(--purple-light);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}
.bonus-amount {
  font-size: 36px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold), #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: 8px;
}
.bonus-card h3 { font-size: 18px; font-weight: 800; color: #fff; margin-bottom: 10px; }
.bonus-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 18px; }
.bonus-terms { font-size: 11px; color: rgba(156,163,175,0.6); margin-top: 10px; }

/* ===== FAQ PAGE ===== */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 18px 20px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background 0.2s;
}
.faq-question:hover { background: rgba(124,58,237,0.1); }
.faq-question.open { color: var(--purple-light); }
.faq-chevron {
  flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(124,58,237,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
  font-size: 12px;
}
.faq-question.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer-inner {
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== PAGE HERO SMALL ===== */
.page-hero {
  padding: 48px 20px 32px;
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 10px;
}
.page-hero h1 span { color: var(--purple-light); }
.page-hero p { font-size: 15px; color: var(--text-muted); max-width: 520px; margin: 0 auto; }

/* ===== FILTER TABS ===== */
.filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.filter-tab {
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  transition: all 0.2s;
}
.filter-tab:hover { border-color: var(--purple-light); color: #fff; }
.filter-tab.active {
  background: linear-gradient(135deg, var(--purple), var(--pink));
  border-color: transparent;
  color: #fff;
}

/* ===== FOOTER ===== */
footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 40px 20px 24px;
  margin-top: 40px;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 36px;
}
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; } }
.footer-col h4 { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.05em; }
.footer-col a {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--purple-light); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-logo img { height: 32px; }
.footer-bottom p { font-size: 12px; color: rgba(156,163,175,0.5); }
.footer-disclaimer {
  font-size: 11px;
  color: rgba(156,163,175,0.4);
  line-height: 1.6;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(124,58,237,0.1);
}
.footer-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border: 2px solid var(--text-muted);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
  color: var(--text-muted);
  margin-right: 8px;
}

/* ===== GLOW DIVIDER ===== */
.glow-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--purple), var(--pink), var(--purple), transparent);
  margin: 0;
  opacity: 0.4;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav { display: none; }
  .nav.open { display: flex; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: rgba(13,13,26,0.97); border-bottom: 1px solid var(--border); padding: 12px 16px; z-index: 99; }
  .nav-toggle { display: flex; }
  .header-actions .btn-outline { display: none; }
  .features { gap: 8px; }
  .games-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 10px; }
  .promo-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero { padding: 40px 16px 28px; }
  .section { padding: 28px 16px; }
  .games-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .win-popup { left: 12px; right: 12px; max-width: unset; bottom: 12px; }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeInUp 0.5s ease both; }
.fade-up-2 { animation: fadeInUp 0.5s 0.1s ease both; }
.fade-up-3 { animation: fadeInUp 0.5s 0.2s ease both; }

/* ===== BREADCRUMBS ===== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 20px 0;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--purple-light); }
.breadcrumb .sep { opacity: 0.4; }
.breadcrumb .current { color: #fff; }
