.selector-for-some-widget {
  box-sizing: content-box;
}

/* * {
  border: 1px solid rgb(106, 255, 0);
} */

body {
  background-color: #0d172b;
  color: white;
  font-family: "Orbitron", sans-serif;
}

section .info-space {
  width: 100vw;
}

h1,
h2,
h3,
p.tittle {
  font-family: "Orbitron", sans-serif;
}

p {
  font-family: "Verdana", sans-serif;
}

a {
  font-family: "Orbitron", sans-serif;
  text-decoration: none;
  font-weight: bold;
}

.pointer-click {
  cursor: pointer;
}
.pointer-none {
  cursor: default;
}

.blue-effect-bg {
  background-color: #0d172b;
  color: white;
}

.blue-effect {
  color: #ff0000;
  cursor: pointer;
  font-weight: bolder;
  transition: all 0.5s ease-in-out;
}
.blue-effect:hover,
.nav-active,
.number-effect {
  color: #0072ff;
}

.red-effect {
  color: white;
  background-color: #0072ff;
  border: 1px solid #0072ff;
  cursor: pointer;
  font-weight: bolder;
  transition: all 0.5s ease-in-out;
}
.red-effect:hover {
  background-color: #ff0000;
  border: 3px solid #ff0000;
}

img#js-open-vesting-modal {
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.5),
    inset 0 2px 10px rgba(255, 255, 255, 0.5);
}

/* QUESTION MARK EXPLAINATION */
h2 a {
  position: relative;
}

h2 a i {
  font-size: 1rem;
  position: absolute;
  top: -6px;
  right: -18px;
}

.justify {
  text-align: justify;
  text-justify: auto;
}

.z-front {
  z-index: 9000;
}
/* ------------------------------------------------------------------- */
/* -------------------------------- NAV ------------------------------ */
/* ------------------------------------------------------------------- */

nav {
  background-color: #050a15;
  transition: height 0.3s ease;
  height: 60px;
  top: 0;
  z-index: 500;
}

nav.shrink {
  height: 40px;
}

nav ul {
  list-style-type: none;
}

nav li {
  text-align: center;
  position: relative;
  overflow: hidden;
  font-size: 0.6rem;
}

nav a {
  display: block;
  color: white;
  text-decoration: none;
  width: 100%;
  box-sizing: border-box;
  line-height: 60px;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

nav a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #081229;
  transition: width 0.3s ease;
  z-index: -1;
}

nav a:hover::before {
  width: 100%;
}

nav a:hover {
  color: #0072ff;
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgb(253, 1, 1);
}

nav.shrink a {
  line-height: 40px;
}

