@font-face {
  font-family: "MS Paint Mouse";
  src:
    url("MsPaintMouse-Regular.ttf") format("truetype"),
    url("MsPaintMouse-Regular.otf") format("opentype");
}

:root {
  --sky-blue: #73c2fb;
  --grass-green: #13a10e;
  --sun-yellow: #fff500;
  --cat-brown: #a47b62;
  --pure-white: #ffffff;
  --pure-black: #000000;
}

* {
  box-sizing: border-box;
  font-family: "MS Paint Mouse", "Comic Sans MS", cursive !important;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--sky-blue);
  color: var(--pure-black);
  margin: 0;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

img {
  display: block;
  width: 100%;
}

.music-frame {
  height: 1px;
  left: -9999px;
  overflow: hidden;
  position: fixed;
  top: -9999px;
  width: 1px;
}

.music-frame iframe {
  height: 1px;
  width: 1px;
}

.cartoon-border {
  border: 6px solid var(--pure-black);
  border-radius: 40px;
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.3);
}

.cartoon-btn {
  background: var(--sun-yellow);
  border: 6px solid var(--pure-black);
  border-radius: 30px;
  box-shadow: 0 8px 0 var(--pure-black);
  color: var(--pure-black);
  cursor: pointer;
  display: inline-block;
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 900;
  padding: 0.9rem 1.6rem;
  text-align: center;
  text-transform: uppercase;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.cartoon-btn:hover {
  background: var(--pure-white);
}

.cartoon-btn:active {
  box-shadow: 0 0 0 var(--pure-black);
  transform: translateY(8px);
}

.btn-brown {
  background: var(--cat-brown);
  color: var(--pure-white);
}

.btn-green {
  background: var(--grass-green);
  color: var(--pure-white);
}

.navbar {
  left: 0;
  padding: 1rem;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 50;
}

.nav-inner {
  align-items: center;
  background: var(--pure-white);
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 80rem;
  padding: 0.55rem 1.4rem;
}

.logo {
  color: var(--cat-brown);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 950;
  text-shadow: 2px 2px 0 var(--pure-black);
  white-space: nowrap;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: 1.3rem;
}

.nav-links a {
  font-size: 1.22rem;
  font-weight: 900;
  text-transform: uppercase;
}

.nav-links a:hover {
  color: var(--grass-green);
}

.nav-btn {
  box-shadow: none;
  font-size: 0.95rem;
  padding: 0.45rem 1rem;
}

.bg-picture-scene {
  background: var(--sky-blue);
  overflow: hidden;
  position: relative;
}

.bg-picture-scene::after {
  background: var(--grass-green);
  border-top: 15px solid var(--pure-white);
  border-top-left-radius: 60% 40px;
  border-top-right-radius: 40% 60px;
  bottom: -5%;
  content: "";
  height: 40%;
  left: -10%;
  position: absolute;
  transform: rotate(-2deg);
  width: 120%;
  z-index: 0;
}

.css-sun {
  animation: rotateSun 20s linear infinite;
  background: var(--sun-yellow);
  border-radius: 50%;
  box-shadow:
    0 0 0 10px var(--sky-blue),
    0 0 0 20px var(--sun-yellow);
  height: 120px;
  left: 10%;
  position: absolute;
  top: 10%;
  width: 120px;
  z-index: 1;
}

.hero {
  align-items: center;
  display: flex;
  min-height: 100vh;
  padding: 8rem 1.5rem 4rem;
}

.hero-grid {
  align-items: center;
  display: grid;
  gap: 4rem;
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.88fr);
  margin: 0 auto;
  max-width: 80rem;
  position: relative;
  width: 100%;
  z-index: 20;
}

.tag {
  background: var(--sun-yellow);
  display: inline-block;
  font-size: clamp(1.1rem, 2.5vw, 1.7rem);
  font-weight: 900;
  margin-bottom: 1.4rem;
  padding: 0.8rem 1.3rem;
  text-transform: uppercase;
  transform: rotate(-3deg);
}

