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

body {
  font-family: system-ui, -apple-system, sans-serif;
  background: url("/public/Background.svg") center/cover no-repeat,
    url("/public/myBack2.png") center/cover no-repeat;
  background-attachment: fixed;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  width: 100%;
  position: relative;
}

.hero {
  padding-top: 4rem;
  min-height: calc(100vh - 4rem);
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom right,
    rgba(0, 0, 0, 0.1),
    #1a2a3e
  );
}

.hero-content {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
}

.logo-container {
  background-color: rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  width: 100%;
}

.logo {
  width: 16rem;
  height: auto;
  margin-bottom: 3rem;
  opacity: 0;
}

.inscription-btn {
  background-color: #ffb800;
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  font-size: 1.125rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.3s, background-color 0.3s;
  opacity: 0;
}

.inscription-btn:hover {
  background-color: #ffd710;
  transform: scale(1.1);
}

.title-container {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 4rem;
  margin-bottom: 2rem;
}

.icon {
  width: 1rem;
  height: 1rem;
  transform: scale(2.5);
  opacity: 0;
}

.title {
  color: white;
  font-size: 2.25rem;
  font-weight: bold;
  white-space: nowrap;
  opacity: 0;
}

.subtitle-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 100%;
}

.line {
  height: 2px;
  background-color: #ffb800;
  width: 0;
}

.subtitle {
  color: white;
  font-size: 1.125rem;
  white-space: nowrap;
  opacity: 0;
}

/* Animations */
.animate-drop {
  animation: dropDown 1s ease-out forwards;
}

.animate-slide {
  animation: slideIn 1s ease-out 0.3s forwards;
}

.animate-fade {
  animation: fadeIn 0.8s ease-out 1.3s forwards;
}

.animate-pop {
  animation: popIn 0.5s ease-out 2s forwards;
}

.animate-extend {
  animation: extend 0.8s ease-out 1.5s forwards;
}

.animate-fade-up {
  animation: fadeUp 0.5s ease-out 1.8s forwards;
}

