@font-face {
  font-family: 'HeadingNow-85Medium';
  src: url('/assets/fonts/HeadingNow-85Medium.otf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'CircularStd';
  src: url('/assets/fonts/circular-std-medium-500.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'HeadingNow-83Book';
  src: url('/assets/fonts/HeadingNow-83Book.otf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

body {
  margin: 0;
  font-family: 'HeadingNow-85Medium', Arial, sans-serif;
  background: #000;
  color: #fff;
}

* {
  font-family: 'HeadingNow-85Medium', Arial, sans-serif;
}

.hero {
  position: relative;
  width: 100vw;
  min-height: 100vh;
  padding-top: 120px;
  background: linear-gradient(0deg, rgba(0,0,0,0) 73.83%, #000 100%),
    linear-gradient(180deg, rgba(0,0,0,0) 50%, #000 100%),
    url('/assets/hero-bg.png') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
}

.site-header {
  width: 100vw;
  max-width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  padding: 32px 48px 0 48px;
  z-index: 1000;
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

/* Nouvelle ligne de logos */
.logos-row {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  position: relative;
}
/* Centrage du wordmark en desktop en le positionnant au milieu de l’en-tête */
@media (min-width: 901px) {
  .site-header { position: fixed; }
  .logos-row { position: static; }
  .site-header .brand-right-img {
    position: absolute; /* centré par rapport au header */
    left: 50%;
    transform: translateX(-50%);
    top: 12px; /* remonté davantage pour centrer verticalement */
    margin: 0;
    z-index: 2;
  }
}

@media (max-width: 900px) {
  .hide-on-mobile { 
    display: none !important; 
    visibility: hidden !important;
    user-select: none !important;
    pointer-events: none !important;
  }
}

/* App stores desktop: garder le switch à droite */
.app-stores {
  display: flex;
  gap: 16px;
  align-items: center;
  transform: translateY(-12px);
}
.app-stores .lang-switcher { 
  margin-left: 16px;
}

.logos-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

@media (min-width: 901px) {
  .logos-right .lang-switcher {
    transform: translateY(-12px);
    margin-right:  24px;
  }
}
.logo img {
  height: 24px;
  width: auto;
  display: block;
  margin-left: 8px;  /* espace côté gauche */
  margin-top: -28px;  /* remonte le logo SVG */
}
.brand-right-img {
  height: 60px; /* taille desktop augmentée pour l'animation Lottie */
  width: auto;
  display: block;
  margin-right: 8px;
}

.hero-header {
  width: 100vw;
  max-width: 100vw;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  position: absolute;
  top: 0;
  left: 0;
  padding: 32px 48px 0 48px;
  z-index: 2;
  box-sizing: border-box;
}

.mascot {
  position: absolute;
  left: 50%;
  top: 24px;
  transform: translateX(-50%);
  z-index: 3;
}
.mascot img {
  width: auto;
  height: 60px;
  display: block;
}

.app-stores {
  display: flex;
  gap: 16px;
  align-items: center;
}
.app-stores img {
  height: 44px;
  width: auto;
  display: block;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

/* QR Code Section */
.qr-code-section {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.qr-code-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.qr-code-container:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.qr-code {
  width: 120px;
  height: 120px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  background: white;
  padding: 8px;
}

.qr-text {
  font-family: 'CircularStd', Arial, sans-serif;
  font-size: 14px;
  color: #fff;
  margin: 0;
  text-align: center;
  font-weight: 500;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 340px;
  gap: 48px;
  z-index: 2;
}

.hero-content h1 {
  font-family: 'HeadingNow-85Medium', 'Inter', Arial, sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.1;
  margin: 0;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0,0,0,0.7);
  letter-spacing: 0.01em;
}

.cta {
  display: inline-block;
  padding: 1.1rem 3.5rem;
  background: transparent;
  border: 2px solid #A3FF12;
  color: #A3FF12;
  border-radius: 32px;
  font-size: 1.25rem;
  font-weight: bold;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: 0 0 16px 2px #A3FF12, 0 0 32px 4px rgba(163,255,18,0.2);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  margin-top: 16px;
}

.cta:hover {
  background: #A3FF12;
  color: #000;
  box-shadow: 0 0 32px 8px #A3FF12;
}

.hero-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
}

/* DEBUG: If you see 'cursive', HeadingNow is not loading */
.hero-overlay-title {
  font-family: 'HeadingNow-85Medium', Arial, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.5rem !important; /* 24px */
  line-height: 115%;
  letter-spacing: 0;
  vertical-align: middle;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  margin-bottom: 32px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.7);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  word-break: break-word;
  white-space: pre-line;
  letter-spacing: 0.18em !important;
}

.download-btn {
  font-family: 'HeadingNow-85Medium', Arial, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.1rem;
  line-height: 115%;
  letter-spacing: 0;
  vertical-align: middle;
  text-transform: uppercase;
  color: #A3FF12;
  background: transparent;
  border: 1.5px solid #A3FF12;
  border-radius: 32px;
  width: 320px;
  height: 47px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 0 16px 2px #A3FF12, 0 0 32px 4px rgba(163,255,18,0.2);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.download-btn:hover {
  background: #A3FF12;
  color: #000;
  box-shadow: 0 0 32px 8px #A3FF12;
}

.cards-section {
  width: 100vw;
  padding-top: 64px;
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: transparent;
}

.cards-title {
  font-family: 'HeadingNow-85Medium', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.25rem !important; /* 20px */
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  margin-bottom: 8px;
}
.cards-title,
.prizes-title,
.tutorial-section h2,
.final-store-title,
.hero-title {
  letter-spacing: 0.18em;
}

.cards-subtitle {
  font-family: 'CircularStd', Arial, sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #d6d6d6;
  text-align: center;
  margin-bottom: 48px;
}

.card-single-image-wrapper {
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
}
.card-single-image {
  width: 100%;
  max-width: 1100px;
  height: auto;
  display: block;
  /* opacity: 0.5; */
}

.prizes-section {
  width: 100vw;
  padding: 64px 0 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: transparent;
}
.prizes-title {
  font-family: 'HeadingNow-85Medium', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.5rem !important; /* 24px */
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  margin-bottom: 12px;
}
.prizes-subtitle {
  font-family: 'CircularStd', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #d6d6d6;
  text-align: center;
  margin-bottom: 48px;
  max-width: 700px;
}
.prizes-grid {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  gap: 12px;
  width: 100%;
  max-width: 1200px;
  
}
.prize-card {
  background: #111;
  border-radius: 24px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.4);
  overflow: hidden;
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 0 24px 0;
  min-width: 0;
  background: none;
}
.prize-image {
  width: 100%;
  /* max-height: 320px; */
  height: auto;
  object-fit: contain;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  margin-bottom: 24px;
  background: #000;
}
.prize-title {
  font-family: 'HeadingNow-85Medium', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: #fff;
  text-align: center;
  margin-bottom: 12px;
  margin-top: 8px;
  text-transform: uppercase;
}
.prize-countdown {
  font-family: 'CircularStd', Arial, sans-serif;
  font-size: 1rem;
  color: #fff;
  text-align: center;
  margin-bottom: 18px;
  letter-spacing: 0.04em;
}
.prize-btn {
  display: inline-block;
  padding: 0.7rem 2.2rem;
  background: transparent;
  border: 2px solid #A3FF12;
  color: #A3FF12;
  border-radius: 32px;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: 0 0 16px 2px #A3FF12, 0 0 32px 4px rgba(163,255,18,0.2);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  margin-top: auto;
}
.prize-btn:hover {
  background: #A3FF12;
  color: #000;
  box-shadow: 0 0 32px 8px #A3FF12;
}

.tutorial-section {
  width: 100vw;
  padding: 64px 0 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: transparent;
  margin-bottom: 48px;
  margin-left: auto;
  margin-right: auto;
}
.tutorial-grid {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  gap: 48px;
  width: 100%;
  max-width: 1200px;
  min-height: 0;
  height: 520px;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
}

/* Version Desktop - visible par défaut */
.tutorial-desktop {
  display: flex;
}

/* Version Mobile - cachée par défaut */
.tutorial-mobile {
  display: none;
}
@media (max-width: 1200px) {
  .tutorial-grid {
    max-width: 100vw;
    padding-left: 8px;
    padding-right: 8px;
  }
}
.tutorial-col {
  flex: 1 1 0;
  border: 1px solid #2F2F2F;
  border-radius: 18px;
  padding: 48px 24px;
  background: transparent;
  height: 100%;
  min-height: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.tutorial-steps {
  position: relative;
  min-height: 60px;
}

.tutorial-visual {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.tutorial-visual img {
  width: 100%;
  max-width: 300px;
  max-height: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 24px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.4);
}
.tutorial-step {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s, transform 0.4s;
  font-family: 'HeadingNow-85Medium', Arial, sans-serif;
  font-size: 2rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 24px;
  min-height: 60px;
  visibility: hidden;
  text-align: center;
  border: none;
  border-radius: 0;
  padding: 0;
  margin-bottom: 0;
  background: transparent;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.tutorial-step.active {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  position: relative;
}
.tutorial-controls {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.tutorial-controls button {
  background: none;
  border: none;
  padding: 0;
  margin: 0 8px;
  cursor: pointer;
  box-shadow: none;
  outline: none;
  border-radius: 0;
}
.tutorial-controls button img {
  display: block;
  width: 87px;
  height: auto;
}
.tutorial-visual img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.4);
}
.final-store-section {
  position: relative;
  width: 100vw;
  min-height: 70vh; /* plus de hauteur pour éviter la coupe de l'image */
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden; /* éviter que l'image remonte sur la newsletter */
  background: #000;
  margin-top: 200px; /* plus d'espace au-dessus */
  padding: 0;
}
.final-store-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.final-store-bg-img {
  width: 100vw;
  height: auto;
  object-fit: cover;
  display: block;
  min-height: 60vh;
}
.final-store-content {
  position: absolute;
  bottom: 48px;
  left: 0;
  width: 100vw;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}
.final-store-title {
  font-family: 'HeadingNow-85Medium', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.5rem !important; /* 24px */
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  margin-bottom: 32px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.7);
  letter-spacing: 0.18em;
}
.final-store-badges {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
}
.final-store-badges .store-badge {
  height: 54px;
  width: auto;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.cta,
.prize-btn,
.download-btn,
.tutorial-controls button {
  letter-spacing: 0.18em;
}
@media (max-width: 900px) {
  .site-header {
    padding: 24px 8px 0 8px;
  }
  
  .header-content {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .logos-row {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px; /* augmenté pour éloigner des bords */
  }
  .logos-right {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .logo img {
    height: 20px;
    margin-left: 8px;
    margin-top: 0; /* Reset margin-top for mobile */
  }
  .brand-right-img {
    height: 42px; /* taille mobile augmentée pour l'animation Lottie */
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -10px;
    margin: 0;
  }

  /* Masquer uniquement les boutons de téléchargement (Google Play / App Store) en mobile */
  .app-stores {
    gap: 8px; /* réduire l’espace */
  }
  .app-stores > a {
    display: none !important; /* cacher seulement les liens directs, pas le switch de langue */
  }

  /* Desktop: placer le switch à droite des boutons, même ligne */
  .app-stores {
    display: flex;
    gap: 16px;
    align-items: center;
  }
  .app-stores .lang-switcher {
    margin-left: 16px;
  }

  .hero-header {
    flex-direction: column;
    align-items: center;
    padding: 24px 8px 0 8px;
  }
  .mascot {
    position: static;
    transform: none;
    margin: 0 auto 16px auto;
  }
  .hero-content {
    margin-top: 180px;
    gap: 32px;
  }
  .hero-content h1 {
    font-size: 1.4rem;
  }
  .cta {
    font-size: 1rem;
    padding: 0.8rem 2rem;
  }
  .hero-overlay {
    bottom: 120px;
  }
  .hero-overlay-title {
    font-size: 1.3rem;
    margin-bottom: 18px;
    max-width: 95vw;
  }
  .download-btn {
    width: 90vw;
    min-width: 0;
    max-width: 100vw;
    font-size: 0.9rem;
  }
  .prizes-grid {
    flex-direction: column;
    gap: 12px;
    max-width: 95vw;
  }
  .prize-card {
    padding: 0 0 12px 0;
  }
  .prize-image {
    height: auto;
    max-height: 180px;
  }
  .prizes-title {
    font-size: 1.2rem;
  }

  /* Superposition plein écran des prize-card */
  .prizes-grid {
    position: relative;
    height: 85vh;
    max-width: 100vw;
    gap: 0;
  }
  .prizes-grid .prize-card {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 88vw;
    height: 100%;
    margin: 0;
    padding: 0;
    border-radius: 18px;
    z-index: 2;
  }
  /* Décalage et largeur par carte pour révéler les bords */
  .prizes-grid .prize-card:nth-child(1) {
    width: 82vw;
    transform: translateX(calc(-50% - 6vw));
    z-index: 1;
  }
  .prizes-grid .prize-card:nth-child(2) {
    width: 86vw;
    transform: translateX(-50%);
    z-index: 2;
  }
  .prizes-grid .prize-card:nth-child(3) {
    width: 90vw;
    transform: translateX(calc(-50% + 6vw));
    z-index: 3;
  }
  .prizes-grid .prize-image {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: contain;
    border-radius: 18px;
    margin: 0;
  }

  /* Empilement vertical des prize-card (override) */
  .prizes-grid {
    position: static;
    height: auto;
    max-width: 95vw;
    gap: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .prizes-grid .prize-card {
    position: static;
    width: 92vw;
    height: auto;
    transform: none;
    margin: 0 auto;
    padding: 0 0 8px 0;
    border-radius: 18px;
    z-index: auto;
    overflow: visible; /* ne pas rogner l'image */
  }
  .prizes-grid .prize-card:nth-child(1),
  .prizes-grid .prize-card:nth-child(2),
  .prizes-grid .prize-card:nth-child(3) {
    width: 92vw;
    transform: none;
    z-index: auto;
  }
  .prizes-grid .prize-image {
    display: block;
    width: 100%;
    height: auto; /* montrer l'image entière */
    max-height: none; /* pas de limite de hauteur */
    object-fit: contain;
    border-radius: 18px;
    margin: 0 0 8px 0;
  }

  /* Afficher la version mobile et cacher la version desktop */
  .tutorial-desktop {
    display: none;
  }
  .tutorial-mobile {
    display: flex;
  }
  
  .tutorial-grid {
    flex-direction: column;
    gap: 24px;
    height: 600px;
    width: 100vw;
  }
  .tutorial-col {
    width: 100vw;
    min-width: 0;
    border-radius: 0;
    padding: 24px 8px;
    min-height: 280px;
  }
  .tutorial-visual img {
    max-width: 90vw;
  }
  .tutorial-step {
    font-size: 1.2rem;
    min-height: 40px;
  }
  
  .tutorial-steps {
    min-height: 40px;
  }

  /* Ajustements tutoriel mobile: largeur et image */
  .tutorial-mobile {
    align-items: center;
  }
  .tutorial-mobile .tutorial-col {
    width: 92vw;
    margin: 0 auto;
    border-radius: 18px;
    padding: 20px 12px;
  }
  .tutorial-mobile .tutorial-visual img {
    max-width: 70vw;
  }

  .tutorial-controls {
    margin-top: 24px;
  }
  .final-store-content {
    bottom: 24px;
  }
  .final-store-title {
    font-size: 1.1rem;
    margin-bottom: 18px;
  }
  .final-store-badges .store-badge {
    height: 38px;
  }
}

.footer-section {
  width: 100vw;
  background: #000;
  color: #fff;
  padding: 32px 0 16px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'HeadingNow-85Medium', Arial, sans-serif;
}
.footer-links {
  display: flex;
  gap: 32px;
  margin-bottom: 16px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 32px; /* marges sur les côtés */
  text-align: center;
}
.footer-link {
  color: #A3FF12;
  text-decoration: none;
  font-size: 1.1rem;
  font-family: 'HeadingNow-85Medium', Arial, sans-serif;
  letter-spacing: 0.18em;
  transition: color 0.2s;
}
.footer-link:hover {
  color: #fff;
  text-decoration: underline;
}
.footer-copyright {
  font-size: 0.95rem;
  color: #888;
  margin-top: 8px;
  text-align: center;
}
.markdown-content {
  max-width: 700px;
  margin: 64px auto 64px auto;
  padding: 32px 32px;
  color: #fff;
  font-family: 'CircularStd', Arial, sans-serif;
  font-size: 1.1rem;
  line-height: 1.7;
  background: rgba(30, 30, 30, 0.92);
  border-radius: 18px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.18);
}
.markdown-content h1, .markdown-content h2, .markdown-content h3 {
  font-family: 'HeadingNow-85Medium', Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-top: 2.5em;
  margin-bottom: 1em;
  color: #fff;
}
.markdown-content a {
  color: #A3FF12;
  text-decoration: underline;
}
.green-link {
  color: #A3FF12;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.2s;
}
.green-link:hover {
  color: #fff;
  text-shadow: 0 0 8px #A3FF12;
}
@media (max-width: 900px) {
  .footer-links {
    gap: 16px;
    padding: 0 16px; /* marges réduites sur mobile */
    text-align: center;
  }
  .footer-link {
    font-size: 0.9rem; /* police plus petite sur mobile */
  }
  .markdown-content {
    font-size: 1rem;
    margin: 32px auto 32px auto;
    padding: 16px 4vw;
    max-width: 98vw;
  }
}

/* === TITLES REFACTOR === */
.main-title {
  font-family: 'HeadingNow-85Medium', Arial, sans-serif;
  font-weight: 700;
  font-size: 2rem;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  letter-spacing: 0.18em;
  margin-bottom: 24px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  word-break: break-word;
  white-space: normal;
}
@media (max-width: 600px) {
  .main-title {
    max-width: 90vw;
    font-size: 1.2rem;
  }
  
  .secondary-title {
    margin-left: 16px;
    margin-right: 16px;
  }
}
.secondary-title {
  font-family: 'HeadingNow-85Medium', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  letter-spacing: 0.18em;
  margin-bottom: 12px;
}
.subtitle {
  font-family: 'CircularStd', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #d6d6d6;
  text-align: center;
  margin-bottom: 32px;
}

.tutorial-step-label {
  font-family: 'HeadingNow-83Book', Arial, sans-serif;
  display: block;
  font-size: 1.1em;
  margin-bottom: 0.2em;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.tutorial-step-title {
  display: block;
  font-size: 1em;
  font-family: 'HeadingNow-85Medium', Arial, sans-serif;
  margin-bottom: 0.2em;
}

.tutorial-step-label,
.tutorial-step-title {
  display: block;
  width: 100%;
  text-align: center;
}

.tutorial-indicators {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
}
.tutorial-dot {
  display: inline-block;
  width: 28px;
  height: 8px;
  border-radius: 6px;
  background: #555;
  opacity: 0.9;
}
.tutorial-dot.active {
  background: #B657FF; /* violet */
  opacity: 1;
}

@media (max-width: 900px) {
  .tutorial-indicators {
    gap: 8px;
    margin-top: 10px;
  }
  .tutorial-dot {
    width: 22px;
    height: 7px;
  }
}

/* Support Page Styles */
.support-section {
  min-height: 100vh;
  background: #000;
  color: #fff;
  padding: 120px 20px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.support-section .container {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.support-title {
  font-size: 48px;
  font-weight: normal;
  text-align: center;
  margin-bottom: 60px;
  color: #fff;
}

.legal-section,
.support-info {
  margin-bottom: 60px;
}

.legal-section h2,
.support-info h2 {
  font-size: 32px;
  font-weight: normal;
  margin-bottom: 30px;
  color: #fff;
}

.legal-info {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 30px;
  text-align: left;
}

.legal-item {
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.6;
}

.legal-item:last-child {
  margin-bottom: 0;
}

.legal-item a {
  color: #00ff88;
  text-decoration: none;
}

.legal-item a:hover {
  text-decoration: underline;
}

.discord-section {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 30px;
  text-align: left;
}

.discord-section h3 {
  font-size: 24px;
  font-weight: normal;
  margin-bottom: 20px;
  color: #fff;
}

.discord-section p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #ccc;
}

.discord-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.discord-features li {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 12px;
  padding-left: 20px;
  position: relative;
  color: #ccc;
}

.discord-features li:before {
  content: "•";
  color: #00ff88;
  position: absolute;
  left: 0;
  font-size: 18px;
}

.discord-button {
  display: inline-block;
  background: #00ff88;
  color: #000;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
}

.discord-button:hover {
  background: #00cc6a;
  transform: translateY(-2px);
}

.other-support {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 12px;
  text-align: left;
}

.other-support h3 {
  font-size: 24px;
  font-weight: normal;
  margin-bottom: 20px;
  color: #fff;
}

.other-support p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #ccc;
}

.other-support p:last-child {
  margin-bottom: 0;
}

.other-support strong {
  color: #00ff88;
}

.other-support em {
  color: #999;
}

@media (max-width: 900px) {
  .support-title {
    font-size: 36px;
  }
  
  .legal-section h2,
  .support-info h2 {
    font-size: 28px;
  }
  
  .discord-section h3,
  .other-support h3 {
    font-size: 22px;
  }
}

@media (max-width: 600px) {
  .support-section {
    padding: 100px 15px 30px;
  }
  
  .support-title {
    font-size: 28px;
    margin-bottom: 40px;
  }
  
  .legal-section,
  .support-info {
    margin-bottom: 40px;
  }
  
  .legal-section h2,
  .support-info h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  
  .legal-info,
  .discord-section,
  .other-support {
    padding: 20px;
  }
  
  .discord-section h3,
  .other-support h3 {
    font-size: 20px;
  }
  
  .discord-button {
    padding: 12px 24px;
    font-size: 14px;
  }
}

@media (max-width: 400px) {
  .support-title {
    font-size: 24px;
  }
  
  .legal-section h2,
  .support-info h2 {
    font-size: 20px;
  }
  
  .discord-section h3,
  .other-support h3 {
    font-size: 18px;
  }
}

/* === BOOSTER BUTTON === */
@keyframes buttonGlow {
  0%, 100% {
    box-shadow: 0 4px 16px rgba(123, 153, 14, 0), 0 0 15px rgba(123, 153, 14, 0);
    text-shadow: 0 0 10px rgba(123, 153, 14, 0);
    color: #7B990E;
  }
  50% {
    box-shadow: 0 4px 16px rgba(123, 153, 14, 0.3), 0 0 20px rgba(200, 255, 0, 0.4);
    text-shadow: 0 0 15px rgba(200, 255, 0, 0.8);
    color: #C8FF00;
  }
}

.booster-button {
  display: flex;
  width: 326px;
  height: 58px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 999px;
  border: 1px solid rgba(123, 153, 14, 0.80);
  background: transparent;
  color: #C8FF00;
  font-family: 'HeadingNow-85Medium', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.18em;
  transition: all 0.3s ease;
  cursor: pointer;
  margin-top: 16px;
  padding: 0 24px;
  animation: buttonGlow 2s ease-in-out infinite;
}

.booster-button:hover {
  background: rgba(200, 255, 0, 0.1);
  transform: translateY(-2px);
  animation-play-state: paused;
  box-shadow: 0 6px 24px rgba(123, 153, 14, 0.8), 0 0 40px rgba(200, 255, 0, 1);
  text-shadow: 0 0 20px rgba(200, 255, 0, 1);
}

@media (max-width: 900px) {
  .booster-button {
    width: 280px;
    height: 52px;
    font-size: 0.9rem;
    text-align: center;
  }
}

/* === NEWSLETTER === */
.newsletter-section {
  width: 100vw;
  padding: 10px 0 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

@media (min-width: 769px) {
  .newsletter-section {
    scroll-margin-top: 80px;
  }
}
.newsletter-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 20px;
  width: 100%;
  max-width: 1200px; /* aligné sur la largeur du tutoriel */
  padding: 16px 18px;
  margin: 0 32px; /* marges sur les côtés */
  border: 2px solid rgba(255,255,255,0.14);
  border-radius: 32px;
  background: #000;
  box-shadow:
    inset 0 0 0 2px rgba(255,255,255,0.06),
    0 0 0 2px rgba(255,255,255,0.06);
}
.newsletter-visual {
  min-height: 420px;
  border-radius: 24px;
  background: 
    radial-gradient(1200px 420px at 20% 20%, rgba(255,255,255,0.06), rgba(0,0,0,0) 60%),
    linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.1)),
    url('/assets/BAR-CENTRALE.jpg') center/cover no-repeat;
  position: relative;
  overflow: hidden;
}

.newsletter-visual::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 200px;
  z-index: 0;
}

.newsletter-visual::after {
  display: none;
}

.newsletter-visual {
  position: relative;
}

.newsletter-visual:before {
  z-index: 1;
}

.newsletter-visual:after {
  z-index: 2;
}

.newsletter-visual-gold1 {
  position: absolute;
  top: 50%;
  left: calc(50% - 150px);
  transform: translateY(-50%);
  width: 150px;
  height: 210px;
  background: url('/assets/card-gold-1.jpg') center/contain no-repeat;
  background-size: contain;
  transition: all 0.3s ease;
  z-index: 10;
  border-radius: 12px;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,0.5));
}

.newsletter-visual-gold2 {
  position: absolute;
  top: 50%;
  left: calc(50% - 60px);
  transform: translateY(-50%) scale(0.9);
  width: 150px;
  height: 210px;
  background: url('/assets/card-gold-2.jpg') center/contain no-repeat;
  background-size: contain;
  transition: all 0.3s ease;
  z-index: 9;
  border-radius: 12px;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,0.5));
}

.newsletter-visual-gold3 {
  position: absolute;
  top: 50%;
  left: calc(50% + 20px);
  transform: translateY(-50%) scale(0.8);
  width: 150px;
  height: 210px;
  background: url('/assets/card-gold-2.jpg') center/contain no-repeat;
  background-size: contain;
  transition: all 0.3s ease;
  z-index: 8;
  border-radius: 12px;
  filter: blur(4px) brightness(0.5) drop-shadow(0 6px 18px rgba(0,0,0,0.5));
}

.newsletter-visual-gold4 {
  position: absolute;
  top: 50%;
  left: calc(50% + 80px);
  transform: translateY(-50%) scale(0.7);
  width: 150px;
  height: 210px;
  background: url('/assets/card-gold-2.jpg') center/contain no-repeat;
  background-size: contain;
  transition: all 0.3s ease;
  z-index: 7;
  border-radius: 12px;
  filter: blur(6px) brightness(0.3) drop-shadow(0 6px 18px rgba(0,0,0,0.5));
}

.newsletter-visual-gold5 {
  position: absolute;
  top: 50%;
  left: calc(50% + 120px);
  transform: translateY(-50%) scale(0.6);
  width: 150px;
  height: 210px;
  background: url('/assets/card-gold-2.jpg') center/contain no-repeat;
  background-size: contain;
  transition: all 0.3s ease;
  z-index: 6;
  border-radius: 12px;
  filter: blur(8px) brightness(0.2) drop-shadow(0 6px 18px rgba(0,0,0,0.5));
}

.newsletter-visual-gold1:hover,
.newsletter-visual-gold2:hover {
  transform: translateY(-50%) scale(1.1) !important;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.6)) !important;
  z-index: 100 !important;
}

