@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background-color: #111827;
  color: #f9fafb;
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.conteneurHeader {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  gap: 0;
  padding: 1rem 0;
}
@media (max-width: 480px) {
  .conteneurHeader {
    padding: 0 2rem;
  }
}

.conteneur, .compte .conteneur, .faq .conteneur {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 480px) {
  .conteneur, .compte .conteneur, .faq .conteneur {
    padding: 0 2rem;
  }
}

.texte-degrade {
  background: linear-gradient(to right, #8b5cf6, #06b6d4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.titre-section, .compte__titre, .faq__titre {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 4rem;
}
@media (max-width: 480px) {
  .titre-section, .compte__titre, .faq__titre {
    font-size: 2rem;
    margin-bottom: 2.5rem;
  }
}

.bouton, .faq__intro .boutons .bouton {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}
.bouton--primaire, .faq__intro .boutons .bouton {
  background: linear-gradient(to right, #8b5cf6, #06b6d4);
  color: white;
}
.bouton--primaire:hover, .faq__intro .boutons .bouton:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}
.bouton--plein {
  width: 100%;
  text-align: center;
}

.etiquette {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: rgba(139, 92, 246, 0.2);
  color: rgb(207.7906976744, 188.6627906977, 251.3372093023);
  border-radius: 9999px;
  font-size: 0.875rem;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}

.entete {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #374151;
}
.entete__contenu {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 0;
  padding: 1rem 0;
  width: 100%;
  justify-content: space-around;
}
@media (max-width: 768px) {
  .entete__contenu {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.logo {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 0.5rem;
}
.logo img {
  height: 100px;
}
.logo__texte {
  font-size: 1.25rem;
  font-weight: 700;
  background: linear-gradient(to right, #8b5cf6, #06b6d4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@media (max-width: 768px) {
  .navigation {
    display: none;
  }
}
.navigation__liste {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 2rem;
}
.navigation__lien {
  position: relative;
  transition: all 0.3s ease;
}
.navigation__lien:hover {
  color: #8b5cf6;
}
.navigation__lien::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, #8b5cf6, #06b6d4);
  transition: all 0.3s ease;
}
.navigation__lien:hover::after {
  width: 100%;
}

.menu-patreon {
  margin: 1rem 0;
  text-align: center;
}
.menu-patreon .btn-patreon {
  display: inline-block;
  background-color: #e85b46;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.3s ease;
}
.menu-patreon .btn-patreon:hover {
  filter: brightness(1.1);
}
.menu-patreon .btn-discord {
  display: inline-block;
  background-color: #5865F2;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.3s ease;
}
.menu-patreon .btn-discord:hover {
  filter: brightness(1.1);
}

.navigation-mobile {
  display: none;
  width: 100%;
  padding: 1rem 0;
  border-top: 1px solid #374151;
}
.navigation-mobile__liste {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  gap: 1rem;
}
.navigation-mobile__lien {
  display: block;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
}
.navigation-mobile__lien:hover {
  color: #8b5cf6;
}
.navigation-mobile.active {
  display: block;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
}
.menu-toggle__barre {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px 0;
  background-color: #f9fafb;
  transition: all 0.3s ease;
}
.menu-toggle.active .menu-toggle__barre:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}
.menu-toggle.active .menu-toggle__barre:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active .menu-toggle__barre:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  text-align: center;
  padding: 6rem 0;
  overflow: hidden;
}
.hero__fond {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.hero__fond img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__superposition {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 23, 42, 0.7);
}
.hero__contenu {
  max-width: 800px;
  margin: 0 auto;
  animation: apparition 1s ease-out;
}
.hero__titre {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.hero__titre span {
  display: block;
}
@media (max-width: 768px) {
  .hero__titre {
    font-size: 2.5rem;
  }
}
@media (max-width: 480px) {
  .hero__titre {
    font-size: 2rem;
  }
}
.hero__description {
  font-size: 1.25rem;
  color: #9ca3af;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 480px) {
  .hero__description {
    font-size: 1rem;
  }
}

.developpeurs {
  padding: 6rem 0;
  background-color: #111827;
  position: relative;
  z-index: 1;
}
.developpeurs::before {
  content: "";
  background-image: url(../img/Craquelure1.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.05;
  position: absolute;
  inset: 0;
  z-index: -1;
}
.developpeurs .titre-section, .developpeurs .compte__titre, .developpeurs .faq__titre {
  text-align: center;
  margin-bottom: 4rem;
}
.developpeurs__grille {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}
@media (max-width: 480px) {
  .developpeurs__grille {
    gap: 2rem;
  }
}

.carte-dev {
  background-color: #1f2937;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
}
.carte-dev:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(139, 92, 246, 0.15);
}
.carte-dev__contenu {
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 480px) {
  .carte-dev__contenu {
    flex-direction: column;
    text-align: center;
  }
}
.carte-dev__image {
  flex-shrink: 0;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(139, 92, 246, 0.4);
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1);
}
.carte-dev__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.carte-dev__info {
  flex: 1;
}
.carte-dev__nom {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: #f9fafb;
}
.carte-dev__role {
  font-size: 1rem;
  font-weight: 600;
  color: #8b5cf6;
  margin-bottom: 0.75rem;
}
.carte-dev__bio {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #9ca3af;
}

.nos-valeurs {
  position: relative;
  background: #1f2937;
  padding: 4rem 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: white;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.nos-valeurs::before {
  content: "";
  background-image: url(../img/Craquelure1.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.05;
  position: absolute;
  inset: 0;
  z-index: -1;
}
.nos-valeurs .conteneur {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1rem;
}
.nos-valeurs .titre-section, .nos-valeurs .compte__titre, .nos-valeurs .faq__titre {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1.5rem;
  font-weight: 700;
  color: white;
}
.nos-valeurs .titre-section .texte-degrade, .nos-valeurs .compte__titre .texte-degrade, .nos-valeurs .faq__titre .texte-degrade {
  background: linear-gradient(to right, #8b5cf6, #06b6d4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.nos-valeurs .nos-valeurs__intro {
  font-size: 1.125rem;
  line-height: 1.7;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  color: white;
}
.nos-valeurs .nos-valeurs__sous-titre {
  font-size: 1.75rem;
  text-align: center;
  margin-bottom: 2rem;
  font-weight: 600;
  color: white;
}
.nos-valeurs .nos-valeurs__liste {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
  justify-items: center;
  align-items: center;
}
@media (max-width: 480px) {
  .nos-valeurs .nos-valeurs__liste {
    flex-wrap: wrap;
  }
}
.nos-valeurs .nos-valeurs__liste li {
  background: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  color: #333;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.nos-valeurs .nos-valeurs__liste li:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.jeux {
  padding: 6rem 0 1rem 0;
  background-color: #111827;
  position: relative;
  z-index: 1;
}
.jeux::before {
  content: "";
  background-image: url(../img/Craquelure2.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.05;
  position: absolute;
  inset: 0;
  z-index: -1;
}
.jeux__liste {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  gap: 6rem;
}

.carte-jeu {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
}
@media (max-width: 768px) {
  .carte-jeu {
    flex-direction: column;
    gap: 2rem;
  }
}
.carte-jeu--inverse {
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .carte-jeu--inverse {
    flex-direction: column;
  }
}
.carte-jeu__image {
  flex: 1;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}
.carte-jeu__image img.main-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.3s ease;
  cursor: zoom-in;
}
.carte-jeu__image img.main-image.zoomed {
  transform: scale(1);
  cursor: zoom-out;
}
.carte-jeu__image .carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(17, 24, 39, 0.4);
  border: none;
  color: white;
  font-size: 1.8rem;
  padding: 0.3rem 0.6rem;
  cursor: pointer;
  z-index: 10;
}
.carte-jeu__image .carousel__arrow--prev {
  left: 0.5rem;
}
.carte-jeu__image .carousel__arrow--next {
  right: 0.5rem;
}
.carte-jeu__image .overlay-description {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.75);
  color: white;
  padding: 1rem;
  font-size: 1rem;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.3s ease;
  pointer-events: none;
}
.carte-jeu__image:hover .overlay-description {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
@media (max-width: 480px) {
  .carte-jeu__image:hover .overlay-description {
    font-size: 8px;
  }
}
.carte-jeu__info {
  flex: 1;
}
.carte-jeu__titre {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.carte-jeu__description {
  color: #9ca3af;
  margin-bottom: 1.5rem;
}
.carte-jeu__ptitlogo {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.carte-jeu__etiquettes {
  margin-bottom: 1.5rem;
}

.ptitlogo {
  width: 150px;
  object-fit: contain;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s ease;
}
.ptitlogo.active {
  border-color: white;
}

@media (max-width: 767px) {
  .jeux {
    padding: 4rem 0 1rem;
  }
  .carte-jeu {
    flex-direction: column !important;
    gap: 1.5rem !important;
    padding: 0 1rem;
  }
  .carte-jeu__image {
    max-height: 200px;
  }
  .carte-jeu__image img.main-image {
    object-position: center top;
  }
  .carte-jeu__image .carousel__arrow {
    font-size: 1.4rem;
    padding: 0.2rem 0.4rem;
  }
  .carte-jeu__info {
    padding-bottom: 1rem;
  }
  .carte-jeu__titre {
    font-size: 1.6rem;
  }
  .carte-jeu__description {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
  .carte-jeu__ptitlogo .ptitlogo {
    width: 40px;
    height: auto;
  }
  .carte-jeu__etiquettes {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    margin-bottom: 1rem;
  }
  .etiquette {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    white-space: nowrap;
  }
  .bouton, .faq__intro .boutons .bouton {
    width: 100%;
    text-align: center;
    padding: 0.6rem 0;
    font-size: 0.9rem;
  }
}
.soutien {
  background-color: #1f2937;
  padding: 4rem 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  position: relative;
  z-index: 1;
  color: white;
}
.soutien::before {
  content: "";
  background-image: url(../img/Craquelure1.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.05;
  position: absolute;
  inset: 0;
  z-index: -1;
}
.soutien .conteneur {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1rem;
}
.soutien__titre {
  font-size: 2.25rem;
  text-align: center;
  margin-bottom: 1rem;
  font-weight: 700;
  color: white;
}
.soutien__titre .texte-degrade {
  background: linear-gradient(to right, #8b5cf6, #06b6d4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.soutien__intro {
  font-size: 1.125rem;
  line-height: 1.6;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
  color: white;
}
.soutien .faq {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.soutien .bloc-faq {
  background: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.soutien .bloc-faq:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.soutien .bloc-faq .titre-faq {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
  color: #1a237e;
}
.soutien .bloc-faq .texte-faq {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
}
.soutien .bloc-faq .liste-soutien {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}
.soutien .bloc-faq .liste-soutien li {
  margin-bottom: 0.5rem;
  padding-left: 1.2rem;
  position: relative;
}
.soutien .bloc-faq .liste-soutien li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #1a237e;
  font-weight: bold;
}
.soutien .bloc-faq .boutons-soutien {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1rem;
}
.soutien .bloc-faq .boutons-soutien .bouton {
  display: inline-block;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  color: #fff;
  transition: background 0.3s ease;
}
.soutien .bloc-faq .boutons-soutien .bouton.soutien-coffee {
  background: #ff813f;
}
.soutien .bloc-faq .boutons-soutien .bouton.soutien-patreon {
  background: #e85b46;
}
.soutien .bloc-faq .boutons-soutien .bouton.soutien-facebook {
  background: #1877f2;
}
.soutien .bloc-faq .boutons-soutien .bouton.soutien-youtube {
  background: #ff0000;
}
.soutien .bloc-faq .boutons-soutien .bouton.soutien-discord {
  background: #5865F2;
}
.soutien .bloc-faq .boutons-soutien .bouton.soutien-X {
  background: #000000;
  color: white;
}
.soutien .bloc-faq .boutons-soutien .bouton:hover {
  filter: brightness(1.1);
}

.faq {
  background-color: #0f172a;
  position: relative;
  z-index: 1;
}
.faq::before {
  content: "";
  background-image: url(../img/Craquelure2.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.05;
  position: absolute;
  inset: 0;
  z-index: -1;
}
.faq__intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  color: #9ca3af;
}
.faq__intro h3 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #f9fafb;
}
.faq__intro p {
  font-size: 1rem;
  line-height: 1.7;
}
.faq__intro .boutons {
  margin-top: 2rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.faq__questions {
  max-width: 900px;
  margin: 0 auto;
  padding-bottom: 20px;
  display: grid;
  gap: 2rem;
  margin-top: 4rem;
}
.faq .faq-item {
  border: 1px solid #374151;
  border-radius: 8px;
  padding: 2rem;
  background-color: #1f2937;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.faq .faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(139, 92, 246, 0.1);
}
.faq .faq-item h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #8b5cf6;
}
.faq .faq-item p {
  font-size: 1rem;
  color: white;
  line-height: 1.6;
}

.compte {
  padding: 6rem 0;
  background-color: #1f2937;
  color: #f9fafb;
  position: relative;
  z-index: 1;
}
.compte::before {
  content: "";
  background-image: url(../img/Craquelure1.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.05;
  position: absolute;
  inset: 0;
  z-index: -1;
}
.compte__titre {
  text-align: center;
  margin-bottom: 2rem;
}
.compte__sous-titre {
  text-align: center;
  font-size: 1.8rem;
  color: #9ca3af;
  margin-bottom: 3rem;
  line-height: 1.8;
}
.compte__sous-titre strong {
  color: #8b5cf6;
}
.compte .faq {
  max-width: 900px;
  background-color: #1f2937;
  margin: 0rem 4rem 0rem 4rem;
  padding: 0px;
}
.compte .faq .bloc-faq {
  margin-bottom: 2.5rem;
}
.compte .faq .bloc-faq .titre-faq {
  font-size: 1.25rem;
  font-weight: 600;
  color: #8b5cf6;
  margin-bottom: 0.5rem;
}
.compte .faq .bloc-faq .texte-faq {
  font-size: 1rem;
  line-height: 1.7;
  color: #f9fafb;
}
.compte__cta {
  text-align: center;
}
.compte__cta .bouton-principal {
  background-color: #8b5cf6;
  color: #fff;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 2rem;
  text-decoration: none;
  transition: background-color 0.3s;
}
.compte__cta .bouton-principal:hover {
  background-color: rgb(104.6046511628, 43.6686046512, 243.3313953488);
}

.pied-page {
  padding: 4rem 0 2rem;
  background-color: #111827;
  border-top: 1px solid #374151;
}
.pied-page__grille {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .pied-page__grille {
    flex-direction: column;
    gap: 3rem;
  }
}
.pied-page__apropos {
  flex: 1;
}
.pied-page__description {
  color: #9ca3af;
  margin-top: 1rem;
  max-width: 300px;
}
.pied-page__liens, .pied-page__social {
  flex: 1;
}
.pied-page__titre {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.pied-page__liste {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  gap: 0.75rem;
}
.pied-page__lien {
  color: #9ca3af;
  transition: all 0.3s ease;
}
.pied-page__lien:hover {
  color: #8b5cf6;
}
.pied-page__contact {
  color: #9ca3af;
  margin-top: 1rem;
}
.pied-page__copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #374151;
  color: #9ca3af;
  font-size: 0.875rem;
}

.icones-social {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.icone-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(249, 250, 251, 0.1);
  color: #9ca3af;
  transition: all 0.3s ease;
}
.icone-social:hover {
  background-color: #8b5cf6;
  color: white;
  transform: translateY(-3px);
}

@keyframes apparition {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.modal__content {
  background: #fff;
  position: relative;
  padding: 2rem;
  border-radius: 12px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  text-align: center;
  animation: fadeIn 0.3s ease;
}

.close-modal {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 1.5rem;
  background: none;
  border: none;
  color: #333;
  cursor: pointer;
  transition: color 0.3s;
}

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

.modal__content h2 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: #222;
}

.modal__content form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal__content input {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}

.modal__content button[type=submit] {
  padding: 0.75rem;
  background: #4f46e5;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.modal__content button[type=submit]:hover {
  background: #4338ca;
}

.switch-mode {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #666;
}

.switch-mode button {
  background: none;
  border: none;
  color: #4f46e5;
  font-weight: bold;
  cursor: pointer;
}

.btn-create-account {
  padding: 0.75rem 1.5rem;
  background: #4f46e5;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-create-account:hover {
  background: #3b32b7;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #e2e8f0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  min-height: 100vh;
}

.presskit-conteneur {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.presskit-entete {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: background-color 0.3s ease;
}
.presskit-entete__contenu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}
.presskit-entete__logo h1 {
  color: #60a5fa;
  font-size: 1.5rem;
  font-weight: 700;
}

.presskit-game-selector select {
  background: rgba(30, 41, 59, 0.8);
  color: #e2e8f0;
  border: 1px solid #475569;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
}

.presskit-hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.presskit-hero__fond {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -2;
}
.presskit-hero__fond img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.presskit-hero__superposition {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(30, 41, 59, 0.6) 100%);
  z-index: -1;
}
.presskit-hero__contenu {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.presskit-hero__titre {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.presskit-hero__titre span:first-child {
  display: block;
  font-size: 1.2rem;
  color: #94a3b8;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.presskit-hero__description {
  font-size: 1.2rem;
  color: #cbd5e1;
  margin-bottom: 2rem;
  line-height: 1.6;
}
.presskit-hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.presskit-texte-degrade {
  background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.presskit-bouton {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}
.presskit-bouton--primaire {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: white;
}
.presskit-bouton--primaire:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(96, 165, 250, 0.3);
}
.presskit-bouton--secondaire {
  background: rgba(30, 41, 59, 0.8);
  color: #e2e8f0;
  border: 1px solid #475569;
}
.presskit-bouton--secondaire:hover {
  background: rgba(51, 65, 85, 0.9);
  transform: translateY(-2px);
}
.presskit-bouton--accent {
  background: linear-gradient(135deg, #a78bfa 0%, #8b5cf6 100%);
  color: white;
}
.presskit-bouton--accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(167, 139, 250, 0.3);
}
.presskit-bouton--small {
  padding: 0.4rem 0.8rem;
  font-size: 0.8rem;
}

.presskit-tabs-section {
  background: rgba(15, 23, 42, 0.9);
  padding: 1rem 0;
  position: sticky;
  top: 80px;
  z-index: 100;
}

.presskit-tabs {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.presskit-tab-btn {
  background: transparent;
  color: #94a3b8;
  border: none;
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.presskit-tab-btn.presskit-active, .presskit-tab-btn:hover {
  color: #60a5fa;
  background: rgba(96, 165, 250, 0.1);
}

.presskit-tab-content {
  display: none;
  padding: 4rem 0;
}
.presskit-tab-content.presskit-active {
  display: block;
}

.presskit-titre-section {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
}

.presskit-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.presskit-info-card {
  background: rgba(30, 41, 59, 0.6);
  border-radius: 12px;
  border: 1px solid rgba(71, 85, 105, 0.3);
  transition: transform 0.3s ease;
  padding: 2rem;
}
.presskit-info-card h3 {
  color: #60a5fa;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}

.presskit-detail-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(71, 85, 105, 0.2);
}
.presskit-detail-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.presskit-label {
  color: #94a3b8;
  font-weight: 500;
}

.presskit-value {
  color: #e2e8f0;
  font-weight: 600;
}

.presskit-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.presskit-etiquette {
  background: rgba(96, 165, 250, 0.2);
  color: #60a5fa;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.presskit-trailer-container {
  margin-bottom: 3rem;
}
.presskit-trailer-container h3 {
  color: #60a5fa;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

.presskit-video-wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  border-radius: 12px;
  overflow: hidden;
}
.presskit-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.presskit-screenshots h3 {
  color: #60a5fa;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

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

.presskit-screenshot-item {
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.presskit-screenshot-item:hover {
  transform: scale(1.05);
}
.presskit-screenshot-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

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

.presskit-asset-card {
  background: rgba(30, 41, 59, 0.6);
  border-radius: 12px;
  border: 1px solid rgba(71, 85, 105, 0.3);
  transition: transform 0.3s ease;
  padding: 2rem;
  text-align: center;
}
.presskit-asset-card:hover {
  transform: translateY(-5px);
}
.presskit-asset-card h3 {
  color: #60a5fa;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}
.presskit-asset-card p {
  color: #cbd5e1;
  margin-bottom: 1.5rem;
}

.presskit-asset-details {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding: 0.75rem;
  background: rgba(15, 23, 42, 0.5);
  border-radius: 8px;
}

.presskit-file-count {
  color: #60a5fa;
  font-weight: 600;
}

.presskit-file-types {
  color: #94a3b8;
  font-size: 0.9rem;
}

.presskit-individual-files {
  margin-top: 4rem;
}
.presskit-individual-files h3 {
  color: #60a5fa;
  font-size: 1.8rem;
  margin-bottom: 2rem;
  text-align: center;
}

.presskit-file-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.presskit-file-category {
  background: rgba(30, 41, 59, 0.4);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(71, 85, 105, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

h4 {
  color: #a78bfa;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  text-transform: capitalize;
}

.presskit-file-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.presskit-file-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem;
  background: rgba(15, 23, 42, 0.3);
  border-radius: 6px;
}

.presskit-file-name {
  color: #e2e8f0;
  font-size: 0.9rem;
}
.presskit-file-name--truncate {
  display: inline-block;
  max-width: 200px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: middle;
}

.presskit-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.presskit-contact-card {
  background: rgba(30, 41, 59, 0.6);
  border-radius: 12px;
  border: 1px solid rgba(71, 85, 105, 0.3);
  transition: transform 0.3s ease;
  padding: 2rem;
  text-align: center;
}
.presskit-contact-card h3 {
  color: #60a5fa;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}
.presskit-contact-card p {
  color: #cbd5e1;
  margin-bottom: 0.5rem;
}

.presskit-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.presskit-modal-content {
  background: rgba(30, 41, 59, 0.95);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid rgba(71, 85, 105, 0.3);
  text-align: center;
  max-width: 400px;
  width: 90%;
}
.presskit-modal-content h3 {
  color: #60a5fa;
  margin-bottom: 1.5rem;
}

.presskit-progress-bar {
  width: 100%;
  height: 8px;
  background: rgba(71, 85, 105, 0.3);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.presskit-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
  width: 0%;
  transition: width 0.3s ease;
}

#presskit-downloadStatus {
  color: #cbd5e1;
  font-size: 0.9rem;
}

.presskit-lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1500;
  align-items: center;
  justify-content: center;
}
.presskit-lightbox.presskit-active {
  display: flex;
}
.presskit-lightbox img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

.presskit-lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .presskit-hero__titre {
    font-size: 2.5rem;
  }
  .presskit-hero__actions {
    flex-direction: column;
    align-items: center;
  }
  .presskit-tabs {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .presskit-tab-btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
  .presskit-info-grid {
    grid-template-columns: 1fr;
  }
  .presskit-assets-grid {
    grid-template-columns: 1fr;
  }
  .presskit-file-categories {
    grid-template-columns: 1fr;
  }
}
.animLiens {
  color: #60a5fa;
  text-decoration: none;
}
.animLiens:hover {
  color: rgb(11.1512195122, 99.1219512195, 242.8487804878);
}

/*# sourceMappingURL=style.css.map */