/* ---------------------------------------------------------------------- */
/* -------------------------------- HEADER ------------------------------ */
/* ---------------------------------------------------------------------- */
header {
  background: linear-gradient(180deg, #050a15, #0d172b, #2a3b5f);
}

.header-content {
  text-align: center;
  margin-top: 60px;
  position: relative;
}

.highlight,
.header-content span {
  position: relative;
  display: inline-block;
  vertical-align: baseline;
}

.highlight span {
  color: white;
  transition: color 1s ease-in-out;
}

.highlight .scanner-line {
  position: absolute;
  top: -5px;
  left: 0;
  width: 100%;
  height: 4px;
  background: red;
  box-shadow: 0 0 15px red;
  opacity: 0;
  animation: appear 0.7s ease-out forwards 1s, scan 2.3s linear forwards 2s;
  z-index: 1;
}
.highlight .scan-letter.scanned {
  color: red;
}

@keyframes appear {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes scan {
  0% {
    top: -5px;
    opacity: 1;
  }
  50% {
    top: 100%;
    opacity: 1;
  }
  90% {
    top: -5px;
    opacity: 1;
  }
  100% {
    top: -5px;
    opacity: 0;
  }
}

/* -------------------------------------------------------------------- */
/* -------------------------------- MAIN ------------------------------ */
/* -------------------------------------------------------------------- */

.blank-space-1p {
  height: 100vh;
}

.blank-space {
  height: 40vh;
}

.info-space {
  /* height: 60vh; */
  /* min-height: 60vh; */
  /* background-color: #1a1a2e; OLD  */
  background-color: #0d172b;
}

.hidden {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 3s ease-out, transform 2s ease-out;
}

.show {
  opacity: 1;
  transform: translateY(0);
}

.txt-lg {
  font-size: 0.5rem;
}

/* -------------------------------------------------------------------- */
/* -------------------------------- BTNs ------------------------------ */
/* -------------------------------------------------------------------- */

.button-container {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.button-3d {
  position: relative;
  padding: 20px 40px;
  /* font-size: 12px; */
  font-weight: bold;
  color: #ff0000;
  background: linear-gradient(145deg, #222, #111);
  border: 2px solid #ff0000;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(255, 0, 0, 0.5),
    inset 0 2px 10px rgba(255, 0, 0, 0.5);
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0s ease-in-out;
}

.button-3d:hover {
  background: linear-gradient(145deg, #111, #000);
  box-shadow: 0 10px 25px rgba(255, 0, 0, 0.8),
    inset 0 2px 10px rgba(255, 0, 0, 0.7);
}

.scanner-line {
  position: absolute;
  top: -5px;
  left: 0;
  width: 100%;
  height: 4px;
  background: red;
  box-shadow: 0 0 15px red;
  opacity: 0;
}

.button-container:hover .scanner-line {
  opacity: 1;
  animation: scanner 2.5s linear infinite;
}

@keyframes scanner {
  0% {
    top: -5px;
  }
  50% {
    top: 100%;
  }
  100% {
    top: -5px;
  }
}

@keyframes explode {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.5;
  }
  100% {
    transform: scale(0);
    opacity: 0;
  }
}

.button-3d.explode {
  animation: explode 0.5s ease-in-out forwards;
}

/* ----------------------------------------------------------------- */
/* -------------------------------- modal -------------------------- */
/* ----------------------------------------------------------------- */
.modal.fade {
  z-index: 1100;
}
.modal-body img {
  transition: opacity 1.1s;
}

.vestfront {
  opacity: 0;
}

/* -------------------------------------------------------------------- */
/* -------------------------------- Vids Kit -------------------------- */
/* -------------------------------------------------------------------- */

.video-container video {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.robot-frame {
  position: relative;
  padding: 15px;
  background: linear-gradient(145deg, #2b2b2b, #1a1a1a);
  border-radius: 12px;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.robot-frame.show {
  opacity: 1;
  transform: translateY(0);
}

.robot-frame video {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.scanner-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.scanner-path {
  fill: none;
  stroke: red;
  stroke-width: 4;
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  stroke-linejoin: round;
  animation: none;
}

.robot-frame.final .scanner-path {
  animation: traceBorder 3s linear forwards,
    disappearLine 0.5s linear forwards 3s;
}

.robot-frame.final::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 4px solid red;
  border-radius: 12px;
  box-shadow: 0 0 25px red;
  opacity: 0;
  animation: showFinalBorder 0.5s ease-in forwards 3s;
}

.scanner-point {
  position: absolute;
  width: 10px;
  height: 10px;
  background: red;
  border-radius: 50%;
  box-shadow: 0 0 15px red;
  animation: none;
}

.robot-frame.final .scanner-point {
  animation: movePoint 3s linear forwards, disappear 0.5s linear forwards 3s;
}

@keyframes traceBorder {
  from {
    stroke-dashoffset: 400;
  }
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes disappearLine {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes movePoint {
  0% {
    top: 0;
    left: 0;
  }
  25% {
    top: 0;
    left: 100%;
  }
  50% {
    top: 100%;
    left: 100%;
  }
  75% {
    top: 100%;
    left: 0;
  }
  100% {
    top: 0;
    left: 0;
  }
}

@keyframes disappear {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes showFinalBorder {
  to {
    opacity: 1;
  }
}

.text-container.hidden {
  opacity: 0;
  transform: translateY(50px);
  /* transition: opacity 1s ease-out, transform 2s ease-out; */
  transition: opacity 3s ease-out, transform 2s ease-out;
}

.text-container.show {
  opacity: 1;
  transform: translateY(0);
}

/* ----------------------------------------------------------------------- */
/* -------------------------------- Socials Btn -------------------------- */
/* ----------------------------------------------------------------------- */
/* DISCORD */
.discord-button {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: transform 0.2s ease, border 0.3s ease, box-shadow 0.3s ease;
  border: 3px solid transparent;
  outline: none;
}
.discord-button.clicked .discord-logo {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%)
    hue-rotate(0deg) brightness(100%) contrast(100%);
}
.discord-button:hover {
  transform: scale(1.1);
  border-color: red;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.9), inset 0 0 10px rgba(255, 0, 0, 0.8);
}
.discord-button:hover .discord-logo {
  filter: brightness(0) saturate(100%) invert(58%) sepia(14%) saturate(2042%)
    hue-rotate(220deg) brightness(95%) contrast(105%);
}
.discord-logo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  transition: filter 0.3s ease;
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%)
    hue-rotate(0deg) brightness(100%) contrast(100%);
}

/* FACEBOOK */
.facebook-button {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: transform 0.2s ease, border 0.3s ease, box-shadow 0.3s ease;
  border: 3px solid transparent;
  outline: none;
}
.facebook-button.clicked .facebook-logo {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%)
    hue-rotate(0deg) brightness(100%) contrast(100%);
}
.facebook-button:hover {
  transform: scale(1.1);
  border-color: red;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.9), inset 0 0 10px rgba(255, 0, 0, 0.8);
}
.facebook-button:hover .facebook-logo {
  width: 80%;
  height: 80%;
  border-radius: 50%;
  filter: brightness(0) saturate(100%) invert(34%) sepia(95%) saturate(740%)
    hue-rotate(200deg) brightness(95%) contrast(95%);
}
.facebook-logo {
  width: 90%;
  height: 90%;
  border-radius: 50%;
  transition: filter 0.3s ease, width 0.3s ease, height 0.3s ease;
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%)
    hue-rotate(0deg) brightness(100%) contrast(100%);
}

/* INSTAGRAM */
.instagram-button {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: transform 0.2s ease, border 0.3s ease, box-shadow 0.3s ease;
  border: 3px solid transparent;
  outline: none;
}
.instagram-button.clicked .instagram-logo {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%)
    hue-rotate(0deg) brightness(100%) contrast(100%);
}
.instagram-button:hover {
  transform: scale(1.1);
  border-color: red;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.9), inset 0 0 10px rgba(255, 0, 0, 0.8);
}
.instagram-button:hover .instagram-logo {
  width: 80%;
  height: 80%;
  filter: brightness(0) saturate(100%) invert(15%) sepia(75%) saturate(1000%)
    hue-rotate(340deg) brightness(90%) contrast(100%);
}
.instagram-logo {
  width: 90%;
  height: 90%;
  border-radius: 50%;
  transition: filter 0.3s ease, width 0.3s ease, height 0.3s ease;
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%)
    hue-rotate(0deg) brightness(100%) contrast(100%);
}

