/* Reset et variables */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Palette La Guilde du Loup basée sur #083425 */
  --primary-color: #083425;           /* Vert sombre principal */
  --primary-light: #0f5835;          /* Vert sombre éclairci */
  --primary-dark: #052218;           /* Vert sombre assombri */
  --secondary-color: #d4af37;        /* Or mystique */
  --golden-title: #dcb658;           /* Or moderne pour titres */
  --accent-color: #8b4513;           /* Brun cuir/bois */
  --accent-light: #a0522d;          /* Brun clair */

  --text-dark: #1a1a1a;
  --text-light: #4a5568;
  --text-forest: #2d3748;

  --bg-light: #f7fafc;
  --bg-forest: #e6fffa;
  --bg-dark: #1a202c;
  --white: #ffffff;

  --border-color: #cbd5e0;
  --border-forest: rgba(8, 52, 37, 0.2);

  --shadow-sm: 0 1px 2px 0 rgba(8, 52, 37, 0.1);
  --shadow-md: 0 4px 6px -1px rgba(8, 52, 37, 0.15);
  --shadow-lg: 0 10px 15px -3px rgba(8, 52, 37, 0.2);
  --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.3);


    --wolf-gold: #dcb658;
    --forest-dark: #083425;
}

.btn-primary {
    background-color: var(--golden-title);
    border-color: var(--secondary-color);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--accent-light);
}

.ps_checkout-payment-option label {
    display: flex !important;
}

.payment__list {
    margin-bottom: 3rem;
}

/* Import des polices modernes pour gaming */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;600;700&display=swap');

/* Landing page principale */
.coming-soon-page {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Section Hero */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, 
    var(--primary-dark) 0%, 
    var(--primary-color) 35%, 
    var(--primary-light) 70%, 
    #1a4d3a 100%);
  display: flex;
  align-items: center;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(139, 69, 19, 0.1) 0%, transparent 50%),
    linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.05) 50%, transparent 60%);
  pointer-events: none;
  animation: mysticalGlow 8s ease-in-out infinite alternate;
}

.hero-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="rgba(212,175,55,0.3)"><animate attributeName="opacity" values="0;1;0" dur="3s" repeatCount="indefinite"/></circle><circle cx="80" cy="40" r="1" fill="rgba(212,175,55,0.3)"><animate attributeName="opacity" values="0;1;0" dur="4s" repeatCount="indefinite"/></circle><circle cx="40" cy="80" r="1" fill="rgba(212,175,55,0.3)"><animate attributeName="opacity" values="0;1;0" dur="2s" repeatCount="indefinite"/></circle></svg>') repeat;
  pointer-events: none;
}

@keyframes mysticalGlow {
  0% { opacity: 0.7; }
  100% { opacity: 1; }
}

.logo-container {
  margin-bottom: 3rem;
  position: relative;
}

.logo-container::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
  z-index: 0;
  animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
  50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.8; }
}

.main-logo {
  max-height: 280px;
  width: auto;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.4));
  animation: fadeInDown 1.2s ease-out;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 2rem;
  color: var(--golden-title);
  animation: fadeInUp 1s ease-out 0.4s both;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

@keyframes goldShimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 3rem;
  opacity: 0.95;
  animation: fadeInUp 1s ease-out 0.7s both;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  letter-spacing: -0.01em;
}

/* Styles typographiques pour tous les éléments */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.hero-title, .mission-hero-section h2, .wargames-hero-section h2, 
.cartes-hero-section h2, .plateau-hero-section h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
}

