/* Global styles */
@font-face {
    font-family: 'TitleFont';
    src: url('../fonts/title.otf') format('opentype');
}

@font-face {
  font-family: 'IntegralCF';
  src: url('../fonts/Fontspring-DEMO-integralcf-bold.otf') format('opentype');
  font-weight: bold;
  font-style: normal;
}

/* Smooth scrolling pour tout le document */
html {
  scroll-behavior: smooth;
}

/* Ajustement pour les sections avec la navbar fixe */
#home, #products, #faq, #footer {
  scroll-margin-top: 100px;
}

/* FOND QUADRILLÉ UNIFORME POUR TOUTES LES SECTIONS */
:root {
  --grid-size: 50px;
  --grid-color: rgba(255,255,255,0.03);
  --bg-color: #0B0B0B;
}

.background-grid {
  background-color: var(--bg-color);
  background-image: 
    linear-gradient(to right, var(--grid-color) 1px, transparent 1px),
    linear-gradient(to bottom, var(--grid-color) 1px, transparent 1px);
  background-size: var(--grid-size) var(--grid-size);
  background-attachment: fixed;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'TitleFont', sans-serif;
}

body {
  background-color: var(--bg-color);
  background-image: 
    linear-gradient(to right, var(--grid-color) 1px, transparent 1px),
    linear-gradient(to bottom, var(--grid-color) 1px, transparent 1px);
  background-size: var(--grid-size) var(--grid-size);
}

/* NOTIFICATION D'ACHAT OVERLAY */
.purchase-notification {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background: rgba(26, 26, 26, 0.95);
  border: 1px solid rgba(51, 153, 255, 0.3);
  border-radius: 15px;
  padding: 20px;
  max-width: 350px;
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.5),
    0 0 20px rgba(51, 153, 255, 0.2);
  backdrop-filter: blur(15px);
  z-index: 9999;
  transform: translateX(-100%);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  pointer-events: none;
}

