@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

:root {
  --bg-principal: rgb(30, 30, 30);
  --bg-seconde: rgb(42, 42, 42);
  --texte-normal: rgb(254, 254, 254);
  --texte-seconde: rgb(204, 204, 204);
  --blanc-pur: rgb(255, 255, 255);
  --noir-pur: rgb(0, 0, 0);

  --rouge-principal: rgb(192, 41, 66);
  --rouge-sombre: rgb(160, 30, 53);
  --accent-jaune: rgb(255, 209, 102);
  --accent-jaune-seconde: rgba(255, 209, 102, 0.6);
  --erreur: rgb(255, 0, 0);
  --ombre: rgba(255, 209, 102, 0.302);
  --ombre-soft: rgba(255, 209, 102, 0.2);
  --color-terminal: rgb(0, 255, 0);
  --color-glow: #00ff00;
  --erreur-light: #ff4d4d;
  --noir-pur-op-70: rgba(0, 0, 0, 0.7);

  --titre: 'Bebas Neue', sans-serif;
  --classique: 'Roboto', sans-serif;
  --code: 'Courier New', monospace;
  --taille: 60px;
}

* {
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg-principal);
  font-family: var(--classique);
  color: var(--texte-normal);
}

header {
  padding: 50px 10%;
  background-color: var(--rouge-principal);
  box-shadow: 0 8px 20px var(--noir-pur-op-70);
  position: relative;
  z-index: 10;
}

.menu {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  list-style: none;
  padding: 0;
}

.item-menu {
  position: relative;
}

.menu li a {
  color: var(--texte-normal);
  font-family: var(--titre);
  font-size: var(--taille);
  text-decoration: none;
  text-transform: uppercase;
  padding: .4rem .8rem;
  transition: .3s;
  position: relative;
}

.menu li a:hover {
  color: var(--accent-jaune);
  text-shadow: -1px -1px 0 var(--rouge-principal), 2px 2px 4px var(--noir-pur);
  transform: rotate(-1deg) scale(1.03);
}

.menu li a.color {
  color: var(--accent-jaune);
  background-color: var(--rouge-principal);
  padding: .4rem .8rem;
  border-radius: 6px;
  box-shadow: 0 0 10px var(--accent-jaune), 0 0 5px var(--bg-principal);
  text-shadow: 1px 1px 0 var(--bg-principal);
}

/* SM */

.enfant {
  position: relative;
}

.sousmenu {
  position: absolute;
  top: 100%;
  left: 0;
  transform: none;
  background: var(--rouge-principal);
  border: 2px solid var(--rouge-principal);
  border-top: none; 
  border-radius: 0 0 8px 8px;
  min-width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  transform: translateY(-10%);
}

.enfant:hover .sousmenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0%);
}

.sousmenu li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sousmenu a {
  display: block;
  padding: .5rem 1rem;
  color: var(--accent-jaune);
  font-family: var(--classique);
  font-weight: bold;
  text-decoration: none;
  text-align: left;
  transition: .3s;
  white-space: nowrap;
}

.sousmenu a:hover {
  background-color: var(--rouge-principal);
  color: var(--blanc-pur);
  padding-left: 1.6rem;
  border-left: 4px solid var(--accent-jaune);
  box-shadow: 4px 0 10px var(--ombre-soft);
  transform: scale(1.02);
}

.sousmenu a.SM {
  background-color: var(--accent-jaune);
  color: var(--bg-principal);
  font-weight: bolder;
  border-left: 4px solid var(--rouge-principal);
}

/* cinemaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa */

.cinema {
  height: 90vh;
  background: url(../images/cinema.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--titre);
  font-size: 100px;
  color: var(--texte-normal);
  z-index: 11;
}

.cinema h1 {
  padding: 20px;
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 5px var(--noir-pur-op-70);
}

/* introoooooooooooooooooooooooooo */

.livre {
  background-color: var(--bg-principal);
  padding: 5rem 10%;
  position: relative;
  box-shadow: 0 -8px 20px var(--noir-pur-op-70);
}

.rapport {
  background-color: var(--bg-seconde);
  padding: 2rem;
  border: 2px dashed var(--rouge-principal);
  border-radius: 8px;
  margin-bottom: 4rem;
  box-shadow: 0 0 20px var(--ombre);
  color: var(--texte-normal);
}

.Fujimoto {
  font-family: var(--titre);
  font-size: 2.4rem;
  color: var(--accent-jaune);
  margin-bottom: 1rem;
  text-shadow: 0 0 5px var(--rouge-principal);
  text-transform: uppercase;
}