.newsletter-visual-logo {
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  width: 250px;
  height: 90px;
  background: url('/assets/logo.svg') center/contain no-repeat;
  opacity: 1;
  filter: drop-shadow(0 4px 14px rgba(0,0,0,0.6));
  z-index: 6;
}

@keyframes floatCard {
  0%, 100% {
    transform: translateY(0px) rotate(-2deg);
  }
  50% {
    transform: translateY(-12px) rotate(1deg);
  }
}

@keyframes floatKey {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(3deg);
  }
}

@keyframes floatCard1 {
  0%, 100% {
    transform: translateY(0px) rotate(-1deg);
  }
  50% {
    transform: translateY(-8px) rotate(2deg);
  }
}

@keyframes floatCard2 {
  0%, 100% {
    transform: translateY(0px) rotate(1deg);
  }
  50% {
    transform: translateY(-12px) rotate(-2deg);
  }
}

@keyframes floatCard3 {
  0%, 100% {
    transform: translateY(0px) rotate(-2deg);
  }
  50% {
    transform: translateY(-9px) rotate(1deg);
  }
}

@keyframes floatLogo {
  0%, 100% {
    transform: translateX(-50%) translateY(0px);
  }
  50% {
    transform: translateX(-50%) translateY(-6px);
  }
}
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.newsletter-label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #fff;
  font-family: 'HeadingNow-85Medium', Arial, sans-serif;
}
.newsletter-input {
  appearance: none;
  border: 1px solid rgba(255,255,255,0.1);
  background: #121212;
  color: #fff;
  border-radius: 12px;
  height: 48px;
  padding: 0 16px;
  outline: none;
}
.newsletter-input:focus {
  border-color: #B657FF;
  box-shadow: 0 0 0 3px rgba(182,87,255,0.25);
}
.newsletter-actions {
  margin-top: 8px;
  display: flex;
  justify-content: flex-end;
}
.newsletter-submit {
  padding: 0.8rem 2.1rem;
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  border-radius: 48px;
  text-transform: uppercase;
  font-family: 'HeadingNow-85Medium', Arial, sans-serif;
  letter-spacing: 0.14em;
}

