/*fonts start*/
.iceberg-regular {
  font-family: "Iceberg", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.share-tech-regular {
  font-family: "Share Tech", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.share-tech-mono-regular {
  font-family: "Share Tech Mono", monospace;
  font-weight: 400;
  font-style: normal;
}
.audiowide-regular {
  font-family: "Audiowide", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/*fonts end*/

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-family: "Share Tech", sans-serif;
  height: 100%;
}

body {
  background: url(img/bg_desktop.png) no-repeat center center / cover;
  background-attachment: fixed;
  background-color: black;

  margin: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
}

main {
  margin-top: 110px;
  margin-left: 3rem; margin-right: 3rem;
  flex: 1;
}

@media screen and (max-width: 768px) {
  body {
    background: url(img/bg_mobile.jpg) no-repeat center center / cover;
    background-attachment: fixed;
    background-color: black;
  }

  main {
    margin-left: 1rem; margin-right: 1rem;
  }
}

/*menu start*/
header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  position: fixed;
  z-index: 1000;
  top: 0;
  margin: 1rem auto 0 auto;
  padding: 0 2.4rem 0 1rem; 
  box-sizing: border-box;
  width: 100%;
}

.headLogo {
  height: 90px;
}

nav {
  font-family: "Iceberg", sans-serif;
  font-size: 1.15rem;
  font-weight: 500;
  justify-self: flex-end;
  align-self: center;

  transition: 0.3s ease;
}

nav ul {
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 0;
}

nav a {
  color: white;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  text-decoration: none;
  display: inline-block;
  padding: 10px 25px;
  transform: skewX(-25deg);
  border-bottom: 0.4rem solid rgba(255, 255, 255, 1);
  border-right: 0.4rem solid rgba(255, 255, 255, 1);
}
nav a:hover {
  border-bottom: 0.4rem solid rgb(0, 221, 192);
  border-right: 0.4rem solid rgb(0, 221, 192);
}

nav span {
  display: block; 
  transform: skew(25deg);
  color: white;
  font-size: 1.1rem;
}

.activePage {
  border-bottom: 0.4rem solid rgb(253, 213, 62); 
  border-right: 0.4rem solid rgb(253, 213, 62);
}

.activeMenu {
  color: rgb(253, 213, 62);
  
}

.menuToggle {
  display: none;

  height: 47px;
  width: 60px;

  background: rgba(0, 0, 0, 0);

  border: none;

  transform: skewX(-25deg);

  border-bottom: 0.4rem solid rgba(255, 255, 255);
  border-right: 0.4rem solid rgba(255, 255, 255);

  cursor: pointer;

  align-self: center;

  justify-content: center;
  align-items: center;

  flex-direction: column;

  gap: 6px;

  transition: 0.25s;
}

.menuToggle span {
  width: 25px;
  height: 2px;

  background: white;

  display: block;

  transition: 0.3s ease;

  transform-origin: center;
}

.menuToggle.active span:nth-child(1) {
  transform:
    rotate(45deg)
    translate(6px, 6px);
}

.menuToggle.active span:nth-child(2) {
  opacity: 0;
}

.menuToggle.active span:nth-child(3) {
  transform:
    rotate(-45deg)
    translate(6px, -6px);
}

@media screen and (max-width: 768px) {

  .headLogo {
    height: 80px;
  }

  .menuToggle {
    display: flex;
  }

  nav {
    position: absolute;

    top: 70px;
    right: 25px;

    padding: 1rem;

    opacity: 0;
    visibility: hidden;

    transform: translateY(-10px);

    pointer-events: none;

    transition:
      opacity 0.3s ease,
      transform 0.3s ease,
      visibility 0.3s;
  }

  nav.open {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);

    pointer-events: auto;
  }

  nav ul {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-end;
  }

  nav li {
  display: flex;
  justify-content: flex-end;
}

  nav a {
    min-width: 120px;
    text-align: center;
  }
}
/*menu end*/



/*footer start*/
footer {
  background: rgba(0, 0, 0, 0.85);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: white;
}

.socials {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  color: white;
}

