/* ===== Variables PRIME FA ===== */
:root {
  --bg: #0a0a0a;
  --bg-card: #1a1a1a;
  --bg-card-alt: #242424;
  --accent: #e84f00;
  --accent-hover: #f06010;
  --accent-soft: rgba(232, 79, 0, 0.15);
  --accent-border: rgba(232, 79, 0, 0.25);
  --gold: #e84f00;
  --gold-light: #ff7a33;
  --text: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.7);
  --text-dim: rgba(255, 255, 255, 0.5);
  --border: rgba(255, 255, 255, 0.06);
  --red-badge: #dc2626;
  --font-sans: 'Outfit', 'Montserrat', system-ui, sans-serif;
  --radius: 8px;
  --radius-lg: 12px;
}

/* ===== Reset minimal ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ===== Header sticky ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 10000;
  background: rgba(10, 10, 10, 0.98);
  border-bottom: 1px solid var(--border);
  overflow: visible;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 10px 24px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.logo-img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 4px;
  filter: drop-shadow(0 0 6px rgba(232, 79, 0, 0.3));
}
.logo-text {
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.08em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  overflow: visible;
}
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  transition: background 0.2s, color 0.2s;
}
.nav-link:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}
.nav-link-active,
.nav-link.nav-link-active {
  background: var(--accent);
  color: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.nav-link-active:hover,
.nav-link.nav-link-active:hover {
  background: var(--accent-hover);
  color: #0a0a0a;
}
.dropdown-wrap {
  position: relative;
  overflow: visible;
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 140px;
  padding: 8px 0;
  margin-top: 0;
  background: rgba(18, 18, 18, 0.98);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  z-index: 9999;
}
/* Pont invisible : évite que le menu disparaisse quand on descend la souris vers Coins / VIP */
.dropdown-menu::before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  height: 12px;
}
.dropdown-wrap:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 10px 16px;
  font-size: 13px;
  color: var(--text-muted);
  transition: background 0.2s, color 0.2s;
}
.dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.server-info {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
}
.server-info .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.currency-wrap {
  position: relative;
  z-index: 9999;
}
.currency-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 12px;
  min-width: 56px;
  height: 40px;
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  font-family: inherit;
}
.currency-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}
.currency-arrow {
  transition: transform 0.2s;
}
.currency-wrap.open .currency-arrow {
  transform: rotate(180deg);
}
.currency-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 80px;
  padding: 6px 0;
  background: rgba(18, 18, 18, 0.98);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  z-index: 9999;
  max-height: 280px;
  overflow-y: auto;
}
.currency-wrap.open .currency-dropdown {
  display: block;
}
.currency-option {
  display: block;
  width: 100%;
  padding: 8px 16px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  font-family: inherit;
  color: var(--text-muted);
  text-align: left;
  transition: background 0.15s, color 0.15s;
}
.currency-option:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}
.currency-option.active {
  color: var(--gold);
  font-weight: 700;
}
.btn-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 16px;
  height: 40px;
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 600;
  background: var(--accent);
  color: #0a0a0a;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-cart:hover { background: var(--accent-hover); }

