:root {
  --gold: #d4af37;
  --gold-dark: #a77a16;
  --gold-light: #f4d35e;
  --bg-primary: #05070b;
  --bg-secondary: #071a33;
  --bg-card: #0b2545;
  --bg-card2: #081526;
  --border: #174b78;
  --text-primary: #ffffff;
  --text-secondary: #b8c7dc;
  --text-muted: #7e91a8;
  --red: #00a3ff;
  --green: #009b72;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: "Barlow", sans-serif;
  font-size: 14px;
  overflow-x: hidden;
}

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

/* ========== NAVBAR ========== */
.navbar {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  height: 52px;
  display: flex;
  align-items: center;
  padding: 0 24px;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-image {
  width: 52px;
  height: 52px;
  object-fit: contain;
  display: block;
}

.logo-text {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: white;
  letter-spacing: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.menu-toggle {
  display: none;
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--bg-card);
  color: white;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    border-color 0.2s,
    background 0.2s;
}

.menu-toggle:hover {
  border-color: var(--gold);
}

.menu-toggle-lines {
  width: 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.menu-toggle-lines span {
  display: block;
  height: 2px;
  width: 100%;
  background: currentColor;
  border-radius: 2px;
  transition:
    transform 0.2s,
    opacity 0.2s;
}

.navbar.menu-open .menu-toggle {
  background: var(--gold);
  border-color: var(--gold);
  color: #000;
}

.navbar.menu-open .menu-toggle-lines span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.navbar.menu-open .menu-toggle-lines span:nth-child(2) {
  opacity: 0;
}

.navbar.menu-open .menu-toggle-lines span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 4px;
  transition: all 0.2s;
  white-space: nowrap;
}

.nav-link:hover {
  color: white;
  background: rgba(255, 255, 255, 0.06);
}
.nav-link.active {
  color: var(--gold);
  border-bottom: 2px solid var(--gold);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.search-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  display: flex;
  align-items: center;
  padding: 6px 12px;
  gap: 8px;
  width: 200px;
}

.search-box input {
  background: none;
  border: none;
  outline: none;
  color: white;
  font-size: 13px;
  width: 100%;
}

.search-box input::placeholder {
  color: var(--text-muted);
}

.mobile-menu-search {
  display: none;
}

.nav-icon-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-secondary);
  font-size: 14px;
  transition: all 0.2s;
  position: relative;
}