/* Raydium */
.raydium-button {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: transform 0.2s ease, border 0.3s ease, box-shadow 0.3s ease;
  border: 3px solid transparent;
  outline: none;
}
.raydium-button:hover {
  transform: scale(1.1);
  border-color: red;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.9), inset 0 0 10px rgba(255, 0, 0, 0.8);
}
.raydium-logo {
  width: 90%;
  height: 90%;
  border-radius: 50%;
  transition: filter 0.3s ease, width 0.3s ease, height 0.3s ease;
  filter: brightness(0) saturate(100%) invert(100%);
}
.raydium-button:hover .raydium-logo {
  filter: brightness(0) saturate(100%) invert(56%) sepia(85%) saturate(749%)
    hue-rotate(159deg) brightness(97%) contrast(101%);
}

/* TELEGRAM */
.telegram-button {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: transform 0.2s ease, border 0.3s ease, box-shadow 0.3s ease;
  border: 3px solid transparent;
  outline: none;
}
.telegram-button.clicked .telegram-logo {
  filter: invert(100%);
}
.telegram-button:hover {
  transform: scale(1.1);
  border-color: red;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.9), inset 0 0 10px rgba(255, 0, 0, 0.8);
}
.telegram-button:hover .telegram-logo {
  width: 80%;
  height: 80%;
  filter: brightness(0) saturate(100%) invert(47%) sepia(91%) saturate(1135%)
    hue-rotate(176deg) brightness(97%) contrast(96%);
}
.telegram-logo {
  width: 90%;
  height: 90%;
  border-radius: 50%;
  transition: filter 0.3s ease, width 0.3s ease, height 0.3s ease;
  filter: invert(100%);
}

/* TIKTOK */
.tiktok-button {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: transform 0.2s ease, border 0.3s ease, box-shadow 0.3s ease;
  border: 3px solid transparent;
  outline: none;
}
.tiktok-button.clicked .tiktok-logo {
  filter: invert(100%);
}
.tiktok-button:hover {
  transform: scale(1.1);
  border-color: red;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.9), inset 0 0 10px rgba(255, 0, 0, 0.8);
}
.tiktok-button:hover .tiktok-logo {
  width: 80%;
  height: 80%;
  filter: brightness(0) saturate(100%) invert(23%) sepia(97%) saturate(6030%)
    hue-rotate(163deg) brightness(100%) contrast(103%);
}
.tiktok-logo {
  width: 90%;
  height: 90%;
  border-radius: 50%;
  transition: filter 0.3s ease, width 0.3s ease, height 0.3s ease;
  filter: invert(100%);
}