h1 {
  color: var(--pure-white);
  font-size: clamp(4.8rem, 12vw, 9rem);
  font-weight: 950;
  line-height: 0.85;
  margin: 0 0 1.5rem;
  text-shadow: 4px 4px 0 var(--pure-black);
}

.hero-card {
  background: var(--pure-white);
  font-size: clamp(1.25rem, 2.7vw, 2rem);
  font-weight: 800;
  line-height: 1.25;
  margin: 0 0 1.5rem;
  max-width: 38rem;
  padding: 1.4rem;
}

.contract {
  align-items: center;
  background: var(--cat-brown);
  display: grid;
  gap: 0.6rem;
  grid-template-columns: auto minmax(0, 1fr) auto;
  margin-bottom: 1.5rem;
  max-width: 42rem;
  padding: 0.65rem;
}

.contract span,
.contract button {
  background: var(--pure-black);
  border: 0;
  border-radius: 999px;
  color: var(--pure-white);
  font-size: 1.15rem;
  font-weight: 900;
  padding: 0.7rem 1rem;
}

.contract code {
  background: var(--pure-white);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 900;
  overflow: hidden;
  padding: 0.8rem 1rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contract button {
  background: var(--sun-yellow);
  color: var(--pure-black);
  cursor: pointer;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-art {
  align-items: center;
  display: flex;
  justify-content: center;
}

.photo-card {
  background: var(--pure-white);
  max-width: 32rem;
  padding: 1rem;
  transform: rotate(3deg);
}

.photo-card img,
.image-box img {
  border: 4px solid var(--pure-black);
  border-radius: 22px;
  object-fit: cover;
}

.photo-card img {
  aspect-ratio: 1;
}

.charity-card {
  align-items: center;
  background: var(--sun-yellow);
  border: 4px solid var(--pure-black);
  border-radius: 25px;
  box-shadow: 6px 6px 0 var(--pure-black);
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  padding: 1rem;
}

.heart {
  align-items: center;
  background: var(--grass-green);
  border: 4px solid var(--pure-black);
  border-radius: 50%;
  color: var(--pure-white);
  display: flex;
  flex: 0 0 5rem;
  font-size: 2rem;
  font-weight: 950;
  height: 5rem;
  justify-content: center;
}

.charity-card h4,
.charity-card p {
  margin: 0;
}

.charity-card h4 {
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  line-height: 1;
}

.charity-card p {
  font-size: 1rem;
  font-weight: 900;
}

.marquee-strip {
  background: var(--sun-yellow);
  border-bottom: 6px solid var(--pure-black);
  border-top: 6px solid var(--pure-black);
  display: flex;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 900;
  overflow: hidden;
  padding: 1rem 0;
  position: relative;
  white-space: nowrap;
  z-index: 20;
}

.marquee-track {
  animation: marquee 18s linear infinite;
  display: flex;
  min-width: 100%;
}

.marquee-track span {
  margin: 0 2rem;
}

.section {
  border-bottom: 8px solid var(--pure-black);
  padding: clamp(4rem, 8vw, 6rem) 1.5rem;
  position: relative;
  z-index: 10;
}

.section > * {
  position: relative;
  z-index: 2;
}

.bg-green-section {
  background: var(--grass-green);
}

.bg-yellow-section {
  background: var(--sun-yellow);
}

.bg-brown-section {
  background: var(--cat-brown);
}

.title-badge {
  background: var(--pure-white);
  border: 8px solid var(--pure-black);
  border-radius: 50px;
  box-shadow: 6px 6px 0 var(--cat-brown);
  color: var(--pure-black);
  display: table;
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 950;
  line-height: 1;
  margin: 0 auto 4rem;
  padding: 1rem 2.4rem;
  text-align: center;
}

.two-col {
  align-items: center;
  display: grid;
  gap: 4rem;
  grid-template-columns: 1fr 1fr;
  margin: 0 auto;
  max-width: 80rem;
}

.image-box {
  background: var(--sky-blue);
  padding: 1rem;
  transform: rotate(2deg);
}

.image-box img {
  aspect-ratio: 1.1;
}

.story-card {
  background: var(--pure-white);
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  font-weight: 800;
  line-height: 1.25;
  padding: 2rem;
}

.story-card h3 {
  border-bottom: 4px dashed var(--cat-brown);
  color: var(--cat-brown);
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 1.4rem;
  padding-bottom: 0.6rem;
  text-transform: uppercase;
}

.story-card strong,
.subtitle {
  background: var(--sun-yellow);
  border: 4px solid var(--pure-black);
  border-radius: 20px;
  display: inline-block;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-top: 0.6rem;
  padding: 0.7rem 1.2rem;
}

.subtitle {
  display: table;
  margin: -2rem auto 2.5rem;
}

.chart-box {
  background: var(--pure-white);
  margin: 0 auto;
  max-width: 80rem;
  padding: 1rem;
}

.chart-placeholder {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(0, 0, 0, 0.08) 1px, transparent 1px),
    var(--sky-blue);
  background-size: 32px 32px;
  border: 4px solid var(--pure-black);
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 28rem;
  justify-content: center;
  text-align: center;
}

.chart-placeholder span {
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 950;
  text-shadow: 4px 4px 0 var(--pure-white);
}

.chart-placeholder small {
  background: var(--pure-white);
  border: 4px solid var(--pure-black);
  border-radius: 999px;
  font-size: 1.3rem;
  font-weight: 900;
  padding: 0.7rem 1.2rem;
}

.tokenomics-zigzag {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin: 0 auto;
  max-width: 58rem;
}

.token-row {
  align-items: center;
  display: flex;
  gap: 2rem;
}

.token-row.reverse {
  flex-direction: row-reverse;
}

.token-icon-circle {
  align-items: center;
  border: 8px solid var(--pure-black);
  border-radius: 50%;
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.3);
  display: flex;
  flex: 0 0 7.5rem;
  font-size: 2.6rem;
  font-weight: 950;
  height: 7.5rem;
  justify-content: center;
  width: 7.5rem;
}

