/* ===========================
   RESET ET BASE - STYLE NETFLIX CARRÉ
   =========================== */

/* TEST LUCKIEST GUY - VÉRIFICATION */
@import url('https://fonts.googleapis.com/css2?family=Luckiest+Guy&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border-radius: 0px !important;
  -webkit-border-radius: 0px !important;
  -moz-border-radius: 0px !important;
}

/* Assurance supplémentaire pour tous les éléments */
*::before, *::after {
  border-radius: 0px !important;
  -webkit-border-radius: 0px !important;
  -moz-border-radius: 0px !important;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Inter', 'Poppins', 'Roboto', sans-serif;
  
  /* ========================================
     📁 BACKGROUND PERSONNALISÉ
     ========================================
     Pour changer l'image de fond, remplacez le nom du fichier ci-dessous :
     background-image: url("assets/backgrounds/bgla.png");
     
     Placez votre image dans le dossier : assets/backgrounds/
     Formats supportés : .jpg, .png, .gif
  */
  background: 
    linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("assets/backgrounds/background.png"),
    radial-gradient(circle, #1a1a1a 0%, #000000 100%);
  
  background-attachment: fixed;
  color: #ffffff;
  overflow-x: hidden;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  max-width: 100%;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ===========================
   NAVIGATION BLACKVERSE. AUTHENTIQUE
   =========================== */
.main-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(13, 13, 13, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: none;
  padding: 0.75rem 0;
  box-shadow: none;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo h1 {
      font-family: 'Oswald', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #E50914;
  text-shadow: none;
  letter-spacing: 2px;
  transform: none;
  text-transform: uppercase;
  cursor: pointer;
  margin: 0;
  padding: 0;
}

/* Styles span supprimés - plus de sous-titre sous BLACKVERSE. */

.nav-menu {
  display: flex;
  gap: 0.5rem;
}

.nav-item {
  background: linear-gradient(145deg, #4a3434, #3e2c2c);
  border: 2px solid #4a3434;
  border-radius: 0;
  padding: 0.8rem 1.8rem;
  color: #ecf0f1;
  font-family: 'Inter', 'Poppins', 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  margin: 0 2px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.nav-item:hover {
  background: linear-gradient(145deg, #444, #333);
  border-color: #666;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.nav-item.active {
  background: transparent;
  border: none;
  border-bottom: 3px solid #e50914;
  color: #ffffff;
  font-weight: 800;
  box-shadow: none;
  transform: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.v-bucks {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(145deg, #2a2a2a, #333);
  padding: 0.6rem 1.2rem;
  border-radius: 25px;
  border: 2px solid #444;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
}

.v-bucks img {
  width: 22px;
  height: 22px;
  filter: drop-shadow(0 0 4px rgba(241, 196, 15, 0.6));
}

.v-bucks span {
  color: #ffffff;
  font-family: 'Inter', 'Poppins', 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

/* MENU HAMBURGER - PARFAITEMENT FONCTIONNEL SUR MOBILE UNIQUEMENT */
.menu-toggle {
  /* ABSOLUMENT INVISIBLE SUR DESKTOP */
  display: none !important; 
  visibility: hidden !important; 
  opacity: 0 !important; 
  position: absolute !important; 
  left: -9999px !important; 
  width: 0 !important; 
  height: 0 !important; 
  overflow: hidden !important; 
  pointer-events: none !important; 
  
  /* Styles pour mobile (appliqués seulement quand visible) */
  background: rgba(0, 0, 0, 0.8);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  padding: 0.8rem;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.4rem;
  font-weight: bold;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  z-index: 1001;
}

/* RÈGLES ULTRA-RENFORCÉES POUR DESKTOP */
@media (min-width: 769px) {
  .menu-toggle {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
    z-index: -1 !important;
  }
}

/* Sécurité supplémentaire pour écrans larges */
@media (min-width: 769px) and (max-width: 1920px) {
  .menu-toggle {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }
}

/* Sécurité supplémentaire pour très grands écrans */
@media (min-width: 1200px) {
  .menu-toggle {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }
}

/* ACTIVATION TOTALE SUR MOBILE UNIQUEMENT */
@media (max-width: 768px) {
  .menu-toggle {
    /* RÉACTIVATION COMPLÈTE SUR MOBILE */
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: all !important;
    position: relative !important;
    left: auto !important;
    top: auto !important;
    width: auto !important;
    height: auto !important;
    overflow: visible !important;
    z-index: 1001 !important;
    
    /* Styles optimisés pour mobile */
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: #ffffff;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.4rem;
    font-weight: bold;
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
    min-width: 50px;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .menu-toggle:hover {
    background: rgba(229, 9, 20, 0.8);
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(229, 9, 20, 0.4);
  }
  
  .menu-toggle:active {
    background: rgba(229, 9, 20, 1);
    transform: scale(0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
  }
}

/* MENU MOBILE OPTIMISÉ */
@media (max-width: 768px) {
  .nav-container {
    padding: 0 1.5rem;
    position: relative;
  }
  
  .nav-menu {
    /* Menu caché par défaut sur mobile */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 1000;
    
    /* Animation de fermeture */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  /* Menu ouvert */
  .nav-menu.mobile-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  /* Boutons du menu mobile */
  .nav-menu .nav-item {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 1.2rem 2.5rem;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1002;
    min-width: 250px;
    text-align: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  }
  
  .nav-menu .nav-item:hover,
  .nav-menu .nav-item:focus {
    background: rgba(229, 9, 20, 0.8);
    border-color: rgba(255, 255, 255, 0.6);
    color: #ffffff;
    transform: scale(1.05);
    box-shadow: 0 6px 30px rgba(229, 9, 20, 0.5);
  }
  
  .nav-menu .nav-item:active {
    background: rgba(229, 9, 20, 1);
    transform: scale(0.98);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.8);
  }
  
  .nav-menu .nav-item.active {
    background: rgba(229, 9, 20, 0.9);
    border-color: rgba(255, 255, 255, 0.8);
    color: #ffffff;
    font-weight: 800;
    box-shadow: 0 6px 25px rgba(229, 9, 20, 0.6);
  }
}

/* ===========================
   CONTENU PRINCIPAL
   =========================== */
.main-content {
  flex: 1;
  position: relative;
}

.content-section {
  display: none;
  min-height: calc(100vh - 200px);
  padding: 2rem 0;
}

.content-section.active {
  display: block;
  animation: fadeInUp 0.6s ease;
}

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

/* ===========================
   SECTIONS NON-BOUTIQUE
   =========================== */
#play-section {
  background: #0d0d0d;
  min-height: 100vh;
  padding: 0;
}

/* ===========================
   PAGE ACCUEIL NETFLIX x COMICS
   =========================== */
.home-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Bannière Héros */
.hero-banner {
  background: #000000;
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

/* Vidéo de fond pour la page d'accueil */
.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.hero-video-bg video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right, 
    rgba(0, 0, 0, 0.8) 0%, 
    rgba(0, 0, 0, 0.6) 40%, 
    rgba(0, 0, 0, 0.3) 70%, 
    rgba(0, 0, 0, 0.1) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding-left: 3rem;
  color: white;
}

.hero-title {
  font-family: 'Oswald', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  line-height: 1.0;
  text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.9);
  text-align: left;
}

.hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  color: #cccccc;
  margin-bottom: 2.5rem;
  line-height: 1.4;
  text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.9);
  text-align: left;
  max-width: 500px;
}

.hero-cta {
  background: #e50914;
  color: white;
  border: none;
  padding: 1rem 2.5rem;
  font-family: 'Inter', 'Poppins', 'Roboto', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 1px;
}

.hero-cta:hover {
  background: #b8070e;
  transform: translateY(-2px);
}

/* Section Actualités */
.news-section {
  margin-bottom: 4rem;
  padding-top: 2rem;
}

.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.news-card {
  background: #121212;
  border: 2px solid #333333;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.news-card:hover {
  border-color: #e50914;
  transform: translateY(-5px) scale(1.02);
  z-index: 10;
}

.news-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(45deg, #333, #555), 
              url('assets/home/news-placeholder.jpg');
  background-size: cover;
  background-position: center;
  transition: all 0.3s ease;
  overflow: hidden;
}

/* Effet spécial pour les images carrées */
.news-card:hover .news-image {
  height: 400px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* Animation pour préserver la fluidité */
.news-card:hover .news-content {
  transform: translateY(0);
  transition: transform 0.3s ease;
}

.news-content {
  padding: 1.5rem;
}

.news-title {
  font-family: 'Inter', 'Poppins', 'Roboto', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.news-text {
  font-family: 'Inter', 'Poppins', 'Roboto', sans-serif;
  color: #cccccc;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.news-btn {
  background: transparent;
  color: #e50914;
  border: 2px solid #e50914;
  padding: 0.7rem 1.5rem;
  font-family: 'Inter', 'Poppins', 'Roboto', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.news-btn:hover {
  background: #e50914;
  color: white;
}

/* Carte DERNIER CLIP plus large (rectangle) */
.news-card-wide {
  grid-column: span 2;
  min-height: 400px;
}

.news-card-wide .news-image {
  height: 260px;
  transition: all 0.3s ease;
  overflow: hidden;
}

.news-card-wide .news-content {
  padding: 2.5rem;
  transition: transform 0.3s ease;
}

.news-card-wide .news-title {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.news-card-wide .news-text {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

/* Effet hover fluide comme les autres cartes */
.news-card-wide:hover .news-image {
  height: 400px;
  background-size: cover !important;
  background-position: center !important;
}

.news-card-wide:hover .news-content {
  transform: translateY(0);
}

/* Responsive pour la carte large */
@media (max-width: 768px) {
  .news-card-wide {
    grid-column: span 1;
    min-height: auto;
  }
  
  .news-card-wide .news-image {
    height: 200px;
  }
  
  .news-card-wide .news-content {
    padding: 2rem;
  }
  
  .news-card-wide .news-title {
    font-size: 1.5rem;
  }
  
  .news-card-wide .news-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
  
  /* Effet hover adapté pour mobile */
  .news-card-wide:hover .news-image {
    height: 280px;
    background-size: cover !important;
  }
}

/* Section À Venir */
.upcoming-section {
  margin-bottom: 4rem;
}

.upcoming-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.upcoming-item {
  background: #121212;
  border-left: 4px solid #e50914;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.upcoming-item:hover {
  background: #1a1a1a;
  transform: translateX(10px);
}

.upcoming-title {
  font-family: 'Inter', 'Poppins', 'Roboto', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.upcoming-date {
  font-family: 'Inter', 'Poppins', 'Roboto', sans-serif;
  color: #e50914;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.upcoming-desc {
  font-family: 'Inter', 'Poppins', 'Roboto', sans-serif;
  color: #cccccc;
  font-size: 0.95rem;
  line-height: 1.4;
}

/* ===========================
   PASSE DE COMBAT - STYLE AUTHENTIQUE
   =========================== */
#battlepass-section {
  background: #0d0d0d;
  min-height: calc(100vh - 200px);
  padding: 4rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===========================
   PASSE DE COMBAT - MODE VERROUILLÉ
   =========================== */
.battlepass-locked-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.battlepass-locked-card {
  background: linear-gradient(145deg, rgba(13, 13, 13, 0.95), rgba(25, 25, 25, 0.9));
  border: 2px solid #8B0000;
  padding: 4rem 3rem;
  text-align: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.8);
}

.battlepass-icon {
  font-size: 4rem;
  margin-bottom: 2rem;
  filter: grayscale(1) contrast(1.2);
}

.battlepass-locked-title {
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.battlepass-locked-subtitle {
  font-family: 'Inter', 'Poppins', 'Roboto', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #E50914;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.battlepass-locked-description {
  font-family: 'Inter', 'Poppins', 'Roboto', sans-serif;
  font-size: 1.1rem;
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.battlepass-coming-soon {
  padding: 1.5rem 2rem;
  background: rgba(139, 0, 0, 0.2);
  border: 1px solid #8B0000;
  margin-top: 2rem;
}

.coming-soon-text {
  font-family: 'Inter', 'Poppins', 'Roboto', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.battlepass-layout {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 300px;
  grid-template-rows: auto 1fr auto;
  gap: 2rem;
  grid-template-areas: 
    "progress sidebar"
    "grid sidebar"
    "purchase sidebar";
}

/* Header avec progression */
.battlepass-progress {
  grid-area: progress;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(145deg, rgba(46, 26, 26, 0.8), rgba(62, 44, 44, 0.8));
  border: 2px solid #8b0000;
  border-radius: 10px;
  padding: 1.5rem 2rem;
}

.tier-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.tier-label {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
}

.tier-number {
  font-family: 'Luckiest Guy', cursive;
  font-size: 2.5rem;
  color: #dc143c;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.tier-xp {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 0, 0, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 20px;
}

.xp-icon {
  font-size: 1.2rem;
}

.xp-count {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  color: #ffffff;
}

.season-title h2 {
  font-family: 'Luckiest Guy', cursive;
  font-size: 2.5rem;
  color: #ffffff;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
  margin: 0 0 0.5rem 0;
  letter-spacing: 2px;
}

.season-title p {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9rem;
  color: #cccccc;
  margin: 0;
  text-transform: uppercase;
}

.season-title p span {
  color: #dc143c;
  font-weight: 700;
}

/* Grille des paliers */
.battlepass-grid {
  grid-area: grid;
  background: linear-gradient(145deg, rgba(46, 26, 26, 0.8), rgba(62, 44, 44, 0.8));
  border: 2px solid #8b0000;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.tier-headers {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.tier-header {
  background: linear-gradient(145deg, #4a3434, #3e2c2c);
  border: 2px solid #666;
  color: #ffffff;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.5rem;
  text-align: center;
  border-radius: 5px;
}

.tier-header.tier-current {
  background: linear-gradient(145deg, #8b0000, #660000);
  border-color: #dc143c;
  color: #ffffff;
  box-shadow: 0 0 10px rgba(220, 20, 60, 0.3);
}

.battlepass-track {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
}

.track-item {
  position: relative;
}

.reward-card {
  width: 100%;
  height: 100px;
  background: linear-gradient(145deg, #2c2c2c, #1a1a1a);
  border: 3px solid #555;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.reward-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reward-card.available {
  border-color: #28a745;
  box-shadow: 0 0 15px rgba(40, 167, 69, 0.3);
}

.reward-card.premium {
  border-color: #f39c12;
}

.reward-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.reward-overlay.locked {
  background: rgba(0, 0, 0, 0.8);
}

.reward-check {
  position: absolute;
  top: 5px;
  right: 5px;
  background: #28a745;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tier-current .reward-card {
  transform: scale(1.05);
  border-color: #dc143c;
  box-shadow: 0 0 20px rgba(220, 20, 60, 0.4);
}

/* Bouton d'achat */
.battlepass-purchase {
  grid-area: purchase;
  background: linear-gradient(145deg, rgba(46, 26, 26, 0.8), rgba(62, 44, 44, 0.8));
  border: 2px solid #8b0000;
  border-radius: 10px;
  padding: 1.5rem 2rem;
  text-align: center;
}

.purchase-btn {
  background: linear-gradient(145deg, #f39c12, #e67e22);
  border: 2px solid #f39c12;
  color: #2c3e50;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 1rem 2rem;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
}

.purchase-btn:hover {
  background: linear-gradient(145deg, #E50914, #b8070e);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(229, 9, 20, 0.4);
}

.purchase-description {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9rem;
  color: #cccccc;
  margin: 0;
  line-height: 1.5;
}

/* Sidebar droite */
.battlepass-sidebar {
  grid-area: sidebar;
}

.bonus-card {
  background: linear-gradient(145deg, rgba(46, 26, 26, 0.8), rgba(62, 44, 44, 0.8));
  border: 2px solid #8b0000;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.bonus-card h3 {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9rem;
  color: #cccccc;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.bonus-card h4 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.2rem;
  color: #ffffff;
  font-weight: 700;
  margin: 0 0 1rem 0;
  text-transform: uppercase;
}

.bonus-card p {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9rem;
  color: #cccccc;
  line-height: 1.5;
  margin: 0;
}

/* Responsive */
@media (max-width: 1200px) {
  .battlepass-layout {
    grid-template-columns: 1fr;
    grid-template-areas: 
      "progress"
      "grid"
      "purchase"
      "sidebar";
  }
}

@media (max-width: 768px) {
  .battlepass-progress {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .tier-headers {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .battlepass-track {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .reward-card {
    height: 80px;
  }
  
  .tier-number {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .tier-headers {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .battlepass-track {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .reward-card {
    height: 70px;
  }
}

/* Anciens styles placeholder supprimés - remplacés par battlepass styles */

/* ===========================
   BOUTIQUE ORIGINALE - FLICKITY
   =========================== */
.carousel > .card:not(:first-child) {
  display: none;
}

.flickity-slider {
  transform: none !important;
}

.carousel .card {
  left: 0 !important;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  z-index: -1;
}

.carousel .card:hover {
  cursor: -webkit-grab;
  cursor: grab;
}

.carousel .card:active {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.carousel .card.is-selected {
  opacity: 1;
  z-index: 0;
}

.carousel, .flickity-viewport, .carousel .card {
  height: 100%;
}

.daily .carousel .card > .img-ph > img {
  width: 100%;
}

.carousel-container {
  position: relative;
}

.carousel-status, .card > .img-ph > img {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -ms-user-select-user-select: none;
  pointer-events: none;
}

.carousel-status {
  font-family: "Open sans", sans-serif;
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 0.03em;
  position: absolute;
  bottom: 23%;
  right: 4%;
  padding: 5px 9px;
  background: rgba(21, 24, 43, 0.75);
  color: white;
  border-radius: 15px;
}

.daily .carousel-status {
  font-size: 12px;
  bottom: 33%;
}

.carousel .card, .carousel {
  width: 100%;
}

.carousel .card {
  margin-right: 30px;
}

/* ===========================
   GRILLE PRINCIPALE BOUTIQUE
   =========================== */
.main {
  width: 100%;
  padding: 22px 30px;
  max-width: 1365px;
  margin: 0 auto;
  display: grid;
  grid-gap: 24px 36px;
  grid-auto-rows: 1fr;
  grid-template-columns: 1fr 1.1fr;
  grid-template-rows: 38px 1fr;
  grid-template-areas: "count-feat  count-daily" "feature   daily";
}

@media (max-width: 1000px) {
  .main {
    grid-template-areas: "count-feat" "feature" "count-daily" "daily";
    grid-template-rows: 48px auto 48px auto;
    grid-template-columns: 1fr;
  }
}

/* ===========================
   EN-TÊTES COMPTEURS
   =========================== */
.count {
  display: grid;
  grid-template-columns: min-content auto;
  background: linear-gradient(145deg, rgba(13, 13, 13, 0.9), rgba(25, 25, 25, 0.8));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(229, 9, 20, 0.3);
  align-items: stretch;
}

.count > div:first-child {
  display: grid;
  align-content: center;
  width: 100%;
  grid-template-columns: min-content;
  background: linear-gradient(145deg, rgba(229, 9, 20, 0.8), rgba(180, 7, 14, 0.9));
  backdrop-filter: blur(8px);
  -webkit-clip-path: polygon(0 0, 91% 0, 100% 100%, 0% 100%);
  clip-path: polygon(0 0, 91% 0, 100% 100%, 0% 100%);
}

.count > div:first-child > h3 {
  color: #ffffff;
  margin: 0;
  border: 0;
  height: 100%;
  -webkit-margin-before: 0;
  -webkit-margin-after: 0;
  padding: 0 30px 0 12px;
  white-space: nowrap;
  font-family: 'Inter', 'Poppins', 'Roboto', sans-serif;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 1px;
  transform: none;
  vertical-align: baseline;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.count > div:last-child {
  display: grid;
  justify-content: right;
  align-content: center;
  color: rgba(255, 255, 255, 0.75);
  padding: 0 10px;
  white-space: nowrap;
  font-family: 'Inter', 'Poppins', 'Roboto', sans-serif;
  font-weight: 600;
  letter-spacing: 0.045em;
  font-size: 16px;
}

.count.feat {
  grid-area: count-feat;
}

.count.day {
  grid-area: count-daily;
}

/* ===========================
   GRILLES DES ARTICLES
   =========================== */
.feature {
  grid-area: feature;
  display: grid;
  grid-gap: 24px 24px;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 1fr;
}

@media (max-width: 500px) {
  .feature {
    grid-template-columns: repeat(1, 1fr);
  }
}

.daily {
  grid-area: daily;
  display: grid;
  grid-gap: 24px 24px;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
}

@media (max-width: 800px) {
  .daily {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .daily {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* ===========================
   IMAGES ET CARTES
   =========================== */
img {
  vertical-align: middle;
  border-style: none;
}

.img-ph {
  position: relative;
  display: grid;
  height: 100%;
  width: 100%;
  align-content: end;
  justify-content: center;
}

.feature .card > img, .feature .card > .img-ph > img {
  width: 145%;
  max-width: 145%;
  justify-self: center;
}

@media (max-width: 1000px) {
  .feature .card > img, .feature .card > .img-ph > img {
    margin-top: 17px;
    width: 135%;
    max-width: 135%;
  }
}

@media (max-width: 500px) {
  .feature .card > img, .feature .card > .img-ph > img {
    margin-top: 10px;
    width: 125%;
    max-width: 125%;
  }
}

.card > img, .card > .img-ph > img {
  display: grid;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  vertical-align: middle;
  border-style: none;
  transition: 0.5s;
}

.card, .card-carousel {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.card-carousel > .card {
  height: 100%;
}

.card {
  transition: background-color 0.5s, background-blend-mode 0.5s;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform-style: preserve-3d;
  background-color: rgba(255, 255, 255, 0.15);
  position: relative;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -ms-user-select-user-select: none;
  cursor: pointer;
}

.card:hover {
  background-color: rgba(255, 255, 255, 0.1);
  background-blend-mode: screen;
  outline: 5px solid #ff0;
  transform: translateY(-5px);
  box-shadow: 
    0 15px 30px rgba(255, 255, 0, 0.2),
    0 0 20px rgba(255, 255, 0, 0.3);
}

.card[onclick] {
  cursor: pointer;
  transition: all 0.3s ease;
}

.card:hover > img, .card:hover > .img-ph > img {
  -webkit-transform: scale3d(1.05, 1.05, 1);
  transform: scale3d(1.05, 1.05, 1);
}

.carousel .card:hover {
  outline: 0;
}

.carousel:hover, .carousel:active {
  outline: 5px solid #ff0;
}

/* Style supprimé - remplacé par la version corrigée plus bas */

/* Styles supprimés - remplacés par les versions corrigées plus bas */

h4.card-name.animated > span {
  display: inline-block;
  width: 100%;
  animation: marquee 7s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translate(100%, 0);
  }
  100% {
    transform: translate(-100%, 0);
  }
}

.feature p.card-price {
  padding: 10px 0;
  font-size: 20px;
}

p.card-price {
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  perspective: 800px;
  color: #fff;
  margin: 0;
  white-space: nowrap;
  font-family: "Open sans", sans-serif;
  text-transform: uppercase;
  font-size: 17px;
  font-weight: bold;
  letter-spacing: 0.033em;
  text-align: center;
  display: -webkit-flex;
  -webkit-align-items: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

p.card-type {
  color: rgba(255, 255, 255, 0.8);
  text-shadow: 0 0 7px rgba(0, 0, 0, 0.5);
  margin: 0;
  padding-top: 2px;
  white-space: nowrap;
  font-family: "Open sans", sans-serif;
  font-weight: 400;
  letter-spacing: 0.06em;
  font-size: 13px;
  text-align: center;
}

p.card-price > img {
  width: 25px;
  margin-right: 5px;
}

/* ===========================
   RARETÉS
   =========================== */
.rarity-legendary {
  background: radial-gradient(ellipse at center 55%, #e38347, #78371d);
  border: 2px solid #e98d4b;
  overflow: hidden;
}

.rarity-epic {
  background: radial-gradient(ellipse at center 55%, #b15be2, #4b2483);
  border: 2px solid #e95eff;
  overflow: hidden;
}

.rarity-rare {
  background: radial-gradient(ellipse at center 55%, #49acf2, #143977);
  border: 2px solid #37d1ff;
  overflow: hidden;
}

.rarity-uncommon {
  background: radial-gradient(ellipse at center 55%, #60aa3a, #175117);
  border: 2px solid #87e339;
  overflow: hidden;
}

.rarity-special {
  background: radial-gradient(ellipse at center 55%, #dc143c, #8b0000);
  border: 2px solid #ff4500;
  overflow: hidden;
}

.rarity-special-black {
  background: radial-gradient(ellipse at center 55%, #2c2c2c, #000000);
  border: 2px solid #666666;
  overflow: hidden;
}

/* ===========================
   INDICATEUR D'IMAGES SIMPLE
   =========================== */
/* Style supprimé - remplacé par la version corrigée plus bas */

/* Transition fluide pour les images des t-shirts */
#tshirt-image {
  transition: opacity 1.5s ease-in-out;
}

/* ===========================
   FOOTER
   =========================== */
.main-footer {
  background: rgba(0, 0, 0, 0.8);
  border-top: 1px solid rgba(229, 9, 20, 0.3);
  padding: 2rem 0;
  margin-top: auto;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-content p {
  color: #cccccc;
  font-size: 0.9rem;
}

.footer-actions {
  display: flex;
  gap: 1rem;
}

.support-creator {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(229, 9, 20, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.support-creator:hover {
  background: rgba(229, 9, 20, 0.1);
  border-color: #E50914;
  color: #E50914;
}

/* ===========================
   MODAL PRODUIT
   =========================== */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2000;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: rgba(0, 0, 0, 0.95);
  border: 2px solid rgba(229, 9, 20, 0.3);
  padding: 2rem;
  max-width: 800px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  color: #E50914;
  font-size: 2rem;
  cursor: pointer;
  font-weight: bold;
  transition: color 0.3s ease;
}

.modal-close:hover {
  color: #ffffff;
}

.product-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.product-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
}

.product-info h2 {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 1rem;
  font-weight: 800;
}

.product-info p {
  color: #cccccc;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.product-price {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 1.5rem 0;
}

.product-price img {
  width: 30px;
  height: 30px;
}

.product-price span {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
}

.purchase-button {
  background: linear-gradient(135deg, #E50914, #b8070e);
  color: #ffffff;
  border: none;
  padding: 1rem 2rem;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.purchase-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 0, 0, 0.4);
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 768px) {
  /* AMÉLIORATION NAVIGATION MOBILE */
  .nav-container {
    padding: 0 1rem;
  }
  
  .menu-toggle {
    display: block !important; /* FORCÉ AFFICHÉ sur mobile */
    visibility: visible !important; /* Visible sur mobile */
    opacity: 1 !important; /* Opaque sur mobile */
    pointer-events: all !important; /* Cliquable sur mobile */
    padding: 0.8rem;
    font-size: 1.3rem;
    border-radius: 8px;
    transition: all 0.3s ease;
  }

  .menu-toggle:active {
    transform: scale(0.95);
    background: rgba(255, 255, 255, 0.1);
  }

  /* AMÉLIORATION LOGO MOBILE */
  .nav-logo h1 {
    font-size: 1.8rem;
    letter-spacing: 1px;
  }
  
  .nav-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 1001;
  }
  
  .nav-menu.mobile-open {
    display: flex;
  }
  
  .nav-menu .nav-item {
    width: 80%;
    max-width: 300px;
    text-align: center;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    cursor: pointer !important;
    pointer-events: all !important;
    z-index: 1002;
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    transition: all 0.3s ease;
  }
  
  .nav-menu .nav-item:hover,
  .nav-menu .nav-item:active {
    background: rgba(255, 255, 255, 0.2);
    border-color: #e50914;
    transform: translateY(-2px);
  }
  
  .nav-menu .nav-item:active {
    transform: translateY(0);
    background: rgba(229, 9, 20, 0.2);
  }
  
  .nav-menu .nav-item.active {
    background: rgba(229, 9, 20, 0.9);
    border-color: rgba(255, 255, 255, 0.8);
    color: #ffffff;
    font-weight: 800;
    box-shadow: 0 6px 25px rgba(229, 9, 20, 0.6);
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  
  .product-details {
    grid-template-columns: 1fr;
  }
  
  .placeholder-content {
    padding: 2rem;
  }
  
  .placeholder-content h2 {
    font-size: 2rem;
  }

  /* OPTIMISATION MOBILE ULTRA-COMPACTE */
  .main {
    padding: 0.4rem;
    max-width: 100%;
    overflow-x: hidden;
  }

  .count {
    margin: 0.6rem 0;
    padding: 0.7rem;
    min-height: auto;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
  }

  .count > div:first-child > h3 {
    font-size: 0.9rem;
    margin: 0;
    font-weight: 600;
  }

  .count > div:last-child {
    font-size: 1rem;
    font-weight: 700;
    color: #e50914;
  }

  /* OBJETS À LA UNE - 2 colonnes SERRÉES */
  .feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.4rem;
    justify-items: center;
    margin: 0.8rem 0;
    padding: 0 0.1rem;
  }

  .feature .card {
    width: 100%;
    max-width: 145px;
    min-height: 185px;
    margin: 0;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  }

  /* OBJETS DE LA SEMAINE - 2 colonnes ULTRA-SERRÉES */
  .daily {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.3rem;
    justify-items: center;
    margin: 0.8rem 0;
    padding: 0 0.1rem;
  }

  .daily .card {
    width: 100%;
    max-width: 125px;
    min-height: 155px;
    margin: 0;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  }

  /* Images PARFAITEMENT dimensionnées */
  .feature .card > img, .feature .card > .img-ph > img {
    width: 100%;
    height: 110px;
    object-fit: cover;
    border-radius: 0;
  }

  .card > img, .card > .img-ph > img {
    width: 100%;
    height: 90px;
    object-fit: cover;
    border-radius: 0;
  }

  /* Textes ULTRA-lisibles et compacts */
  h4.card-name {
    font-size: 0.75rem;
    line-height: 1.2;
    margin: 0.3rem 0;
    font-weight: 600;
    text-align: center;
    padding: 0 0.2rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  p.card-price {
    font-size: 0.8rem;
    margin: 0.3rem 0;
    font-weight: 700;
    text-align: center;
  }

  p.card-type {
    font-size: 0.65rem;
    margin: 0.2rem 0;
    opacity: 0.8;
    text-align: center;
  }

  .card-info {
    padding: 0.5rem 0.3rem;
  }

  .image-indicator {
    font-size: 0.65rem;
    padding: 0.2rem 0.4rem;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    border-radius: 3px;
    position: absolute;
    top: 0.3rem;
    right: 0.3rem;
  }

  /* Cards verrouillées optimisées */
  .lock-overlay {
    border-radius: 6px;
  }

  .lock-icon {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
  }

  .lock-text {
    font-size: 0.7rem;
    font-weight: 600;
  }

  /* AMÉLIORATIONS TACTILES MOBILE */
  .card {
    transition: all 0.2s ease;
    cursor: pointer;
  }

  .card:active {
    transform: scale(0.98);
  }

  .card:not(.locked-item):active {
    box-shadow: 0 8px 25px rgba(229, 9, 20, 0.3);
  }

  /* Amélioration du footer mobile */
  .main-footer {
    padding: 1.5rem 1rem;
    margin-top: 2rem;
  }

  .footer-content {
    gap: 1rem;
  }

  .support-creator {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    border-radius: 8px;
    transition: all 0.3s ease;
  }

  .support-creator:active {
    transform: scale(0.95);
  }
}

@media (max-width: 480px) {
  .modal-content {
    padding: 1rem;
    width: 95%;
  }
  
  .nav-logo h1 {
    font-size: 1.5rem;
  }
  
  .placeholder-content {
    padding: 1.5rem;
  }
  
  .placeholder-icon {
    font-size: 3rem;
  }
  
  /* Responsive Accueil OPTIMISÉ */
  .hero-banner {
    height: 40vh;
    min-height: 300px;
  }
  
  .hero-content {
    padding: 1rem;
  }
  
  .hero-title {
    font-size: 1.8rem;
    line-height: 1.2;
    margin-bottom: 0.8rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 1rem;
  }

  .hero-cta {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .section-title {
    font-size: 1.5rem;
    margin: 1.5rem 0 1rem 0;
    padding: 0 1rem;
  }
  
  .news-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0 1rem;
  }

  .news-card {
    min-height: 200px;
  }

  .news-card-wide {
    min-height: 220px;
  }

  .news-image {
    height: 100px;
  }

  .news-card-wide .news-image {
    height: 120px;
  }

  .news-title {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }

  .news-text {
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 0.8rem;
  }

  .news-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
  }
  
  .upcoming-list {
    grid-template-columns: 1fr;
    gap: 0.8rem;
    padding: 0 1rem;
  }

  .upcoming-item {
    padding: 1rem;
  }

  .upcoming-title {
    font-size: 1rem;
  }

  .upcoming-date {
    font-size: 0.8rem;
  }

  .upcoming-desc {
    font-size: 0.85rem;
  }

  /* OPTIMISATION TRÈS PETITS ÉCRANS - ULTRA COMPACT */
  .main {
    padding: 0.3rem;
  }

  .count {
    margin: 0.5rem 0;
    padding: 0.6rem;
  }

  .count > div:first-child > h3 {
    font-size: 0.85rem;
  }

  .count > div:last-child {
    font-size: 1rem;
  }

  /* 2 colonnes ULTRA-compactes */
  .feature {
    gap: 0.4rem;
    margin: 0.8rem 0;
    padding: 0 0.1rem;
  }

  .feature .card {
    max-width: 135px;
    min-height: 175px;
  }

  .daily {
    gap: 0.3rem;
    margin: 0.8rem 0;
    padding: 0 0.1rem;
  }

  .daily .card {
    max-width: 115px;
    min-height: 145px;
  }

  .feature .card > img, .feature .card > .img-ph > img {
    height: 95px;
  }

  .card > img, .card > .img-ph > img {
    height: 75px;
  }

  h4.card-name {
    font-size: 0.7rem;
    margin: 0.25rem 0;
    padding: 0 0.1rem;
  }

  p.card-price {
    font-size: 0.75rem;
    margin: 0.25rem 0;
  }

  p.card-type {
    font-size: 0.6rem;
  }

  .card-info {
    padding: 0.4rem 0.2rem;
  }

  .image-indicator {
    font-size: 0.6rem;
    padding: 0.15rem 0.3rem;
    top: 0.2rem;
    right: 0.2rem;
  }

  .lock-icon {
    font-size: 1rem;
  }

  .lock-text {
    font-size: 0.65rem;
  }
}

/* ===========================
   SYSTÈME DE VERROUILLAGE BOUTIQUE
   =========================== */
.locked-item {
    position: relative;
    cursor: not-allowed !important;
    filter: grayscale(1) opacity(0.7) !important;
}

.locked-item .img-ph > img {
    filter: blur(8px) grayscale(1) opacity(0.7) !important;
}

.lock-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px) !important;
    border-radius: 15px;
}

.lock-overlay:hover {
    background: rgba(0, 0, 0, 0.9);
}

.lock-icon {
    font-size: 32px;
    margin-bottom: 8px;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
    animation: lockPulse 2s infinite;
}

.lock-text {
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

@keyframes lockPulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.8;
    }
    50% { 
        transform: scale(1.1);
        opacity: 1;
    }
}

/* Désactiver les interactions sur les items verrouillés */
.locked-item .img-ph,
.locked-item .card-price {
    pointer-events: none;
}

/* Responsive pour les overlays de verrouillage */
@media (max-width: 768px) {
    .lock-icon {
        font-size: 24px;
    }
    
    .lock-text {
        font-size: 10px;
    }
} 

/* ===========================
   HARMONISATION PWA / WEB MOBILE
   =========================== */

/* Styles spéciaux pour Safari Mobile - Ressembler à la PWA */
@supports (-webkit-touch-callout: none) {
  /* Safari uniquement */
  body {
    -webkit-user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
  }
  
  /* Masquer la barre d'adresse Safari en mode paysage */
  @media screen and (orientation: landscape) and (max-height: 500px) {
    body {
      height: 100vh;
      overflow: hidden;
    }
    
    .main-content {
      height: calc(100vh - 70px);
      overflow-y: auto;
    }
  }
}

/* Styles pour mode standalone (PWA) */
@media all and (display-mode: standalone) {
  body {
    padding-top: env(safe-area-inset-top);
    padding-bottom: env(safe-area-inset-bottom);
  }
  
  .main-nav {
    padding-top: env(safe-area-inset-top);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
  }
  
  /* CORRECTION BOUTON HAMBURGER PWA */
  .menu-toggle {
    position: relative;
    top: 0;
    right: 0;
    z-index: 1001;
    margin-right: 1rem;
  }
  
  .main-content {
    margin-top: calc(70px + env(safe-area-inset-top));
    padding-top: 0;
  }
  
  /* Navigation mobile optimisée PWA */
  .nav-menu.mobile-open {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    padding-top: calc(80px + env(safe-area-inset-top));
    z-index: 999;
  }
}

/* Styles pour navigateurs mobiles classiques */
@media screen and (max-width: 768px) and (display-mode: browser) {
  /* Optimisations pour ressembler à la PWA */
  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
  }
  
  .main-content {
    margin-top: 70px; /* Compenser la nav fixe */
  }
  
  /* Masquer le bouton de scroll vers le haut du navigateur */
  body {
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: none;
  }
}

/* Optimisations spéciales pour iOS Safari */
@supports (-webkit-appearance: none) and (not (display-mode: standalone)) {
  @media (max-width: 768px) {
    /* Forcer le mode plein écran sur iOS Safari */
    .main-nav {
      position: fixed;
      top: 0;
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
    }
    
    .main-content {
      padding-top: 80px;
    }
    
    /* Améliorer les performances de scroll */
    .nav-menu.mobile-open {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background: rgba(0, 0, 0, 0.98);
      backdrop-filter: blur(30px);
      -webkit-backdrop-filter: blur(30px);
    }
  }
} 

/* ===========================
   CORRECTION POLICE ET AFFICHAGE PRODUITS
   =========================== */

/* Correction de la taille de police trop grosse pour les titres */
.feature h4.card-name {
  font-size: 18px !important; /* Réduit de 26px à 18px */
  line-height: 1.2;
  margin-bottom: 4px;
  font-family: "Luckiest Guy", cursive !important;
  font-weight: 400 !important; /* Ajusté pour Luckiest Guy */
}

h4.card-name {
  overflow: hidden;
  line-height: 1.2; /* Amélioration de l'espacement */
  color: #fff;
  margin: 0;
  width: 100%;
  white-space: nowrap;
  font-family: "Luckiest Guy", cursive !important;
  text-transform: uppercase;
  text-align: center;
  font-size: 16px; /* Réduit de 18px à 16px */
  font-weight: 400 !important; /* Ajusté pour Luckiest Guy */
  text-shadow: 0 0 7px rgba(0, 0, 0, 0.8); /* Ombre plus forte pour lisibilité */
  transform: scale(1, 1.15); /* Réduit l'étirement vertical */
}

@media (max-width: 500px) {
  h4.card-name {
    font-size: 20px; /* Réduit de 26px à 20px */
  }
  
  .feature h4.card-name {
    font-size: 16px !important; /* Réduit aussi sur mobile */
  }
}

/* ===========================
   CORRECTION INDICATEUR D'IMAGES
   =========================== */
.image-indicator {
  position: absolute;
  bottom: 26%; /* Repositionné plus haut pour éviter le chevauchement */
  right: 6%; /* Légèrement plus à gauche */
  background: rgba(0, 0, 0, 0.75); /* Fond noir transparent comme avant */
  color: white;
  padding: 4px 8px; /* Padding réduit */
  border-radius: 12px; /* Coins moins arrondis */
  font-size: 13px; /* Taille réduite */
  font-weight: bold;
  font-family: "Open sans", sans-serif;
  letter-spacing: 0.03em;
  border: 1px solid rgba(255, 255, 255, 0.2); /* Bordure subtile */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); /* Ombre pour la visibilité */
}

/* ===========================
   AMÉLIORATION CARD-INFO
   =========================== */
.card-info {
  background: rgba(0, 0, 0, 0.35); /* Fond légèrement plus opaque */
  position: absolute;
  width: 100%;
  bottom: 0;
  overflow: hidden;
  padding: 8px 6px; /* Padding augmenté pour plus d'espace */
  display: flex;
  flex-direction: column;
  align-items: center;
  backdrop-filter: blur(2px); /* Effet de flou léger */
}

/* ===========================
   CORRECTIONS RESPONSIVE MOBILE
   =========================== */
@media (max-width: 768px) {
  .image-indicator {
    bottom: 28%;
    right: 5%;
    font-size: 12px;
    padding: 3px 7px;
    background: rgba(0, 0, 0, 0.75); /* Fond noir transparent aussi sur tablet */
  }
  
  .card-info {
    padding: 6px 4px;
  }
  
  h4.card-name {
    font-size: 15px;
  }
  
  .feature h4.card-name {
    font-size: 17px !important;
  }
}

@media (max-width: 480px) {
  /* SIMPLIFICATION MOBILE - TEXTE SEUL SANS FOND */
  .image-indicator {
    bottom: 32%;
    right: 6%;
    font-size: 11px;
    padding: 0 !important; /* Suppression du padding */
    background: none !important; /* Suppression du fond */
    border: none !important; /* Suppression de la bordure */
    box-shadow: none !important; /* Suppression de l'ombre */
    border-radius: 0 !important; /* Suppression des coins arrondis */
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9); /* Ombre forte pour lisibilité */
    font-weight: 900; /* Police plus épaisse */
    letter-spacing: 0.5px;
  }
  
  h4.card-name {
    font-size: 14px;
  }
  
  .feature h4.card-name {
    font-size: 16px !important;
  }
}

/* ===========================
   FORCE LUCKIEST GUY SUR BOUTIQUE - ULTRA PRIORITÉ
   =========================== */

/* Force absolue sur tous les noms de cartes */
.card h4.card-name,
.card .card-name,
h4.card-name,
.feature h4.card-name,
.daily h4.card-name,
.carousel h4.card-name {
  font-family: "Luckiest Guy", cursive !important;
  font-weight: 400 !important;
}

/* Force spécifique sur les cartes de produits */
.main .feature .card h4,
.main .daily .card h4,
.carousel .card h4 {
  font-family: "Luckiest Guy", cursive !important;
  font-weight: 400 !important;
}

/* Force sur tous les h4 dans les sections boutique */
.main h4,
.feature h4,
.daily h4 {
  font-family: "Luckiest Guy", cursive !important;
  font-weight: 400 !important;
}

/* FORCE ABSOLUE AVEC SÉLECTEURS ULTRA-SPÉCIFIQUES */
body .main .feature .card .card-info h4.card-name,
body .main .daily .card .card-info h4.card-name,
body .main .carousel .card .card-info h4.card-name,
body .main h4.card-name,
body h4.card-name {
  font-family: "Luckiest Guy", cursive !important;
  font-weight: 400 !important;
}

/* Force sur les éléments avec classes spécifiques */
.card-info > h4,
.card-info h4.card-name,
div.card-info h4 {
  font-family: "Luckiest Guy", cursive !important;
  font-weight: 400 !important;
}

/* ===========================
   VERROUILLAGE PAGES / BOUTONS
   =========================== */

.locked-banner {
  max-width: 1400px;
  margin: 2rem auto 1rem auto;
  padding: 1.2rem 1.5rem;
  border: 1px solid rgba(229, 9, 20, 0.6);
  background: linear-gradient(135deg, rgba(229, 9, 20, 0.15), rgba(0, 0, 0, 0.85));
  color: #ffffff;
  font-family: 'Inter', 'Poppins', 'Roboto', sans-serif;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.locked-banner-icon {
  font-size: 1.6rem;
}

.locked-banner-text {
  font-size: 0.95rem;
  line-height: 1.5;
}

.locked-banner-title {
  display: block;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.25rem;
}

.locked-zone {
  position: relative;
  filter: grayscale(1) opacity(0.7);
  pointer-events: none;
}

.locked-zone::after {
  content: "🔒";
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 1.4rem;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

.locked-btn {
  cursor: not-allowed !important;
  opacity: 0.5;
  pointer-events: none;
}

@media (max-width: 768px) {
  .locked-banner {
    margin: 1.2rem 1rem 0.8rem 1rem;
    padding: 1rem 1.2rem;
    font-size: 0.9rem;
  }
}