.intro {
  font-style: italic;
  margin-bottom: 2rem;
  color: var(--texte-seconde);
}

.NS {
  background-color: var(--rouge-sombre);
  color: var(--texte-normal);
  padding: .2rem .6rem;
  border-radius: 4px;
  font-size: .85rem;
  font-weight: bold;
  box-shadow: 0 0 4px red;
}

.blabla p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.blabla ul {
  padding-left: 1.5rem;
}

.blabla li {
  margin-bottom: .8rem;
  color: var(--accent-jaune);
  font-size: 1rem;
}

/*llivreeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee*/

.tome {
  margin-top: 60px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 0 20px;
}

.tome a {
  display: block;
  max-width: 240px;
  transition: .4s;
}

.tome img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border: 2px solid var(--accent-jaune);
  border-radius: 8px;
  box-shadow: 0 0 10px var(--accent-jaune);
}

.tome a:hover {
  transform: scale(1.05) rotate(-1deg);
  filter: brightness(1.1) contrast(1.1);
  z-index: 10;
}


/*footeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeerrrrrrrrrrrrr*/

.pied {
  background-color: var(--bg-principal);
  color: var(--texte-normal);
  font-family: var(--code);
  padding: 48px 10%;
  box-shadow: 0 -8px 20px var(--noir-pur-op-70);
  position: relative;
}

.chaussette {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.chaussures i {
  transition: .5s;
}

.chaussures i:hover {
  color: var(--rouge-principal);
}

.chaussures {
  width: 25vw;
}

.chaussures h3 {
  color: var(--accent-jaune);
  font-size: 25px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--accent-jaune);
  padding-bottom: 6px;
}

.chaussures p {
  margin: 6px 0;
  font-size: 20px;
}

.RS {
  display: flex;
}

.RS a {
  color: var(--accent-jaune);
  font-size: 30px;
  margin-right: 18px;
  transition: .5s;
}

.RS a:hover {
  transform: scale(1.5) rotate(10deg);
  color: var(--blanc-pur);
}

.bouuu {
  text-align: center;
  color: var(--rouge-principal);
  font-style: italic;
  margin-top: 48px;
  font-size: 14.4px;
  opacity: .8;
}
  
.carte {
  margin-top: 8px;
  border: 2px solid var(--accent-jaune);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 10px var(--ombre);
}

.carte iframe {
  display: block;
  border: none;
}

.texte {
  font-size: 14px;
  margin-bottom: 10px;
  color: var(--accent-jaune);
  font-style: italic;
  text-align: center;
}

.RS {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 10px 0;
  background-color: rgba(255, 209, 102, 0.05);
  border-radius: 8px;
  border: 1px dashed var(--accent-jaune);
}



.slogan {
  text-align: center;
  color: var(--rouge-principal);
  font-style: italic;
  font-size: 13px;
  margin-top: 12px;
  opacity: .8;
}

/*persooooooooooooooooooooooooooooooooooooooo */

.oeil {
  background: url(../images/makima\ fond.png) no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  padding: 6rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 75vh;
  position: relative;
}

.avertissement {
  background: linear-gradient(135deg, rgba(30, 30, 30, 0.8), rgba(42, 0, 0, 0.8));
  color: var(--accent-jaune);
  padding: 4rem 8%;
  border: 3px double var(--rouge-principal);
  border-radius: 12px;
  box-shadow: 0 0 25px var(--rouge-principal), 0 0 60px var(--erreur-opacity20);
  font-family: var(--titre);
  text-align: center;
  max-width: 900px;
  margin: 4rem auto;
}

.avertissement h2 {
  font-size: 2.8rem;
  color: var(--erreur-light);
  margin-bottom: 1rem;
  text-shadow: 0 0 5px var(--rouge-principal);
}

.avertissement .intro, .avertissement .msg {
  font-size: 1.2rem;
  margin-top: 1rem;
  font-style: italic;
  opacity: 0.85;
}