p, .hero-description, .feature-card p, .adventure-card p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.hero-badge, .timeline-badge, .tag {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.stat-number {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.stat-label {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.feature-card h3, .adventure-card h3, .timeline-content h3,
.htimeline-content h3, .feature-item h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* Hero Sections Base */
.mission-hero-section,
.wargames-hero-section,
.cartes-hero-section,
.plateau-hero-section {
  position: relative;
  padding: 10rem 0;
  overflow: hidden;
}

.mission-hero-section {
  background: linear-gradient(135deg, #0a3d2b 0%, #1a5d42 50%, #2d7a5a 100%);
  color: white;
}

.wargames-hero-section {
  background: linear-gradient(135deg, #2c1810 0%, #4a2c1a 50%, #6b3e26 100%);
  color: white;
}

.cartes-hero-section {
  background: linear-gradient(135deg, #1a0d3d 0%, #2d1b5a 50%, #3f2a77 100%);
  color: white;
}

.plateau-hero-section {
  background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
  color: white;
}

.hero-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.1;
  background-size: 100px 100px;
  background-repeat: repeat;
}

.hero-bg-pattern {
  background-image: 
    radial-gradient(circle at 25px 25px, rgba(255,255,255,0.3) 2px, transparent 2px),
    radial-gradient(circle at 75px 75px, rgba(255,255,255,0.2) 2px, transparent 2px);
}

.wargames-pattern {
  background-image: 
    linear-gradient(45deg, rgba(255,255,255,0.1) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255,255,255,0.1) 25%, transparent 25%);
}

.cartes-pattern {
  background-image: 
    polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  -webkit-clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.plateau-pattern {
  background-image: 
    radial-gradient(circle at 50px 50px, rgba(255,255,255,0.15) 10px, transparent 10px);
}

/* Hero Content */
.hero-content,
.hero-content-left,
.hero-content-right {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  padding: 1rem 2rem;
  background: rgba(255,255,255,0.2);
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.wargames-badge { background: rgba(255,69,0,0.3); border-color: rgba(255,69,0,0.5); }
.cartes-badge { background: rgba(138,43,226,0.3); border-color: rgba(138,43,226,0.5); }
.plateau-badge { background: rgba(0,191,255,0.3); border-color: rgba(0,191,255,0.5); }


.hero-description {
  font-size: 1.4rem;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 4rem;
  max-width: 600px;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 4rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 3.5rem;
  font-weight: 900;
  background: linear-gradient(45deg, var(--golden-title), #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-label {
  font-size: 1rem;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* Hero Features */
.hero-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.feature-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  transition: all 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  background: rgba(255,255,255,0.15);
  border-color: rgba(212,175,55,0.5);
}

.feature-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  filter: sepia(1) hue-rotate(45deg) saturate(1.5);
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.feature-card p {
  opacity: 0.9;
  line-height: 1.6;
}

/* Hero Header Centralized */
.hero-header-centered {
  text-align: center;
  margin-bottom: 6rem;
  position: relative;
  z-index: 2;
}

.hero-header-centered .hero-badge {
  margin-bottom: 2rem;
}

.hero-header-centered .hero-title {
  font-size: 3.5rem;
  margin-bottom: 2rem;
}

.hero-header-centered .hero-description {
  max-width: 800px;
  margin: 0 auto 0;
  font-size: 1.3rem;
}

/* Split Hero Content (colonnes en dessous) */
.split-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: flex-start;
}

.split-hero-content.reverse {
  direction: rtl;
}

.split-hero-content.reverse > * {
  direction: ltr;
}

/* Mission Content Grid */
.mission-content-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
}

.mission-content-grid .hero-stats {
  justify-content: center;
  margin-bottom: 0;
}

.mission-content-grid .hero-features {
  margin-top: 0;
  max-width: 1000px;
}

/* Split Hero Layout (pour les autres sections) */
.split-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  min-height: 60vh;
}

.split-hero.reverse {
  direction: rtl;
}

.split-hero.reverse > * {
  direction: ltr;
}

.hero-list {
  margin-top: 0;
}

.list-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  padding: 0.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.list-item:hover {
  background: rgba(255,255,255,0.05);
  transform: translateX(5px);
}

/* Style spécifique pour les éléments logo uniquement */
.list-item.logo-only {
  justify-content: center;
  margin-bottom: 2rem;
  padding: 1.2rem;
}

.list-item.logo-only:hover {
  transform: scale(1.02);
}

.list-item.logo-only .list-logo.warhammer-logo-container {
  width: 100%;
  height: 80px;
  border-radius: 8px;
  padding: 8px;
}

.list-item.logo-only:hover .list-logo.warhammer-logo-container {
  transform: scale(1.05);
}

/* Style pour les logos TCG uniquement (comme Warhammer) */
.list-item.logo-only .list-logo.tcg-logo-container {
  width: 100%;
  height: 80px;
  border-radius: 8px;
  padding: 8px;
}

.list-item.logo-only:hover .list-logo.tcg-logo-container {
  transform: scale(1.05);
}

.list-icon {
  font-size: 1.5rem;
  width: 40px;
  text-align: center;
}

.list-logo {
  width: 50px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Container spécifique pour les logos Warhammer rectangulaires */
.list-logo.warhammer-logo-container {
  width: 80px;
  height: 40px;
  border-radius: 6px;
  padding: 4px;
  transition: all 0.3s ease;
}

/* Container spécifique pour les logos TCG - même style que Warhammer */
.list-logo.tcg-logo-container {
  width: 80px;
  height: 40px;
  border-radius: 6px;
  padding: 4px;
  transition: all 0.3s ease;
}

.list-item:hover .list-logo.tcg-logo-container {
  transform: scale(1.05);
}

/* Style pour les logos TCG uniquement (comme Warhammer) */
.list-item.logo-only .list-logo.tcg-logo-container {
  width: 100%;
  height: 80px;
  border-radius: 8px;
  padding: 8px;
}

.list-item.logo-only:hover .list-logo.tcg-logo-container {
  transform: scale(1.05);
}

/* Zoom spécifique pour le logo Yu-Gi-Oh! */
.list-item.logo-only .list-logo.tcg-logo-container img[alt="Yu-Gi-Oh!"] {
  transform: scale(2);
}

.list-item.logo-only:hover .list-logo.tcg-logo-container img[alt="Yu-Gi-Oh!"] {
  transform: scale(2.1);
}

/* Styles spécifiques pour les logos TCG */
.brand-logo.tcg-logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: all 0.3s ease;
}

.list-item:hover .brand-logo.tcg-logo {
  transform: scale(1.1);
}

.list-item:hover .list-logo.warhammer-logo-container {
  transform: scale(1.05);
}

.brand-logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: all 0.3s ease;
}

/* Style spécifique pour les logos Warhammer 441x87 */
.brand-logo.warhammer-logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: all 0.3s ease;
}

.list-item:hover .brand-logo.warhammer-logo {
  transform: scale(1.1);
}

.list-item:hover .brand-logo {
  transform: scale(1.1);
}

.main-brand-logo {
  margin-bottom: 2rem;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 160px;
}

.featured-logo {
  max-width: 150px;
  max-height: 80px;
  object-fit: contain;
  transition: all 0.4s ease;
}

/* Style spécifique pour le logo Games Workshop 150x150 */
.featured-logo.gw-logo {
  max-width: 240px;
  max-height: 240px;
  object-fit: contain;
  transition: all 0.4s ease;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  padding: 8px;
}

.visual-card:hover .featured-logo.gw-logo {
  transform: scale(1.08);
  background: rgba(255,255,255,0.1);
}

.visual-card:hover .featured-logo {
  transform: scale(1.05);
}

.grid-logo {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 8px;
}

.card-logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: all 0.3s ease;
}

.grid-item:hover .card-logo {
  transform: scale(1.1);
}

.accessories-logo {
  filter: brightness(0) invert(1) opacity(0.8);
}

.brands-showcase {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.showcase-logo {
  max-width: 80px;
  max-height: 40px;
  object-fit: contain;
  transition: all 0.3s ease;
}

.visual-card:hover .showcase-logo {
  transform: translateY(-5px);
}

/* Logo Fallbacks */
.logo-fallback,
.card-text-fallback {
  display: none;
  font-size: 1rem;
  font-weight: 900;
  color: currentColor;
  text-align: center;
  background: rgba(255,255,255,0.2);
  padding: 8px;
  border-radius: 8px;
  border: 2px solid currentColor;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.brand-text-fallback {
  display: none;
  font-size: 1.2rem;
  font-weight: 800;
  color: currentColor;
  text-align: center;
  padding: 1rem;
  background: rgba(255,255,255,0.1);
  border: 2px solid currentColor;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.brand-fallback-text {
  display: none;
  font-size: 0.8rem;
  font-weight: 700;
  color: currentColor;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0.5rem;
}

/* SVG Logos */
.svg-logo {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo-svg,
.card-logo-svg {
  width: 100%;
  height: 100%;
  max-width: 40px;
  max-height: 40px;
  color: currentColor;
}

.accessories .card-logo-svg {
  opacity: 0.8;
}

/* Logo hover effects */
.list-item:hover .logo-fallback,
.list-item:hover .svg-logo {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

.grid-item:hover .card-text-fallback,
.grid-item:hover .svg-logo {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

/* Logo loading states */
.brand-logo,
.card-logo,
.featured-logo,
.showcase-logo {
  transition: all 0.3s ease;
}

.brand-logo:not([src]),
.card-logo:not([src]),
.featured-logo:not([src]),
.showcase-logo:not([src]) {
  display: none;
}

/* Alternative: Use font-based icons */
.icon-magic::before { content: "🔮"; }
.icon-pokemon::before { content: "⚡"; }
.icon-yugioh::before { content: "🌟"; }
.icon-warhammer::before { content: "⚔️"; }
.icon-sigmar::before { content: "🛡️"; }
.icon-killteam::before { content: "🎯"; }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.grid-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255,255,255,0.1);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.grid-item:hover {
  background: rgba(255,255,255,0.2);
  transform: scale(1.05);
}

.grid-emoji {
  font-size: 2rem;
}

.grid-text {
  font-weight: 600;
}

/* Visual Cards */
.visual-card {
  position: relative;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 25px;
  padding: 4rem 3rem;
  text-align: center;
  overflow: hidden;
}

.card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  right: -50%;
  bottom: -50%;
  background: radial-gradient(circle, rgba(212,175,55,0.3) 0%, transparent 70%);
  animation: rotate 10s linear infinite;
}

.card-content {
  position: relative;
  z-index: 2;
}

.card-content h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

/* Centered Hero - Deprecated, now using hero-header-centered */

.adventure-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.adventure-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.adventure-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transition: left 0.6s ease;
}

.adventure-card:hover::before {
  left: 100%;
}

.adventure-card:hover {
  transform: translateY(-10px) scale(1.05);
  border-color: rgba(212,175,55,0.5);
}

.adventure-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
}

.adventure-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.adventure-card p {
  opacity: 0.9;
  line-height: 1.6;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.timeline-header {
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
  z-index: 1;
}

.timeline-header h2 {
  font-size: 3rem;
  margin-bottom: 2rem;
  color: var(--golden-title);
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.timeline-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
  border-radius: 2px;
}

.timeline-header p {
  font-size: 1.3rem;
  color: var(--text-forest);
  max-width: 600px;
  margin: 0 auto;
}

.timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 4px;
  background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color), var(--primary-color));
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
  border-radius: 2px;
}

.timeline-item {
  padding: 2rem 0;
  position: relative;
  background-color: inherit;
  width: 50%;
  animation: fadeInTimeline 1s ease-out;
}

.timeline-item::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--secondary-color);
  border: 4px solid var(--primary-color);
  top: 50%;
  border-radius: 50%;
  z-index: 1;
  box-shadow: 0 0 0 4px var(--white), 0 0 20px rgba(212, 175, 55, 0.5);
}