.socials div {
  font-family: "Iceberg", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
}

.socialsRow {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: nowrap;
  gap: 1rem;
}

.socialsRow a {
  color: white;
  text-decoration: none;
  font-size: 1.25rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.socialsRow a:hover {
  transform: translateY(-3px);
}
.steam:hover {
  background: linear-gradient(180deg, rgb(20, 76, 127), rgb(102, 192, 244));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.itchio:hover {
  color: rgba(250, 92, 91);
}
.discord:hover {
  color: rgba(88, 101, 242);
}
.youtube:hover {
  color: rgba(255, 0, 1);
}
.instagram:hover {
  color: rgba(255, 0, 127);
  background: linear-gradient(180deg, rgb(81, 91, 212), rgb(129, 52, 175), rgb(221, 42, 123), rgb(254, 218, 119), rgb(245, 133, 41));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.tiktok:hover {
  background: linear-gradient(45deg, rgb(37, 244, 238), rgb(254, 44, 85));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.twitter:hover {
  color: rgb(170, 170, 170);
}

.legalitiesRow {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  color: white;
}
.legalitiesRow a {
  font-family: "Audiowide", sans-serif;
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  
}
.mLeg:hover {
  color: rgb(253, 213, 62);
  text-shadow: 0px 0px 20px rgba(253, 212, 62, 0.6);
}
.pConf:hover {
  color: rgb(212, 155, 252);
  text-shadow: 0px 0px 20px rgba(212, 155, 252, 0.6);
}
.nCont:hover {
  color: rgb(0, 221, 192);
  text-shadow: 0px 0px 20px rgba(0, 221, 192, 0.6);
}

footer hr {
  width: 100%;
}
/*footer end*/

@media (max-width: 768px) {
  .imgGame {
    width: 360px;
  }

  .imgStars {
    width: 360px;
  }
}

/*page Jeu*/
.gamePitch { 
  display: flex; 
  flex-direction: column; 
  align-items: center;
  gap: 1rem;
}

.imgGame {
  max-width: 540px;
}

.pitchTitle { 
  color: white; 
  font-family: "Iceberg", sans-serif; 
  font-style: italic; 
  font-weight: 900; 
  font-size: 2.3rem; 
  text-align: center; 
  text-shadow: 0px 7px 10px black; 
} 

.pitchBox { 
  background: rgba(0, 0, 0, 0.7);
  margin: 1rem 0; 
  padding: 3rem; 
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  gap: 3rem;
  box-shadow: 0px 0px 40px rgba(255, 255, 255, 0.4);
}

@media screen and (max-width: 768px) {
  .pitchBox {
    padding: 1.5rem;
  }
}

.pitchText { 
  color: white; 
  text-align: center; 
  font-weight: 600; 
  max-width: 920px; 
} 

.pitchText span1 { 
  font-family: "Audiowide", sans-serif; 
  font-weight: 400; 
  font-size: 1.1rem; 
  text-shadow: 0px 0px 10px rgb(212, 155, 252); 
} 

.pitchText span2 { 
  font-family: "Iceberg", sans-serif; 
  font-weight: 700; 
  font-size: 1.5rem; 
  text-shadow: 0px 0px 20px rgb(0, 221, 192); 
} 

.pitchVid { 
  border: 1px solid rgba(255, 255, 255, 0); 
  position: relative; 
  z-index: 1; 
  width: 100%; 
  max-width: 800px; 
  aspect-ratio: 16 / 9; 
} 

.pitchVid:hover { 
  border: 1px solid white; 
  box-shadow: 0px 0px 40px rgb(255, 255, 255, 0.4); 
} 

.pitchVid iframe { 
  position: absolute; 
  top: 0; 
  left: 0; 
  width: 100%; 
  height: 100%; 
}

.itchiSteam {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.itchiSteam div {
  color: white;
  text-align: center;
  font-size: 1.75rem;
  font-style: italic;
  font-weight: 600;
  text-shadow: 2.8px 2.8px 0 black;
}

.btnCTO {
    font-family: "Audiowide", sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
  color: white;
  background: rgba(0, 0, 0, 0.7);
  text-decoration: none;
  display: inline-block;
  margin: 1rem 0 1rem 0;
  padding: 12px 32px;
  border-top : 0.8rem solid rgba(212, 155, 252, 0.7);
  border-bottom: 0.8rem solid rgba(212, 155, 252, 0.7);
  border-left: 1rem solid rgba(212, 155, 252, 0.7);
  border-right: 1rem solid rgba(212, 155, 252, 0.7);
}
.btnCTO:hover {
  color: rgb(212, 155, 252);
  border-top: 0.8rem solid rgb(212, 155, 252);
  border-bottom: 0.8rem solid rgb(212, 155, 252);
  border-left: 1rem solid rgb(212, 155, 252);
  border-right: 1rem solid rgb(212, 155, 252);
  box-shadow: 0px 0px 30px rgb(212, 155, 252);
}

.gameFeature {
  margin: 3rem 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
}

.featureBox {
  background: rgba(0, 0, 0);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem;
  flex: 1 1 300px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}
.featureBox:hover {
  transform: translateY(-6px);
}

.featureBox video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) brightness(0.5);
  transition: filter 0.4s ease;
  z-index: 0;
}
.featureBox:hover video {
  filter: grayscale(0%) brightness(1) contrast(1);
}
.featureBox > *:not(video) {
  position: relative;
  z-index: 1;
}
.featureBox::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.3) 30%,
    rgba(0, 0, 0, 0) 50%,
    rgba(0, 0, 0, 0.3) 70%,
    rgba(0, 0, 0, 1) 100%
  );
  z-index: 0;
}