.nav-icon-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.badge {
  position: absolute;
  top: -3px;
  right: -3px;
  background: var(--red);
  color: white;
  font-size: 9px;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-connexion {
  background: var(--gold);
  color: #000;
  font-weight: 700;
  font-size: 12px;
  padding: 7px 16px;
  border-radius: 5px;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: all 0.2s;
  white-space: nowrap;
}

.btn-connexion:hover {
  background: var(--gold-light);
}

/* ========== PAGE TABS ========== */
.page-tabs {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  display: flex;
  padding: 0 24px;
  gap: 4px;
}

.page-tab {
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
  white-space: nowrap;
}

.page-tab:hover {
  color: white;
}
.page-tab.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* ========== HERO SECTION ========== */

.btn-gold {
  background: var(--gold);
  color: #000;
  font-weight: 700;
  font-size: 13px;
  padding: 10px 24px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* ========== MAIN LAYOUT ========== */
.main-container {
  display: flex;
  gap: 24px;
  padding: 24px;
  max-width: 1400px;
  margin: 0 auto;
}

.content-area {
  flex: 1;
  min-width: 0;
}
.sidebar {
  width: 300px;
  flex-shrink: 0;
}

/* ========== SECTION HEADER ========== */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.section-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-title::before {
  content: "";
  width: 3px;
  height: 20px;
  background: var(--gold);
  border-radius: 2px;
  display: block;
}

.see-all {
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}

.see-all:hover {
  gap: 8px;
}

/* ========== NEWS CARDS ========== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}

.news-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.25s;
  cursor: pointer;
}

.news-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.15);
}

.news-card-img {
  height: 130px;
  object-fit: cover;
  width: 100%;
  display: block;
}

.news-card-img-placeholder {
  height: 130px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}

.news-card-body {
  padding: 12px;
}

.news-tag {
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 3px;
  display: inline-block;
  margin-bottom: 7px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.news-title {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-meta {
  color: var(--text-muted);
  font-size: 11px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ========== PRODUCT CARDS ========== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.25s;
  cursor: pointer;
}

.product-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.12);
}

.product-img {
  height: 110px;
  object-fit: cover;
  width: 100%;
  display: block;
}

.product-img-placeholder {
  height: 110px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
}

.product-body {
  padding: 10px;
}

.product-name {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
}

.product-price {
  color: var(--gold);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 8px;
}

.product-actions {
  display: flex;
  gap: 6px;
}

.btn-sm {
  flex: 1;
  padding: 5px 8px;
  font-size: 11px;
  font-weight: 600;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}

.btn-outline-gold {
  background: transparent;
  border: 1px solid var(--gold) !important;
  color: var(--gold);
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: #000;
}

.btn-filled-gold {
  background: var(--gold);
  color: #000;
}
.btn-filled-gold:hover {
  background: var(--gold-light);
}

/* ========== SIDEBAR CARDS ========== */
.sidebar-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 16px;
}

.sidebar-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sidebar-title::before {
  content: "";
  width: 2px;
  height: 14px;
  background: var(--gold);
}

.news-list-item {
  display: flex;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.2s;
}

.news-list-item:last-child {
  border-bottom: none;
}
.news-list-item:hover .news-list-title {
  color: var(--gold);
}

.news-list-img {
  width: 56px;
  height: 44px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}

.news-list-img-placeholder {
  width: 56px;
  height: 44px;
  border-radius: 4px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.news-list-title {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 4px;
  transition: color 0.2s;
}

.news-list-meta {
  color: var(--text-muted);
  font-size: 10px;
}

/* ========== MARKETPLACE FILTER ========== */
.filter-bar {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
  align-items: center;
}

.filter-select {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: 5px;
  color: white;
  padding: 6px 10px;
  font-size: 12px;
  font-family: "Barlow", sans-serif;
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s;
  min-width: 100px;
}

.filter-select:focus {
  border-color: var(--gold);
}

.filter-tag {
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-tag:hover,
.filter-tag.active {
  background: var(--gold);
  color: #000;
}

/* ========== DIRECTORY SECTION ========== */
.directory-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px;
  display: flex;
  gap: 14px;
  margin-bottom: 12px;
  cursor: pointer;
  transition: all 0.2s;
}

.directory-card:hover {
  border-color: var(--gold);
  transform: translateX(3px);
}

.dir-logo {
  width: 52px;
  height: 52px;
  border-radius: 6px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  overflow: hidden;
  font-weight: 700;
  color: var(--gold);
  font-family: "Barlow Condensed", sans-serif;
}

.dir-name {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}
.dir-desc {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.dir-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 6px;
}
.dir-tag {
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold);
  font-size: 10px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 3px;
}

/* ========== LIVE TV BADGE ========== */
.live-badge {
  background: var(--red);
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  animation: pulse 2s infinite;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.live-dot {
  width: 6px;
  height: 6px;
  background: white;
  border-radius: 50%;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

/* ========== TV PLAYER CARD ========== */
.tv-player {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 16px;
}

.tv-screen {
  height: 160px;
  background: linear-gradient(135deg, #05070b 0%, #071a33 50%, #00a3ff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
}

.play-btn {
  width: 50px;
  height: 50px;
  background: rgba(212, 175, 55, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #000;
  transition: all 0.2s;
}

.play-btn:hover {
  background: var(--gold);
  transform: scale(1.1);
}

.tv-info {
  padding: 12px;
}
.tv-label {
  color: var(--text-muted);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.tv-title {
  font-size: 14px;
  font-weight: 600;
}

/* ========== STATS BAR ========== */
.stats-bar {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-bottom: 24px;
}

.stat-item {
  text-align: center;
}
.stat-num {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--gold);
}
.stat-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* ========== HERO SLIDER ========== */
.hero {
  position: relative;
  height: 420px;
  overflow: hidden;
}

/* Slides container */
.hero-slides {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Individual slide */
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: none;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: all;
}

/* BG image with Ken Burns */
.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
}

.hero-slide.active .slide-bg {
  animation: kenBurns 7s ease-out forwards;
}

@keyframes kenBurns {
  0% {
    transform: scale(1.08) translateX(0px);
  }
  100% {
    transform: scale(1) translateX(-10px);
  }
}

/* Overlay */
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(5, 7, 11, 0.97) 0%,
    rgba(5, 7, 11, 0.88) 30%,
    rgba(7, 26, 51, 0.55) 60%,
    rgba(0, 163, 255, 0.15) 100%
  );
}

/* Content reveal animations */
.hero-slide .slide-content {
  position: relative;
  z-index: 3;
  padding: 56px 60px;
  max-width: 580px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-slide .slide-badge,
.hero-slide .slide-category,
.hero-slide .slide-title,
.hero-slide .slide-desc,
.hero-slide .slide-actions {
  opacity: 0;
  transform: translateY(28px);
}

.hero-slide.active .slide-badge {
  animation: revealUp 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.05s forwards;
}
.hero-slide.active .slide-category {
  animation: revealUp 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.18s forwards;
}
.hero-slide.active .slide-title {
  animation: revealUp 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
}
.hero-slide.active .slide-desc {
  animation: revealUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.45s forwards;
}
.hero-slide.active .slide-actions {
  animation: revealUp 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.58s forwards;
}

@keyframes revealUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Transition effect: clip-path wipe */
.hero-slide.slide-exit {
  opacity: 1;
  animation: slideExit 0.72s cubic-bezier(0.76, 0, 0.24, 1) forwards;
  z-index: 2;
  pointer-events: none;
}

.hero-slide.slide-enter {
  opacity: 1;
  animation: slideEnter 0.72s cubic-bezier(0.76, 0, 0.24, 1) forwards;
  z-index: 1;
}

@keyframes slideExit {
  0% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  100% {
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  }
}

@keyframes slideEnter {
  0% {
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    opacity: 1;
  }
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    opacity: 1;
  }
}

/* Right-side thumbnail strip */
.hero-thumbs {
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-thumb {
  width: 130px;
  height: 76px;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition:
    border-color 0.3s,
    transform 0.3s;
  position: relative;
  flex-shrink: 0;
}

.hero-thumb.active {
  border-color: var(--gold);
  transform: scale(1.04);
}

.hero-thumb:hover {
  border-color: rgba(212, 175, 55, 0.5);
}

.hero-thumb-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s;
}

.hero-thumb:hover .hero-thumb-bg {
  transform: scale(1.08);
}

.hero-thumb-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
  padding: 12px 7px 5px;
  font-size: 9px;
  font-weight: 600;
  color: white;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hero-thumb-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--gold);
  width: 0%;
  transition: width 0.1s linear;
}