.avertissement ul {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  font-size: 1.1rem;
  text-align: left;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.avertissement li {
  margin: 0.5rem 0;
}

.alors {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
  padding: 2rem;
  background: radial-gradient(circle at center, var(--bg-seconde), var(--bg-principal));
  border: 2px dashed var(--accent-jaune);
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(192, 41, 66, 0.6);
}

.choix {
  padding: 1.2rem 2.5rem;
  background-color: var(--rouge-principal);
  color: var(--blanc-pur);
  font-size: 1.2rem;
  font-family: var(--titre);
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 0 12px var(--accent-jaune-seconde);
  transition: .3s;
}

.choix:hover {
  transform: scale(1.05) rotate(-1deg);
  box-shadow: 0 0 20px var(--accent-jaune);
  background-color: var(--rouge-sombre);
}

/*huamainnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn et demon */

.personnages {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 4rem 10%;
}

.info {
  background-color: var(--bg-principal);
  border: 2px solid var(--accent-jaune);
  border-radius: 8px;
  width: 240px;
  padding: 1rem;
  text-align: center;
  transition: .3s;
}

.info:hover {
  transform: scale(1.05) rotate(-1deg);
  box-shadow: 0 0 10px var(--accent-jaune);
}

.info img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 0.5rem;
}

/*histoirrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrre */

.histoire {
  color: var(--texte-normal);
  padding: 4rem 10%;
  font-family: var(--classique);
  background-color: #121212;
  color: var(--texte-normal);
  padding: 4rem 10%;
  font-family: var(--classique);
  }


.titre {
  font-family: var(--titre);
  font-size: 2.2rem;
  text-align: center;
  color: var(--accent-jaune);
  text-shadow: 0 0 5px var(--rouge-principal);
}

.prelude {
  text-align: center;
  font-style: italic;
  color: var(--texte-seconde);
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.synopsis, .wouah, .chapitres {
  margin-top: 3rem;
  background: var(--bg-seconde);
  padding: 2rem;
  border-left: 4px solid var(--rouge-principal);
  border-radius: 6px;
  box-shadow: 0 0 12px var(--ombre);
}

.synopsis h3, .wouah h3, .chapitres h3 {
  font-family: var(--titre);
  color: var(--accent-jaune);
  margin-bottom: 1rem;
  font-size: 1.6rem;
}

.wouah ul {
  list-style-type: none;
  padding-left: 0;
}

.wouah li {
  margin-bottom: 1rem;
  font-size: 1rem;
}

.icon {
  margin-right: 0.5rem;
}

.fiche {
  margin-bottom: 2.5rem;
  background-color: var(--bg-principal);
  padding: 1.2rem;
  border: 1px dashed var(--accent-jaune);
  border-radius: 6px;
}

.fiche.special {
  border: 2px dashed var(--rouge-principal);
  background-color: var(--noir-pur);
  box-shadow: 0 0 15px var(--erreur);
}

.fiche h4 {
  color: var(--accent-jaune);
  font-size: 1.3rem;
  margin-bottom: .8rem;
}

.fiche p {
  font-size: .95rem;
}

.glitch {
  color: var(--accent-jaune);
  font-weight: bold;
  text-shadow: 0 0 4px var(--erreur), 0 0 7px var(--accent-jaune);
}

.erreur {
  font-family: var(--code);
  background: var(--noir-pur);
  padding: 1rem;
  color: var(--color-terminal);
  border: 1px solid var(--color-glow);
  margin-top: 1rem;
  border-radius: 6px;
  box-shadow: 0 0 10px var(--color-glow);
}

.bug {
  color: var(--erreur);
  font-weight: bold;
}

.archives {
  text-align: center;
  margin-top: 3rem;
}

.devil {
  display: inline-block;
  margin: .5rem;
  padding: .8rem 1.5rem;
  background-color: var(--rouge-principal);
  color: var(--blanc-pur);
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 0 10px var(--accent-jaune-seconde);
  transition: .3s;
}

.devil:hover {
  background-color: var(--rouge-sombre);
  transform: scale(1.05);
}

/*galerieeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee*/

 .dossier {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  padding: 4rem 8%;
  background-color: #0f0f0f;
}

.archive {
  position: relative;
  width: 500px;
  height: 300px;
  border: 2px dashed var(--rouge-principal);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 10px var(--ombre);
  transition: .3s;
  background-color: var(--bg-principal);
}

.archive::before {
  content: "⚠️ SPOILER";
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: var(--rouge-sombre);
  color: var(--texte-normal);
  font-family: var(--code);
  font-weight: bold;
  padding: .2rem .6rem;
  border-radius: 4px;
  box-shadow: 0 0 6px red;
  font-size: .85rem;
  z-index: 2;
}

.archive img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: .3s;
  filter: blur(25px);
}

.archive:hover img {
  filter: blur(0);
}

.archive:hover {
  transform: scale(1.04) rotate(-1deg);
  z-index: 10;
}

.dublabla {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(30, 30, 30, 0.9);
  color: var(--accent-jaune);
  padding: 1rem;
  font-family: var(--code);
  transform: translateY(100%);
  transition: .4s;
}