@media (max-width: 1200px) {
  .newsletter-grid {
    max-width: 100vw;
    margin: 0 16px; /* marges réduites sur écrans moyens */
  }
}

@media (max-width: 900px) {
  .newsletter-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 92vw;
    margin: 0 16px; /* marges sur mobile */
    padding: 14px;
    border-radius: 22px;
    border-width: 2px; /* renforce aussi en mobile */
  }
  .newsletter-visual {
    min-height: 160px;
    background-size: cover;
    border-radius: 16px;
  }
  .newsletter-actions { justify-content: center; }
  
  /* Mobile layout: logo on left, cards on right */
  .newsletter-visual-logo {
    top: 50%;
    left: 15%;
    transform: translateY(-50%);
    width: 120px;
    height: 36px;
  }
  
  .newsletter-visual-gold1 {
    top: 50%;
    left: calc(50% + 20px);
    transform: translateY(-50%);
    width: 80px;
    height: 112px;
    z-index: 10;
  }
  
  .newsletter-visual-gold2 {
    top: 50%;
    left: calc(50% + 45px);
    transform: translateY(-50%) scale(0.9);
    width: 80px;
    height: 112px;
    z-index: 9;
  }
  
  .newsletter-visual-gold3 {
    top: 50%;
    left: calc(50% + 65px);
    transform: translateY(-50%) scale(0.8);
    width: 80px;
    height: 112px;
    z-index: 8;
  }
  
  .newsletter-visual-gold4 {
    top: 50%;
    left: calc(50% + 80px);
    transform: translateY(-50%) scale(0.7);
    width: 80px;
    height: 112px;
    z-index: 7;
  }
  
  .newsletter-visual-gold5 {
    top: 50%;
    left: calc(50% + 90px);
    transform: translateY(-50%) scale(0.6);
    width: 80px;
    height: 112px;
    z-index: 6;
  }
}