/* X */
.x-button {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: transform 0.2s ease, border 0.3s ease, box-shadow 0.3s ease;
  border: 3px solid transparent;
  outline: none;
}
.x-button.clicked .x-logo {
  filter: invert(100%);
}
.x-button:hover {
  transform: scale(1.1);
  border-color: red;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.9), inset 0 0 10px rgba(255, 0, 0, 0.8);
}
.x-button:hover .x-logo {
  width: 80%;
  height: 80%;
  filter: invert(0%);
}
.x-logo {
  width: 90%;
  height: 90%;
  border-radius: 50%;
  transition: filter 0.3s ease, width 0.3s ease, height 0.3s ease;
  filter: invert(100%);
}

/* YOUTUBE */
.youtube-button {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: transform 0.2s ease, border 0.3s ease, box-shadow 0.3s ease;
  border: 3px solid transparent;
  outline: none;
}
.youtube-button.clicked .youtube-logo {
  filter: invert(100%);
}
.youtube-button:hover {
  transform: scale(1.1);
  border-color: red;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.9), inset 0 0 10px rgba(255, 0, 0, 0.8);
}
.youtube-button:hover .youtube-logo {
  width: 80%;
  height: 80%;
  filter: brightness(0) saturate(100%) invert(16%) sepia(94%) saturate(7480%)
    hue-rotate(357deg) brightness(97%) contrast(105%);
}
.youtube-logo {
  width: 90%;
  height: 90%;
  border-radius: 50%;
  transition: filter 0.3s ease, width 0.3s ease, height 0.3s ease;
  filter: invert(100%);
}

/* -------------------------------------------------------------------- */
/* -------------------------------- Progress -------------------------- */
/* -------------------------------------------------------------------- */
.btn-container {
  background: linear-gradient(135deg, #4d4d4d, #001f3f);
  border: 2px solid #4d4d4d;
  border-radius: 8px;
  padding: 20px;
}

.progress-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  /* margin-bottom: 12px; */
  background-color: #001f3f;
  border: 1px solid #4d4d4d;
  border-radius: 6px;
  /* font-size: 10px; */
}
.progress-name {
  flex: 1;
  align-self: center;
  justify-content: center;
  /* text-decoration: none; */
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 250px;
  /* font-size: 10px; */

  font-weight: bold;
  margin: 0px 10px;
}
.progress-bar {
  /* flex: 0.25; */
  flex: 1;
  height: 8px;
  background-color: #1a1a1a;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  /* margin-right: 15px; */
  margin: 0px 10px;
}
.progress-fill {
  height: 100%;
  background-color: #0072ff;
  width: 0%;
  transition: width 0.5s ease;
}
.progress-percent,
.progress-token {
  flex: 0.75;
  display: flex;
  gap: 15px;
  color: #ffffff;
  /* font-size: 10px; */
  font-weight: bold;
  align-items: center;
  margin: 0px 10px;
}
.progress-percent {
  justify-content: start;
}
.progress-token {
  justify-content: end;
}

.verify-link {
  /* position: relative; */
  display: flex;
  flex: 1.2;
  margin: 0px 5px;
  /* padding: 5px 10px; */
  align-self: center;
  justify-content: center;
  align-items: center;
  /* font-size: 10px; */
  font-size: 0.6rem;
  font-weight: bolder;
  text-transform: uppercase;
  letter-spacing: 2px;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
}

/* --------------------------------------------------------------- */
/* ---------------------------- Img Gallery ---------------------- */
/* --------------------------------------------------------------- */
.gallery img {
  width: 100%;
  /* height: auto; */
  /* height: 75vw; */
  /* height: 35vw; */
  height: 18vw;
  object-fit: cover;
  cursor: pointer;
}
.modal-body {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 85vh;
}
.modal-body img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
}

/* ----------------------------------------------------------------- */
/* ---------------------------- Media Queries ---------------------- */
/* ----------------------------------------------------------------- */

