/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #0a0a0a;
  color: #f5f5f5;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

/* Navbar */
.navbar {
  background: #0a0a0a;
  border-bottom: 1px solid #222;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 0; /* <- retire le padding gauche */
}

.logo {
  font-size: 1.8rem;
  color: #0ae627;
  position: relative;
  animation: glitch 2s infinite;
}

@keyframes glitch {
  0% { text-shadow: 2px 0 red, -2px 0 blue; }
  20% { text-shadow: -2px 0 red, 2px 0 blue; }
  40% { text-shadow: 2px 2px red, -2px -2px blue; }
  60% { text-shadow: -2px -2px red, 2px 2px blue; }
  100% { text-shadow: 2px 0 red, -2px 0 blue; }
}

nav a {
  color: #ccc;
  margin-left: 15px;
  text-decoration: none;
}

nav a:hover {
  color: #fff;
}

/* Past Tokens */
.past-tokens {
  background: #111;
  padding: 12px 0;
  border-bottom: 1px solid #222;
  overflow: hidden;
  position: relative;
}

.scroll-wrapper {
  overflow: hidden;
  width: 100%;
}

.scroll-track {
  display: flex;
  gap: 20px;
  animation: scroll 30s linear infinite;
  white-space: nowrap;
}

.scroll-track:hover {
  animation-play-state: paused;
}

.token-card-scroll {
  flex: 0 0 auto;
  background: #1f1f1f;
  border: 1px solid #3ecf8e22;
  padding: 8px 20px;
  border-radius: 999px;
  font-weight: bold;
  color: #3ecf8e;
  font-size: 0.9rem;
  box-shadow: 0 0 10px #3ecf8e22;
}

@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

/* Token of the Day */
.today-token {
  text-align: center;
  padding: 40px 20px;
  margin-top: -1px; /* <-- ajout ici */
}

.token-card {
  background: #1a1a1a;
  padding: 30px;
  border-radius: 10px;
  display: inline-block;
  max-width: 500px;
  box-shadow: 0 0 10px #3ecf8e44;
  animation: pulse 3s infinite ease-in-out;
}