/* === BOOSTER SECTIONS STYLES === */
:root{
  --bg-from:#0a0a12; --bg-mid:#0e0e1a; --bg-to:#0b0b13;
  --text:#ffffff; --muted:rgba(255,255,255,.7); --muted2:rgba(255,255,255,.6);
  --line:rgba(255,255,255,.1); --ring:rgba(255,255,255,.1);
  --emerald:#34d399; --sky:#38bdf8; --violet:#8b5cf6; --amber:#f59e0b; --rose:#f43f5e;
}

.daily-booster-section, .premium-boosters-section {
  width: 100vw;
  padding: 64px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.daily-booster-spacing {
  margin-top: 80px;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}

.grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 800px) {
  .grid.split {
    grid-template-columns: 1.1fr 1fr;
  }
  .grid.cols-3 {
    grid-template-columns: repeat(3, minmax(0,1fr));
  }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.05);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 14px;
  color: rgba(255,255,255,.8);
}

.card {
  position: relative;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.05);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,.45);
  backdrop-filter: blur(6px);
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  box-shadow: inset 0 0 0 1px var(--ring);
  pointer-events: none;
}

.booster-wrap {
  position: relative;
  width: 160px;
  height: 224px;
  margin: 0 auto;
  animation: float 5s ease-in-out infinite;
}

