body {
  font-family: 'Roboto Mono', monospace;
  color: #000;
  text-align: center;
  padding: 0;
  margin: 0;
  line-height: 1.5;
  overflow-x: hidden;
}

header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  margin-bottom: 20px;
}

h1 {
  font-size: 6em;
  color: #000;
  position: relative;
}

h2 {
  font-size: 2em;
  color: #000;
}

.large-title {
  font-size: 3em;
}

main {
  margin: 0 auto;
  max-width: 800px;
}

section {
  margin-top: 40px;
  margin-bottom: 40px;
}

#intro img {
  max-width: 100%;
}

#about-us {
  padding: 20px;
  font-size: 2.25rem;
  line-height: 2;
}

#about-us .about-image {
  max-width: 100%;
  margin-top: 20px;
}

#roadmap {
  padding: 20px;
}

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  width: 100%;
  max-width: 1200px;
}

.phase {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 20px;
  border: 2px solid #000;
  text-align: center;
}

.phase h3 {
  font-size: 1.5em;
  margin-bottom: 0.5em;
}

.phase h4 {
  font-size: 1.25em;
  margin-bottom: 1em;
}

.phase p {
  font-size: 1em;
}

button {
  background-color: #fff;
  color: #000;
  padding: 15px 20px;
  border: 2px solid #000;
  cursor: pointer;
  font-size: 1em;
  text-align: center;
}

button:hover {
  background-color: #f0f0f0;
}

footer {
  padding: 20px;
  background-color: #f5f5f5;
}

footer a {
  margin: 0 10px;
  text-decoration: none;
  color: #000;
  font-weight: bold;
}

footer p {
  margin-top: 20px;
  font-size: 0.9em;
}

#root {
  overflow-clip: auto;
}

.section {
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.bg-red {
  background-color: #FF5964;
}

.bg-yellow {
  background-color: #FFE74C;
}

.bg-red .highlight-text, .bg-yellow .highlight-text {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 10px;
  margin-bottom: 1rem;
  line-height: 1.5;
  color: #000;
}

.flex-center {
  justify-content: center;
  align-items: center;
  text-align: center;
}

.min-h-screen {
  min-height: 100vh;
}

.flex-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.flex-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.intro-image {
  width: 50%;
  max-width: 400px;
  margin-right: 20px;
}

.intro-text {
  width: 50%;
  max-width: 400px;
  text-align: left;
}

.large-button {
  font-size: 2em;
  padding: 20px 40px;
}

.contract-address-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.contract-address {
  font-size: 1.5em;
  padding: 10px 20px;
  border: 2px solid #000;
  background-color: #fff;
  color: #000;
  display: inline-block;
  white-space: nowrap;
}

.copy-button {
  font-size: 1.5em;
  padding: 10px 20px;
  border: 2px solid #000;
  background-color: #fff;
  color: #000;
  cursor: pointer;
  margin-left: 10px;
  height: 100%;
  display: flex;
  align-items: center;
}

.copy-button:hover {
  background-color: #f0f0f0;
}

.reflect-text {
  position: relative;
  display: inline-block;
}

.reflect-text::after {
  content: attr(data-reflect);
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  font-size: inherit;
  color: rgba(0, 0, 0, 0.2);
  transform: scaleY(-1);
  -webkit-transform: scaleY(-1);
}

.carousel-wrapper {
  overflow: hidden;
  width: 100vw;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.carousel {
  display: flex;
  align-items: center;
  animation: scroll-left 30s linear infinite;
}

.carousel-reverse {
  display: flex;
  align-items: center;
  animation: scroll-right 30s linear infinite;
}

.carousel-third {
  display: flex;
  align-items: center;
  animation: scroll-left 30s linear infinite;
}

.carousel img,
.carousel-reverse img,
.carousel-third img {
  max-width: 200px;
  margin-right: 10px;
}

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

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

.section-divider {
  width: 100%;
  background: transparent;
  position: relative;
}

.section-divider::after {
  content: '';
  display: block;
  width: 100%;
  height: 60px;
  background: url('img/daddy.webp') repeat-x center;
  background-size: contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 600px) {
  h1 {
    font-size: 3em;
  }
  .highlight-text {
    font-size: 1.5em;
  }
  .flex-row {
    flex-direction: column;
    align-items: center;
  }
  .intro-image {
    margin-right: 0;
    margin-bottom: 20px;
  }
  .contract-address-wrapper {
    flex-direction: column;
    align-items: center;
  }
  .copy-button {
    margin-left: 0;
    margin-top: 10px;
  }
  .carousel {
    animation: scroll-left 15s linear infinite;
  }
  .carousel-reverse {
    animation: scroll-right 15s linear infinite;
  }
  .carousel-third {
    animation: scroll-left 15s linear infinite;
  }
}