@media (min-width: 200px) {
  h2 {
    font-size: 1.2rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  p {
    font-size: 0.6rem;
  }
  .button-3d {
    font-size: 0.6rem;
  }
}

@media (min-width: 400px) {
  .header-content h1 {
    font-size: 2em;
  }
  .header-content p {
    font-size: 1em;
  }
  nav li {
    width: 20vw;
  }
  .txt-lg {
    font-size: 0.6rem;
  }
}

@media (min-width: 576px) {
  nav li {
    font-size: 0.7rem;
    /* width: 2cm; */
  }

  .header-content h1 {
    font-size: 3em;
  }
  .header-content p {
    font-size: 1.5em;
  }
}

@media (min-width: 768px) {
  nav li {
    font-size: 0.8rem;
    width: 15vw;
  }
  .header-content h1 {
    font-size: 4em;
  }
  .header-content p {
    font-size: 2.05em;
  }
}

@media (min-width: 900px) {
  h2 {
    font-size: 1.4rem;
  }
  h3 {
    font-size: 1.2rem;
  }
  p {
    font-size: 0.8rem;
  }
  .button-3d {
    font-size: 0.8rem;
  }
  nav li {
    font-size: 0.9rem;
  }
  .txt-lg {
    font-size: 0.8rem;
  }
  .header-content h1 {
    font-size: 5em;
  }
  .header-content p {
    font-size: 2.5em;
  }
}
@media (min-width: 1200px) {
  h2 {
    font-size: 1.7rem;
  }
  h3 {
    font-size: 1.5rem;
  }
  p {
    font-size: 1rem;
  }

  .header-content h1 {
    font-size: 6em;
  }
  .header-content p {
    font-size: 3em;
  }
}

@media (min-width: 1400px) {
  section .info-space {
    padding-left: calc((100% - 1400px) / 2) !important;
    padding-right: calc((100% - 1400px) / 2) !important;
  }
}

/* SECOND PART  */

h1.main-title {
  text-align: center;
  font-size: 3vh;
  margin-top: 4vh;
  margin-bottom: 2vh;
  color: #ffffff;
}

.timeline {
  position: relative;
  max-width: 1200px; /* ou même 90% */
  width: 90%; /* prend 90% de la page */
  margin: 0 auto;
  padding-top: 28vh;
  counter-reset: step;
  z-index: 0;
}

.timeline-start-icon {
  position: absolute;
  top: 2vh;
  left: 50%;
  transform: translateX(-50%) translateY(-100px);
  opacity: 0;
  width: 25vh;
  height: 25vh;
  z-index: 2;
  transition: transform 1s ease-out, opacity 1s ease-out;
}

.timeline-start-icon.visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.timeline-line {
  position: absolute;
  width: 6px;
  top: 17vh;
  left: 50%;
  transform: translateX(-50%);
  height: 0;
  background: linear-gradient(to bottom, #ff0000, #ff5e5e, #fff 90%);
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.8), 0 0 20px rgba(255, 0, 0, 0.6),
    0 0 30px rgba(255, 0, 0, 0.4);
  border-radius: 10px;
  transition: height 1s ease, box-shadow 0.4s ease;
  z-index: 0;
  animation: glowline 2s infinite alternate;
}

@keyframes glowline {
  0% {
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.8), 0 0 20px rgba(255, 0, 0, 0.6),
      0 0 30px rgba(255, 0, 0, 0.4);
  }
  100% {
    box-shadow: 0 0 20px rgba(255, 0, 0, 1), 0 0 30px rgba(255, 0, 0, 0.8),
      0 0 40px rgba(255, 0, 0, 0.6);
  }
}

.step {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  width: 100%;
  padding: 8vh 0;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.9s ease;
}

.step.visible {
  opacity: 1;
  transform: translateY(0);
}

.step::after {
  content: counter(step);
  counter-increment: step;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  background: radial-gradient(circle, #ff1a1a, #a40000);
  border: 3px solid #ff4d4d;
  border-radius: 50%;
  z-index: 2;
  box-shadow: 0 0 12px rgba(255, 0, 0, 0.9), 0 0 24px rgba(255, 0, 0, 0.6),
    0 0 36px rgba(255, 0, 0, 0.4);
  animation: pulsePoint 2.5s infinite;
  color: white;
  font-weight: bold;
  text-align: center;
  line-height: 36px;
  font-size: 16px;
  font-family: "Orbitron", sans-serif;
  transition: background 0.5s, border-color 0.5s, box-shadow 0.5s;
}

@keyframes pulsePoint {
  0% {
    transform: translateX(-50%) scale(1);
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.9), 0 0 20px rgba(255, 0, 0, 0.7),
      0 0 30px rgba(255, 0, 0, 0.5);
  }
  50% {
    transform: translateX(-50%) scale(1.3);
    box-shadow: 0 0 20px rgba(255, 0, 0, 1), 0 0 30px rgba(255, 0, 0, 0.8),
      0 0 40px rgba(255, 0, 0, 0.6);
  }
  100% {
    transform: translateX(-50%) scale(1);
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.9), 0 0 20px rgba(255, 0, 0, 0.7),
      0 0 30px rgba(255, 0, 0, 0.5);
  }
}

