/* style.css */

/* Corps de la page */
body {
    font-family: 'Poppins', sans-serif !important;
    /* background: linear-gradient(135deg, #5A4FCF, #00D8FF); */
    background-image: url(./bg.webp);
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;
    /* height: 100vh; */
    margin: 0;
    color: #ffffff !important;
    background-size: cover;
    /* transition: background 2s ease, color 2s ease; */
    margin-top: 150px;
}

.container {
    text-align: center;
    /* background-color: rgba(255, 255, 255, 0.1); */
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    animation: fadeIn 2s ease-out;
    margin: 20px;
    /* background: linear-gradient(135deg, #20B2AA, #FF1493); */
    /* transition: background 2s ease, color 2s ease; */
    /* animation: changeColor 15s infinite; */
    max-width: 600px;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 2px;
    animation: slideIn 1.5s ease-out;
}

.quote {
    font-size: 1.8rem;
    font-style: italic;
    color: #f2f2f2;
    margin-bottom: 20px;
    animation: slideIn 1.5s ease-out;
}

.author {
    font-size: 1.5rem;
    font-weight: 500;
    color: #e6e6e6;
    animation: slideIn 2s ease-out;
}

.cta {
    display: inline-block;
    margin-top: 30px;
    font-size: 1.2rem;
    color: #5A4FCF;
    font-weight: 600;
    border: 2px solid #5A4FCF;
    border-radius: 50px;
    background-color: transparent;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
}

.cta:hover {
    background-color: #5A4FCF;
    color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes slideIn {
    0% { transform: translateY(20px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

/* Changement automatique de couleur */
@keyframes changeColor {
    0% {
        background: linear-gradient(135deg, #FF6347, #FFD700);
        color: #fff;
    }
    25% {
        background: linear-gradient(135deg, #20B2AA, #FF1493);
        color: #fff;
    }
    50% {
        background: linear-gradient(135deg, #00BFFF, #8A2BE2);
        color: #fff;
    }
    75% {
        background: linear-gradient(135deg, #FF6347, #FF4500);
        color: #fff;
    }
    100% {
        background: linear-gradient(135deg, #FF6347, #FFD700);
        color: #fff;
    }
}

/* Style pour la description */
.description {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* Style de la navigation */
nav {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    /* Réduire la taille de l'en-tête */
    color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
}

.nav-container h1 a {
    color: #fff;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: bold;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 10px;
}

nav ul li {
    display: inline;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s;
}

/* Taille et position des icônes */
nav ul li a i {
    font-size: 1.5rem;
}

nav ul li a:hover {
    color: #000000;
}

/* Icône Solscan spécifiquement */
.solscan-icon {
    font-size: 1.4rem; /* Réduire la taille de l'icône */
}

button {
    font-size: 1.2rem;
    color: #fff;
    background-color: transparent;
    padding: 10px 20px;
    margin-top: 15px;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s;
    border: 3px solid;
}

button:hover {
    background-color: #2c2d306b;
}

.countdown {
    display: flex;
    gap: 20px;
    font-size: 1.5rem;
}

.countdown div {
    text-align: center;
    font-size: 15px;
    width: 70px;
    background: #00000070;
    margin-top: 20px;
    padding: 7px;
    border-radius: 7px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.countdown span {
    display: block;
    font-size: 3rem;
    font-weight: bold;
}

.about_us{
    background: #00000047;
    width: 100%;
    text-align: center;
    margin-top: 60px;
    font-size: 30px;
    backdrop-filter: blur(10px);
}

.about_us p{
    padding: 0 30px;
    
}

.icone{
    width: 32px;
    margin-right: 10px;
    /* margin-top: 10px;
    margin-bottom: -10px;
    border-radius: 30px; */
}

h1{
    padding: 0 10px;
    text-align: center;
}

#ticker-container {
    background: black;
    width: 100%;
    text-align: center;
}

/* Style du texte des prix */
.prices {
    display: inline-block;
}
.crypto {
    margin: 0 10px;
}
.nav-link{
    color: white !important;
}
.bg-cercle{
    background: #80808061;
    padding: 10px 12px;
    border-radius: 50px;
}

.animated-text {
    display: inline-block;
    animation: pulse 2s infinite ease-in-out;
  }

  @keyframes pulse {
    0%, 100% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.1);
    }
  }

  .wave-text {
    display: inline-block;
  }

  .wave-text span {
    display: inline-block;
    animation: wave 1.5s infinite;
  }

  .wave-text span:nth-child(odd) {
    animation-delay: 0.2s;
  }

  .wave-text span:nth-child(even) {
    animation-delay: 0.4s;
  }

  @keyframes wave {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-10px);
    }
  }
  .neon-text {
    color: #fff;
    text-shadow: 0 0 5px #634853, 0 0 10px #0e0c0d, 0 0 20px #e4ddde, 0 0 30px #331e0b, 0 0 40px #301e0f;
    animation: neon-glow 1.5s infinite alternate;
  }

  @keyframes neon-glow {
    0% {
      text-shadow: 0 0 5px #4d4a4b, 0 0 10px #f8d7e5, 0 0 20px #fadadf, 0 0 30px #3a3128, 0 0 40px #1b1209;
    }
    100% {
      text-shadow: 0 0 10px #1b130c, 0 0 20px #fce3ed, 0 0 30px #f7dce1, 0 0 50px #3b322b, 0 0 60px #2b1c10;
    }
  }

  .rotating-img {
    width: 120px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.author-image {
    width: 50px;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.author-image:hover {
    transform: scale(3.5) translateY(3px);
    z-index: 1000;
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
}

.author-image-wrapper {
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}

.author-bio {
    display: block;
    font-size: 13px;
    text-align: justify;
    margin-top: 5px;
    color: #e3d4d4;
}