/* ===== Hero (vidéo YouTube en fond) ===== */
.hero {
  position: relative;
  width: calc(100% - 48px);
  max-width: calc(1200px - 48px);
  margin: 8px auto 0;
  height: 340px;
  min-height: 35vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: #000;
}
.hero-video-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 180%;
  height: 180%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.hero-video-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  pointer-events: none;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.15) 40%, rgba(0,0,0,0.55) 70%, var(--bg) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 700px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #0a0a0a;
  margin-bottom: 12px;
  padding: 6px 14px;
  background: var(--accent);
  border-radius: 6px;
}
.hero-badge i { color: #0a0a0a; }
.hero-title, .hero h1 {
  margin: 0 0 12px;
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}
.hero-subtitle, .hero p {
  margin: 0 0 20px;
  font-size: clamp(14px, 2vw, 16px);
  color: var(--text-muted);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.btn-discord {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  background: var(--bg-card);
  color: var(--text);
  border: 1px solid var(--border);
  transition: background 0.2s, border-color 0.2s;
}
.btn-discord:hover {
  background: var(--bg-card-alt);
  border-color: rgba(255, 255, 255, 0.1);
}

/* ===== Marquee promo ===== */
.marquee-wrap {
  position: relative;
  overflow: hidden;
  width: calc(100% - 48px);
  max-width: calc(1200px - 48px);
  margin: 16px auto;
  padding: 14px 0;
  background: rgba(232, 79, 0, 0.06);
  border: 1px solid rgba(232, 79, 0, 0.12);
  border-radius: var(--radius-lg);
}
.marquee-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 0%, rgba(232, 79, 0, 0.04) 45%, transparent 55%);
  animation: shimmer 4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes shimmer {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.7; }
}
.marquee-track {
  display: flex;
  width: max-content;
  flex-wrap: nowrap;
  animation: marquee 22s linear infinite;
}
.marquee-phrase {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  padding: 0 40px;
  white-space: nowrap;
}
.marquee-phrase strong,
.marquee-accent { color: var(--gold); font-weight: 700; }
.marquee-muted { color: var(--text-muted); font-weight: 400; }
.marquee-dollar { color: var(--gold); font-weight: 700; font-size: 1.1em; margin-right: 4px; }
.marquee-spacer {
  flex-shrink: 0;
  width: 50vw;
  min-width: 50vw;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

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

/* ===== Layout 2 colonnes ===== */
.main {
  padding: 0;
}
.main-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 28px;
  align-items: start;
  padding-top: 40px;
  padding-bottom: 24px;
}
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
}
.card-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 12px;
}
.card-title i { color: var(--gold); }
.card-top-donor {
  border-color: rgba(232, 79, 0, 0.15);
}
.card-top-donor .card-title i { color: var(--accent); }
.card-top-donor .donor-info {
  display: flex;
  align-items: center;
  gap: 14px;
}
.donor-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-card-alt);
  border: 2px solid rgba(232, 79, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: var(--text-muted);
  flex-shrink: 0;
}
.donor-info > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.donor-name { font-weight: 700; color: var(--text); display: block; font-size: 14px; }
.donor-amount { color: var(--gold); font-weight: 700; display: block; font-size: 20px; }
.donor-currency { color: var(--text-dim); font-weight: 400; font-size: 12px; margin-left: 2px; }
.donor-label { font-size: 11px; color: var(--text-dim); display: block; }
.card-payments {
  padding: 12px 14px;
}
.card-payments .card-title {
  margin: 0 0 8px;
  font-size: 13px;
}
.payments-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
}
.payments-grid span {
  aspect-ratio: 1;
  max-height: 26px;
  min-height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card-alt);
  border-radius: 4px;
  font-size: 10px;
  font-weight: 600;
  color: var(--text-muted);
}
/* "Ils nous font confiance" — fond sombre direct, sans carte */
.content-block {
  padding: 0;
  background: transparent;
  border: none;
  min-width: 0;
}
.content-block .content-title,
.content-title {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 800;
  color: var(--text);
  margin: 0 0 20px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.content-block .content-p,
.content-p {
  font-size: 15px;
  color: var(--text-muted);
  margin: 0 0 16px;
  line-height: 1.65;
}
.content-block .content-p:last-child { margin-bottom: 0; }

/* ===== Grille produits ===== */
.products-section {
  padding-top: 16px;
  padding-bottom: 40px;
}
.products-section h2 {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 24px;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
}
.product-card:hover {
  border-color: rgba(232, 79, 0, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(232, 79, 0, 0.06);
}
.product-image-wrap {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.product-card-vip .product-image-wrap {
  background: linear-gradient(180deg, rgba(26, 26, 26, 0.9) 0%, var(--bg-card) 100%);
}
.product-card-vip .product-image-wrap .product-image {
  object-fit: contain;
  padding: 8px;
}
.product-image-wrap .product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-badge-best {
  position: absolute;
  top: 10px;
  left: 0;
  padding: 4px 12px;
  background: var(--red-badge);
  color: var(--text);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  clip-path: polygon(0 0, 100% 0, 95% 100%, 0 100%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}
.product-image-wrap .product-name-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 1px 0 rgba(255, 255, 255, 0.2);
  -webkit-font-smoothing: antialiased;
}
.product-overlay-diamond { color: #60a5fa !important; text-shadow: 0 2px 4px rgba(0,0,0,0.9), 0 1px 0 rgba(255,255,255,0.15); }
.product-overlay-ruby { color: #f87171 !important; text-shadow: 0 2px 4px rgba(0,0,0,0.9), 0 1px 0 rgba(255,255,255,0.15); }
.product-overlay-bronze { color: #fb923c !important; text-shadow: 0 2px 4px rgba(0,0,0,0.9), 0 1px 0 rgba(255,255,255,0.15); }
.product-overlay-gold { color: #facc15 !important; text-shadow: 0 2px 4px rgba(0,0,0,0.9), 0 1px 0 rgba(255,255,255,0.15); }
.product-body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--text);
  margin-bottom: 6px;
  padding: 4px 10px;
  background: rgba(232, 79, 0, 0.2);
  border-radius: 6px;
  width: fit-content;
}
.product-label i { color: var(--gold); }
.product-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 4px;
}
.product-price {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0 0 12px;
}
.btn-acheter {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 10px 16px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 700;
  background: var(--accent);
  color: #0a0a0a;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-acheter:hover { background: var(--accent-hover); }

/* ===== Page Coins ===== */
.main-coins {
  padding-top: 40px;
  padding-bottom: 56px;
}
.main-coins .container-coins {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.coins-page-title {
  text-align: center;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  color: var(--text);
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}
.coins-page-subtitle {
  text-align: center;
  font-size: clamp(14px, 2vw, 16px);
  color: var(--text-muted);
  margin: 0 0 40px;
}
.coins-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.coin-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
}
.coin-card:hover {
  border-color: rgba(232, 79, 0, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(232, 79, 0, 0.06);
}
.coin-card-image-wrap {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
}
.coin-card-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.coin-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  font-size: 18px;
  font-weight: 800;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9);
}
.coin-card-bonus {
  position: absolute;
  top: 10px;
  right: 0;
  padding: 4px 12px;
  background: var(--accent);
  color: #0a0a0a;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%, 0 100%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}
.coin-card-body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.coin-card-desc {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.coin-card-price {
  font-size: 13px;
  color: var(--text-muted);
}
.coin-card-buttons {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}
.coin-card-buttons .btn-acheter {
  flex: 1;
  margin-top: 0;
  padding: 10px 14px;
  font-size: 12px;
}
.coin-card-buttons .btn-offrir {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 14px;
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 600;
  background: var(--bg-card-alt);
  color: var(--text);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  font-family: inherit;
  text-decoration: none;
}
.coin-card-buttons .btn-offrir:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

/* ===== Page VIP - Redesign Premium ===== */
.main-vip {
  padding-top: 48px;
  padding-bottom: 72px;
}
.container-vip {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 24px;
}
.vip-page-title {
  text-align: center;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--text);
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}
.vip-page-subtitle {
  text-align: center;
  font-size: clamp(14px, 2vw, 16px);
  color: var(--text-muted);
  margin: 0 0 48px;
}

/* --- Cards VIP --- */
.vip-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}
.vip-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 36px 24px 32px;
  border-radius: 16px;
  background: linear-gradient(160deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.vip-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  border-color: rgba(255,255,255,0.12);
}
.vip-card--prime {
  border-color: var(--accent-border);
  background: linear-gradient(160deg, rgba(232,79,0,0.08) 0%, rgba(232,79,0,0.02) 100%);
}
.vip-card--prime:hover {
  border-color: var(--accent);
  box-shadow: 0 12px 48px rgba(232,79,0,0.15), 0 4px 20px rgba(0,0,0,0.4);
}
.vip-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 14px;
  background: var(--accent);
  color: #0a0a0a;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(232,79,0,0.35);
}
.vip-card__badge i {
  font-size: 13px;
}
.vip-card__img {
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
}
.vip-card__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 6px 20px rgba(0,0,0,0.5));
  transition: transform 0.3s ease;
}
.vip-card:hover .vip-card__img img {
  transform: scale(1.08);
}
.vip-card__name {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 6px;
  letter-spacing: 0.02em;
}
.vip-card--prime .vip-card__name {
  color: var(--gold);
}
.vip-card__price {
  font-size: 28px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 20px;
  display: block;
}
.vip-card--prime .vip-card__price {
  color: var(--gold-light);
}
.vip-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 0;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  cursor: pointer;
  background: rgba(255,255,255,0.06);
  color: var(--text);
  border: 1px solid var(--border);
}
.vip-card__btn:hover {
  background: rgba(255,255,255,0.1);
  transform: scale(1.02);
}
.vip-card--prime .vip-card__btn {
  background: var(--accent);
  color: #0a0a0a;
  border-color: var(--accent);
}
.vip-card--prime .vip-card__btn:hover {
  background: var(--accent-hover);
}

