@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: "Poppins", serif;
  margin: 0;
  padding: 0;
  background-color:#f3f9f8;
  color: #1a1a1a;
  overflow-x: hidden;
}

.custom-cursor {
  position: fixed;
  width: 90px; 
  height: 70px;
  pointer-events: none;
  z-index: 9999;
  background-repeat: no-repeat;
  transition: transform 0.1s ease-out;
}

.bar {
  background: #ffffff !important;
}

.navbar .back-btn {
  filter: invert(1) !important;
}

/*_________________________________________________________*/

.hero-section {
  display: flex;
  justify-content: center;
  position: relative;
  background-size: cover;
}

.hero-container {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  max-width: 1700px;
  height: 95vh;
  position: relative;
}

.hero-images {
  flex-basis: 60%;
  position: relative;
  height: 100%;
  overflow: visible;
}

#parallax {
  position: absolute;
  top: -20px; 
  left: -70px;
  width: 100%;
  height: 100vh;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 80%;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-bottom: 15%;
  margin-right: 100px;
  z-index: 2;
}

/*----------------------------------------------------*/

.hero-title {
  position: relative;
  align-items: center;
  margin: 0;
  padding: 0;
}

.hero-title img {
  width: 100%;
  max-width: 700px;
  height: auto;
}

.hidden-title {
  position: absolute;
  left: -9999px;
  top: -9999px;
  visibility: hidden;
}

/*----------------------------------------------------*/

.social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin: 0;
  padding-left: 50px;
}

.social-links a {
  color: #fff;
  font-size: 3rem;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #b5eaff;
}

/*----------------------------------------------------*/

.wave {
  position: absolute;
  fill: #f3f9f8;
  bottom: 12%;
  left: 0;
  width: 100%;
  z-index: 1;
}

/*_________________________________________________________*/

.media-section {
  position: relative;
  z-index: 2;
  margin-top: -150px;
  background: #f3f9f8;
}

.media-container {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  padding: 30px;
  max-width: 1300px;
  height: 200px;
  margin: 0 auto;
  gap: 4.5vw;
  position: relative;
}

.media-left {
  flex: 1;
  text-align: left;
}

.media-left h2 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  position: relative;
  text-align: center;
  left: -280px;
  top: -80px;
}

.media-left img {
  display: block;
  margin: -75px 130px;
  width: 10%;
  position: relative;
  top: 0;
}

.media-right {
  flex: 1;
  display: flex;
  justify-content: center;
  margin: 50px -300px;
}

.media-right iframe {
  border-radius: 2%;
  position: relative;
  top: -15rem;
}

.custom-video {
  height: auto;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  z-index: 3; 
}

.custom-video::-webkit-media-controls {
  display: none !important;
}

.custom-video::-moz-media-controls {
  display: none !important;
}

/*_________________________________________________________*/

.slider-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 0;
  margin-top: 30px;
  max-width: 2100px;
  flex-direction: row;
  text-align: center;
}

.slider-left {
  flex: 1;
  display: flex;
  justify-content: center; 
}

/*----------------------------------------------------*/