.featureTitle {
  font-family: "Audiowide", sans-serif;
  font-weight: 600;
  font-size: 1.8rem;
  text-align: center;
}

.featureSubtitle {
  font-family: "Iceberg", sans-serif;
  font-style: italic;
  font-weight: 600;
  font-size: 1.4rem;
  text-align: end;
  text-shadow: 2.5px 2.5px black;
}

.featureText {
  font-weight: 900;
  align-self: flex-end;
  
  margin: 2rem 4rem 2rem 0;
  text-shadow: 2.2px 2.2px 0px black;
}

.fBox01 {
  border: 0.25rem solid rgb(253, 213, 62, 0.5);
  border-bottom : 2rem solid rgb(253, 213, 62, 0.5);
}
.fBox01:hover {
  border: 0.25rem solid rgb(253, 213, 62);
  border-bottom : 2rem solid rgb(253, 213, 62);
  box-shadow: 0px 0px 30px rgb(253, 213, 62);
}
.fBox01 .featureTitle {
  color: rgb(253, 213, 62);
}
.fBox01 .featureSubtitle {
  color: rgb(253, 213, 62);
}

.fBox02 {
  border: 0.25rem solid rgb(212, 155, 252, 0.5);
  border-bottom : 2rem solid rgb(212, 155, 252, 0.5);
}
.fBox02:hover {
  border: 0.25rem solid rgb(212, 155, 252);
  border-bottom : 2rem solid rgb(212, 155, 252);
  box-shadow: 0px 0px 30px rgb(212, 155, 252);
}
.fBox02 .featureTitle {
  color: rgb(212, 155, 252);
}
.fBox02 .featureSubtitle {
  color: rgb(212, 155, 252);
}

.fBox03 {
  border : 0.25rem solid rgb(0, 221, 192, 0.5);
  border-bottom : 2rem solid rgb(0, 221, 192, 0.5);
}
.fBox03:hover {
  border : 0.25rem solid rgb(0, 221, 192);
  border-bottom : 2rem solid rgb(0, 221, 192);
  box-shadow: 0px 0px 30px rgb(0, 221, 192);
}
.fBox03 .featureTitle {
  color: rgb(0, 221, 192);
}
.fBox03 .featureSubtitle {
  color: rgb(0, 221, 192);
}
/*page Jeu*/



/*page Stars*/
.starsLore { 
  display: flex; 
  flex-direction: column; 
  align-items: center;
  margin-top: 1rem;
  gap: 1rem;
}

.imgStars {
  max-width: 540px;
}