@keyframes dropDown {
  from {
    transform: translateY(-100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideIn {
  from {
    transform: translateX(100px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes popIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(2.5);
    opacity: 1;
  }
}

@keyframes extend {
  from {
    width: 0;
  }
  to {
    width: 40%;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Media Queries */
@media (max-width: 768px) {
  .logo {
    width: 12rem;
    margin-bottom: 2rem;
  }

  .title {
    font-size: 1.75rem;
  }

  .subtitle {
    font-size: 1rem;
  }

  .line {
    width: 30%;
  }

  .info-content {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
    padding: 1rem;
  }

  .big-dollar {
    width: 200px;
    height: 200px;
  }

  .accessibility-content {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
    padding: 1rem;
  }

  .icon-container {
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-50px);
  }

  .badges-icon {
    width: 150px;
    height: 150px;
    padding: 15px;
    transform: translateY(-50px);
  }

  .token-icon {
    width: 150px;
    height: 150px;
    transform: translateY(-50px);
  }

  .icon-container img,
  .badges-icon img,
  .token-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .icon-container.animate,
  .badges-icon.animate,
  .token-icon.animate {
    animation: slideFromTop 1s ease-in forwards;
  }

  .accessibility-section::before,
  .badges-section::before,
  .token-section::before {
    display: none;
  }

  .accessibility-text,
  .badges-text,
  .token-text {
    text-align: center;
  }

  .accessibility-text h2,
  .badges-text h2,
  .token-text h2 {
    text-align: center;
  }

  .accessibility-text p,
  .badges-text p,
  .token-text p {
    text-align: center;
  }

  .main-header {
    padding: 0.5rem;
  }

  .header-logo {
    height: 28px;
  }

  .header-inscription-btn {
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
  }
}

/* Ajustements pour les très petits écrans */
@media (max-width: 480px) {
  .logo {
    width: 10rem;
    margin-bottom: 1.5rem;
  }

  .title {
    font-size: 1.5rem;
  }

  .subtitle {
    font-size: 0.9rem;
  }

  .big-dollar {
    width: 150px;
    height: 150px;
  }

  .icon-container {
    width: 120px;
    height: 120px;
  }

  .badges-icon {
    width: 100px;
    height: 100px;
    padding: 10px;
  }

  .token-icon {
    width: 120px;
    height: 120px;
  }

  .more-icon img {
    width: 120px;
    height: 120px;
  }

  .info-text p,
  .accessibility-text p,
  .badges-text p,
  .token-text p,
  .more-text p {
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .header-logo {
    height: 24px;
  }

  .header-inscription-btn {
    padding: 0.35rem 0.85rem;
    font-size: 0.8rem;
  }
}

/* Info Section */
.info-section {
  min-height: 70vh;
  background-color: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.info-content {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6rem;
  padding: 2rem;
}

.dollar-logo {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateX(-100px);
}

.big-dollar {
  width: 250px;
  height: 250px;
}

.info-text {
  color: white;
  max-width: 500px;
  opacity: 0;
  transform: translateX(100px);
}

.info-text h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: #ffb800;
  text-align: left;
}

.info-text p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  text-align: left;
}

.highlight {
  color: #ffb800;
  font-weight: 600;
}

/* Animation classes */
.dollar-logo.animate {
  animation: slideFromLeft 0.3s ease-in forwards;
}

.dollar-logo.animate-out {
  animation: slideToLeft 0.3s ease-in forwards;
}

.info-text.animate {
  animation: slideFromRight 0.3s ease-in forwards;
}

.info-text.animate-out {
  animation: slideToRight 0.3s ease-in forwards;
}

@keyframes slideFromLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideFromRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Media Query pour la section info */
@media (max-width: 768px) {
  .info-content {
    flex-direction: column;
    text-align: center;
    gap: 3rem;
    padding: 1rem;
  }

  /* Ajuster les animations pour mobile */
  .dollar-logo {
    transform: translateY(-50px);
  }

  .info-text {
    transform: translateY(50px);
  }

  .dollar-logo.animate {
    animation: slideFromTop 1s ease-in forwards;
  }

  .info-text.animate {
    animation: slideFromBottom 1s ease-in forwards;
  }

  @keyframes slideFromTop {
    from {
      opacity: 0;
      transform: translateY(-50px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes slideFromBottom {
    from {
      opacity: 0;
      transform: translateY(50px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

/* Section Accessibilité */
.accessibility-section {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 2rem;
  min-height: 50vh;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateX(100px);
  margin-top: 5rem;
  margin-bottom: 5rem;
}

.accessibility-section.animate {
  animation: slideFromRight 0.3s ease-in forwards;
}

.accessibility-section::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 65%;
  height: 300px;
  background: rgba(0, 0, 0, 0.3);
  z-index: 0;
  border-top-left-radius: 125px;
  border-bottom-left-radius: 125px;
}

.accessibility-content {
  max-width: 1200px;
  width: 90%;
  margin-right: 0%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6rem;
  padding: 2rem;
  position: relative;
  z-index: 1;
}

.icon-container {
  flex-shrink: 0;
  width: 250px;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.accessibility-text {
  color: white;
  max-width: 500px;
}

.accessibility-text h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: #ffb800;
  text-align: left;
}

.accessibility-text p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  text-align: left;
}

/* Media Query pour la section accessibilité */
@media (max-width: 768px) {
  .accessibility-content {
    flex-direction: column;
    text-align: center;
    gap: 3rem;
    padding: 1rem;
  }

  .icon-container {
    width: 150px;
    height: 150px;
  }

  .icon-container img {
    width: 75px;
    height: 75px;
  }
}

/* Section Badges */
.badges-section {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 2rem;
  min-height: 50vh;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateX(100px);
  margin-top: 5rem;
  margin-bottom: 5rem;
}

.badges-section.animate {
  animation: slideFromRight 0.3s ease-in forwards;
}

.badges-section::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 70%;
  height: 300px;
  background: rgba(0, 0, 0, 0.3);
  z-index: 0;
  border-top-left-radius: 125px;
  border-bottom-left-radius: 125px;
}

.badges-content {
  max-width: 1200px;
  width: 90%;
  margin-right: 5%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6rem;
  padding: 2rem;
  position: relative;
  z-index: 1;
}

.badges-icon {
  flex-shrink: 0;
  width: 250px;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 7px solid #ffb800;
  padding: 20px;
}

.badges-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.badges-text {
  color: white;
  max-width: 500px;
}

.badges-text h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: #ffb800;
  text-align: left;
}

.badges-text p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  text-align: left;
}

/* Media Query pour la section badges */
@media (max-width: 768px) {
  .badges-content {
    flex-direction: column;
    text-align: center;
    gap: 3rem;
    padding: 1rem;
  }

  .badges-icon {
    width: 120px;
    height: 120px;
    padding: 15px;
  }

  .badges-text h2,
  .badges-text p {
    text-align: center;
  }
}

/* Section Token */
.token-section {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 2rem;
  min-height: 50vh;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateX(100px);
  margin-top: 5rem;
  margin-bottom: 5rem;
}

.token-section.animate {
  animation: slideFromRight 0.3s ease-in forwards;
}

.token-section::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 79%;
  height: 300px;
  background: rgba(0, 0, 0, 0.3);
  z-index: 0;
  border-top-left-radius: 125px;
  border-bottom-left-radius: 125px;
}

.token-content {
  max-width: 1200px;
  width: 90%;
  margin-right: 15%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6rem;
  padding: 2rem;
  position: relative;
  z-index: 1;
}

.token-icon {
  flex-shrink: 0;
  width: 250px;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.token-text {
  color: white;
  max-width: 500px;
}

.token-text h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: #ffb800;
  text-align: left;
}

.token-text p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  text-align: left;
}

.token-subtitle {
  font-weight: 600;
  text-decoration: underline;
}

.token-list {
  list-style: none;
  padding-left: 1rem;
}

.token-list li {
  margin-bottom: 0.5rem;
  position: relative;
}

.token-list li::before {
  content: "•";
  color: #ffb800;
  position: absolute;
  left: -1rem;
}

/* Media Query pour la section token */
@media (max-width: 768px) {
  .token-content {
    flex-direction: column;
    text-align: center;
    gap: 3rem;
    padding: 1rem;
  }

  .token-icon {
    width: 150px;
    height: 150px;
  }

  .token-text h2,
  .token-text p,
  .token-list {
    text-align: center;
  }

  .token-list {
    display: inline-block;
    text-align: left;
  }
}

/* Section More */
.more-section {
  min-height: 70vh;
  background-color: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  margin-top: 2rem;
}

.more-content {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6rem;
  padding: 2rem;
}

.more-icon {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translatex(-200px), translateY(200px);
}

.more-icon img {
  width: 250px;
  height: 250px;
}

.more-text {
  color: white;
  max-width: 500px;
  opacity: 0;
  transform: translateX(100px);
}

.more-text h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: #ffb800;
  text-align: left;
}

.more-text p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  text-align: left;
}

.more-icon.animate {
  animation: rocketFromCorner 0.5s ease-in forwards;
}

.more-text.animate {
  animation: slideFromRight 0.5s ease-in forwards;
}

@keyframes rocketFromCorner {
  0% {
    opacity: 0;
    transform: translate(-100px, 100px) rotate(-45deg);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0) rotate(0);
  }
}

/* Media Query pour la section more */
@media (max-width: 768px) {
  .more-content {
    flex-direction: column;
    text-align: center;
    gap: 3rem;
    padding: 1rem;
  }

  .more-icon img {
    width: 150px;
    height: 150px;
  }

  .more-text h2,
  .more-text p {
    text-align: center;
  }
}

/* Animations de sortie */
.accessibility-section.animate-out {
  animation: slideToRight 0.3s ease-in forwards;
}

.badges-section.animate-out {
  animation: slideToRight 0.3s ease-in forwards;
}

.token-section.animate-out {
  animation: slideToRight 0.3s ease-in forwards;
}

.more-section.animate-out {
  animation: fadeOut 0.5s ease-in forwards;
}

.more-icon.animate-out {
  animation: rocketToCorner 0.5s ease-in forwards;
}

.more-text.animate-out {
  animation: slideToLeft 0.5s ease-in forwards;
}

@keyframes slideToRight {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(100px);
  }
}

@keyframes slideToLeft {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(-100px);
  }
}