.timeline-left {
  left: 0;
}

.timeline-left::after {
  right: -12px;
}

.timeline-right {
  left: 50%;
}

.timeline-right::after {
  left: -12px;
}

.timeline-content {
  padding: 3rem;
  background: var(--white);
  position: relative;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--border-forest);
  transition: all 0.4s ease;
}

.timeline-content:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg), var(--shadow-gold);
  border-color: var(--secondary-color);
}

.timeline-left .timeline-content {
  margin-right: 3rem;
}

.timeline-right .timeline-content {
  margin-left: 3rem;
}

.timeline-icon {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 1.5rem;
  filter: sepia(1) hue-rotate(90deg) saturate(1.5);
}

.timeline-content h3 {
  font-size: 2rem;
  color: var(--golden-title);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.htimeline-content h3 {
  font-size: 1.8rem;
  color: var(--golden-title);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.feature-item h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--golden-title);
  font-weight: 600;
}

.timeline-content p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.timeline-badge {
  display: inline-block;
  background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
  color: white;
  padding: 0.7rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Timeline Gammes Section */
.gammes-timeline-section {
  padding: 8rem 0;
  background: var(--white);
  position: relative;
}

.horizontal-timeline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.horizontal-timeline::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 10%;
  right: 10%;
  height: 4px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color), var(--primary-color));
  border-radius: 2px;
}

