/*=============== SCREENSHOTS AVIS ===============*/
.testimonials__section {
  margin-bottom: 3rem;
}

.testimonials__section:last-child {
  margin-bottom: 0;
}

.testimonials__section-title {
  font-size: 1.5rem;
  color: var(--title-color);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--border-color);
}

.testimonials__screenshots {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.screenshot-avis {
  width: 100%;
  border-radius: 0.75rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: zoom-in;
}

.screenshot-avis:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Lightbox pour zoom */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 50px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.95);
  cursor: zoom-out;
}

.lightbox__content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 85vh;
  object-fit: contain;
  animation: zoom 0.3s;
}

@keyframes zoom {
  from {transform: scale(0.8); opacity: 0;}
  to {transform: scale(1); opacity: 1;}
}

.lightbox__close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
}

.lightbox__close:hover,
.lightbox__close:focus {
  color: var(--first-color);
}

.lightbox__caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
}

@media screen and (max-width: 768px) {
  .testimonials__screenshots {
    grid-template-columns: 1fr;
  }
}

/*=============== PARRAINAGE BANNER ===============*/
.parrainage-banner {
  background: var(--koro-beige-light);
}

.banner__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.5rem;
  background: var(--card-color);
  border-radius: 1.5rem;
  border: 2px solid rgba(201, 162, 39, 0.2);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.banner__content--left {
  justify-content: flex-start;
  text-align: left;
}

.banner__icon {
  font-size: 3rem;
  flex-shrink: 0;
}

.banner__text {
  flex: 1;
}

.banner__text h3 {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
  color: var(--title-color);
}

.banner__text p {
  color: var(--text-color);
  line-height: 1.7;
  margin: 0;
}

.banner__content .btn {
  flex-shrink: 0;
}

@media screen and (max-width: 768px) {
  .banner__content {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
  }
  
  .banner__content--left {
    align-items: center;
    text-align: center;
  }
  
  .banner__text h3 {
    font-size: 1.5rem;
  }
}

/*=============== PRIX EXCLUSIF SCRIPT ===============*/
.script__price--exclusive {
  background: linear-gradient(135deg, rgba(212, 165, 116, 0.1) 0%, rgba(204, 193, 174, 0.1) 100%);
  border: 1px solid rgba(212, 165, 116, 0.3);
  border-radius: 0.75rem;
  padding: 1rem;
}

.price__exclusive {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2d2417;
}

/*=============== GAMES LOGOS ===============*/
.feature--games {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.games-logos {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: 0.5rem;
}

.game-logo {
  height: 32px;
  width: auto;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.game-logo:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/*=============== DISCORD CENTERED CONTACT ===============*/
.contact__content--discord-centered {
  display: flex;
  justify-content: center;
  align-items: center;
}

.discord-main-card {
  background: var(--card-color);
  border: 2px solid var(--border-color);
  border-radius: 2rem;
  padding: 3rem;
  max-width: 900px;
  width: 100%;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.discord-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.discord-header__icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.discord-header__title {
  font-size: 2rem;
  color: var(--title-color);
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.discord-header__subtitle {
  color: var(--text-color-light);
  font-size: 1.1rem;
}

.discord-body {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 3rem;
  align-items: start;
}

.discord-widget-container {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.discord-widget-container iframe {
  border-radius: 1rem;
}

.discord-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.discord-username-box {
  background: linear-gradient(180deg, #e3ddd0 0%, #ccc1ae 100%);
  padding: 1.5rem;
  border-radius: 1rem;
  text-align: center;
  border: 2px solid #d4a574;
}

.discord-label {
  display: block;
  font-size: 0.95rem;
  color: #6b5d47;
  margin-bottom: 0.5rem;
}

.discord-username {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: #2d2417;
  font-family: 'Poppins', sans-serif;
}

.discord-lives-box {
  background: linear-gradient(135deg, rgba(244, 196, 48, 0.08) 0%, rgba(212, 165, 116, 0.08) 100%);
  padding: 2rem;
  border-radius: 1rem;
  border: 2px solid rgba(244, 196, 48, 0.3);
}

.lives-title {
  font-size: 1.5rem;
  color: #2d2417;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
}

.lives-description {
  color: #4a3f2e;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.lives-benefits {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.lives-benefits li {
  padding: 0.75rem 0;
  color: #4a3f2e;
  line-height: 1.6;
  border-bottom: 1px solid rgba(168, 154, 131, 0.25);
}

.lives-benefits li:last-child {
  border-bottom: none;
}


@media screen and (max-width: 968px) {
  .discord-body {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .discord-widget-container {
    margin: 0 auto;
  }
  
  .discord-main-card {
    padding: 2rem 1.5rem;
  }
}

@media screen and (max-width: 480px) {
  .discord-widget-container iframe {
    width: 100%;
    max-width: 350px;
  }
  
  .games-logos {
    flex-wrap: wrap;
  }
  
  .game-logo {
    height: 28px;
  }
  
  .discord-username {
    font-size: 1.5rem;
  }
  
  .lives-title {
    font-size: 1.25rem;
  }
}