/* --- Tableau comparatif --- */
.vip-compare {
  overflow-x: auto;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
}
.vip-cmp {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 14px;
}
.vip-cmp thead th {
  padding: 16px 20px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  background: rgba(0,0,0,0.25);
  border-bottom: 1px solid var(--border);
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 2;
}
.vip-cmp thead th:first-child {
  text-align: left;
  color: var(--text-dim);
  font-weight: 600;
}
.vip-cmp thead th.vip-cmp-hl {
  color: var(--gold);
  background: rgba(232,79,0,0.06);
}
.vip-cmp td {
  padding: 12px 20px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.035);
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  vertical-align: middle;
  transition: background 0.15s;
}
.vip-cmp td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--text);
  min-width: 200px;
  padding-left: 24px;
}
.vip-cmp td.vip-cmp-hl {
  background: rgba(232,79,0,0.03);
  color: var(--text);
  font-weight: 600;
}
.vip-cmp tbody tr:hover td {
  background: rgba(255,255,255,0.03);
}
.vip-cmp tbody tr:hover td.vip-cmp-hl {
  background: rgba(232,79,0,0.07);
}
.vip-cmp tbody tr:last-child td {
  border-bottom: none;
}
.vip-ok {
  color: #22c55e;
  font-size: 20px;
  font-weight: 700;
}
.vip-x {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.vip-x i {
  font-size: 14px;
  color: rgba(255,255,255,0.2);
}

/* VIP responsive */
@media (max-width: 768px) {
  .vip-cards { grid-template-columns: 1fr; gap: 16px; }
  .vip-card { padding: 28px 20px 24px; }
  .vip-cmp td:first-child { min-width: 150px; }
}

/* ===== FAQ ===== */
.faq-section {
  padding: 56px 0 48px;
}
.faq-title {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  color: var(--text);
  text-align: center;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}
.faq-subtitle {
  text-align: center;
  font-size: 14px;
  color: var(--text-dim);
  margin: 0 0 36px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 700px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.25s;
}
.faq-item:last-child { border-bottom: none; }
.faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--text);
  font-family: inherit;
  text-align: left;
  gap: 16px;
  transition: background 0.2s;
}
.faq-trigger:hover { background: rgba(255, 255, 255, 0.03); }
.faq-q-text {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}
.faq-q-icon {
  color: var(--accent);
  font-size: 16px;
  flex-shrink: 0;
}
.faq-chevron {
  font-size: 18px;
  color: var(--text-dim);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq-item.open .faq-chevron {
  transform: rotate(45deg);
  color: var(--accent);
}
.faq-answer-wrap {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s ease;
  padding: 0 24px;
}
.faq-item.open .faq-answer-wrap {
  max-height: 200px;
  padding: 0 24px 18px;
}
.faq-answer {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  padding-left: 26px;
}

/* ===== Moyens de paiement ===== */
.payment-section {
  padding: 40px 0 48px;
}
.payment-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 20px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.005) 100%);
}
.payment-text {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
}
.payment-shield {
  font-size: 20px;
  color: var(--accent);
}
.payment-icons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.payment-icon {
  width: 76px;
  height: 48px;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  transition: transform 0.2s, background 0.2s, border-color 0.2s;
}
.payment-icon:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.12);
}
.payment-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}
@media (max-width: 600px) {
  .payment-inner {
    flex-direction: column;
    gap: 16px;
    padding: 20px;
  }
}