.carousel-container {
  margin: 0 4rem;
  position: relative;
  left: 5vw;
  width: 100%;
  max-width: 850px;
  height: 400px;
  perspective: 1000px;
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.carousel {
  display: flex;
  position: relative;
  width: 100%;
  height: 100%;
  justify-content: center;
  transition: transform 0.6s ease;
}

.carousel-item {
  position: absolute;
  width: 50%;
  height: 80%;
  top: 10%;
  border-radius: 15px;
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.carousel-item.active {
  transform: scale(1.2) translateX(0);
  z-index: 3;
  opacity: 1;
  cursor: zoom-in;
  transition: transform 0.3s ease;
}

.carousel-item.active:hover {
  transform: scale(1.3) translateX(0);
}

.carousel-item.left {
  transform: scale(0.9) translateX(-50%);
  z-index: 2;
  opacity: 1;
  border-radius: 20px;
}

.carousel-item.right {
  transform: scale(0.9) translateX(50%);
  z-index: 2;
  opacity: 1;
  border-radius: 20px;
}

.carousel-item.left-2 {
  transform: scale(0.5) translateX(-150%);
  z-index: 1;
  opacity: 1;
  border-radius: 20px;
}

.carousel-item.right-2 {
  transform: scale(0.5) translateX(150%);
  z-index: 1;
  opacity: 1;
  border-radius: 20px;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

/*----------------------------------------------------*/

.carousel-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}

.carousel-button {
  background: none;
  border: none;
  color: rgb(91, 91, 91);
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
  padding: 10px;
  margin: 0 10px;
  transition: transform 0.2s;
}

.carousel-button:hover {
  transform: scale(1.2);
}

.dots {
  display: flex;
  justify-content: center;
  margin: 0 10px;
}

.dot {
  width: 12px;
  height: 12px;
  background: rgb(189, 189, 189);
  border: none;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
  transition: transform 0.2s, background-color 0.2s;
}

.dot.active {
  background: rgb(86, 44, 130);
  transform: scale(1.3);
}

.dot:hover {
  transform: scale(1.1);
}

/*----------------------------------------------------*/

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  visibility: visible;
  opacity: 1;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.hidden {
  opacity: 0;
  visibility: hidden;
}

.lightbox-content {
  position: relative;
  width: 90%;
  max-width: 70vw;
  height: 90%;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

/*----------------------------------------------------*/

#comparison {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

#comparison figure {
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#comparison img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#divisor {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}

#divisor img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#slider {
  appearance: none;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 10px;
  cursor: pointer;
  z-index: 20;
  background: #ccc;
  border-radius: 5px;
  outline: none;
}

#slider::-webkit-slider-thumb {
  appearance: none;
  width: 30px;
  height: 30px;
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slider-icon {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 20px;
  color: white;
}

.fa-left-right:before {
  content: none !important;
}

/*----------------------------------------------------*/

.light-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 10px;
  background: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 30;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}

.light-button.prev {
  left: 50px;
}

.light-button.next {
  right: 50px;
}

.light-button i {
  font-size: 20px;
  color: black;
}

.close-lightbox {
  position: absolute;
  top: 4rem;
  right: 40px;
  background: transparent;
  border: none;
  font-size: 2.2rem;
  color: white;
  cursor: pointer;
}

/*----------------------------------------------------*/

.slider-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slider-right h2 {
  font-size: 2.4rem;
  text-align: center;
}

/*_________________________________________________________*/

.availability-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 80px 20px;
  position: relative;
  overflow: visible;
}