.archive:hover .dublabla {
  transform: translateY(0%);
}

.note {
  display: inline-block;
  margin-top: 1rem;
  padding: .2rem .6rem;
  background-color: var(--rouge-sombre);
  color: var(--texte-normal);
  font-weight: bold;
  font-size: .85rem;
  border-radius: 4px;
  box-shadow: 0 0 6px red;
}

/*videoooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo*/

.salle {
  padding: 5rem 10%;
  background-color: var(--bg-principal);
  text-align: center;
  color: var(--texte-normal);
  background-color: #0a0a0a;
}

.salle h2 {
  font-family: var(--titre);
  font-size: 2.5rem;
  color: var(--accent-jaune);
  margin-bottom: 2rem;
  text-shadow: 0 0 8px var(--rouge-principal);
}

.video {
  position: relative;
  padding-bottom: 56.25%; 
  border: 2px dashed var(--rouge-principal);
  border-radius: 12px;
  box-shadow: 0 0 25px var(--ombre);
  overflow: hidden;
}

.video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.petitphrase {
  margin-top: 1.5rem;
  font-size: 1rem;
  font-style: italic;
  color: var(--texte-seconde);
}

/*universeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee*/

.jsp {
  display: flex;
  flex-wrap: wrap;
  background-color: var(--bg-principal);
  padding: 4rem 10%;
  font-family: var(--classique);
  color: var(--texte-normal);
}

.univers {
  background: linear-gradient(145deg, #1c1c1c, #2a2a2a);
  border: 2px dashed var(--accent-jaune);
  border-radius: 10px;
  padding: 2rem;
  margin: 2rem auto;
  max-width: 700px;
  box-shadow: 0 0 20px rgba(255, 209, 102, 0.2);
  position: relative;
}

.univers h2 {
  font-family: var(--titre);
  color: var(--accent-jaune);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.univers .code {
  font-family: var(--code);
  color: var(--texte-seconde);
  font-size: .85rem;
  margin-bottom: 1.5rem;
}

.univers .description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.univers .donne p {
  font-size: .95rem;
  margin: .4rem 0;
  color: var(--texte-seconde);
}

.classification {
  margin-top: 1rem;
  padding: .3rem .8rem;
  background-color: var(--rouge-principal);
  color: var(--texte-normal);
  font-weight: bold;
  font-size: .85rem;
  border-radius: 4px;
  box-shadow: 0 0 6px var(--rouge-principal);
  font-family: var(--code);
  position: absolute;
  top: 1rem;
  right: 1rem;
}

/*contacttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttt*/

.contact {
  background-color: var(--bg-principal);
  padding: 4rem 10%;
  font-family: var(--classique);
  color: var(--texte-normal);
}

.encours {
  background-color: var(--bg-seconde);
  padding: 4rem 3rem;
  border: 2px dashed var(--rouge-principal);
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 0 20px var(--ombre);
  font-family: var(--classique);
}

.encours h2 {
  color: var(--accent-jaune);
  font-family: var(--titre);
  font-size: 2rem;
  margin-bottom: 1rem;
  text-shadow: 0 0 6px var(--rouge-principal);
}

.encours .code {
  font-style: italic;
  color: var(--texte-seconde);
  margin-bottom: 2rem;
}

.encours .message {
  font-size: 1.1rem;
  color: var(--texte-normal);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.decoration {
  font-family: var(--code);
  font-size: 1.2rem;
  color: var(--rouge-sombre);
  background-color: var(--bg-principal);
  padding: 1rem;
  margin: 2rem 0;
  border: 2px dashed var(--rouge-sombre);
  text-transform: uppercase;
  box-shadow: 0 0 10px var(--rouge-sombre);
}

.encours .etat {
  margin-top: 1rem;
  padding: .3rem .8rem;
  background-color: var(--rouge-sombre);
  color: var(--texte-normal);
  font-weight: bold;
  font-size: .85rem;
  border-radius: 4px;
  box-shadow: 0 0 6px var(--rouge-principal);
  display: inline-block;
}

.tableau {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
  box-shadow: 0 0 10px var(--ombre);
  border: 2px dashed var(--accent-jaune);
  border-radius: 10px;
  overflow: hidden;
}

.tableau th, .tableau td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--texte-seconde);
}

.tableau th {
  background-color: var(--rouge-sombre);
  color: var(--texte-normal);
  font-family: var(--titre);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.tableau td {
  background-color: var(--bg-seconde);
  color: var(--texte-normal);
}

.tableau tr:hover td {
  background-color: #2f2f2f;
}