.booster-glow {
  position: absolute;
  inset: -4px;
  border-radius: 12px;
  filter: blur(20px);
  opacity: .6;
}

.booster {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  padding: 16px;
  overflow: hidden;
}

.daily .booster-glow {
  background: linear-gradient(45deg, var(--sky), var(--violet), #f0abfc);
}

.daily .booster {
  box-shadow: 0 10px 40px rgba(0,0,0,.45), 0 0 0 2px rgba(56,189,248,.5) inset;
}

.premium .booster-glow {
  background: linear-gradient(45deg, var(--amber), var(--rose), var(--violet));
}

.premium .booster {
  box-shadow: 0 10px 40px rgba(0,0,0,.45);
}

.sheen {
  position: relative;
  overflow: hidden;
}

.sheen::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.15) 50%, transparent 70%);
  transform: translateX(-150%) rotate(20deg);
  animation: sheen 3.5s linear infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(-3deg);
  }
  50% {
    transform: translateY(-6px) rotate(-4deg);
  }
}

@keyframes sheen {
  0% {
    transform: translateX(-150%) rotate(20deg);
  }
  100% {
    transform: translateX(150%) rotate(20deg);
  }
}

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

.row.wrap {
  flex-wrap: wrap;
}

.chip {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.05);
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 14px;
  color: rgba(255,255,255,.8);
}