/* Bottom progress bar */
.hero-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--gold);
  width: 0%;
  z-index: 20;
  transition: width 0.1s linear;
}

/* Slide dots row */
.slide-dots-row {
  position: absolute;
  bottom: 18px;
  left: 40px;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sdot {
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  width: 20px;
}

.sdot.active {
  background: var(--gold);
  width: 40px;
}

/* Arrow buttons */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(5, 7, 11, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.2s;
  backdrop-filter: blur(6px);
}

.hero-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #000;
}

.hero-arrow.prev {
  left: 14px;
}
.hero-arrow.next {
  right: 170px;
}

/* Slide badge & texts */
.slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--red);
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  width: fit-content;
}

.slide-badge.gold-badge {
  background: var(--gold);
  color: #000;
}
.slide-badge.blue-badge {
  background: #00a3ff;
  color: white;
}
.slide-badge.green-badge {
  background: #009b72;
  color: white;
}

.live-pulse {
  width: 7px;
  height: 7px;
  background: white;
  border-radius: 50%;
  animation: livePulse 1.4s infinite;
}

@keyframes livePulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.7);
  }
}

.slide-category {
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.slide-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 46px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.slide-title em {
  color: var(--gold);
  font-style: normal;
}

.slide-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 24px;
  max-width: 440px;
}

.slide-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: white;
  font-weight: 600;
  font-size: 13px;
  padding: 10px 22px;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(4px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
}

/* ========== HIGHLIGHT ARTICLES ========== */
.article-list-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.2s;
}

.article-list-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.article-list-item:hover .article-list-title {
  color: var(--gold);
}

.article-num {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: rgba(212, 175, 55, 0.2);
  width: 28px;
  text-align: center;
  flex-shrink: 0;
  line-height: 1;
}

.article-list-title {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 5px;
  transition: color 0.2s;
}
.article-list-meta {
  font-size: 11px;
  color: var(--text-muted);
}

/* ========== NAV SECTIONS ========== */
.nav-sections {
  display: flex;
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
  gap: 2px;
}

.nav-section-tab {
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
}

.nav-section-tab.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.nav-section-tab:hover {
  color: white;
}