.availability-content {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.availability-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.text-buttons-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/*----------------------------------------------------*/

.label-version {
  font-size: 1.2rem;
  color: #ffffff;
  position: absolute;
  bottom: -60px;
  left: -13rem;
  background: linear-gradient(135deg, #2181ff, #00d9ff);
  padding: 12px 20px;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, 0.3s ease;
  display: inline-block;
  font-weight: bold;
  white-space: nowrap;
  text-align: center;
}

.label-version:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, #5c9dff, #3a009f);
}

.label-version p {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

/*----------------------------------------------------*/

.availability-left h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
  text-align: center;
}

/*----------------------------------------------------*/

.buttons-group {
  display: flex;
  gap: 30px;
  margin-bottom: 3vh;
}

.buttons-group button {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  width: 169px;
  height: 60px;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-weight: bold;
  font-size: 18px;
  border: 3px solid #fff;
  outline: 3px solid #000;
  box-shadow: 6px 6px 0 #00a4ef;
  transition: all 0.1s ease-out;
  padding: 0 15px;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

.buttons-group button .button-icon {
  margin-right: 12px;
  width: 23px;
  height: 23px;
}

.buttons-group .button-mediafire .button-icon {
  width: 35px;
  height: 35px;
}

.buttons-group button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
  z-index: 1;
  transition: none;
  opacity: 0;
}

.buttons-group button span {
  transition: transform 0.3s ease-out;
  white-space: nowrap;
}

.buttons-group button:hover::before {
  opacity: 1;
  animation: slide 2s infinite;
}

.buttons-group button:hover span {
  transform: skew(-5deg);
}

.buttons-group button:hover {
  transform: translate(-4px, -4px);
  box-shadow: 10px 10px 0 #275ed5;
  background-color: #000;
  color: #fff;
}

.buttons-group button:active {
  transform: translate(4px, 4px);
  box-shadow: 0px 0px 0 #00a4ef;
  background-color: #fff;
  color: #000;
  border-color: #000;
}


/*----------------------------------------------------*/

.availability-right {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.dialogue {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
  background: white;
  padding: 20px;
  width: 18vw;
  height: 15vh;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
  transform: translateY(-30px); 
  opacity: 0;
  transition: all 0.5s ease;
  position: absolute; 
  bottom: 60px;
  right: 0;
  z-index: 900;
}

.dialogue::before {
  content: "";
  position: absolute;
  bottom: -25px;
  right: 15px;
  width: 50px;
  height: 50px;
  margin-right: 90px;
  background: url('/img/projets/notch_bubble.webp') no-repeat center center;
  background-size: contain;
  z-index: 1;
}

.dialogue p {
  font-size: 1rem;
  color: #333;
  margin: 0;
  line-height: 1.5;
  text-align: center;
}

/*----------------------------------------------------*/

.dialogue .buttons-container {
  display: flex;
  gap: 50px;
}

.dialogue button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 25px 10px 21px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  border: none;
  border-radius: 10px;
  color: rgb(0, 0, 0);
  cursor: pointer;
  z-index: 3;
  transition: transform 0.3s ease, background 0.3s ease;
  background: #FFD700;
  animation: colorChange 4s ease-in-out infinite;
}

.dialogue button .button-icon {
  margin-right: 10px;
  width: 27px;
  height: 27px;
}

.dialogue .button-patreon .button-icon {
  width: 17px;
  height: 17px;
}

.dialogue button:hover {
  transform: scale(1.1);
}

.dialogue button:active {
  transform: scale(0.95);
}

@keyframes colorChange {
  0% { background-color: #FFFACD; }
  25% { background-color: #FFB6C1; }
  50% { background-color: #ADD8E6; }
  75% { background-color: #98FB98; }
  100% { background-color: #FFFACD; }
}

/*----------------------------------------------------*/

.character {
  position: absolute;
  bottom: 0px;
  right: -20vw;
  width: 13vw;
  margin-left: 10px;
  z-index: 3;
  transition: transform 0.5s ease;
}

.availability-section:hover .dialogue {
  transform: translateY(0);
  opacity: 1;
}

.availability-section:hover .character {
  transform: translateX(-33vw);
}

/*----------------------------------------------------*/

.changelog-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.changelog-modal:not(.hidden) {
  opacity: 1;
  pointer-events: auto;
}

.changelog-content {
  position: relative;
  background: white;
  border-radius: 15px;
  padding: 20px;
  width: 90%;
  max-width: 700px;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  animation: slide-down 0.4s ease;
}

@keyframes slide-down {
  from {
    transform: translateY(-20%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.changelog-content h2 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

#changelog-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 10px;
}

.changelog-item {
  background: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.changelog-item.latest {
  background: linear-gradient(135deg, #ffecb3, #ffe0b2);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  border-left: 5px solid #f4c542;
}

.changelog-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.version-title {
  font-size: 1.2rem;
  font-weight: bold;
}

.bubble {
  font-size: 0.8rem;
  font-weight: bold;
  padding: 5px 10px;
  border-radius: 15px;
  text-transform: uppercase;
  margin-left: auto;
}

.bubble.public {
  background: #4caf50;
}

.bubble.patreon {
  background: #f4c542;
  color: black;
}

.version-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.version-number {
  font-size: 1.1rem;
  font-weight: bold;
  margin: 0;
  background: #e0e0e0;
  border-radius: 5px;
  padding: 5px 10px;
}

.version-date {
  font-size: 1rem;
  color: #5e5e5e;
  margin: 0;
}

.changelog-content ul {
  list-style: disc;
  padding-left: 20px;
  margin: 0;
}

.changelog-content ul li {
  margin-bottom: 8px;
  font-size: 1rem;
}

/*----------------------------------------------------*/

.close-modal {
  position: absolute;
  top: 10px;
  right: 10px;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  font-weight: bold;
  cursor: pointer;
  color: #888;
  transition: color 0.3s ease;
}

.close-modal:hover {
  color: #333;
}

/*_________________________________________________________*/

.faq-section {
  background: linear-gradient(135deg, #f0f0fa, #f3f9f8);
  padding: 50px 20px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.faq-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.faq {
  max-width: 800px;
  margin: 2vh auto;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.faq-item {
  width: 100%;
  max-width: 800px;
  margin-bottom: 2vh;
  background: white;
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.faq-header {
  align-self: flex-end;
  margin-bottom: 20px;
}

.faq-answer a {
  color: #2575fc;
  text-decoration: none;
}

.faq-answer a:hover {
  text-decoration: underline;
}

.toggle-all {
  width: 170px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  text-transform: uppercase;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  border: none;
  position: relative;
  padding-top: 1vh;
  background-color: transparent;
  transition: .2s cubic-bezier(0.19, 1, 0.22, 1);
  opacity: 0.6;
  cursor: pointer;
}

.toggle-all::after {
  content: '';
  border-bottom: 3px groove rgb(0, 112, 210);
  width: 0;
  height: 100%;
  position: absolute;
  margin-top: -5px;
  top: 0;
  left: -1px;
  visibility: hidden;
  opacity: 1;
  transition: .2s linear;
}

.toggle-all:hover::after {
  visibility: visible;
  opacity: 0.7;
  width: 90%;
}

.toggle-all:hover {
  letter-spacing: 2px;
  opacity: 1;
}

.toggle-icon {
  transform: rotate(0deg);
  transition: transform .2s linear;
}

.toggle-all.open .toggle-icon {
  transform: rotate(180deg);
}

.faq-item {
  margin-bottom: 2vh;
  background: white;
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.faq-question {
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #1565c0;
}

.faq-answer {
  display: none;
  font-size: 1rem;
  margin-top: 10px;
  color: #555;
  line-height: 1.6;
}

.faq-item.open .faq-answer {
  display: block;
}

/*----------------------------------------------------*/

.install-guide {
  margin-top: 4vh;
  text-align: center;
  font-size: 1.2rem;
}

.btn-install-guide {
  display: inline-block;
  margin-top: 2vh;
  padding: 1.5vh 2vw;
  background: #2575fc;
  color: white;
  border-radius: 50rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.btn-install-guide:hover {
  background: #1565c0;
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn-install-guide:active {
  transform: scale(0.95);
}

/*▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬*/

/*█▀█ █▀▀ █▀ █▀█ █▀█ █▄ █ █▀ █ █ █ █▀▀
  █▀▄ ██▄ ▄█ █▀▀ █▄█ █ ▀█ ▄█ █ ▀▄▀ ██▄*/

  @media (max-width: 480px) {

    .custom-cursor {
      visibility: hidden;
    }

    .hero-container {
      flex-direction: column-reverse;
      align-items: center;
      justify-content: center;
      height: auto;
    }
  
    .hero-images {
      flex-basis: auto;
      height: 40vh;
      width: 100%;
    }
  
    #parallax {
      top: 0;
      left: 0;
      width: 90%;
      height: 45vh;
      background-size: cover;
    }
  
    .hero-content {
      margin: 10vh 0 0;
      padding-bottom: 10%;
    }
  
    .hero-title img {
      max-width: 80%;
    }
  
    .social-links {
      gap: 15px;
      padding-left: 0;
      margin-top: -2vh;
    }
  
    .social-links a {
      font-size: 1.7rem;
    }

  /*----------------------------------------------------*/

    .wave {
      bottom: 0;
    }
    
  /*_________________________________________________________*/

    .media-section {
      margin-top: 0;
      background: #f3f9f8;
    }
    
    .media-container {
      flex-direction: column;
      align-items: center;
      padding: 20px;
      gap: 0;
      height: auto;
    }
    
    .media-left {
      text-align: center;
    }
    
    .media-left h2 {
      font-size: 4vh;
      line-height: 1.2;
      margin-bottom: 1rem;
      position: relative;
      text-align: center;
      left: 0;
      top: 0;
    }
    
    .media-left img {
      display: block;
      margin: 20px 0;
      width: 17vw;
      margin: 20px auto;
      position: relative;
      top: 0;
    }
    
    .media-right {
      flex: 1;
      display: flex;
      justify-content: center;
      margin: 20px 0;
    }
    
    .media-right iframe {
      border-radius: 2%;
      width: 90vw;
      height: 28vh;
      position: relative;
      top: 0;
    }
    
    .custom-video {
      height: auto;
      border-radius: 15px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }
    
   .custom-video::-webkit-media-controls {
     display: none !important;
    }
    
    .custom-video::-moz-media-controls {
      display: none !important;
    }

    
/*_________________________________________________________*/

    .slider-section{
      display: flex;
      flex-direction: column; 
      padding: 0;
    }

    .slider-left {
      order: 2;
    }

    .carousel-container {
      margin: 0;
      left: 0;
      height: 300px;
      z-index: 4;
    }

    .carousel {
      width: 135%;
    }
    
/*----------------------------------------------------*/

    .lightbox-content {
      height: 80%;
    }

    .light-button.prev {
      left: 3vw;
    }
    
    .light-button.next {
      right: 3vw;
    }

    .close-lightbox {
      top: 8.1vh;
      right: 5vw;
      z-index: 4;
    }

  /*----------------------------------------------------*/

    .slider-right {
      order: 1;
    }

    .slider-right h2 {
      font-size: 4vh;
      margin-bottom: 5vh;
    }

  /*_________________________________________________________*/

    .availability-section {
      flex-direction: column;
      align-items: center;
      padding: 7vh 10px 3vh;
    }
    
    .availability-content {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    
    .availability-left h2 {
      font-size: 3.5vh;
      margin-bottom: 6vh;
    }
    
    /*----------------------------------------------------*/
    
    .buttons-group {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
  
    .buttons-group button {
      width: 180px;
      height: 60px;
      align-items: center;
      justify-content: flex-start;
      margin-bottom: 10px;
      font-size: 16px;
    }

    .buttons-group button:hover::before,
    .buttons-group button:hover span,
    .buttons-group button:hover {
      transform: none;
      box-shadow: none;
    }

    .buttons-group button:hover::before {
      animation: none;
      opacity: 0;
    }

    /*----------------------------------------------------*/
    
    .label-version {
      font-size: 0.9rem;
      bottom: -8vh;
      left: 25%;
      transform: translateX(-50%);
      z-index: 4;
    }
    
    /*----------------------------------------------------*/

    @keyframes fadeInUp {
      0% {
        opacity: 0;
        transform: translateY(30px);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    .dialogue {
      width: 80vw;
      height: auto;
      padding: 15px;
      margin: 7vh 0;
      bottom: -4vh;
      transform: translateX(-50%) translateY(30px);
      opacity: 0;
      position: relative;
      animation: fadeInUp 0.5s forwards;
    }

    .dialogue p {
      font-size: 0.9rem;
    }

    /*----------------------------------------------------*/
    
    .dialogue .buttons-container {
      flex-direction: column;
      gap: 20px;
    }

    .dialogue button:hover {
      transform: none;
      box-shadow: none;
    }
    .dialogue button .button-icon {
      width: 6vw;
      height: 4vh;
    }
    
    .dialogue .button-patreon .button-icon {
      width: 6vw;
      height: 4vh;
    }
    
    /*----------------------------------------------------*/
    
    .character {
      width: 50vw;
      left: 25%;
      bottom: -3vh;
      transform: translateX(-50%) translateY(30px);
      opacity: 0;
      position: relative;
      animation: fadeInUp 0.5s forwards 0.3s;
    }
    
    .availability-section:hover .dialogue {
      transform: translateX(-50%) translateY(0);
      opacity: 1;
    }
    
    .availability-section:hover .character {
      transform: translateX(-50%) translateY(0);
      opacity: 1;
    }
     
  /*----------------------------------------------------*/

      .changelog-modal {
        padding: 10px;
      }
    
      .changelog-content {
        width: 100%;
        max-width: 100%;
        padding: 15px;
      }
    
      .changelog-content h2 {
        font-size: 1.5rem;
      }
    
      .changelog-item {
        padding: 15px;
      }
    
      .version-title {
        font-size: 1rem;
      }
    
      .bubble {
        font-size: 0.7rem;
        padding: 4px 8px;
      }
    
      .version-number {
        font-size: 1rem;
        padding: 4px 8px;
      }
    
      .version-date {
        font-size: 0.9rem;
      }
    
      .changelog-content ul li {
        font-size: 0.9rem;
      }
    
      .close-modal {
        font-size: 1.2rem;
      }

  /*_________________________________________________________*/

    .faq-section h2 {
      font-size: 4vh;
    }

    .toggle-all {
      font-size: 0.8rem;
    }

    .faq-question {
      font-size: 1rem;
    }
    
    .faq-answer {
      font-size: 0.8rem;
    }

  /*----------------------------------------------------*/  

    .install-guide {
      margin-top: 4vh;
      font-size: 1rem;
    }

    .btn-install-guide {
      margin-top: 2.5vh;
      padding: 1.8vh 5vw;
    }
  }

  /*_________________________________________________________*/

  @media (min-width: 768px) and (max-width: 1081px) {

    .custom-cursor {
      visibility: hidden;
    }

    .hero-container {
      flex-direction: column-reverse;
      align-items: center;
      justify-content: center;
      height: auto;
    }
  
    .hero-images {
      flex-basis: auto;
      height: 40vh;
      width: 100%;
    }
  
    #parallax {
      top: 0;
      left: 10vw;
      width: 65%;
      height: 50vh;
      background-size: cover;
    }
  
    .hero-content {
      margin: 10vh 0 0;
      padding-bottom: 10%;
    }
  
    .hero-title img {
      max-width: 70%;
    }
  
    .social-links {
      gap: 25px;
      padding-left: 0;
      margin-top: -2vh;
    }
  
    .social-links a {
      font-size: 2.7rem;
    }

  /*----------------------------------------------------*/

    .wave {
      bottom: 0;
    }
    
    /*_________________________________________________________*/

    .media-section {
      margin-top: 0;
      background: #f3f9f8;
    }
    
    .media-container {
      flex-direction: column;
      align-items: center;
      padding: 20px;
      gap: 0;
      height: auto;
    }
    
    .media-left {
      text-align: center;
    }
    
    .media-left h2 {
      font-size: 4vh;
      line-height: 1.2;
      margin-bottom: 1rem;
      position: relative;
      text-align: center;
      left: 0;
      top: 0;
    }
    
    .media-left img {
      display: block;
      margin: 20px 0;
      width: 12vw;
      margin: 20px auto;
      position: relative;
      top: 0;
    }
    
    .media-right {
      flex: 1;
      display: flex;
      justify-content: center;
      margin: 20px 0;
    }
    
    .media-right iframe {
      border-radius: 2%;
      width: 90vw;
      height: 28vh;
      position: relative;
      top: 0;
    }
    
    .custom-video {
      height: auto;
      border-radius: 15px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }
    
   .custom-video::-webkit-media-controls {
     display: none !important;
    }
    
    .custom-video::-moz-media-controls {
      display: none !important;
    }

    
/*_________________________________________________________*/

    .slider-section{
      display: flex;
      flex-direction: column; 
      padding: 0;
    }

    .slider-left {
      order: 2;
    }

    .carousel-container {
      margin: 0;
      left: 0;
      height: 300px;
      z-index: 4;
    }

    .carousel {
      width: 80vw;
    }
    
/*----------------------------------------------------*/

    .lightbox-content {
      height: 80%;
    }

    .light-button.prev {
      left: 3vw;
    }
    
    .light-button.next {
      right: 3vw;
    }

    .close-lightbox {
      top: 8.1vh;
      right: 5vw;
      z-index: 4;
    }

  /*----------------------------------------------------*/

    .slider-right {
      order: 1;
    }

    .slider-right h2 {
      font-size: 4vh;
      margin-bottom: 5vh;
    }

  /*_________________________________________________________*/

    .availability-section {
      flex-direction: column;
      align-items: center;
      padding: 7vh 10px 3vh;
    }
    
    .availability-content {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    
    .availability-left h2 {
      font-size: 3.7vh;
      margin-bottom: 6vh;
    }
    
    /*----------------------------------------------------*/
    
    .buttons-group {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
  
    .buttons-group button {
      width: 35vw;
      height: 65px;
      align-items: center;
      justify-content: flex-start;
      margin-bottom: 10px;
      font-size: 20px;
    }

    .buttons-group button:hover::before,
    .buttons-group button:hover span,
    .buttons-group button:hover {
      transform: none;
      box-shadow: none;
    }

    .buttons-group button:hover::before {
      animation: none;
      opacity: 0;
    }

    /*----------------------------------------------------*/
    
    .label-version {
      font-size: 1.1rem;
      bottom: -8vh;
      left: -20%;
      transform: translateX(-50%);
      z-index: 4;
    }
    
    /*----------------------------------------------------*/

    @keyframes fadeInUp {
      0% {
        opacity: 0;
        transform: translateY(30px);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    .dialogue {
      width: 80vw;
      height: auto;
      padding: 15px;
      margin: 7vh 0;
      bottom: -4vh;
      transform: translateX(-50%) translateY(30px);
      opacity: 0;
      position: relative;
      animation: fadeInUp 0.5s forwards;
    }
    
    .dialogue p {
      font-size: 1.1rem;
    }

    /*----------------------------------------------------*/
    
    .dialogue .buttons-container {
      flex-direction: column;
      gap: 20px;
    }

    .dialogue button:hover {
      transform: none;
      box-shadow: none;
    }
    .dialogue button .button-icon {
      width: 6vw;
      height: 4vh;
    }
    
    .dialogue .button-patreon .button-icon {
      width: 6vw;
      height: 4vh;
    }
    
    /*----------------------------------------------------*/
    
    .character {
      width: 40vw;
      left: 25%;
      bottom: -3vh;
      transform: translateX(-50%) translateY(30px);
      opacity: 0;
      position: relative;
      animation: fadeInUp 0.5s forwards 0.3s;
    }
    
    .availability-section:hover .dialogue {
      transform: translateX(-50%) translateY(0);
      opacity: 1;
    }
    
    .availability-section:hover .character {
      transform: translateX(-50%) translateY(0);
      opacity: 1;
    }
     
  /*----------------------------------------------------*/

      .changelog-modal {
        padding: 10px;
      }
    
      .changelog-content {
        width: 100%;
        max-width: 100%;
        padding: 15px;
      }
    
      .changelog-content h2 {
        font-size: 1.5rem;
      }
    
      .changelog-item {
        padding: 15px;
      }
    
      .version-title {
        font-size: 1.1rem;
      }
    
      .bubble {
        font-size: 0.7rem;
        padding: 4px 8px;
      }
    
      .version-number {
        font-size: 1rem;
        padding: 4px 8px;
      }
    
      .version-date {
        font-size: 0.9rem;
      }
    
      .changelog-content ul li {
        font-size: 0.9rem;
      }
    
      .close-modal {
        font-size: 1.2rem;
      }

  /*_________________________________________________________*/

    .faq-section h2 {
      font-size: 4vh;
    }

    .toggle-all {
      font-size: 1rem;
    }

    .faq-question {
      font-size: 1rem;
    }
    
    .faq-answer {
      font-size: 1rem;
    }

  /*----------------------------------------------------*/  

    .install-guide {
      margin-top: 4vh;
      font-size: 1rem;
    }

    .btn-install-guide {
      margin-top: 2.5vh;
      padding: 1.8vh 5vw;
    }
  }

/*▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬*/

/* █▀▄ ▄▀█ █▀█ █▄▀   ▀█▀ █ █ █▀▀ █▀▄▀█ █▀▀
   █▄▀ █▀█ █▀▄ █ █    █  █▀█ ██▄ █ ▀ █ ██▄ */

   body.dark-theme {
    background-color:#31355a;
    color: #f3f3f3;
  }

/*----------------------------------------------------*/

  body.dark-theme .social-links a:hover {
    color: #ccffd4;
  }

  body.dark-theme .wave {
    fill: #31355a;
  }
  
/*----------------------------------------------------*/  

  body.dark-theme .media-section {
    background: #31355a;
  }

/*----------------------------------------------------*/ 

  body.dark-theme .carousel-button {
    color: rgb(220, 220, 220);
  }


  body.dark-theme .dot {
    background: rgb(230, 230, 230);
  }

  body.dark-theme .dot.active {
    background: rgb(194, 139, 254);
  }

/*----------------------------------------------------*/ 

  body.dark-theme .lightbox-content {
    background: rgb(59, 66, 107);
  }

  body.dark-theme .dialogue {
    background: rgb(78, 86, 131);
  }

  body.dark-theme .dialogue p {
    color: #f3f3f3;
  }

  body.dark-theme .dialogue::before {
    background: url('/img/projets/notch_bubble_dark.webp') no-repeat center center;
  }

/*----------------------------------------------------*/ 

body.dark-theme .dialogue button {
  color: rgb(246, 246, 246);
  transition: transform 0.3s ease, background 0.3s ease;
  background: #d07b59;
  animation: colorChangeDark 5s ease-in-out infinite;
}

body.dark-theme .dialogue .button-patreon .button-icon {
  filter: brightness(1.2);
}

@keyframes colorChangeDark {
  0% { background-color: #e1815b; }
  25% { background-color: #da5656; }
  50% { background-color: #4682B4; }
  75% { background-color: #3b9e7d; }
  100% { background-color: #d07b59; }
}

/*----------------------------------------------------*/ 

  body.dark-theme .changelog-content {
    background: rgb(78, 86, 131);
  }

  body.dark-theme .changelog-item {
    background: #31355a;
  }
  
  body.dark-theme .version-number {
    background: #565f75;
  }

  body.dark-theme .version-date {
    color: #d4d4d4;
  }
  
  body.dark-theme .close-modal {
    color: #d4d4d4;
  }

  /*----------------------------------------------------*/

  body.dark-theme .faq-section {
    background: rgb(55, 62, 101);
  }

  body.dark-theme .toggle-all::after {
    border-bottom: 3px groove rgb(98, 182, 255);
  }

  body.dark-theme .toggle-all {
    filter: invert(1);
  }

  body.dark-theme .faq-item {
    background: #6e82b2;
  }

  body.dark-theme .faq-question:hover {
    color: #9dd8ff;
  }
  
  body.dark-theme .faq-answer {
    color: #f2f2f2;
  }

  body.dark-theme .faq-answer a {
    color: #8dd8ff;
  }
  
  body.dark-theme .btn-install-guide {
    background: #367ef9;
  }

  body.dark-theme .btn-install-guide:hover {
    background: #4199ff;
  }