/*.step.pulsed::after {
  animation: pulseSticker 0.6s ease;
}

@keyframes pulseSticker {
  0% { transform: translateX(-50%) scale(1); }
  50% { transform: translateX(-50%) scale(1.5); }
  100% { transform: translateX(-50%) scale(1); }
}*/

.step-content {
  /* width: 50%; */
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.step-content:nth-child(2) {
  /* width: 35%; */
  padding: 0 2vw;
  align-items: flex-start;
}
.step img {
  width: 45vh;
  height: 45vh;
  object-fit: contain;
  border-radius: 8px;
  cursor: pointer;
  margin-bottom: 0vh;
}

/* SM576 MD768  */
/* @media (min-width: 768px) { */
@media (min-width: 576px) {
  .step-content {
    width: 35%;
  }
  .step-content:nth-child(2) {
    width: 35%;
  }
}

@keyframes megaImageIn {
  0% {
    opacity: 0;
    transform: rotateY(90deg) scale(1.4) translateY(60px);
    filter: blur(8px);
  }
  50% {
    opacity: 0.7;
    transform: rotateY(-10deg) scale(1.05) translateY(-10px);
    filter: blur(2px);
  }
  100% {
    opacity: 1;
    transform: rotateY(0deg) scale(1) translateY(0);
    filter: blur(0);
  }
}
.step.visible img {
  opacity: 1;
  transform: none;
  animation: megaImageIn 1.4s ease-out forwards,
    glowAura 3s ease-in-out infinite 1.4s;
}
@keyframes secondImageReveal {
  0% {
    opacity: 0;
    transform: scale(0.8) rotate(-10deg);
    filter: brightness(1.5) blur(10px);
  }
  40% {
    opacity: 1;
    transform: scale(1.05) rotate(2deg);
    filter: brightness(2) blur(2px);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
    filter: brightness(1) blur(0);
  }
}
.animate-second-img {
  animation: secondImageReveal 1.2s ease-out;
}
@keyframes glitchIn {
  0% {
    opacity: 0;
    transform: scale(0.9) translate(0px, 0px);
    filter: brightness(2) contrast(1.5);
  }
  20% {
    transform: scale(1.05) translate(3px, -2px);
    filter: brightness(1.2) hue-rotate(20deg);
  }
  40% {
    transform: scale(0.95) translate(-2px, 2px);
    filter: brightness(1.8) hue-rotate(-20deg);
  }
  60% {
    transform: scale(1.03) translate(1px, -1px);
    filter: brightness(1.5);
  }
  80% {
    transform: scale(1) translate(0, 0);
    filter: brightness(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1) translate(0, 0);
    filter: brightness(1) contrast(1);
  }
}

.glitch-effect {
  animation: glitchIn 0.8s ease-out;
}

.step h3 {
  color: #ffffff;
  margin: 20px 0 10px;
  text-align: center;
}

.step p {
  text-align: justify;
  font-size: 0.95rem;
  line-height: 1.5;
  opacity: 0.85;
}

.left {
  flex-direction: row;
}

.right {
  flex-direction: row-reverse;
}

.fullscreen-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 8000;
}

.fullscreen-overlay img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
  position: absolute;
  transition: opacity 0.8s ease;
}

#fullscreenImage2 {
  z-index: 2;
  opacity: 0;
}
/*---------------------------------bouton finish---------------------------------*/
/* === FINISH POINT === */
.finish-step {
  min-height: 150px;
}

.finish-step::after {
  content: "FINISH" !important;
  counter-increment: none !important;
  background: radial-gradient(circle, #ff1a1a, #a40000);
  border: 3px solid #ff4d4d;
  width: 80px;
  height: 80px;
  line-height: 80px;
  font-size: 14px;
  color: white;
  text-align: center;
  font-weight: bold;
  font-family: "Orbitron", sans-serif;
  text-shadow: 0 0 3px rgba(255, 255, 255, 0.6);
  box-shadow: 0 0 12px rgba(255, 0, 0, 0.9), 0 0 24px rgba(255, 0, 0, 0.6),
    0 0 36px rgba(255, 0, 0, 0.4);
  animation: pulsePoint 2.5s infinite;
  transform: translateX(-50%);
  position: absolute;
  top: 0;
  left: 50%;
  border-radius: 50%;
  z-index: 2;
  cursor: pointer;
}

@keyframes finishPulse {
  0%,
  100% {
    transform: translateX(-50%) scale(1);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.6), 0 0 20px rgba(0, 255, 255, 0.4),
      inset 0 0 8px rgba(0, 255, 255, 0.2);
  }
  50% {
    transform: translateX(-50%) scale(1.2);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.9), 0 0 40px rgba(0, 255, 255, 0.6),
      inset 0 0 12px rgba(0, 255, 255, 0.3);
  }
}
/******************designe des point numeroté boutons dans le texte *******************/
.numbered-point {
  display: flex;
  align-items: flex-start;
  margin: 12px 0;
}

