:root {
  --yellow: #f6cb26;
  --orange: #fb8112;
  --brown: #5a1902;
  --green: #86efac;
  --dark-green: #123c32;
  --black: #000;
  --white: #fff;
  --shadow: 0.25rem 0.25rem 0 var(--black);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--yellow);
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--yellow);
  color: var(--black);
  font-family: "Slackey", "Arial Black", system-ui, sans-serif;
  line-height: 1.35;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
a {
  font: inherit;
}

button {
  cursor: pointer;
}

.page {
  width: 100%;
  min-height: 100vh;
}

.main {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  gap: 1rem;
  padding: 5rem 2rem 0;
  position: relative;
  z-index: 2;
}

.hero {
  display: flex;
  width: 100%;
  max-width: 980px;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.ticker {
  margin: 0;
  padding: 0.375rem 1rem;
  color: var(--brown);
  font-size: 3rem;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.hero-logo {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  object-fit: cover;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 0.75rem 1rem;
}

.button,
.final-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3.5rem;
  padding: 0.75rem 1rem;
  border: 2px solid var(--black);
  border-radius: 1rem;
  background: var(--white);
  box-shadow: var(--shadow);
  color: var(--black);
  font-size: 1.25rem;
  text-decoration: none;
  transition: transform 160ms ease, opacity 160ms ease;
}

.button:hover,
.final-button:hover {
  opacity: 0.82;
}

.button img {
  width: 1.55rem;
  height: 1.55rem;
  object-fit: contain;
}

.button .dex-icon {
  border-radius: 0.375rem;
}

.contract {
  position: relative;
  display: flex;
  width: min(760px, 100%);
  align-items: center;
  gap: 0.25rem;
  border: 2px solid var(--black);
  border-radius: 1rem;
  background: var(--orange);
  box-shadow: var(--shadow);
  color: var(--black);
  padding: 0.125rem 0.5rem;
}

.contract p {
  display: block;
  flex: 1 1 auto;
  min-height: 2.5rem;
  margin: 0;
  padding: 0.5rem;
  overflow-wrap: anywhere;
  text-align: center;
  font-size: 1.25rem;
}

.contract .contract-short {
  display: none;
}

.copy-button {
  position: relative;
  display: inline-grid;
  flex: 0 0 2.5rem;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  border: 0;
  background: transparent;
  color: inherit;
}

.copy-button svg {
  position: absolute;
  width: 1.25rem;
  height: 1.25rem;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: opacity 140ms ease, transform 140ms ease;
}

.copy-icon {
  opacity: 1;
  stroke-width: 1.8;
  transform: scale(1);
}

.check-icon {
  opacity: 0;
  stroke-width: 2.35;
  transform: scale(0.5);
}

.copy-button.copied .copy-icon {
  opacity: 0;
  transform: scale(0.5);
}

.copy-button.copied .check-icon {
  opacity: 1;
  transform: scale(1);
}

.image-section {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  margin-top: 5rem;
  padding: 0 1rem;
}

.visual-frame {
  position: relative;
  width: 100%;
  margin: 0;
  overflow: hidden;
  border: 2px solid var(--brown);
  border-radius: 1.5rem;
  background: var(--white);
}

.small-frame {
  max-width: 400px;
  min-height: 285px;
}

.wide-frame {
  max-width: 600px;
  min-height: 315px;
}

.image-frame {
  display: grid;
  place-items: center;
  background: transparent;
}

.tokenomics {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
  padding: 2rem 1rem;
}

.section-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.section-heading h1 {
  margin: 0;
  color: var(--black);
  font-size: 3.75rem;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.section-heading p {
  margin: 0;
  color: var(--black);
  font-size: 1.25rem;
  text-align: center;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.pill-row button {
  min-height: 3rem;
  min-width: 9rem;
  padding: 1rem 2rem;
  border: 2px solid var(--black);
  border-radius: 1rem;
  background: var(--white);
  box-shadow: var(--shadow);
  color: var(--black);
  font-size: 1.25rem;
}

.media-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.buy-flow {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  margin-top: 3.5rem;
  padding: 2rem 1rem;
}

.buy-flow h2 {
  margin: 0;
  color: var(--black);
  font-size: 3rem;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
}

.step-card {
  display: flex;
  width: fit-content;
  max-width: 100%;
  min-width: 384px;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  border: 2px solid var(--black);
  border-radius: 1.5rem;
  background: var(--white);
  box-shadow: var(--shadow);
}

.step-count {
  margin: 0;
  color: var(--black);
  font-size: 1.25rem;
}

.step-card h3 {
  max-width: 300px;
  min-height: 5.4rem;
  margin: 0;
  color: var(--black);
  font-size: 2rem;
  line-height: 1.25;
}

.step-card > p:last-of-type {
  max-width: 300px;
  min-height: 5.4rem;
  margin: 0;
  color: var(--black);
  font-size: 1.17rem;
}

.step-dots {
  display: flex;
  gap: 0.5rem;
  margin-top: 2rem;
}

.step-dots button {
  width: 3.5rem;
  min-width: 0.5rem;
  height: 1rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.3);
}

.step-dots button.active {
  background: var(--black);
}

.finale {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  gap: 2rem;
  padding: 3.75rem 2rem 5rem;
  position: relative;
  z-index: 2;
}

.finale > p {
  max-width: 650px;
  margin: 0;
  padding: 0.5rem;
  border-radius: 0.5rem;
  color: var(--black);
  font-size: 2.25rem;
  line-height: 1.16;
  text-align: center;
}

.final-button {
  margin-top: 0.5rem;
  padding: 1rem 2rem;
}

footer {
  width: 100%;
  padding: 2rem;
}

footer p {
  display: flex;
  width: 100%;
  min-height: 5.25rem;
  align-items: center;
  justify-content: center;
  margin: 0;
  border: 2px solid var(--black);
  border-radius: 0.75rem;
  background: var(--white);
  box-shadow: var(--shadow);
  color: var(--black);
  font-size: 1.25rem;
  text-align: center;
}

@keyframes headShake {
  0% {
    transform: translateX(0);
  }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    transform: translateX(0);
  }
}

.animate-headShake {
  animation: headShake 2s infinite;
}

@keyframes heartBeatSlow {
  0% {
    transform: scale(1);
  }
  14% {
    transform: scale(1.12);
  }
  28% {
    transform: scale(1);
  }
  42% {
    transform: scale(1.12);
  }
  70% {
    transform: scale(1);
  }
}

.animate-heartBeat {
  animation: heartBeatSlow 1s infinite;
}

@keyframes rubberBandSlow {
  0% {
    transform: scaleX(1);
  }
  30% {
    transform: scale3d(1.08, 0.92, 1);
  }
  40% {
    transform: scale3d(0.92, 1.08, 1);
  }
  50% {
    transform: scale3d(1.05, 0.95, 1);
  }
  65% {
    transform: scale3d(0.97, 1.03, 1);
  }
  75% {
    transform: scale3d(1.03, 0.97, 1);
  }
  100% {
    transform: scaleX(1);
  }
}

.animate-rubberBand {
  animation: rubberBandSlow 1s infinite;
}

@media (hover: hover) and (min-width: 768px) {
  .button:hover,
  .final-button:hover {
    transform: scale(1.1);
  }
}

@media (max-width: 768px) {
  .main {
    padding: 2.5rem 1rem 0;
  }

  .hero {
    gap: 1rem;
  }

  .ticker {
    margin-bottom: 1rem;
    font-size: 3rem;
  }

  .hero-logo {
    width: 260px;
    height: 260px;
  }

  .contract {
    max-width: 80%;
  }

  .contract .contract-full {
    display: none;
  }

  .contract .contract-short {
    display: block;
    font-size: 1.125rem;
  }

  .section-heading h1 {
    font-size: 3rem;
  }

  .buy-flow h2 {
    font-size: 2.4rem;
  }

  .finale {
    padding: 3rem 1rem 2.5rem;
  }
}

@media (max-width: 640px) {
  .socials {
    gap: 0.75rem;
  }

  .button {
    min-height: 3.2rem;
    padding: 0.7rem 0.9rem;
    font-size: 1.05rem;
  }

  .button img {
    width: 1.4rem;
    height: 1.4rem;
  }

  .contract {
    max-width: 100%;
  }

  .section-heading h1 {
    font-size: 2.7rem;
  }

  .visual-frame {
    border-radius: 1.25rem;
  }

  .small-frame,
  .wide-frame {
    max-width: 100%;
  }

  .step-card {
    width: 100%;
    min-width: 0;
  }

  .step-card h3,
  .step-card > p:last-of-type {
    max-width: 100%;
  }

  .step-dots button {
    width: 2.5rem;
  }

  .finale > p {
    font-size: 1.9rem;
  }

  footer {
    padding: 1rem;
  }
}