/* ========== MARQUEE ========== */
.ticker {
  background: var(--gold);
  color: #000;
  padding: 6px 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-inner {
  display: inline-block;
  animation: scroll-left 30s linear infinite;
}

.ticker-inner span {
  display: inline-block;
  margin: 0 40px;
  font-size: 12px;
  font-weight: 700;
}

.ticker-inner span::before {
  content: "◆ ";
  color: rgba(0, 0, 0, 0.4);
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ========== BREADCRUMB ========== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-muted);
}

.breadcrumb a {
  color: var(--text-secondary);
  text-decoration: none;
}
.breadcrumb a:hover {
  color: var(--gold);
}
.breadcrumb .sep {
  color: var(--border);
}
.breadcrumb .current {
  color: var(--gold);
  font-weight: 600;
}

/* ========== CATEGORY PILLS ========== */
.cat-pills {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.cat-pill {
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  transition: all 0.2s;
}

.cat-pill:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.cat-pill.active {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
}

/* ========== RESPONSIVE / UTILITY ========== */
.text-gold {
  color: var(--gold);
}
.text-muted {
  color: var(--text-muted);
}
.text-secondary-c {
  color: var(--text-secondary);
}
.fw-700 {
  font-weight: 700;
}
.mb-0 {
  margin-bottom: 0;
}
.flex {
  display: flex;
}
.items-center {
  align-items: center;
}
.gap-2 {
  gap: 8px;
}
.gap-3 {
  gap: 12px;
}

/* ========== BANNER (promo) ========== */
.promo-banner {
  background: linear-gradient(135deg, #05070b, #071a33);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 8px;
  padding: 14px 16px;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}

.promo-banner::before {
  content: "";
  position: absolute;
  top: -30px;
  right: -30px;
  width: 100px;
  height: 100px;
  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.15) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

/* ========== FOOTER ========== */
footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 40px 24px 20px;
  margin-top: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto 30px;
}

.footer-logo-wrap {
  margin-bottom: 14px;
}

.footer-logo-wrap .logo-image {
  width: 32px;
  height: 32px;
}
.footer-desc {
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 16px;
}
.footer-socials {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 34px;
  height: 34px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
}

.social-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #000;
}

.footer-col-title {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: white;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-col-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-link:hover {
  color: var(--gold);
}
.footer-link::before {
  content: "›";
  color: var(--gold);
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-muted);
  font-size: 12px;
}

/* ========== SECTION DIVIDER ========== */
.section-divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    var(--gold) 0%,
    var(--border) 30%,
    transparent 100%
  );
  margin: 28px 0;
}