@keyframes pulse {
  0% { box-shadow: 0 0 10px #3ecf8e44; }
  50% { box-shadow: 0 0 25px #3ecf8eaa; }
  100% { box-shadow: 0 0 10px #3ecf8e44; }
}

.token-logo {
  width: 100px;
  margin-bottom: 15px;
}

.token-card h3 {
  font-size: 2rem;
  color: #3ecf8e;
}

.description {
  margin: 10px 0 20px;
}

.buttons a {
  display: inline-block;
  margin: 5px 10px;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: #3ecf8e;
  color: #0a0a0a;
}

.btn-secondary {
  background-color: #333;
  color: #fff;
}

.btn-primary:hover,
.btn-secondary:hover,
.token-card:hover {
  box-shadow: 0 0 20px #3ecf8e88, 0 0 10px #3ecf8e44;
  transform: scale(1.03);
}

/* Partner Bar */
.partner-bar {
  margin-top: 40px;
  padding: 20px 0;
  background: #111;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
  text-align: center;
}

.partner-bar h3 {
  margin-bottom: 120px;
  font-size: 5rem;
  color: #ccc;
}

.partner-scroll-wrapper {
  overflow: hidden;
}

.partner-scroll-track {
  display: flex;
  gap: 40px;
  animation: scroll 40s linear infinite;
  white-space: nowrap;
}

.partner-scroll-track:hover {
  animation-play-state: paused;
}

.partner {
  flex: 0 0 auto;
  background: transparent;
  padding: 10px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
}

.partner img {
  height: 40px;
  max-width: 100px;
  filter: drop-shadow(0 0 3px #3ecf8e55);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.partner img:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 0 10px #3ecf8eaa);
}


/* Footer */
.footer {
  background: #111;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  color: #777;
}

/* Slogan */
.slogan.section {
  text-align: center;
  padding: 40px 20px;
}

.slogan.section h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #ffffff;
  text-shadow: 0 0 10px #3ecf8e77;
}

.slogan.section h4 {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.5;
  color: #3ecf8e;
}

/* ✅ Responsive Mobile */
@media (max-width: 768px) {
  .slogan.section h2 {
    font-size: 1.6rem;
  }

  .slogan.section h4 {
    font-size: 1rem;
    padding: 0 10px;
  }
}

/* Section fade-in on scroll */
.section {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease-out;
}
.section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* FAQ */
.faq {
  padding: 40px 20px;
  background: #0a0a0a;
  border-top: 1px solid #222;
  text-align: center;
}

.faq h2 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: #3ecf8e;
}

.faq-item {
  max-width: 700px;
  margin: 10px auto;
  text-align: left;
}

.faq-question {
  width: 100%;
  padding: 15px 20px;
  font-size: 1rem;
  background: #1a1a1a;
  color: #3ecf8e;
  border: 1px solid #3ecf8e44;
  border-radius: 6px;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s;
}

.faq-question:hover {
  background: #222;
}

.faq-answer {
  background: #121212;
  padding: 15px 20px;
  border-radius: 0 0 6px 6px;
  border-top: none;
  border: 1px solid #3ecf8e22;
  color: #ccc;
  display: none;
}
.faq-section {
  padding: 40px 20px;
  background: #0a0a0a;
  border-top: 1px solid #222;
  color: #f5f5f5;
  text-align: center;
}
.faq-section h2 {
  color: #3ecf8e;
  font-size: 2rem;
  margin-bottom: 20px;
}
.today-token h2 {
  position: relative;
  top: -20px;
}
.partner-bar h2 {
  position: relative;
  top: -10px;
}
.phantom-btn {
  background-color: #551BF9;
  color: white;
}

.phantom-btn:hover {
  background-color: #7A4DFF;
  box-shadow: 0 0 15px #551BF988;
}
.faq {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.faq-item {
  text-align: center;
}
.faq-section .btn {
  display: inline-block;
  padding: 12px 24px;
  font-size: 1rem;
  margin: 10px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
}
/* Navigation Icons */
.nav-icons {
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav-icons .icon {
  width: 26px;
  height: 26px;
  transition: transform 0.3s ease, filter 0.3s ease, box-shadow 0.3s;
  filter: brightness(1) drop-shadow(0 0 2px #3ecf8e44);
}

.nav-icons .icon:hover {
  transform: scale(1.2);
  filter: brightness(1.3) drop-shadow(0 0 6px #3ecf8eaa);
  box-shadow: 0 0 8px #3ecf8e77;
}

.why-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.why-card {
  background: #1a1a1a;
  border: 1px solid #3ecf8e44;
  box-shadow: 0 0 10px #3ecf8e33;
  padding: 20px;
  border-radius: 12px;
  width: 280px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
  transform: scale(1.03);
  box-shadow: 0 0 20px #3ecf8e88;
}

.why-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #3ecf8e;
}

.why-card p {
  color: #ccc;
  font-size: 0.95rem;
}
.icon-box {
  margin-bottom: 10px;
}

.icon-box img {
  width: 70px;
  height: 70px;
  filter: drop-shadow(0 0 5px #3ecf8e88);
  transition: transform 0.3s ease;
}

.why-card:hover .icon-box img {
  transform: scale(1.2);
  filter: drop-shadow(0 0 12px #3ecf8eaa);
}
.how-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.how-card {
  background: #1a1a1a;
  border: 1px solid #3ecf8e44;
  box-shadow: 0 0 10px #3ecf8e33;
  padding: 20px;
  border-radius: 12px;
  width: 280px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.how-card:hover {
  transform: scale(1.03);
  box-shadow: 0 0 20px #3ecf8e88;
}

.how-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #3ecf8e;
}

.how-card p {
  color: #ccc;
  font-size: 0.95rem;
}

.icon-box {
  margin-bottom: 10px;
}

.icon-svg {
  width: 36px;
  height: 36px;
  stroke: #3ecf8e;
  filter: drop-shadow(0 0 4px #3ecf8e55);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.how-card:hover .icon-svg {
  transform: scale(1.2);
  filter: drop-shadow(0 0 10px #3ecf8eaa);
}
.roadmap-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.roadmap-card {
  background: #1a1a1a;
  border: 1px solid #3ecf8e44;
  box-shadow: 0 0 10px #3ecf8e33;
  padding: 20px;
  border-radius: 12px;
  width: 320px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.roadmap-card:hover {
  transform: scale(1.03);
  box-shadow: 0 0 20px #3ecf8e88;
}

.roadmap-card h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: #3ecf8e;
  text-align: center;
}

.roadmap-card ul {
  padding-left: 20px;
  list-style: none;
  color: #ccc;
  font-size: 0.95rem;
}

.roadmap-card ul li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}

.roadmap-card ul li::before {
  content: "•";
  color: #3ecf8e;
  position: absolute;
  left: 0;
}

.icon-box {
  text-align: center;
  margin-bottom: 10px;
}

.icon-svg {
  width: 36px;
  height: 36px;
  stroke: #3ecf8e;
  filter: drop-shadow(0 0 4px #3ecf8e55);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.roadmap-card:hover .icon-svg {
  transform: scale(1.2);
  filter: drop-shadow(0 0 10px #3ecf8eaa);
}
/* Centrage propre de la section FAQ */
.faq {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
  background: #0a0a0a;
  border-top: 1px solid #222;
}

.faq h2 {
  text-align: center;
  font-size: 1.8rem;
  color: #3ecf8e;
  margin-bottom: 30px;
}

.faq p {
  max-width: 800px;
  text-align: center;
  margin-bottom: 20px;
  color: #ccc;
}

/* Harmoniser largeur des questions/réponses */
.faq-item {
  width: 100%;
  max-width: 400px;
  margin: 10px 0;
}
.logo-box {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: -50px; /* contrôle à quel point il est proche du bord */
}


.token-logo {
  width: 90px;
  height: 90px;
  border-radius: 6px;
}
.roadmap-slider {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.roadmap-card {
  display: none;
  background: #1a1a1a;
  border: 1px solid #3ecf8e44;
  box-shadow: 0 0 10px #3ecf8e33;
  padding: 20px;
  border-radius: 12px;
  text-align: left;
  transition: opacity 0.3s ease;
}

.roadmap-card.active {
  display: block;
}

.roadmap-card h3 {
  color: #3ecf8e;
  margin-bottom: 10px;
  font-size: 1.2rem;
  text-align: center;
}

.roadmap-card ul {
  padding-left: 20px;
  list-style: none;
}

.roadmap-card ul li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
  color: #ccc;
}

.roadmap-card ul li::before {
  content: "•";
  color: #3ecf8e;
  position: absolute;
  left: 0;
}

.roadmap-nav {
  margin-top: 20px;
  text-align: center;
}

.roadmap-nav button {
  background: #3ecf8e;
  color: #0a0a0a;
  padding: 10px 20px;
  border: none;
  font-weight: bold;
  margin: 0 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.roadmap-nav button:hover {
  box-shadow: 0 0 10px #3ecf8eaa;
  transform: scale(1.05);
}


/* Masquer les scrollbars horizontales/verticales */
.roadmap-track {
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}

.roadmap-track::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}
.nav-icons {
  display: flex;
  gap: 20px;
  align-items: center;
}

.burger {
  display: none;
  font-size: 24px;
  color: white;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-icons {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    background: #0a0a0a;
    padding: 12px;
    position: absolute;
    top: 60px;
    right: 10px;
    border: 1px solid #3ecf8e44;
    border-radius: 8px;
    z-index: 999;
    width: 200px;
    max-height: 90vh;
    overflow-y: auto;
  }

  .nav-icons.show {
    display: flex;
  }

  .nav-icons a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    color: white;
    text-decoration: none;
  }

  .burger {
    display: block;
  }
}

/* Desktop */
.logo-box {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 20px;
}

.token-logo {
  width: 79px;
  height: 79px;
  border-radius: 6px;
}

.logo {
  font-size: 1.8rem;
  color: #3ecf8e;
  text-shadow: 0 0 10px #3ecf8eaa, 0 0 25px #3ecf8e55;
}

/* ✅ Responsive Mobile */
@media (max-width: 768px) {
  .logo-box {
    flex-direction: row;
    align-items: center;
    gap: 8px;
    margin-left: 12px;
  }

  .token-logo {
    width: 60px;
    height: 60px;
  }

  .logo {
    font-size: 1.4rem;
    max-width: 180px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
.tokenomics {
  text-align: center;
  padding: 60px 20px;
  background: #0f0f0f;
}

.tokenomics h2 {
  font-size: 2rem;
  color: #3ecf8e;
  margin-bottom: 30px;
  text-shadow: 0 0 8px #3ecf8e55;
}

.tokenomics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.tokenomics-item {
  background: #1a1a1a;
  border: 1px solid #3ecf8e33;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px #3ecf8e22;
  transition: transform 0.3s ease;
}

.tokenomics-item:hover {
  transform: scale(1.05);
  box-shadow: 0 0 12px #3ecf8e77;
}

.tokenomics-item h3 {
  color: #3ecf8e;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.tokenomics-item p {
  font-size: 1rem;
  color: #ccc;
}

/* ✅ Responsive */
@media (max-width: 600px) {
  .tokenomics h2 {
    font-size: 1.6rem;
  }

  .tokenomics-item p {
    font-size: 0.95rem;
  }
}
.about-wrapper {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.how-card {
  flex: 1 1 280px;
  background: #1a1a1a;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #3ecf8e33;
  box-shadow: 0 0 8px #3ecf8e22;
  transition: transform 0.3s ease;
  max-width: 320px;
}

.how-card:hover {
  transform: scale(1.03);
}

.how-card h3 {
  color: #3ecf8e;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.how-card p {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.4;
}

/* ✅ Responsive : vertical sur mobile */
@media (max-width: 768px) {
  .about-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .how-card {
    max-width: 100%;
  }
}
.slogan .countdown {
  margin-top: 20px;
  font-size: 1.2rem;
  color: #ccc;
}
.token-card-scroll {
  display: inline-block;
  padding: 10px 20px;
  margin: 0 10px;
  background: #1a1a1a;
  border: 1px solid #3ecf8e55;
  border-radius: 20px;
  color: #3ecf8e;
  font-weight: bold;
  text-decoration: none;
  transition: transform 0.3s ease;
  white-space: nowrap;
}

.token-card-scroll:hover {
  transform: scale(1.1);
  background: #3ecf8e33;
  color: white;
}

/* ✅ Slider – version desktop (déjà en place) */
.slider-hero {
  margin-top: 20px;
  overflow: hidden;
  width: 100%;
}

.slider {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 40px;
  position: relative;
}

.slide {
  position: absolute;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  font-size: 1.2rem;
  color: #3ecf8e;
  font-weight: bold;
  text-shadow: 0 0 6px #3ecf8e66;
  padding: 0 10px;
  text-align: center;
  width: 100%;
  max-width: 100%;
}

.slide.active {
  opacity: 1;
}

/* ✅ Responsive Mobile */
@media (max-width: 768px) {
  .slide {
    font-size: 1rem;
    line-height: 1.4;
    padding: 0 20px;
  }

  .slider {
    height: auto;
    min-height: 50px;
  }
}