.token-icon-circle.yellow {
  background: var(--sun-yellow);
}

.token-icon-circle.green {
  background: var(--grass-green);
  color: var(--pure-white);
}

.token-icon-circle.blue {
  background: var(--sky-blue);
}

.token-info-card {
  background: var(--pure-white);
  border: 6px solid var(--pure-black);
  border-radius: 40px;
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.2);
  flex: 1;
  padding: 2rem 2.5rem;
}

.token-info-card h3,
.token-info-card p {
  margin: 0;
}

.token-info-card h3 {
  color: var(--cat-brown);
  font-size: 1.6rem;
}

.big-val {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 950;
  line-height: 1.1;
}

.green-card {
  background: var(--grass-green);
  color: var(--pure-white);
}

.green-card h3 {
  color: var(--pure-white);
}

.blue-card {
  background: var(--sky-blue);
}

.connector-line {
  background: var(--pure-black);
  border-radius: 4px;
  height: 60px;
  margin: -1.5rem auto;
  width: 8px;
  z-index: 1;
}

.journey-path {
  margin: 0 auto;
  max-width: 52rem;
  position: relative;
}

.journey-path::before {
  background: var(--pure-black);
  border-radius: 5px;
  bottom: 0;
  content: "";
  left: 50%;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: 10px;
  z-index: 0;
}

.journey-step {
  align-items: flex-start;
  display: flex;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.journey-step:nth-child(odd) {
  padding-right: 55%;
}

.journey-step:nth-child(even) {
  flex-direction: row-reverse;
  padding-left: 55%;
}

.journey-dot {
  align-items: center;
  background: var(--sun-yellow);
  border: 8px solid var(--pure-black);
  border-radius: 50%;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.3);
  display: flex;
  font-size: 2rem;
  font-weight: 950;
  height: 70px;
  justify-content: center;
  left: 50%;
  position: absolute;
  top: 10px;
  transform: translateX(-50%);
  width: 70px;
  z-index: 2;
}