.rarity {
  display: flex;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  height: 8px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  display: inline-block;
}

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

@media (min-width:800px) {
  .legend {
    grid-template-columns: repeat(4, minmax(0,1fr));
  }
}

.divider {
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.1), transparent);
  margin: 8px auto;
}

.mt-4 {
  margin-top: 16px;
}
.mt-6 {
  margin-top: 24px;
}
.mt-8 {
  margin-top: 32px;
}
.mb-8 {
  margin-bottom: 32px;
}
.center {
  text-align: center;
}
.right {
  text-align: right;
}
.w-100 {
  width: 100%;
}

.muted {
  color: var(--muted);
}
.muted-2 {
  color: var(--muted2);
}

@media (max-width: 900px) {
  .daily-booster-spacing {
    margin-top: 40px;
  }
  
  .daily-booster-section .container {
    padding: 0 16px;
    max-width: calc(100vw - 32px);
    overflow-x: hidden;
  }
  
  .daily-booster-section {
    width: 100%;
    overflow-x: hidden;
  }
  
  .daily-booster-section .card {
    overflow: hidden;
  }
  
  .daily-booster-section .grid.split {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .premium-boosters-section .grid.cols-3 {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .booster-wrap {
    width: 120px;
    height: 168px;
  }
}

@media (max-width: 600px) {
  .daily-booster-section .container {
    padding: 0 16px;
    max-width: calc(100vw - 32px);
  }
  
  .daily-booster-section {
    width: 100%;
    overflow-x: hidden;
  }
}

/* === COLLECTIONS SECTION === */
.collections-section {
  width: 100vw;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  margin-bottom: 48px;
  margin-left: auto;
  margin-right: auto;
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
  justify-content: center;
}

.collection-category {
  position: relative;
  border-radius: 16px;
  padding: 24px;
  background: rgba(0,0,0,0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 280px;
  min-width: 350px;
  display: flex;
  flex-direction: column;
}

.collection-category::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: var(--gradient);
  border-radius: 20px;
  filter: blur(15px);
  opacity: 0.3;
  z-index: -1;
}

.collection-category:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.collection-header {
  text-align: center;
  margin-bottom: 20px;
}

.collection-header h3 {
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.rarity-note {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
  font-style: italic;
}

.collection-cards-stack {
  position: relative;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.collection-card {
  position: absolute;
  background: transparent;
  border-radius: 12px;
  padding: 4px;
  transition: all 0.3s ease;
  width: 120px;
}

.collection-card:nth-child(1) {
  left: 0;
  transform: translateX(0);
}

.collection-card:nth-child(2) {
  left: 80px;
  transform: translateX(0);
}

.collection-card:nth-child(3) {
  left: 140px;
  transform: translateX(0) scale(0.9);
}

.collection-card:nth-child(4) {
  left: 180px;
  transform: translateX(0) scale(0.8);
}

.collection-card:nth-child(5) {
  left: 210px;
  transform: translateX(0) scale(0.7);
}

.blurred-card {
  filter: blur(4px) brightness(0.3);
  opacity: 0.6;
}

.collection-card:hover:not(.blurred-card) {
  transform: translateX(0) scale(1.1) !important;
  filter: none !important;
  opacity: 1 !important;
  z-index: 100 !important;
}

.mystery-collection {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
  flex: 1;
}

.mystery-symbol {
  font-size: 4rem;
  font-weight: bold;
  color: rgba(255,255,255,0.9);
  text-shadow: 
    0 0 10px rgba(255,255,255,0.8),
    0 0 20px rgba(255,255,255,0.6),
    0 0 30px rgba(255,255,255,0.4),
    0 2px 8px rgba(0,0,0,0.8);
  filter: blur(0.5px);
  opacity: 0.9;
  animation: float-and-glow 3s ease-in-out infinite;
}

@keyframes float-and-glow {
  0%, 100% {
    transform: translateY(0px);
    text-shadow: 
      0 0 10px rgba(255,255,255,0.8),
      0 0 20px rgba(255,255,255,0.6),
      0 0 30px rgba(255,255,255,0.4),
      0 2px 8px rgba(0,0,0,0.8);
  }
  50% {
    transform: translateY(-10px);
    text-shadow: 
      0 0 15px rgba(255,255,255,1),
      0 0 25px rgba(255,255,255,0.8),
      0 0 35px rgba(255,255,255,0.6),
      0 0 45px rgba(255,255,255,0.4),
      0 2px 8px rgba(0,0,0,0.8);
  }
}

.card-image {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 0;
  background: transparent;
}

.card-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.card-info h4 {
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  margin: 0 0 4px 0;
  text-align: center;
}

.card-rarity {
  display: block;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 2px 8px;
  border-radius: 12px;
  text-transform: uppercase;
}

.rarity-commune, .rarity-common {
  background: rgba(52, 211, 153, 0.2);
  color: #34d399;
  border: 1px solid #34d399;
}

.rarity-rare {
  background: rgba(56, 189, 248, 0.2);
  color: #38bdf8;
  border: 1px solid #38bdf8;
}

.rarity-épique, .rarity-epic {
  background: rgba(139, 92, 246, 0.2);
  color: #8b5cf6;
  border: 1px solid #8b5cf6;
}

.rarity-légendaire, .rarity-legendary {
  background: rgba(245, 158, 11, 0.2);
  color: #f59e0b;
  border: 1px solid #f59e0b;
}

@media (max-width: 900px) {
  .collections-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .collection-category:has(.mystery-collection) {
    display: none;
  }
}

@media (max-width: 600px) {
  .collections-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .collections-section {
    padding: 60px 0;
  }
  
  .collection-category {
    padding: 20px;
  }
  
  .collection-header h3 {
    font-size: 1.25rem;
  }
  
  .collection-cards-stack {
    height: 150px;
    justify-content: center;
  }
  
  .collection-card {
    width: 120px;
  }
  
  .collection-card:nth-child(1) {
    left: calc(50% - 110px);
  }
  
  .collection-card:nth-child(2) {
    left: calc(50% - 60px);
  }
  
  .collection-card:nth-child(3) {
    left: calc(50% - 10px);
  }
  
  .collection-card:nth-child(4) {
    left: calc(50% + 20px);
  }
  
  .collection-card:nth-child(5) {
    left: calc(50% + 40px);
  }
}