.htimeline-item {
  flex: 1;
  text-align: center;
  position: relative;
  max-width: 350px;
}

.htimeline-marker {
  position: relative;
  z-index: 2;
  margin-bottom: 2rem;
}

.htimeline-icon {
  width: 120px;
  height: 120px;
  background: var(--white);
  border: 6px solid var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin: 0 auto;
  position: relative;
  box-shadow: var(--shadow-lg), 0 0 0 6px var(--white);
  transition: all 0.4s ease;
}

.htimeline-item:hover .htimeline-icon {
  transform: scale(1.1);
  border-color: var(--secondary-color);
  box-shadow: var(--shadow-lg), var(--shadow-gold), 0 0 0 6px var(--white);
}

.htimeline-content {
  background: var(--white);
  padding: 3rem 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--border-forest);
  transition: all 0.4s ease;
  margin-top: 1rem;
}

.htimeline-content:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg), var(--shadow-gold);
  border-color: var(--secondary-color);
}

.htimeline-content h3 {
  font-size: 1.8rem;
  color: var(--golden-title);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.htimeline-content p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.htimeline-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.tag {
  background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@keyframes fadeInTimeline {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Section About */
.about-section {
  padding: 8rem 0;
  background: linear-gradient(180deg, var(--bg-forest) 0%, var(--white) 100%);
  position: relative;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M985.66,92.83C906.67,72,823.78,31,743.84,14.19c-82.26-17.34-168.06-16.33-250.45.39-57.84,11.73-114,31.07-172,41.86A600.21,600.21,0,0,1,0,27.35V120H1200V95.8C1132.19,118.92,1055.71,111.31,985.66,92.83Z" fill="rgba(8,52,37,0.1)"></path></svg>') no-repeat center top;
  background-size: cover;
}

.about-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.about-section h2 {
  font-size: 3rem;
  margin-bottom: 2.5rem;
  color: var(--golden-title);
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.about-section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
  border-radius: 2px;
}

.about-section p {
  font-size: 1.3rem;
  color: var(--text-forest);
  max-width: 800px;
  margin: 0 auto 5rem;
  line-height: 1.8;
  font-weight: 400;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  margin-top: 5rem;
}

.feature-item {
  background: var(--white);
  padding: 4rem 2.5rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s ease;
  border: 2px solid var(--border-forest);
  position: relative;
  overflow: hidden;
}

.feature-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}

.feature-item:hover::before {
  transform: translateX(0);
}

.feature-item:hover {
  transform: translateY(-15px);
  box-shadow: var(--shadow-lg), var(--shadow-gold);
  border-color: var(--secondary-color);
}

.feature-icon {
  font-size: 4rem;
  margin-bottom: 2rem;
  filter: sepia(1) hue-rotate(90deg) saturate(2);
}

.feature-item h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--golden-title);
  font-weight: 600;
}