.journey-content {
  background: var(--pure-white);
  border: 6px solid var(--pure-black);
  border-radius: 30px;
  box-shadow: 6px 6px 0 var(--cat-brown);
  padding: 1.5rem 2rem;
  width: 100%;
}

.journey-content h4 {
  color: var(--cat-brown);
  font-size: 1.9rem;
  margin: 0 0 0.5rem;
  text-transform: uppercase;
}

.journey-content p {
  color: #444;
  font-size: 1.2rem;
  font-weight: 900;
  margin: 0;
}

.gallery-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 auto;
  max-width: 72rem;
}

.gallery-card {
  border: 6px solid var(--pure-black);
  border-radius: 30px;
  box-shadow: 0 12px 0 rgba(0, 0, 0, 0.25);
  margin: 0;
  overflow: hidden;
  position: relative;
}

.gallery-card:nth-child(1) {
  transform: rotate(-3deg) translateY(20px);
}

.gallery-card:nth-child(2) {
  transform: rotate(2deg) translateY(-10px);
}

.gallery-card:nth-child(3) {
  transform: rotate(-2deg) translateY(30px);
}

.gallery-card img {
  aspect-ratio: 0.9;
  object-fit: cover;
}

.gallery-card figcaption {
  background: rgba(0, 0, 0, 0.78);
  bottom: 0;
  color: var(--pure-white);
  font-size: 1.4rem;
  font-weight: 950;
  left: 0;
  padding: 0.8rem;
  position: absolute;
  right: 0;
  text-align: center;
}

footer {
  align-items: center;
  background: var(--cat-brown);
  color: var(--pure-white);
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding: 4rem 1.5rem 2rem;
  text-align: center;
}

.footer-badge {
  background: var(--pure-white);
  color: var(--pure-black);
  padding: 1.4rem 2rem;
  transform: rotate(1deg);
}

.footer-badge h3 {
  color: var(--cat-brown);
  font-size: clamp(3rem, 7vw, 5rem);
  line-height: 1;
  margin: 0;
}

.footer-badge p {
  border-top: 4px dashed var(--cat-brown);
  font-size: 1.5rem;
  font-weight: 900;
  margin: 0.5rem 0 0;
  padding-top: 0.5rem;
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.copyright {
  border-top: 4px solid var(--pure-white);
  font-size: 1.2rem;
  font-weight: 900;
  margin: 0;
  padding-top: 1.5rem;
  width: min(100%, 72rem);
}

@keyframes rotateSun {
  to {
    transform: rotate(360deg);
  }
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(2deg);
  }
  50% {
    transform: translateY(-15px) rotate(-2deg);
  }
  100% {
    transform: translateY(0) rotate(2deg);
  }
}

@keyframes marquee {
  to {
    transform: translateX(-100%);
  }
}

.animate-float {
  animation: float 4s ease-in-out infinite;
}

@media (max-width: 900px) {
  .nav-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    display: none;
  }

  .hero-grid,
  .two-col,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    order: 2;
    text-align: center;
  }

  .hero-card,
  .contract {
    margin-left: auto;
    margin-right: auto;
  }

  .contract {
    grid-template-columns: 1fr;
  }

  .token-row,
  .token-row.reverse {
    flex-direction: column;
    text-align: center;
  }

  .journey-path::before {
    left: 35px;
  }

  .journey-step:nth-child(odd),
  .journey-step:nth-child(even) {
    flex-direction: row;
    padding: 0 0 0 90px;
  }

  .journey-dot {
    left: 35px;
  }

  .gallery-card:nth-child(n) {
    transform: none;
  }
}