/* ===== Footer ===== */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 48px 0 24px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 48px;
  align-items: start;
}
.footer-logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 4px;
  margin-bottom: 12px;
  filter: drop-shadow(0 0 6px rgba(232, 79, 0, 0.3));
}
.footer-tagline {
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  margin: 0 0 6px;
}
.footer-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}
.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text);
  margin: 0 0 12px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-col a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--text); }
.footer-links-wrap {
  display: flex;
  gap: 48px;
}
.footer-bottom {
  margin: 32px auto 0;
  padding: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
.footer-bottom span {
  font-size: 12px;
  color: var(--text-dim);
}
.footer-bottom a {
  color: var(--text-muted);
  font-size: 12px;
  transition: color 0.2s;
}
.footer-bottom a:hover { color: var(--text); }

/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .coins-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 900px) {
  .main-layout {
    grid-template-columns: 1fr;
  }
  .nav-right .server-info { display: none; }
}
@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .coins-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .coins-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-links-wrap {
    flex-direction: column;
    gap: 24px;
  }
}
/* ===== Modal produit (z-index au dessus du header) ===== */
[x-teleport] + div[class*="fixed"],
div.fixed[class*="z-99"],
div[x-show][class*="fixed"][class*="z-99"] {
  z-index: 99999 !important;
}

/* ===== Boutons Vallet (btn / btn-primary) ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  border: 1px solid transparent;
  text-decoration: none;
  color: #000;
}
.btn-primary {
  background: var(--accent) !important;
  color: #000 !important;
  border-color: var(--accent) !important;
}
.btn-primary:hover {
  background: var(--accent-hover) !important;
  border-color: var(--accent-hover) !important;
}

@media (max-width: 500px) {
  .nav-links { flex-wrap: wrap; }
  .products-grid {
    grid-template-columns: 1fr;
  }
  .coins-grid {
    grid-template-columns: 1fr;
  }
}

@media(max-width:700px){
  .pkg-article{height:calc(100vh - 40px)!important;max-height:none!important;overflow-y:auto!important;border-radius:12px!important}
  .pkg-top{flex-direction:column!important;overflow:visible!important;flex:none!important}
  .pkg-top>div{flex:none!important;width:100%!important;overflow:visible!important}
  .pkg-bottom{flex-direction:column!important;gap:10px!important;padding:12px 16px!important}
  .pkg-bottom>div{width:100%!important}
  .pkg-bottom .btn{max-width:none!important;width:100%!important}
}