.loreTitle { 
  color: white; 
  font-family: "Iceberg", sans-serif; 
  font-style: italic; 
  font-weight: 900; 
  font-size: 2.3rem; 
  text-align: center; 
  text-shadow: 0px 7px 10px black;
}

.loreBox { 
  background: rgba(0, 0, 0, 0.7); 
  margin: 1rem 0; 
  padding: 3rem;
  width: 100%;
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  gap: 2rem;
  box-shadow: 0px 0px 40px rgba(255, 255, 255, 0.4);
}

@media screen and (max-width: 768px) {
  .loreBox {
    padding: 1.5rem;
  }
}

.loreSubtitle {
  color: white;
  font-family: "Audiowide", sans-serif; 
  font-weight: 400; 
  font-size: 1.6rem; 
  text-align: center; 
  text-shadow: 0px 0px 10px rgb(212, 155, 252);
}

.loreText { 
  color: white; 
  text-align: center; 
  font-weight: 600; 
}

.rowLore {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 3rem;
}

.rowLore img {
  max-height: 300px;
}

.starsShow {
  margin: 1rem 0 3rem 0;
}

.starsCarousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  justify-content: center;
}

.carousel {
  perspective: 1200px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.carouselTrack {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

.carouselBox {
  display: flex;
  justify-content: center;
  align-items: end;

  position: absolute;
  top: 50%;
  left: 50%;
  width: 320px;
  height: 180px;
  transform: translate(-50%, -50%);
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 0;
  filter: blur(4px);
  transform-origin: center center;
}

.musicGenre {
  font-family: "Audiowide", sans-serif;

  position: absolute;
  bottom: 5px;
  z-index: 2;

  color: white;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 2px;
  pointer-events: none;
}

.carouselBox img {
  max-height: 180px;
}

.cbSunset {
  border: 13px solid rgba(182, 30, 212);
  background: linear-gradient(135deg,rgba(182, 30, 212), rgba(214, 190, 36));
}
.cbSunset .musicGenre {
  text-shadow: 3px 3px 0px rgba(182, 30, 212);
}
.cbKatty {
  border: 13px solid rgba(241, 154, 92);
  background: linear-gradient(135deg, rgba(241, 154, 92), rgba(248, 218, 110));
}
.cbKatty .musicGenre {
  text-shadow: 3px 3px 0px rgba(241, 154, 92);
}
.cbKarkass {
  border: 13px solid rgba(116, 25, 25);
  background: linear-gradient(135deg, rgba(116, 25, 25), rgba(228, 43, 43));
}
.cbKarkass .musicGenre {
  text-shadow: 3px 3px 0px rgba(116, 25, 25);
}
.cbCadentia {
  border: 13px solid rgba(90, 124, 110);
  background: linear-gradient(135deg, rgba(90, 124, 110), rgba(200, 192, 128));
}
.cbCadentia .musicGenre {
  text-shadow: 3px 3px 0px rgba(90, 124, 110);
}

.carouselBox.active {
  transform: translate(-50%, -50%) scale(1) rotateY(0deg);
  opacity: 1;
  filter: blur(0);
  z-index: 5;
}

.carouselBox.left1 {
  transform: translate(-140%, -50%) scale(0.8) rotateY(25deg);
  opacity: 0.7;
  filter: blur(0);
  z-index: 4;
}
.carouselBox.left2 {
  transform: translate(-220%, -50%) scale(0.6) rotateY(40deg);
  opacity: 0.3;
  filter: blur(0);
  z-index: 3;
}

.carouselBox.right1 {
  transform: translate(40%, -50%) scale(0.8) rotateY(-25deg);
  opacity: 0.7;
  filter: blur(0);
  z-index: 4;
}
.carouselBox.right2 {
  transform: translate(120%, -50%) scale(0.6) rotateY(-40deg);
  opacity: 0.3;
  filter: blur(0);
  z-index: 3;
}

.btnCar {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: none;
  color: white;
  border: none;
  padding: 12px;
  cursor: pointer;
  font-size: 2.8rem;
  opacity: 70%;
}
.left {
  text-shadow: 7px 0px 0px black;
  left: 10px;
}
.right {
  text-shadow: -7px 0px 0px black;
  right: 10px;
}
.btnCar:hover {
  opacity: 100%;
}

.starInfosBox {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(255, 255, 255, 0.8) 100%);
  display: flex;
  flex-direction: column;
  padding: 3rem;
  gap: 2rem;
}

@media screen and (max-width: 768px) {
  .starInfosBox {
    padding: 1.5rem;
  }
}

.starID {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0 3rem;
  gap: 1rem;
  flex-wrap: nowrap;
}

.starName {
  color: white; 
  font-family: "Audiowide", sans-serif;
  font-size: 2.4rem; 
  text-shadow: 4.5px 4.5px 0px black;
}

.starAudio {
  display: flex;
  align-items: center;
  justify-content: center;
}

.btnAudio {
  width: 60px;
  height: 60px;
  border-radius: 100%;
  border: none;

  background: rgba(255, 255, 255);
  backdrop-filter: blur(6px);
  box-shadow: 4px 4px 0px black;

  color: black;
  font-size: 20px;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: 0.25s ease;
}
.btnAudio:hover {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .starID {
    padding: 0 0;
  }

  .starName {
    font-size: 1.8rem; 
    text-shadow: 3.5px 3.5px 0px black;
  }

  .btnAudio {
    width: 55px;
    height: 55px;
    box-shadow: 4px 4px 0px black;
  }
}

.starsHR {
  width: 100%;
  box-shadow: 2px 2px 0px rgba(0, 0, 0, 0.5);
}

.starPresentation {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.starPNG {
  width: 100%;
  height: auto;
  max-width: 300px;
  flex: 0 0 auto;
}

.starLore {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  flex: 1;
  min-width: 600px;
}

.starDescription {
  color: white; 
  font-family: "Iceberg", sans-serif; 
  font-style: italic;
  text-align: center;
  font-weight: 900; 
  font-size: 2rem;
  text-shadow: 3px 3px 0px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
  .starPresentation {
    flex-direction: column;
  }

  .starPNG {
    align-self: center;
  }

  .starLore {
    min-width: 0px;
  }

  .starDescription {
    text-align: center;
    text-shadow: 2.5px 2.5px 0px rgba(0, 0, 0, 0.5);
  }
}

.starLoreText1,.starLoreText2 {
  color: white;
  font-weight: 900;
  text-align: left;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

.starTextSection1,.starTextSection2 {
  color: white;
  font-style: italic;
  font-weight: 900;
  font-size: 1.4rem;
  text-align: right;
  text-shadow: 2.5px 2.5px 0px rgba(0, 0, 0, 0.5);
}

.starGameplayFlex {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}

.starGameplay {
  display: flex;
  flex-direction: column;
  flex: 2 1 60%;
  gap: 1rem;
}

.gameplayTitle {
  color: white; 
  font-family: "Iceberg", sans-serif; 
  font-weight: 900; 
  font-size: 1.75rem;
  text-align: left;
  text-shadow: 3px 3px 0px rgba(0, 0, 0, 0.5);
}

.naText,.compText,.ultText,.passiveText {
  color: white;
  font-weight: 900;
  text-align: left;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

.naVid,.compVid,.ultVid,.passiveVid {
  width: 100%;
  max-width: 400px;
  flex: 1 1 40%;
}

@media (max-width: 768px) {
  .starGameplayFlex {
    flex-direction: column;
  }
  
  .starGameplay {
    align-self: left;
  }

  .starLoreText1,.starLoreText2 {
  text-shadow: 0px 0px 7px rgba(0, 0, 0, 0.5);
  }

  .starTextSection1,.starTextSection2 {
  text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.5);
  }

  .gameplayTitle {
  text-shadow: 2.5px 2.5px 0px rgba(0, 0, 0, 0.5);
  }

  .naText,.compText,.ultText,.passiveText {
  text-shadow: 0px 0px 7px rgba(0, 0, 0, 0.5);
  }

  .naVid,.compVid,.ultVid,.passiveVid {
    align-self: center;
  }
}
/*page Stars*/



/*page Actualités*/
.newsFlex {
  display: flex;
  flex-direction: column;
  margin: 3rem 0;
  gap: 1.75rem;
}

.newsBox {
  display: flex;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.75);
  color: white;
  padding: 1rem;
  border: 0.4rem solid white;
  box-shadow: 0px 0px 25px rgba(255, 255, 255, 0.4);
}
.newsBox:hover {
  border: 0.4rem solid rgb(253, 213, 62);
  box-shadow: 0px 0px 25px rgba(253, 213, 62, 0.5);
}

.newsBox.open {
  border: 0.4rem solid rgb(253, 213, 62);
  box-shadow: 0px 0px 25px rgba(253, 213, 62, 0.5);
}

.newsBox hr {
  width: 100%;
}

.nbHead {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  font-family: "Iceberg", sans-serif;
  font-weight: 600;
  gap: 1rem;
}

.nbDate {
  font-size: 1.75rem;
  text-shadow: 3px 3px 0px black;
  
}

.nbTitle {
  font-size: 1.5rem;
  color: rgb(212, 155, 252);
  text-shadow: 3px 3px 0px black;
}

.newsBox.open .nbDate {
  color: rgb(253, 213, 62);
}

.newsBox.open .nbTitle {
  color: rgb(253, 213, 62);
}

.nbPitch {
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
  padding: 1.4rem 2rem;
}

.maskedContent {
  max-height: 0;
  overflow: hidden;
  opacity: 0;

  transition:
    max-height 0.45s ease,
    opacity 0.3s ease,
    margin-top 0.3s ease;

  margin-top: 0;
}

.newsBox.open .maskedContent {
  opacity: 1;
  margin-top: 1rem;
  padding: 0 2rem 2rem 2rem;

  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 1.1rem;
}

.newsBox.open .maskedContent a {
  color: rgb(212, 155, 252);
}
.newsBox.open .maskedContent a:hover {
  color: rgb(253, 213, 62);
}

.pngSponsors {
  display: flex;
  flex-direction: row;
  justify-content: left;
  align-items: center;
  margin-left: 3rem;
  padding: 1rem 0;
  gap: 3rem;
}

.btnSee {
  color: rgb(0, 221, 192);
  text-shadow: 2px 2px 0px black;
  background: none;
  border: none;
  cursor: pointer;
  font-family: "Audiowide", sans-serif;
  font-size: 1.1rem;
  text-decoration: underline;
  align-self: center;

}
.btnSee:hover {
  
  color: rgb(253, 213, 62);
}
.btnSee:active {
  color: rgb(253, 213, 62);
}
/*page Actualités*/



/*pages Legals*/
.legalPresentation {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.legalTitle {
  font-family: "Audiowide", sans-serif;
  font-size: 2rem;
  font-weight: 900;
  text-align: center;
  text-shadow: 0px 5px 8px black;
}
.ltML {
  color: rgb(253, 213, 62);
}
.ltPdC {
  color: rgb(212, 155, 252);
}

.legalBox {
  display: flex;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.75);
  color: white;
  margin: 3rem 0;
  padding: 2rem;
  gap: 1rem;
  border: 0.4rem solid white;
  box-shadow: 0px 0px 40px rgba(255, 255, 255, 0.4);
}

.legalBox hr {
  width: 100%;
}

.legalText {
  color: white;
  font-size: 1.1rem;
  margin: 0 3rem;
}

.ltVersion {
  font-family: "Iceberg", sans-serif;
  font-style: italic;
  text-align: end;
  font-weight: 600;
}

.legalSubtitle {
  font-family: "Iceberg", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  text-shadow: 2px 2px 0px black;
  margin: 0 2rem;
}
.lsML {
  color: rgb(253, 213, 62);
}
.lsPdC {
  color: rgb(212, 155, 252);
}

@media screen and (max-width: 768px) {
  .legalBox {
    padding: 1.5rem;
  }

  .legalText {
    margin: 0 1rem;
  }

  .legalSubtitle {
    margin: 0 0.5rem;
  }
}
/*pages Legals*/