/* ========== HOVER CARDS ========== */
.hover-lift {
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.directory-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* Responsive */
@media (max-width: 1200px) {
  .navbar {
    padding: 0 18px;
    gap: 18px;
  }

  .nav-link {
    padding-inline: 9px;
  }

  .search-box {
    width: 170px;
  }

  .main-container {
    max-width: 100%;
    gap: 18px;
    padding: 20px;
  }

  .sidebar {
    width: 280px;
  }

  .hero-slide .slide-content {
    padding-left: 48px;
    padding-right: 210px;
  }
}

@media (max-width: 1024px) {
  .navbar {
    height: auto;
    min-height: 58px;
    flex-wrap: wrap;
    align-content: center;
    padding-block: 10px;
  }

  .nav-links {
    flex-basis: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-right {
    margin-left: auto;
  }

  .hero {
    height: 390px;
  }

  .hero-slide .slide-content {
    padding: 44px 190px 50px 42px;
    max-width: none;
  }

  .slide-title {
    font-size: 40px;
  }

  .hero-thumb {
    width: 112px;
    height: 66px;
  }

  .hero-arrow.next {
    right: 146px;
  }

  .main-container {
    display: block;
  }

  .content-area {
    width: 100%;
  }

  .sidebar {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    width: 100%;
    margin-top: 28px;
  }

  .sidebar > * {
    margin-bottom: 0;
  }

  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 13px;
  }

  .ticker-inner span {
    margin-inline: 24px;
  }

  .navbar {
    padding: 10px 14px;
    gap: 12px;
  }

  .logo {
    order: 1;
  }

  .logo-text {
    font-size: 18px;
    letter-spacing: 1.5px;
  }

  .menu-toggle {
    display: inline-flex;
    order: 3;
    margin-left: 0;
  }

  .nav-right {
    order: 2;
    margin-left: auto;
    gap: 8px;
  }

  .nav-links {
    order: 4;
    flex: 0 0 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    border-top: 0 solid transparent;
    transition:
      max-height 0.25s ease,
      opacity 0.2s ease,
      padding 0.2s ease,
      border-color 0.2s ease;
  }

  .nav-link {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 10px 12px;
  }

  .nav-link.active {
    background: rgba(212, 175, 55, 0.12);
    border-color: rgba(212, 175, 55, 0.28);
    border-bottom-color: rgba(212, 175, 55, 0.28);
  }

  .navbar.menu-open .nav-links {
    max-height: 460px;
    opacity: 1;
    padding-top: 10px;
    border-top: 1px solid var(--border);
  }

  .nav-right > .search-box {
    display: none;
  }

  .mobile-menu-search {
    width: 100%;
    margin-bottom: 2px;
    padding-inline: 10px;
  }

  .navbar.menu-open .mobile-menu-search {
    display: flex;
  }

  .btn-connexion {
    padding: 7px 12px;
  }

  .hero {
    height: 430px;
  }

  .slide-overlay {
    background: linear-gradient(
      180deg,
      rgba(5, 7, 11, 0.58) 0%,
      rgba(7, 26, 51, 0.88) 45%,
      rgba(5, 7, 11, 0.98) 100%
    );
  }

  .hero-slide .slide-content {
    justify-content: flex-end;
    padding: 34px 22px 78px;
  }

  .slide-title {
    font-size: 34px;
    line-height: 1.04;
  }

  .slide-desc {
    font-size: 13px;
    line-height: 1.55;
    max-width: 100%;
    margin-bottom: 18px;
  }

  .slide-actions {
    flex-wrap: wrap;
    gap: 10px;
  }

  .slide-actions .btn-gold,
  .slide-actions .btn-ghost {
    min-height: 40px;
  }

  .hero-thumbs {
    display: none;
  }

  .hero-arrow {
    top: auto;
    bottom: 18px;
    width: 36px;
    height: 36px;
    transform: none;
  }

  .hero-arrow.prev {
    left: 18px;
  }

  .hero-arrow.next {
    right: 18px;
  }

  .slide-dots-row {
    left: 50%;
    bottom: 34px;
    transform: translateX(-50%);
  }

  .stats-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    padding: 16px;
  }

  .stat-divider {
    display: none;
  }

  .main-container {
    padding: 18px 14px;
  }

  .section-header {
    align-items: flex-start;
    gap: 12px;
  }

  .news-grid,
  .product-grid,
  .directory-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .news-card-img,
  .news-card-img-placeholder {
    height: 120px;
  }

  .product-img,
  .product-img-placeholder {
    height: 118px;
  }

  .filter-bar {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding: 10px;
  }

  .filter-select,
  .filter-tag {
    flex: 0 0 auto;
  }

  .sidebar {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 560px) {
  .navbar {
    position: sticky;
    gap: 8px;
  }

  .menu-toggle {
    margin-left: auto;
  }

  .nav-right {
    gap: 8px;
    flex: 0 1 auto;
    flex-wrap: wrap;
    margin-left: auto;
    display: none;
  }

  .navbar.menu-open .nav-right {
    display: flex;
    order: 5;
    flex: 1 1 100%;
    margin-left: 0;
    padding-top: 2px;
  }

  .search-box {
    order: 5;
    flex-basis: 100%;
    width: 100%;
  }

  .nav-icon-btn {
    width: 32px;
    height: 32px;
  }

  .btn-connexion {
    font-size: 0;
    width: 32px;
    height: 32px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
  }

  .btn-connexion::before {
    content: "+";
    font-size: 14px;
    line-height: 1;
  }

  .hero {
    height: 460px;
  }

  .hero-slide .slide-content {
    padding-inline: 16px;
    padding-bottom: 82px;
  }

  .slide-title {
    font-size: 30px;
  }

  .slide-category {
    letter-spacing: 1.3px;
  }

  .slide-actions .btn-gold,
  .slide-actions .btn-ghost {
    width: 100%;
    justify-content: center;
    padding-inline: 14px;
  }

  .stats-bar {
    margin-bottom: 18px;
  }

  .stat-num {
    font-size: 21px;
  }

  .news-grid,
  .product-grid,
  .directory-grid {
    grid-template-columns: 1fr;
  }

  .directory-card {
    padding: 12px;
  }

  .dir-logo {
    width: 46px;
    height: 46px;
  }

  .section-header {
    flex-direction: column;
  }

  .section-title {
    font-size: 17px;
  }

  .product-actions {
    gap: 8px;
  }

  .btn-sm {
    padding-block: 8px;
  }

  footer {
    padding: 32px 16px 18px;
  }
}
