@import url('https://fonts.googleapis.com/css2?family=VT323&display=swap');

body {
  font-family: 'Menlo', 'Consolas', monospace;
  background-color: #121212;
  color: #ffffff;
  text-align: center;
}

.ascii-title {
  font-family: 'VT323', monospace;
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #03dac5;
}

.description {
  font-size: 1.2rem;
  margin-bottom: 20px;
  line-height: 1.5;
  text-align: center;
}

.mint-cost {
  font-size: 1.2rem;
  margin-bottom: 20px;
  line-height: 1.5;
  text-align: center;
  color: #03dac5;
}

.wallet-address {
  font-size: 1.2rem;
  margin-bottom: 20px;
  line-height: 1.5;
  text-align: center;
  color: #03dac5;
}

.section-separator {
  border: 1px solid #333333;
  margin-top: 40px;
  margin-bottom: 40px;
}

@keyframes bg-animation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

body {
  background-image: linear-gradient(220deg, #03214d, #242325, #03214d), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 80 40" width="80" height="40"><text x="0" y="12" font-family="VT323" font-size="12" fill="%2303dac5">101010</text><text x="0" y="24" font-family="VT323" font-size="12" fill="%2303dac5">010101</text><text x="0" y="36" font-family="VT323" font-size="12" fill="%2303dac5">101010</text></svg>');
  background-size: 200% 200%, 80px 40px;
  animation: bg-animation 20s ease infinite;
}

  .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
  }
  
  .title {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  
  .ascii-snake-bar {
    max-width: 940px;
    margin: 0 auto;
    width: 100%;
    height: 30px;
    background-color: #333333;
    border-radius: 10px;
    margin-bottom: 10px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    overflow: hidden;
    position: relative;
  }

  .ascii-snake-bar::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: var(--minted-percent);
    background-color: #03dac5;
    z-index: 1;
  }

  .ascii-snake-bar:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 6.1%;
    background-color: #f0c506;
    z-index: 1;
  }
  
  .ascii-snake-container {
    font-family: 'menlo', 'onsolas', monospace;
    font-size: 1rem;
    font-weight: 1000;
    color: #2e7902;
    line-height: 1;
    margin: 0;
    z-index: 2;
  }
  
  .minted-count {
    margin-bottom: 20px;
  }
  
  .token-amount-button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
  }
  
  .token-amount-button {
    font-size: 1.5rem;
    background-color: #333333;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    margin: 0 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .token-amount-button:hover {
    background-color: #03dac5;
  }
  
  .token-amount-button.selected {
    background-color: #03dac5;
    color: #ffffff;
    border: 2px solid #ffffff;
  }
  
  .mint-button {
    font-size: 1.5rem;
    background-color: #03dac5;
    color: #000000;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
  }
  
  .mint-button:hover {
    background-color: #00c48b;
  }
  
  .status {
    margin-top: 20px;
  }
  
  .svg-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
  }
  
  .svg-image {
    width: 100px;
    height: auto;
    margin: 10px;
  }

  .links-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
  }
  
  .footer-link {
    color: #03dac5;
    text-decoration: none;
    margin: 0 10px;
    font-size: 1.2rem;
    transition: color 0.3s ease;
  }
  
  .footer-link:hover {
    color: #00c48b;
  }
  
  .separator {
    color: #fff;
    margin: 0 10px;
  }
  
  .center-image {
    display: block;
    margin-left: auto;
    margin-right: auto;
    border: 2px solid #03dac5; 
    padding: 5px; 
    border-radius: 15px;
    max-width: 100%;
    height: auto;
  }

  .mint-button[disabled] {
    background-color: #f44336; 
    color: #ffffff;
    cursor: not-allowed;
  }
  
  .mint-button-disabled {
    background-color: #f44336; 
    color: #ffffff;
    cursor: not-allowed;
  }
  

@media screen and (max-width: 768px) {
  .ascii-title {
    font-size: 0.6rem;
  }

  .title {
    font-size: 1.6rem;
  }

  .description {
    font-size: 1rem;
  }

  .mint-cost {
    font-size: 1rem;
  }
}

@media screen and (max-width: 480px) {
  .ascii-title {
    font-size: 0.4rem;
  }

  .title {
    font-size: 1.4rem;
  }

  .description {
    font-size: 0.9rem;
  }

  .mint-cost {
    font-size: 0.9rem;
  }
}

/* FAQ section */
.faq-container {
  margin-top: 40px;
  margin-bottom: 40px;
}

.faq-item {
  margin-bottom: 25px;
  text-align: left;
}

.faq-question {
  font-weight: bold;
  font-size: 1.2rem;
  color: #03dac5;
}

.faq-answer {
  margin-top: 10px;
  text-indent: 2em;
  font-size: 1rem;
  line-height: 1.5;
  color: #ffffff;
}

.faq-question1 {
  font-weight: bold;
  font-size: 1.2rem;
  color: #f8ce13;
}

.faq-answer1 {
  margin-top: 10px;
  text-indent: 2em;
  font-size: 1rem;
  line-height: 1.5;
  color: #fab752;
}

.share-on-twitter {
  display: none;
  background-color: #f8c270;
  color: #000000;
  padding: 10px 10px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-weight: bold;
  font-size: 20px;
  border-radius: 5px;
  width: 100%;
  transition: background-color 0.3s ease;
}

.share-on-twitter:hover {
  background-color: #f7a919;
}

  