.num-badge {
  min-width: 30px;
  height: 30px;
  background: radial-gradient(circle, #ff1a1a, #a40000);
  color: white;
  font-family: "Orbitron", sans-serif;
  font-weight: bold;
  font-size: 16px;
  text-align: center;
  line-height: 30px;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(255, 0, 0, 0.8), 0 0 24px rgba(255, 0, 0, 0.6);
  margin-right: 12px;
  flex-shrink: 0;
}
/*-------------------------------------------adress du token--------------------------------------*/
.address-label {
  margin-top: 10px;
  font-weight: bold;
  font-size: 1rem;
  color: #ff4d4d;
  font-family: "Orbitron", sans-serif;
  text-shadow: 0 0 6px rgba(255, 77, 77, 0.7);
}

.trumptr-address {
  margin-top: 8px;
  padding: 12px 20px;
  font-size: 14 rem;
  font-family: "Courier New", monospace;
  background: linear-gradient(135deg, #1a1a1a, #2e2e2e);
  border: 2px solid #ff0000;
  border-radius: 8px;
  color: #ff4d4d;
  word-break: break-all;
  box-shadow: 0 0 12px rgba(255, 0, 0, 0.5), inset 0 0 8px rgba(255, 0, 0, 0.3);
  text-align: center;
  animation: glowPulse 2s infinite ease-in-out;
}

@keyframes glowPulse {
  0%,
  100% {
    box-shadow: 0 0 12px rgba(255, 0, 0, 0.6),
      inset 0 0 8px rgba(255, 0, 0, 0.4);
  }
  50% {
    box-shadow: 0 0 24px rgba(255, 0, 0, 0.9),
      inset 0 0 12px rgba(255, 0, 0, 0.6);
  }
}

/* WALLET WIKI ANIMATION  */

.wallet-container {
  position: relative;
  width: 120px;
  height: 120px;
  transition: transform 0.5s ease, box-shadow 0.3s ease, filter 0.3s ease;
}

.wallet-container:hover {
  transform: scale(1.15) rotate(-3deg);
  box-shadow: none;
  filter: none;
}

.wallet-button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 2;
  position: relative;
}

.wallet-button img {
  width: 220px;
  height: auto;
  border-radius: 20px;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.orbit-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  transform-origin: center center;
  pointer-events: none;
}

.orbit-image {
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(0);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.orbit1 .orbit-image {
  width: 150px;
  height: 150px;
}
.orbit2 .orbit-image {
  width: 80px;
  height: 80px;
}
.orbit3 .orbit-image {
  width: 100px;
  height: 100px;
}

.wallet-container:first-of-type .orbit1.active {
  animation: rotate 6s linear infinite;
}
.wallet-container:first-of-type .orbit2.active {
  animation: rotate 8s linear infinite;
}
.wallet-container:first-of-type .orbit3.active {
  animation: rotate 10s linear infinite;
}

.wallet-container:first-of-type .orbit1.active .orbit-image {
  transform: scale(1) translateX(100px);
  opacity: 1;
}
.wallet-container:first-of-type .orbit2.active .orbit-image {
  transform: scale(1) translateX(90px);
  opacity: 1;
}
.wallet-container:first-of-type .orbit3.active .orbit-image {
  transform: scale(1) translateX(110px);
  opacity: 1;
}

.wallet-container:nth-of-type(2) .orbit1.active .orbit-image,
.wallet-container:nth-of-type(3) .orbit1.active .orbit-image {
  animation: popOrbit1Far 0.5s ease-out forwards,
    upright1Far 6s linear infinite 0.5s;
}

.wallet-container:nth-of-type(2) .orbit2.active .orbit-image,
.wallet-container:nth-of-type(3) .orbit2.active .orbit-image {
  animation: popOrbit2Far 0.5s ease-out forwards,
    upright2Far 8s linear infinite 0.5s;
}

.wallet-container:nth-of-type(2) .orbit3.active .orbit-image,
.wallet-container:nth-of-type(3) .orbit3.active .orbit-image {
  animation: popOrbit3Far 0.5s ease-out forwards,
    upright3Far 10s linear infinite 0.5s;
}

.wallet-container:nth-of-type(2) .orbit1 .orbit-image,
.wallet-container:nth-of-type(3) .orbit1 .orbit-image {
  width: 180px;
  height: 180px;
}

.wallet-container:nth-of-type(2) .orbit2 .orbit-image,
.wallet-container:nth-of-type(3) .orbit2 .orbit-image {
  width: 120px;
  height: 120px;
}

.wallet-container:nth-of-type(2) .orbit3 .orbit-image,
.wallet-container:nth-of-type(3) .orbit3 .orbit-image {
  width: 180px;
  height: 180px;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes popOrbit1Far {
  0% {
    transform: scale(0) translateX(0px);
    opacity: 0;
  }
  100% {
    transform: scale(1) translateX(120px);
    opacity: 1;
  }
}

@keyframes popOrbit2Far {
  0% {
    transform: scale(0) translateX(0px);
    opacity: 0;
  }
  100% {
    transform: scale(1) translateX(140px);
    opacity: 1;
  }
}

@keyframes popOrbit3Far {
  0% {
    transform: scale(0) translateX(0px);
    opacity: 0;
  }
  100% {
    transform: scale(1) translateX(160px);
    opacity: 1;
  }
}

@keyframes upright1Far {
  0% {
    transform: scale(1) rotate(0deg) translateX(240px) rotate(0deg);
  }
  100% {
    transform: scale(1) rotate(360deg) translateX(240px) rotate(-360deg);
  }
}

@keyframes upright2Far {
  0% {
    transform: scale(1) rotate(0deg) translateX(280px) rotate(0deg);
  }
  100% {
    transform: scale(1) rotate(360deg) translateX(280px) rotate(-360deg);
    /* transform: scale(1) rotate(360deg) translateX(280px) rotate(-360deg); */
  }
}

@keyframes upright3Far {
  0% {
    transform: scale(1) rotate(0deg) translateX(320px) rotate(0deg);
  }
  100% {
    transform: scale(1) rotate(360deg) translateX(320px) rotate(-360deg);
  }
}
.wallet-container:hover .wallet-button img {
  filter: drop-shadow(0 0 8px red) drop-shadow(0 0 16px red);
  transform: scale(1.05);
}

/* ------------------------------------------------------- */
/* ---------------------------- NEWS ---------------------- */
/* ------------------------------------------------------- */

/* Breaking news ticker */
.breaking-ticker {
  width: 100%;
  background: #ff0033;
  padding: 12px 0;
  overflow: hidden;
  position: relative;
  font-weight: bold;
  font-size: 1.1rem;
  color: white;
}

.ticker-track {
  white-space: nowrap;
  overflow: hidden;
}

.ticker-text {
  display: inline-block;
  padding-left: 100%;
  animation: tickerScroll 20s linear infinite;
}

@keyframes tickerScroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

iframe {
  border-radius: 12px;
}

.news-feed {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px 100px;
}

.news-item {
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

.news-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.news-date {
  font-size: 0.9rem;
  /* color: #99bbff; */
  color: #ff0000;
  margin-bottom: 6px;
}

.news-title {
  font-size: 1.5rem;
  /* color: #00f0ff; */
  margin-bottom: 10px;
}

.news-text {
  /* font-size: 1rem;
  color: #e0e0e0; */
  line-height: 1.6;
}

.twitter-matrix {
  /* max-width: 1200px; */
  margin: 80px auto;
  padding: 0 20px;
  text-align: center;
}

.twitter-matrix-title {
  /* font-size: 2rem; */
  /* color: #00f0ff; */
  /* margin-bottom: 30px; */
  /* text-shadow: 0 0 10px rgba(0, 240, 255, 0.3); */
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

#globe {
  width: 60px;
  height: 60px;
}

.twitter-matrix-grid {
  /* display: flex;
  flex-wrap: wrap;
  gap: 30px; */
  justify-content: center;
}

.twitter-frame {
  /* flex: 1 1 320px;
  max-width: 400px;
  min-width: 280px; */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.1);
}

/* .social-section { */
/* text-align: center; */
/* margin: 80px 20px; */
/* } */

/* .social-section h3 {
  color: #ffcc00;
  font-size: 1.3rem;
  margin-bottom: 10px;
} */

/* .social-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
} */

/* .social-links a {
  color: #00f0ff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
} */

/* .social-links a:hover {
  color: #ffcc00;
} */

#sphere canvas {
  display: block;
}