@keyframes rocketToCorner {
  from {
    opacity: 1;
    transform: translate(0, 0) rotate(0);
  }
  to {
    opacity: 0;
    transform: translate(-200px, 200px) rotate(-45deg);
  }
}

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

/* Animations de sortie pour le hero */
.logo.animate-out {
  animation: slideUp 1s ease-out forwards;
}

.inscription-btn.animate-out {
  animation: slideUp 1s ease-out forwards;
}

.title.animate-out {
  animation: fadeOut 1s ease-out forwards;
}

.icon.animate-out {
  animation: popOut 1s ease-out forwards;
}

.subtitle.animate-out {
  animation: fadeOut 1s ease-out forwards;
}

.line.animate-out {
  animation: retract 1s ease-out forwards;
}

@keyframes slideUp {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-100px);
  }
}

@keyframes popOut {
  from {
    opacity: 1;
    transform: scale(2.5);
  }
  to {
    opacity: 0;
    transform: scale(0);
  }
}

@keyframes retract {
  from {
    width: 40%;
  }
  to {
    width: 0;
  }
}

/* Header */
.main-header {
  z-index: 1000;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  padding: 0.75rem;
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.header-logo {
  height: 35px;
  flex-shrink: 1;
  min-width: 0;
}

.header-inscription-btn {
  background-color: #ffb800;
  color: white;
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.3s, background-color 0.3s;
  white-space: nowrap;
  flex-shrink: 0;
}

.header-inscription-btn:hover {
  background-color: #ffd710;
  transform: scale(1.05);
}

/* Media Queries pour le header */
@media (max-width: 768px) {
  .main-header {
    padding: 0.5rem;
  }

  .header-content {
    gap: 0.5rem;
  }

  .header-logo {
    height: 28px;
  }

  .header-inscription-btn {
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .main-header {
    padding: 0.4rem;
  }

  .header-content {
    gap: 0.4rem;
  }

  .header-logo {
    height: 24px;
  }

  .header-inscription-btn {
    padding: 0.35rem 0.85rem;
    font-size: 0.8rem;
  }
}

@media (max-width: 360px) {
  .main-header {
    padding: 0.3rem;
  }

  .header-content {
    gap: 0.3rem;
  }

  .header-logo {
    height: 20px;
  }

  .header-inscription-btn {
    padding: 0.3rem 0.75rem;
    font-size: 0.75rem;
  }
}