.feature-item p {
  color: var(--text-light);
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Section Newsletter */
.newsletter-section {
  padding: 8rem 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="guild-pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(212,175,55,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23guild-pattern)"/></svg>');
  opacity: 0.3;
}

.newsletter-section h2 {
  font-size: 3rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
  color: var(--golden-title);
}

.newsletter-section > p {
  font-size: 1.3rem;
  margin-bottom: 4rem;
  opacity: 0.95;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
  line-height: 1.7;
}

.newsletter-form {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.input-group {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px;
  border-radius: 60px;
  backdrop-filter: blur(10px);
}

.email-input {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  flex: 1;
  padding: 1.2rem 2rem;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  background: var(--white);
  color: var(--text-dark);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  letter-spacing: -0.01em;
}

.email-input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.4);
  transform: scale(1.02);
}

.submit-btn {
  font-family: 'Poppins', sans-serif;
  padding: 1.2rem 3rem;
  background: linear-gradient(45deg, var(--secondary-color), #f4d03f);
  color: var(--primary-dark);
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.submit-btn:hover {
  background: linear-gradient(45deg, #f4d03f, var(--secondary-color));
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg), var(--shadow-gold);
}

.newsletter-note {
  font-size: 1rem;
  opacity: 0.9;
  margin-top: 2rem;
  background: rgba(212, 175, 55, 0.2);
  padding: 1rem 2rem;
  border-radius: 50px;
  display: inline-block;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

/* Section Social */
.social-section {
  padding: 6rem 0;
  background: var(--bg-forest);
  text-align: center;
}

.social-section h3 {
  font-size: 2.2rem;
  margin-bottom: 3rem;
  color: var(--golden-title);
  font-weight: 600;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: all 0.4s ease;
  font-weight: 600;
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.social-link:hover::before {
  opacity: 1;
}

.social-link:hover {
  transform: translateY(-8px) scale(1.1);
  box-shadow: var(--shadow-lg), var(--shadow-gold);
}

.social-link.facebook { background: linear-gradient(45deg, #3b5998, #4c70ba); }
.social-link.instagram { background: linear-gradient(45deg, #e4405f, #f56565); }
.social-link.twitter { background: linear-gradient(45deg, #1da1f2, #4299e1); }

.social-link span {
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
}

/* Footer */
.landing-footer {
  padding: 4rem 0;
  background: var(--primary-dark);
  color: white;
  text-align: center;
  position: relative;
}

.landing-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(45deg, var(--secondary-color), var(--accent-color), var(--secondary-color));
}

.landing-footer p {
  margin-bottom: 1.5rem;
  opacity: 0.9;
  font-size: 1.1rem;
}

.landing-footer a {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.landing-footer a:hover {
  color: #f4d03f;
  text-decoration: underline;
}

/* all */
.header {
    --header-bg: var(--forest-dark);
    --header-top-bg: var(--forest-dark);
    --header-color: var(--wolf-gold);
    --header-top-color: var(--wolf-gold);
}

.header-top {
    --header-top-border-bottom: 1px solid var(--wolf-gold);
    --header-bottom-border-bottom: 1px solid var(--wolf-gold);
}

.header a:not(.dropdown-item):not(.btn) {
    color: var(--wolf-gold);
}

.header-top a:not(.dropdown-item) {
    color: var(--header-top-color);
}

.header-bottom {
    --header-top-border-bottom: 1px solid var(--wolf-gold);
    --header-bottom-border-bottom: 1px solid var(--wolf-gold);
}

.carousel .carousel-caption .caption-description {
    max-width: 100%;
}
.carousel .carousel-indicators button.active {
    background-color: var(--wolf-gold);
}

.carousel .discord {
    border-radius: 10px;
}

.badge.discount {
    background-color: var(--golden-title);
    border-color: var(--secondary-color);
    color: white;
}

.product-miniature__title {
    color: var(--primary-light);
    font-weight: 600;
}

.product-miniature__quickview_button {
    color: var(--primary-light);
}

.product-miniature__quickview_button:hover {
    color: var(--golden-title);
}

.all-product-link,
.product-miniature__infos__bottom .btn-outline-primary,
.email-subscription .email-subscription__content__inputs .btn-primary {
    background-color: var(--primary-light);
    border: var(--border-forest);
    color: var(--golden-title);
    font-weight: 600;
}

.all-product-link:hover,
.product-miniature__infos__bottom .btn-outline-primary:hover,
.email-subscription .email-subscription__content__inputs .btn-primary:hover {
    background-color: var(--forest-dark);
    color: var(--golden-title);
}
.all-product-link.btn i,
.all-product-link.btn:hover i {
    color: var(--golden-title);
}

.page-link,
.page-link:hover {
    color: var(--golden-title);
}

{
    color: var(--golden-title);
}



/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.8rem;
    letter-spacing: -0.03em;
  }

  .hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.6;
  }

  /* Amélioration de la lisibilité sur mobile */
  p, .hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
  }

  h3 {
    font-size: 1.4rem;
    letter-spacing: -0.02em;
  }

  .input-group {
    flex-direction: column;
    gap: 1rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .social-links {
    gap: 1.5rem;
  }

  .social-link {
    width: 70px;
    height: 70px;
  }

  .container {
    padding: 0 1rem;
  }

  /* Hero sections responsive */
  .mission-hero-section,
  .wargames-hero-section,
  .cartes-hero-section,
  .plateau-hero-section {
    padding: 6rem 0;
  }

  .hero-title {
    font-size: 2.5rem !important;
  }

  .hero-description {
    font-size: 1.2rem;
    margin-bottom: 3rem;
  }

  .hero-stats {
    gap: 2rem;
    justify-content: center;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .hero-header-centered .hero-title {
    font-size: 2.5rem;
  }

  .hero-header-centered .hero-description {
    font-size: 1.2rem;
  }

  .hero-header-centered {
    margin-bottom: 4rem;
  }

  .split-hero-content {
    grid-template-columns: 1fr;
    gap: 4rem;
    text-align: center;
  }

  .split-hero-content.reverse {
    direction: ltr;
  }

  .mission-content-grid {
    gap: 3rem;
  }

  .mission-content-grid .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .split-hero {
    grid-template-columns: 1fr;
    gap: 4rem;
    text-align: center;
  }

  .split-hero.reverse {
    direction: ltr;
  }

  .hero-features,
  .adventure-cards {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .list-logo,
  .grid-logo {
    width: 40px;
    height: 35px;
  }

  /* Responsive pour les logos Warhammer */
  .list-logo.warhammer-logo-container {
    width: 65px;
    height: 32px;
    padding: 3px;
  }

  /* Responsive pour les logos TCG */
  .list-logo.tcg-logo-container {
    width: 65px;
    height: 32px;
    padding: 3px;
  }

  /* Responsive pour les logos uniquement */
  .list-item.logo-only .list-logo.warhammer-logo-container {
    width: 100%;
    height: 60px;
    padding: 6px;
  }

  .list-item.logo-only .list-logo.tcg-logo-container {
    width: 100%;
    height: 60px;
    padding: 6px;
  }

  .featured-logo {
    max-width: 120px;
    max-height: 60px;
  }

  /* Responsive pour le logo GW spécifiquement */
  .featured-logo.gw-logo {
    max-width: 180px;
    max-height: 180px;
    padding: 6px;
  }

  .brands-showcase {
    gap: 1rem;
  }

  .showcase-logo {
    max-width: 60px;
    max-height: 30px;
  }

  .brand-logo,
  .card-logo {
    max-width: 90%;
    max-height: 90%;
  }

  .hero-list {
    text-align: left;
    max-width: 400px;
    margin: 3rem auto 0;
  }

  .visual-card {
    padding: 3rem 2rem;
  }

  .feature-card,
  .adventure-card {
    padding: 2rem 1.5rem;
  }

  .feature-icon,
  .adventure-icon {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem !important;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .hero-badge {
    padding: 0.8rem 1.5rem;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .main-logo {
    max-height: 200px;
  }

  .logo-container::before {
    width: 280px;
    height: 280px;
  }

  .about-section h2,
  .newsletter-section h2 {
    font-size: 2.2rem;
  }

  .feature-item {
    padding: 3rem 2rem;
  }

  /* Logo GW sur très petits écrans */
  .featured-logo.gw-logo {
    max-width: 140px;
    max-height: 140px;
    padding: 4px;
  }

  .main-brand-logo {
    min-height: 120px;
  }

  /* Logos Warhammer sur très petits écrans */
  .list-logo.warhammer-logo-container {
    width: 50px;
    height: 25px;
    padding: 2px;
  }

  /* Logos TCG sur très petits écrans */
  .list-logo.tcg-logo-container {
    width: 50px;
    height: 25px;
    padding: 2px;
  }

  /* Logos uniquement sur très petits écrans */
  .list-item.logo-only .list-logo.warhammer-logo-container {
    width: 100%;
    height: 50px;
    padding: 4px;
  }

  .list-item.logo-only .list-logo.tcg-logo-container {
    width: 100%;
    height: 50px;
    padding: 4px;
  }

  .list-item.logo-only {
    margin-bottom: 0;
    padding: 0;
  }
}
@media (min-width: 992px) {
    .header-block--active .header-block, .header-block--active .header-block__icon {
        color: var(--wolf-gold);
    }
}