.purchase-notification.show {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

.notification-content {
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
}

.notification-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(145deg, #00b894, #00a085);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 184, 148, 0.3);
  flex-shrink: 0;
}

.notification-icon i {
  color: white;
  font-size: 20px;
}

.notification-text {
  flex: 1;
  color: white;
}

.notification-name {
  font-weight: bold;
  font-size: 16px;
  color: #4A9EFF;
  margin-bottom: 2px;
}

.notification-product {
  font-size: 14px;
  color: #CCCCCC;
  margin-bottom: 4px;
}

.notification-product span {
  color: white;
  font-weight: 500;
}

.notification-time {
  font-size: 12px;
  color: #888888;
}

.notification-close {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #CCCCCC;
  font-size: 10px;
}

.notification-close:hover {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  transform: scale(1.1);
}

/* Animation de pulsation pour attirer l'attention */
.purchase-notification.show .notification-icon {
  animation: notificationPulse 2s ease-in-out infinite;
}

@keyframes notificationPulse {
  0%, 100% {
    box-shadow: 0 4px 12px rgba(0, 184, 148, 0.3);
  }
  50% {
    box-shadow: 0 4px 20px rgba(0, 184, 148, 0.6);
  }
}

/* Responsive pour notifications */
@media screen and (max-width: 768px) {
  .purchase-notification {
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: none;
    padding: 16px;
  }
  
  .notification-content {
    gap: 12px;
  }
  
  .notification-icon {
    width: 40px;
    height: 40px;
  }
  
  .notification-icon i {
    font-size: 16px;
  }
  
  .notification-name {
    font-size: 14px;
  }
  
  .notification-product {
    font-size: 13px;
  }
  
  .notification-time {
    font-size: 11px;
  }
}

/* NAVBAR */

.navbar {
  background-color: rgba(15, 15, 15, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid #494949;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  margin: 0 auto;
  max-width: 1100px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
  position: fixed;
  top: 20px;
  left: 0;
  right: 0;
  z-index: 1000;
}

.logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.2s ease;
}

.nav-links li a:hover {
  color: #4A9EFF;
}

.login-buttons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.discord-icon {
  text-decoration: none;
  line-height: 1;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #5865F2;
  border: 1px solid #8892fa;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  color: white;
  box-shadow: 0 0 8px rgba(136, 146, 250, 0.5);
  transition: all 0.2s ease;
}

.discord-icon i {
  text-decoration: none;
  display: block;
  line-height: 1;
}

.discord-login {
  background: linear-gradient(145deg, #003e8c, #007bff);
  border: 1px solid #3399ff;
  color: white;
  font-weight: 500;
  border-radius: 999px;
  padding: 0.8rem 1.8rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  box-shadow: 0 0 8px rgba(51, 153, 255, 0.5);
  transition: all 0.2s ease;
}

.discord-login:hover {
  box-shadow: 0 0 12px rgba(51, 153, 255, 0.8);
  transform: scale(1.02);
}

.discord-icon:hover {
  box-shadow: 0 0 12px rgba(136, 146, 250, 0.8);
  transform: scale(1.02);
}

/* Burger menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1001;
  margin-left: 16px;
}

.bar {
  width: 30px;
  height: 4px;
  background-color: white;
  margin: 4px 0;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.menu-toggle.active .bar {
  background-color: transparent;
}

.mobile-only {
  display: none;
}

.close-menu {
  display: none;
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 35px;
  color: white;
  cursor: pointer;
  z-index: 1002;
  transition: transform 0.2s ease;
}

.close-menu:hover {
  transform: scale(1.1);
}

@media screen and (max-width: 768px) {
  .close-menu {
    display: block;
  }

  .navbar {
    padding: 0.6rem 1rem;
    max-width: calc(100% - 40px);
    top: 10px;
  }

  .logo {
    width: 40px;
    height: 40px;
  }

  .menu-toggle {
    display: flex;
  }

  /* Menu overlay avec blur sur tout l'écran */
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 1001;
    transition: all 0.4s ease;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .nav-links.active {
    display: flex;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  /* Navbar transparente quand menu ouvert */
  .navbar.menu-open {
    background-color: transparent;
    border: none;
    backdrop-filter: none;
    box-shadow: none;
    top: 0 !important;
  }

  .nav-links li {
    margin: 0;
    padding: 0;
  }

  .nav-links li a {
    font-size: 1.5rem;
    padding: 0.8rem 0;
  }

  .mobile-only {
    display: flex !important;
    align-items: center;
    justify-content: center;
  }

  .discord-icon.mobile-only {
    width: 72px;
    height: 72px;
    font-size: 32px;
    background-color: #5865F2;
    border-radius: 50%;
    border: 1px solid #8892fa;
    box-shadow: 0 0 8px rgba(136, 146, 250, 0.5);
  }

  .discord-login.mobile-only {
    background: linear-gradient(145deg, #003e8c, #007bff);
    border: 1px solid #3399ff;
    color: white;
    font-size: 20px;
    padding: 10px 32px;
    border-radius: 999px;
    box-shadow: 0 0 8px rgba(51, 153, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
  }

  .discord-login.mobile-only i {
    font-size: 20px;
    margin-right: 12px;
  }

  .login-buttons {
    display: none;
  }
}

.center-nav {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 768px) {
  .center-nav {
    position: static;
    transform: none;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
}

/* SECTION HERO - Hauteur augmentée */

.hero {
  position: relative;
  width: 100%;
  height: 85vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1rem;
  box-sizing: border-box;
}

.video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -2;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(2px);
  transform: scale(1.1);
  transition: transform 0.1s ease-out;
  will-change: transform;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

/* Transition dégradée en bas de la vidéo */
.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(to bottom, 
    transparent 0%, 
    rgba(11, 11, 11, 0.05) 20%,
    rgba(11, 11, 11, 0.15) 40%,
    rgba(11, 11, 11, 0.3) 60%,
    rgba(11, 11, 11, 0.6) 80%,
    #0B0B0B 100%
  );
  z-index: 1;
  pointer-events: none;
}

.hero-content .main-title {
  font-family: 'IntegralCF', sans-serif;
  font-size: 5rem;
  color: white;
  margin-bottom: 1.2rem;
}

.hero-content .sub-title {
  font-size: 4.5rem;
  color: white;
  margin-bottom: 1rem;
  white-space: nowrap;
}

.hero-content .sub-title .highlight {
  color: #005EC8;
  display: inline;
  text-decoration: underline;
}

.btn.blue {
  background-color: #005EC8;
  color: white;
}

.btn {
  padding: 0.8rem 1.8rem;
  border-radius: 999px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-block;
}

.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.2);
}

/* Style du badge façon bouton login */
.styled-badge {
  background: linear-gradient(145deg, #003e8c, #007bff);
  border: 1px solid #3399ff;
  color: white;
  font-weight: 500;
  border-radius: 999px;
  padding: 0.6rem 1.2rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  box-shadow: 0 0 8px rgba(51, 153, 255, 0.5);
}

/* Ombre sur le texte principal */
.shadow-text {
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.quality-text {
  position: relative;
  display: inline-block;
  color: #006FE9;
  font-weight: bold;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.quality-text::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  height: 4px;
  width: 0;
  background-color: #006FE9;
  transition: width 0.6s ease-out;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.quality-text::after {
  animation: underlineGrow 1s ease-out forwards;
}

@keyframes underlineGrow {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  padding-top: 2rem;
  z-index: 10;
  position: relative;
}

.hero-content .styled-badge {
  margin-bottom: 0.5rem;
}

.hero-content .main-title {
  margin-bottom: 0.5rem;
}

.hero-content .sub-title {
  margin-bottom: 0.5rem;
}

.hero-buttons {
  margin-top: 2.5rem;
}

.btn.purchase-now {
  background: linear-gradient(145deg, #003e8c, #007bff);
  border: 1px solid #3399ff;
  color: white;
  font-weight: 500;
  border-radius: 999px;
  padding: 1rem 2.4rem;
  font-size: 20px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  box-shadow: 0 0 12px rgba(51, 153, 255, 0.6);
  transition: all 0.2s ease;
}

.btn.purchase-now:hover {
  box-shadow: 0 0 16px rgba(51, 153, 255, 0.9);
  transform: scale(1.05);
}

/* Responsive pour hero */
@media screen and (max-width: 768px) {
  .hero {
    height: 75vh;
  }
  
  .hero-content {
    gap: 1.2rem;
    padding: 0 1rem;
    padding-top: 6rem;
    text-align: center;
  }
  
  .hero-content .main-title {
    font-size: 2.4rem;
    text-align: center;
  }
  
  .hero-content .sub-title {
    font-size: 2.6rem;
    white-space: normal;
    line-height: 1.2;
    text-align: center;
  }
  
  .styled-badge {
    font-size: 14px;
    padding: 0.5rem 1rem;
    margin-bottom: 1rem;
    align-self: center;
  }
  
  .btn.purchase-now {
    font-size: 18px;
    padding: 0.9rem 2.2rem;
    align-self: center;
  }
}

/* SECTION SCROLL SÉPARÉE */
.scroll-section {
  /* Pas de background ici - hérite du body */
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* INDICATEUR DE SCROLL */
.scroll-indicator {
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  opacity: 0.6;
  animation: fadeIn 2s ease forwards;
}

.scroll-indicator:hover {
  opacity: 1;
  transform: scale(1.1);
}

.scroll-oval {
  width: 30px;
  height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.scroll-indicator:hover .scroll-oval {
  border-color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.scroll-oval i {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  animation: scrollBounce 2s infinite ease-in-out;
}

.scroll-indicator:hover .scroll-oval i {
  color: white;
}

@keyframes scrollBounce {
  0%, 100% { 
    transform: translateY(0); 
    opacity: 1; 
  }
  50% { 
    transform: translateY(8px); 
    opacity: 0.6; 
  }
}

@keyframes fadeIn {
  from { 
    opacity: 0; 
    transform: translateY(20px); 
  }
  to { 
    opacity: 0.6; 
    transform: translateY(0); 
  }
}

/* SECTION FEATURES AVEC CARRÉS RELIÉS */
.features-section {
  padding: 100px 20px;
  position: relative;
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12rem;
  flex-wrap: wrap;
  position: relative;
}

/* Ligne de connexion entre les carrés */
.connection-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, 
    transparent 0%, 
    rgba(51, 153, 255, 0.3) 20%, 
    rgba(51, 153, 255, 0.8) 50%, 
    rgba(51, 153, 255, 0.3) 80%, 
    transparent 100%
  );
  z-index: 1;
  transform: translateY(-50%);
}

.feature-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: white;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  background-color: var(--bg-color);
  padding: 20px;
  border-radius: 10px;
  border: 2px solid rgba(51, 153, 255, 0.2);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.feature-box:hover {
  transform: translateY(-10px);
  border-color: rgba(51, 153, 255, 0.6);
  box-shadow: 0 10px 30px rgba(51, 153, 255, 0.2);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: #007bff;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 25px rgba(51, 153, 255, 0.4);
  transition: all 0.3s ease;
  margin-bottom: 20px;
  position: relative;
}

.feature-box:hover .feature-icon {
  box-shadow: 0 0 40px rgba(51, 153, 255, 0.7);
  transform: scale(1.1);
}

.feature-icon i {
  font-size: 32px;
  color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  line-height: 1;
  display: block;
  text-align: center;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

.feature-content h3 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: white;
}

.feature-content p {
  font-size: 1.4rem;
  color: #CCCCCC;
  font-weight: 500;
}

/* OPTIMISATION MOBILE POUR FEATURES - ICÔNES PARFAITEMENT ALIGNÉES */
@media screen and (max-width: 768px) {
  .features-section {
    padding: 40px 15px;
  }
  
  .features-container {
    gap: 1rem; /* Espacement réduit entre les boîtes */
    flex-direction: column;
    max-width: 100%;
    align-items: center;
    justify-content: center; /* Centre les boîtes dans le conteneur */
  }
  
  .connection-line {
    display: none;
  }
  
  .feature-box {
    width: 100%;
    max-width: 280px; /* Taille uniforme un peu plus grande */
    min-height: 110px; /* Plus haut aussi */
    padding: 30px 25px; /* Padding augmenté */
    margin: 0 auto;
    flex-direction: row;
    text-align: left;
    align-items: center;
    justify-content: center;
    gap: 22px; /* Gap un peu plus grand */
  }
  
  .feature-icon {
    width: 75px; /* Un peu plus gros */
    height: 75px;
    margin-bottom: 0;
    flex-shrink: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 0;
    margin-right: 0;
  }
  
  .feature-icon i {
    font-size: 30px; /* Icônes plus grosses */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    line-height: 1;
    display: block;
    text-align: center;
    margin: 0;
    padding: 0;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
  }
  
  /* Corrections micro-alignement spécifiques par icône */
  .feature-icon i.fa-bolt {
    /* Éclair: correction légère vers le haut */
    transform: translate(-50%, -48%);
  }
  
  .feature-icon i.fa-star {
    /* Étoile: centrage parfait */
    transform: translate(-50%, -50%);
  }
  
  .feature-icon i.fa-headset {
    /* Casque: micro-ajustement */
    transform: translate(-50%, -49%);
  }
  
  .feature-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    flex: 1;
  }
  
  .feature-content h3 {
    font-size: 1.6rem;
    margin-bottom: 0.1rem;
    font-weight: bold;
    color: white;
    text-align: left;
    line-height: 1.2;
  }
  
  .feature-content p {
    font-size: 1.2rem;
    color: #CCCCCC;
    margin: 0;
    text-align: left;
    line-height: 1.2;
  }
}

/* ENCORE PLUS COMPACT POUR TRÈS PETITS ÉCRANS */
@media screen and (max-width: 480px) {
  .features-section {
    padding: 30px 10px;
  }
  
  .features-container {
    gap: 1rem;
  }
  
  .feature-box {
    width: 100%;
    max-width: 260px; /* Taille uniforme */
    min-height: 100px; /* Hauteur uniforme */
    padding: 25px 20px; /* Padding augmenté */
    gap: 20px; /* Gap standard */
    justify-content: center;
    align-items: center;
    text-align: left;
    flex-direction: row;
  }
  
  .feature-icon {
    width: 65px;
    height: 65px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
  }
  
  .feature-icon i {
    font-size: 26px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0;
    padding: 0;
    vertical-align: middle;
  }
  
  /* Même correction fine pour petits écrans */
  .feature-icon i.fa-bolt {
    transform: translate(-50%, -48%);
  }
  
  .feature-icon i.fa-headset {
    transform: translate(-50%, -49%);
  }
  
  .feature-content {
    align-items: flex-start;
    text-align: left;
    flex: 1;
  }
  
  .feature-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.1rem;
    text-align: left;
    line-height: 1.2;
  }
  
  .feature-content p {
    font-size: 1.1rem;
    text-align: left;
    line-height: 1.2;
  }
}

/* SECTION STATISTIQUES */
.stats-section {
  padding: 80px 20px;
  position: relative;
}

.stats-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: white;
  flex: 1;
  min-width: 200px;
  padding: 2rem 1rem;
  background: rgba(15, 15, 15, 0.4);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(51, 153, 255, 0.2);
  border-radius: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.stat-item:hover {
  transform: translateY(-5px);
  border-color: rgba(51, 153, 255, 0.5);
  box-shadow: 0 10px 30px rgba(51, 153, 255, 0.2);
}

.stat-number {
  font-family: 'TitleFont', sans-serif;
  font-size: 3.5rem;
  font-weight: bold;
  color: white;
  margin-bottom: 0.8rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  line-height: 1;
}

.stat-label {
  font-family: 'TitleFont', sans-serif;
  font-size: 1rem;
  color: #CCCCCC;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Animation d'apparition des statistiques */
.stat-item {
  opacity: 0;
  transform: translateY(30px);
  animation: statsAppear 0.8s ease forwards;
}

.stat-item:nth-child(1) { animation-delay: 0.1s; }
.stat-item:nth-child(2) { animation-delay: 0.2s; }
.stat-item:nth-child(3) { animation-delay: 0.3s; }

@keyframes statsAppear {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive pour statistiques */
@media screen and (max-width: 768px) {
  .stats-container {
    flex-direction: column;
    gap: 2rem;
    padding: 0 1rem;
    max-width: 400px;
  }
  
  .stat-item {
    min-width: auto;
    width: 100%;
    padding: 1.5rem 1rem;
  }
  
  .stat-number {
    font-size: 2.8rem;
  }
  
  .stat-label {
    font-size: 0.9rem;
  }
}

@media screen and (max-width: 480px) {
  .stat-number {
    font-size: 2.5rem;
  }
  
  .stat-label {
    font-size: 0.8rem;
  }
}

/* SECTION PRODUITS */
.products-section {
  padding: 100px 20px;
  position: relative;
}

.products-header {
  text-align: center;
  margin-bottom: 80px;
}

.products-title {
  font-family: 'TitleFont', sans-serif;
  font-size: 3rem;
  color: white;
  font-weight: bold;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  margin-bottom: 20px;
}

.products-subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 18px;
  color: #4A9EFF;
  font-weight: 500;
  background: rgba(74, 158, 255, 0.1);
  border: 1px solid rgba(74, 158, 255, 0.3);
  border-radius: 25px;
  padding: 12px 24px;
  backdrop-filter: blur(10px);
  max-width: fit-content;
  margin: 0 auto;
  box-shadow: 0 4px 12px rgba(74, 158, 255, 0.2);
}

.products-subtitle i {
  font-size: 16px;
  color: #4A9EFF;
}

.products-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  padding: 0 1rem;
}

.product-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: all 0.4s ease;
}

.product-card-link:hover {
  transform: translateY(-10px);
}

.product-card-link:hover .product-card {
  box-shadow: 0 20px 40px rgba(150, 150, 150, 0.1);
  border-color: rgba(150, 150, 150, 0.5);
  transform: none;
}

.product-card {
  background: #1a1a1a;
  border: 1px solid rgba(150, 150, 150, 0.3);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

.product-image-section {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.product-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.product-card:hover .product-image {
  transform: scale(1.05);
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(0, 0, 0, 0.3) 0%,
    transparent 50%,
    rgba(0, 0, 0, 0.6) 100%
  );
}

.discount-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #CC1E1E, #B71C1C);
  color: white;
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 
    0 4px 12px rgba(204, 30, 30, 0.5),
    0 0 20px rgba(204, 30, 30, 0.3);
  z-index: 10;
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  animation: pulseGlow 2s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
  0% {
    box-shadow: 
      0 4px 12px rgba(204, 30, 30, 0.5),
      0 0 20px rgba(204, 30, 30, 0.3);
  }
  100% {
    box-shadow: 
      0 4px 16px rgba(204, 30, 30, 0.7),
      0 0 30px rgba(204, 30, 30, 0.5),
      0 0 40px rgba(204, 30, 30, 0.2);
  }
}

.product-details {
  background: #1a1a1a;
  padding: 25px;
  color: white;
}

.product-category-title {
  font-family: 'TitleFont', sans-serif;
  font-size: 1.8rem;
  font-weight: bold;
  color: white;
  margin: 0 0 20px 0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.product-features-badges {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #333;
}

.feature-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #0d2818, #1a3d2e);
  border: 1px solid #2d5a47;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #00D474;
  box-shadow: 0 2px 8px rgba(0, 212, 116, 0.15);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.feature-badge i {
  font-size: 12px;
}

.product-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.product-pricing {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price-label {
  color: #999;
  font-size: 14px;
  margin-bottom: 5px;
}

.price-container {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.product-price {
  font-size: 2.2rem;
  font-weight: bold;
  color: #CC1E1E;
}

.product-old-price {
  font-size: 1.1rem;
  color: #666;
  text-decoration: line-through;
}

.product-buy-btn {
  background: rgba(40, 40, 45, 0.9);
  border: 1px solid rgba(150, 150, 150, 0.3);
  border-radius: 10px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.product-buy-btn:hover {
  background: rgba(50, 50, 55, 0.95);
  border-color: rgba(150, 150, 150, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.product-buy-btn i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.product-buy-btn span {
  font-size: 14px;
  font-weight: 500;
}

.product-buy-btn:hover i {
  transform: translateX(2px);
}

/* Responsive pour produits */
@media screen and (max-width: 768px) {
  .products-section {
    padding: 60px 20px;
  }
  
  .products-title {
    font-size: 2.5rem;
  }
  
  .products-subtitle {
    font-size: 16px;
    padding: 10px 20px;
  }
  
  .products-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .product-image-section {
    height: 220px; /* Augmenté de 200px à 220px */
  }
  
  .product-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Assure un bon cadrage */
    display: block;
    transition: transform 0.4s ease;
  }
  
  .product-details {
    padding: 20px;
  }
  
  .product-price {
    font-size: 1.6rem;
  }
  
  .product-buy-btn {
    padding: 12px 18px;
    font-size: 14px;
  }
}

@media screen and (max-width: 480px) {
  .products-container {
    grid-template-columns: 1fr;
    padding: 0 10px;
    max-width: 100%;
  }
  
  .product-card {
    max-width: 100%;
  }
  
  .product-image-section {
    height: 200px; /* Ajusté pour très petits écrans */
  }
  
  .discount-badge {
    top: 15px;
    right: 15px;
    padding: 10px 14px;
    font-size: 14px;
  }
  
  .product-details {
    padding: 18px;
  }
  
  .product-features-badges {
    flex-direction: column;
    gap: 8px;
  }
  
  .product-price {
    font-size: 1.4rem;
  }
  
  .products-subtitle {
    font-size: 14px;
    padding: 8px 16px;
  }
}

/* SECTION FAQ */
.faq-section {
  padding: 100px 20px;
  position: relative;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.faq-title {
  font-family: 'TitleFont', sans-serif;
  font-size: 3rem;
  color: white;
  font-weight: bold;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  margin-bottom: 20px;
}

.faq-item {
  background: #1a1a1a;
  border: 1px solid rgba(150, 150, 150, 0.2);
  border-radius: 15px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.faq-item:hover {
  border-color: rgba(150, 150, 150, 0.4);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 30px;
  cursor: pointer;
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.02);
}

.faq-question h3 {
  font-family: 'TitleFont', sans-serif;
  font-size: 1.3rem;
  color: white;
  font-weight: 600;
  margin: 0;
  flex: 1;
  padding-right: 20px;
}

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(145deg, #003e8c, #007bff);
  border: 1px solid #3399ff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(51, 153, 255, 0.3);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  box-shadow: 0 4px 12px rgba(51, 153, 255, 0.5);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  background: rgba(255, 255, 255, 0.02);
}

.faq-answer.active {
  max-height: 300px;
  padding: 0 30px 25px 30px;
}

.faq-answer p {
  color: #CCCCCC;
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
  padding-top: 10px;
  border-top: 1px solid rgba(150, 150, 150, 0.1);
}

/* Animation d'apparition des FAQ items */
.faq-item {
  opacity: 0;
  transform: translateY(20px);
  animation: faqAppear 0.6s ease forwards;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }
.faq-item:nth-child(5) { animation-delay: 0.5s; }
.faq-item:nth-child(6) { animation-delay: 0.6s; }

@keyframes faqAppear {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive pour FAQ */
@media screen and (max-width: 768px) {
  .faq-section {
    padding: 60px 20px;
  }
  
  .faq-title {
    font-size: 2.5rem;
  }
  
  .faq-container {
    padding: 0 10px;
  }
  
  .faq-question {
    padding: 20px 25px;
  }
  
  .faq-question h3 {
    font-size: 1.1rem;
    padding-right: 15px;
  }
  
  .faq-answer.active {
    padding: 0 25px 20px 25px;
  }
  
  .faq-answer p {
    font-size: 1rem;
  }
  
  .faq-icon {
    width: 22px;
    height: 22px;
    font-size: 11px;
  }
}

@media screen and (max-width: 480px) {
  .faq-question {
    padding: 18px 20px;
  }
  
  .faq-question h3 {
    font-size: 1rem;
  }
  
  .faq-answer.active {
    padding: 0 20px 18px 20px;
  }
  
  .faq-answer p {
    font-size: 0.95rem;
  }
}

/* FOOTER */
.footer {
  background-color: #0B0B0B;
  color: white;
  padding: 60px 40px 30px 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}

.footer-logo-img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
}

.footer-logo-text {
  font-family: 'TitleFont', sans-serif;
  font-size: 1.8rem;
  font-weight: bold;
  color: white;
}

.footer-description {
  color: #AAAAAA;
  font-size: 1rem;
  line-height: 1.6;
  max-width: 350px;
  margin-bottom: 25px;
}

.footer-socials {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: #2a2a2a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #AAAAAA;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #3a3a3a;
  color: white;
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.social-link.discord:hover {
  background: #5865F2;
  border-color: #5865F2;
}

.social-link.twitter:hover {
  background: #1DA1F2;
  border-color: #1DA1F2;
}

.footer-section {
  display: flex;
  flex-direction: column;
}

.footer-section h3 {
  font-family: 'TitleFont', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: white;
  margin-bottom: 25px;
  letter-spacing: 0.5px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: #AAAAAA;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  padding: 2px 0;
}

.footer-links a:hover {
  color: white;
  padding-left: 5px;
}

.footer-bottom {
  margin-top: 50px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.9rem;
  color: #888888;
}

.footer-copyright {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-copyright i {
  font-size: 14px;
  color: #666666;
}

.back-to-top {
  position: absolute;
  top: -25px;
  right: 40px;
  width: 50px;
  height: 50px;
  background: linear-gradient(145deg, #003e8c, #007bff);
  border: 2px solid #3399ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(51, 153, 255, 0.3);
  text-decoration: none;
  font-size: 16px;
  opacity: 0;
  visibility: hidden;
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(51, 153, 255, 0.5);
}

/* Responsive pour footer */
@media screen and (max-width: 1024px) {
  .footer-container {
    gap: 60px;
  }
}

@media screen and (max-width: 768px) {
  .footer {
    padding: 40px 20px 20px 20px;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .footer-brand {
    align-items: center;
  }
  
  .footer-description {
    text-align: center;
    max-width: 100%;
  }
  
  .footer-socials {
    justify-content: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .back-to-top {
    right: 20px;
  }
}

@media screen and (max-width: 480px) {
  .footer {
    padding: 30px 15px 15px 15px;
  }
  
  .footer-container {
    gap: 30px;
  }
  
  .footer-logo-text {
    font-size: 1.5rem;
  }
  
  .footer-description {
    font-size: 0.9rem;
  }
  
  .back-to-top {
    width: 45px;
    height: 45px;
    font-size: 14px;
    right: 15px;
  }
}


/* === ICÔNE CADEAU FLOTTANTE - VERSION SOBRE === */
.gift-icon {
  position: fixed;
  top: 200px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: rgba(26, 26, 26, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 998;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  animation: giftBounce 2s ease-in-out infinite;
}

.gift-icon:hover {
  transform: translateY(-2px);
  background: rgba(40, 40, 40, 0.95);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.gift-icon i {
  color: #CCCCCC;
  font-size: 20px;
  transition: color 0.3s ease;
}

.gift-icon:hover i {
  color: white;
}

.gift-pulse {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: giftPulseSober 3s ease-in-out infinite;
}

@keyframes giftBounce {
  0%, 100% { 
    transform: translateY(0); 
  }
  50% { 
    transform: translateY(-10px); 
  }
}

@keyframes giftPulseSober {
  0% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.1;
  }
  100% {
    transform: scale(1);
    opacity: 0.3;
  }
}

/* === RESPONSIVE POUR MOBILE - VERSION SOBRE === */
@media screen and (max-width: 768px) {
  .gift-icon {
    top: 150px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
  
  .gift-icon i {
    font-size: 18px;
  }
}

@media screen and (max-width: 480px) {
  .gift-icon {
    top: 120px;
    right: 15px;
    width: 42px;
    height: 42px;
  }
  
  .gift-icon i {
    font-size: 16px;
  }
}

/* === MODAL DE DISCOUNT === */
.discount-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.discount-modal.show {
  opacity: 1;
  visibility: visible;
}

.discount-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.discount-modal-content {
  position: relative;
  background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px 30px;
  max-width: 450px;
  width: 90%;
  text-align: center;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(255, 107, 107, 0.1);
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.discount-modal.show .discount-modal-content {
  transform: scale(1);
}

.discount-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 35px;
  height: 35px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #999;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  font-size: 14px;
}

.discount-close:hover {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  transform: scale(1.1);
}

.discount-header {
  margin-bottom: 30px;
}

.discount-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #FF6B6B, #FF5722);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

.discount-icon i {
  color: white;
  font-size: 35px;
}

.discount-header h2 {
  color: white;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 10px;
  line-height: 1.2;
}

.discount-header p {
  color: #CCCCCC;
  font-size: 1rem;
  margin: 0;
}

.discount-form {
  margin-bottom: 25px;
}

.discount-input-group {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 15px;
}

.discount-input-group input {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.05);
  color: white;
  font-size: 16px;
  outline: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.discount-input-group input::placeholder {
  color: #999;
}

.discount-input-group input:focus {
  border-color: #FF6B6B;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 15px rgba(255, 107, 107, 0.2);
}

.discount-submit-btn {
  width: 100%;
  padding: 15px 20px;
  background: linear-gradient(135deg, #007bff, #0056b3);
  border: 2px solid #3399ff;
  border-radius: 50px;
  color: white;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.discount-submit-btn:hover:not(:disabled) {
  background: linear-gradient(135deg, #0056b3, #003d82);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

.discount-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.discount-terms {
  color: #999;
  font-size: 0.85rem;
  margin: 0 0 20px 0;
  line-height: 1.4;
}

.discount-error,
.discount-success {
  padding: 12px 15px;
  border-radius: 8px;
  font-size: 0.9rem;
  margin-top: 15px;
  text-align: center;
}

.discount-error {
  background: rgba(220, 53, 69, 0.2);
  border: 1px solid rgba(220, 53, 69, 0.3);
  color: #FF6B6B;
}

.discount-success {
  background: rgba(40, 167, 69, 0.2);
  border: 1px solid rgba(40, 167, 69, 0.3);
  color: #28A745;
}

.discount-decline {
  background: none;
  border: none;
  color: #999;
  font-size: 0.9rem;
  cursor: pointer;
  transition: color 0.2s ease;
  text-decoration: underline;
  padding: 10px;
}

.discount-decline:hover {
  color: #CCCCCC;
}

/* === RESPONSIVE POUR MOBILE === */
@media screen and (max-width: 768px) {
  .gift-icon {
    top: 150px;
    right: 20px;
    width: 55px;
    height: 55px;
  }
  
  .gift-icon i {
    font-size: 24px;
  }
  
  .discount-modal-content {
    padding: 30px 25px;
    margin: 20px;
    max-width: 100%;
    width: calc(100% - 40px);
  }
  
  .discount-header h2 {
    font-size: 1.5rem;
  }
  
  .discount-icon {
    width: 70px;
    height: 70px;
  }
  
  .discount-icon i {
    font-size: 30px;
  }
  
  .discount-input-group input,
  .discount-submit-btn {
    padding: 14px 18px;
    font-size: 15px;
  }
}

@media screen and (max-width: 480px) {
  .gift-icon {
    top: 120px;
    right: 15px;
    width: 50px;
    height: 50px;
  }
  
  .gift-icon i {
    font-size: 22px;
  }
  
  .discount-modal-content {
    padding: 25px 20px;
    margin: 15px;
    width: calc(100% - 30px);
  }
  
  .discount-header h2 {
    font-size: 1.3rem;
  }
  
  .discount-header p {
    font-size: 0.9rem;
  }
  
  .discount-icon {
    width: 65px;
    height: 65px;
  }
  
  .discount-icon i {
    font-size: 28px;
  }
}