/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Quicksand", sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  background: #87ceeb; /* Light blue sky color as fallback */
}

/* Remove artificial clouds since we have bg-clouds.jpg */

/* Navbar Styles - Comic Book Style */
.navbar {
  background: transparent;
  border: 4px solid transparent;
  border-radius: 0;
  padding: 1rem 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: #ffffff;
  border: 4px solid #000000;
  box-shadow: 6px 6px 0px #000000;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 4px solid #000000;
  box-shadow: 3px 3px 0px #000000;
}

.logo-text {
  font-family: "Fredoka One", cursive;
  font-size: 2rem;
  color: #f7a7b8;
  text-shadow: 3px 3px 0px #000000;
  -webkit-text-stroke: 2px #000000;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.nav-link {
  text-decoration: none;
  color: #000000;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.7rem 1.5rem;
  border: 3px solid #000000;
  border-radius: 25px;
  background: #e8c8a5;
  transition: all 0.2s ease;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-link:hover,
.nav-link.active {
  background: #f7a7b8;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 6px 0px #000000;
}

.nav-link:active {
  transform: translateY(0px);
  box-shadow: 0 2px 0px #000000;
}

.nav-social {
  display: flex;
  gap: 1rem;
}

.social-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #ffffff;
  font-size: 1.5rem;
  transition: all 0.2s ease;
  border: 4px solid #000000;
  box-shadow: 3px 3px 0px #000000;
}

.telegram-btn {
  background: #2c2c2c;
}

.twitter-btn {
  background: #2c2c2c;
}

.dexscreener-btn {
  background: #2c2c2c;
}

.dextools-btn {
  background: #2c2c2c;
}

.social-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 0px #000000;
}

.social-btn:active {
  transform: translateY(0px);
  box-shadow: 3px 3px 0px #000000;
}

/* Hero Section - Comic Book Style */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  background: url("../assets/bg-clouds.jpg") center center / cover no-repeat;
}

.hero-content {
  max-width: 900px;
  text-align: center;
  z-index: 2;
}

.hero-text {
  margin-bottom: 2rem;
}

.hero-title {
  font-family: "Fredoka One", cursive;
  font-size: 3rem;
  color: #ffffff;
  text-shadow: 3px 3px 0px #000000, -3px -3px 0px #000000, 3px -3px 0px #000000,
    -3px 3px 0px #000000;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  opacity: 0;
  transform: translateY(50px) scale(0.8);
  animation: heroTitleLoad 1s ease-out 0.5s forwards;
}

@keyframes heroTitleLoad {
  0% {
    opacity: 0;
    transform: translateY(50px) scale(0.8);
  }
  60% {
    opacity: 1;
    transform: translateY(-10px) scale(1.1);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #000000;
  font-weight: 700;
  margin-bottom: 2rem;
  background: #ffffff;
  padding: 0.8rem 1.5rem;
  border: 3px solid #000000;
  border-radius: 25px;
  display: inline-block;
  box-shadow: 4px 4px 0px #000000;
  animation: fadeInUp 0.8s ease-out 1.5s both;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-image {
  margin: 2rem 0;
  animation: fadeInUp 0.8s ease-out 2.3s both;
  position: relative;
}

.manya-img {
  width: 350px;
  height: 350px;
  border-radius: 50%;
  border: 8px solid #000000;
  box-shadow: 8px 8px 0px #000000;
  transition: transform 0.3s ease;
  background: #ffffff;
  padding: 5px;
}

.manya-img:hover {
  transform: scale(1.05);
}

.hero-buttons {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-top: 3rem;
  animation: fadeInUp 0.8s ease-out 3.1s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.5rem 3rem;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.3rem;
  transition: all 0.2s ease;
  border: 4px solid #000000;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 6px 6px 0px #000000;
}

.btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 0px #000000;
}

.btn:active {
  transform: translateY(0px);
  box-shadow: 6px 6px 0px #000000;
}

.btn-primary {
  background: #f7a7b8;
  color: #ffffff;
}

.btn-primary:hover {
  background: #ff8c69;
}

.btn-secondary {
  background: #e0cda9;
  color: #ffffff;
}

.btn-secondary:hover {
  background: #90ee90;
}

/* Comic Book Floating Elements */
.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.floating-paw,
.floating-bone {
  position: absolute;
  font-size: 3rem;
  filter: drop-shadow(3px 3px 0px #000000);
  opacity: 0;
  transform: translateY(30px) rotate(-10deg) scale(0.5);
  animation: floatElementLoad 0.8s ease-out forwards;
}

.paw-1 {
  top: 15%;
  left: 8%;
  animation-delay: 3.9s;
}

.paw-2 {
  top: 65%;
  right: 12%;
  animation-delay: 4.3s;
}

.paw-3 {
  bottom: 25%;
  left: 15%;
  animation-delay: 4.7s;
}

.bone-1 {
  top: 35%;
  left: 3%;
  animation-delay: 4.1s;
}

.bone-2 {
  top: 10%;
  right: 8%;
  animation-delay: 4.5s;
}

@keyframes floatElementLoad {
  0% {
    opacity: 0;
    transform: translateY(30px) rotate(-10deg) scale(0.5);
  }
  60% {
    opacity: 0.8;
    transform: translateY(-5px) rotate(5deg) scale(1.1);
  }
  100% {
    opacity: 0.6;
    transform: translateY(0) rotate(0deg) scale(1);
  }
}

/* Comic Book Speech Bubbles */
.speech-bubble {
  position: absolute;
  background: #ffffff;
  border: 4px solid #000000;
  border-radius: 20px;
  padding: 1rem;
  font-weight: 700;
  color: #000000;
  box-shadow: 5px 5px 0px #000000;
  opacity: 0;
  transform: translateY(20px) scale(0.8);
  animation: bubbleLoad 0.6s ease-out forwards;
}

.speech-bubble::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 30px;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 20px solid #ffffff;
  border-radius: 50%;
}

.speech-bubble::before {
  content: "";
  position: absolute;
  bottom: -24px;
  left: 26px;
  width: 0;
  height: 0;
  border-left: 19px solid transparent;
  border-right: 19px solid transparent;
  border-top: 24px solid #000000;
  border-radius: 50%;
}

.bubble-1 {
  top: 20%;
  right: 20%;
  animation-delay: 4.9s;
}

.bubble-2 {
  bottom: 30%;
  left: 10%;
  animation-delay: 5.1s;
}

@keyframes bubbleLoad {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.8);
  }
  60% {
    opacity: 1;
    transform: translateY(-5px) scale(1.05);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* MANYA Speaker Image */
.manya-speaker {
  position: absolute;
  bottom: 15%;
  left: 12%;
  z-index: 3;
  opacity: 0;
  transform: translateY(20px) scale(0.7);
  animation: speakerLoad 0.6s ease-out 5.3s forwards;
}

.manya-speaker-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid #000000;
  box-shadow: 3px 3px 0px #000000;
  background: #ffffff;
  padding: 2px;
  transition: transform 0.3s ease;
}

@keyframes speakerLoad {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.7);
  }
  60% {
    opacity: 1;
    transform: translateY(-5px) scale(1.1);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.manya-speaker-img:hover {
  transform: scale(1.1);
}

/* About Section - Comic Book Style */
.about {
  padding: 4rem 2rem;
  background: rgba(255, 255, 255, 1);
  position: relative;
  overflow: hidden;
  margin-top: 0;
}

/* Tapered gradient divider */
.about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(
    to right,
    #000000 0%,
    #000000 25%,
    transparent 50%,
    #000000 75%,
    #000000 100%
  );
  clip-path: polygon(
    0% 0%,
    25% 0%,
    50% 50%,
    75% 0%,
    100% 0%,
    100% 100%,
    75% 100%,
    50% 50%,
    25% 100%,
    0% 100%
  );
  z-index: 10;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text {
  z-index: 2;
  position: relative;
}

.about-title {
  font-family: "Fredoka One", cursive;
  font-size: 2.5rem;
  color: #f7a7b8;
  text-shadow: 3px 3px 0px #000000;
  -webkit-text-stroke: 2px #000000;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0;
  transform: translateX(-50px);
  animation: slideInLeft 0.8s ease-out 0.3s forwards;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.about-description {
  margin-bottom: 2rem;
}

.about-description p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #000000;
  font-weight: 600;
  margin-bottom: 1.2rem;
  background: #e8c8a5;
  padding: 1rem 1.5rem;
  border: 3px solid #000000;
  border-radius: 15px;
  box-shadow: 4px 4px 0px #000000;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease-out forwards;
}

.about-description p:nth-child(1) {
  animation-delay: 0.6s;
}

.about-description p:nth-child(2) {
  animation-delay: 0.9s;
  background: #e0cda9;
  color: #ffffff;
}

.about-stats {
  display: flex;
  gap: 1.5rem;
  justify-content: flex-start;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease-out 1.2s forwards;
}

.stat-item {
  text-align: center;
  background: #ffffff;
  border: 4px solid #000000;
  border-radius: 20px;
  padding: 1.5rem 1rem;
  box-shadow: 5px 5px 0px #000000;
  transition: all 0.3s ease;
  min-width: 120px;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 0px #000000;
}

.stat-number {
  display: block;
  font-family: "Fredoka One", cursive;
  font-size: 2rem;
  color: #f7a7b8;
  text-shadow: 2px 2px 0px #000000;
  -webkit-text-stroke: 1px #000000;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-weight: 700;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.about-image {
  position: relative;
  text-align: center;
  opacity: 0;
  transform: translateX(50px);
  animation: slideInRight 0.8s ease-out 0.6s forwards;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.about-img {
  width: 400px;
  height: auto;
  max-width: 100%;
  border-radius: 20px;
  border: 8px solid #000000;
  box-shadow: 8px 8px 0px #000000;
  transition: transform 0.3s ease;
  background: #ffffff;
  padding: 10px;
  position: relative;
  z-index: 2;
}

.about-img:hover {
  transform: scale(1.05) rotate(5deg);
}

.image-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.decoration-element {
  position: absolute;
  font-size: 2rem;
  filter: drop-shadow(2px 2px 0px #000000);
  animation: floatDecoration 3s ease-in-out infinite;
}

.decoration-element:nth-child(1) {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.decoration-element:nth-child(2) {
  top: 20%;
  right: 15%;
  animation-delay: 1s;
}

.decoration-element:nth-child(3) {
  bottom: 15%;
  left: 20%;
  animation-delay: 2s;
}

@keyframes floatDecoration {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

@keyframes sparkleFloat {
  0% {
    transform: translateY(0) scale(1) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translateY(-80px) scale(0.5) rotate(360deg);
    opacity: 0;
  }
}

@keyframes floatUp {
  0% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateY(-60px) scale(0.8);
    opacity: 0;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/* How to Buy Section - Comic Book Style */
.how-to-buy {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #e0cda9 0%, #f7a7b8 100%);
  position: relative;
  overflow: hidden;
  margin-top: 0;
}

/* Tapered gradient divider */
.how-to-buy::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(
    to right,
    #000000 0%,
    #000000 25%,
    transparent 50%,
    #000000 75%,
    #000000 100%
  );
  clip-path: polygon(
    0% 0%,
    25% 0%,
    50% 50%,
    75% 0%,
    100% 0%,
    100% 100%,
    75% 100%,
    50% 50%,
    25% 100%,
    0% 100%
  );
  z-index: 10;
}

/* Tapered gradient divider bottom */
.how-to-buy::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(
    to right,
    #000000 0%,
    #000000 25%,
    transparent 50%,
    #000000 75%,
    #000000 100%
  );
  clip-path: polygon(
    0% 0%,
    25% 0%,
    50% 50%,
    75% 0%,
    100% 0%,
    100% 100%,
    75% 100%,
    50% 50%,
    25% 100%,
    0% 100%
  );
  z-index: 10;
}

.buy-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
  text-align: center;
}

.buy-title {
  font-family: "Fredoka One", cursive;
  font-size: 3rem;
  color: #ffffff;
  text-shadow: 4px 4px 0px #000000;
  -webkit-text-stroke: 2px #000000;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0;
  transform: translateY(-30px);
  animation: slideInDown 0.8s ease-out 0.3s forwards;
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.buy-subtitle {
  font-size: 1.3rem;
  color: #000000;
  font-weight: 700;
  margin-bottom: 3rem;
  background: #ffffff;
  padding: 1rem 2rem;
  border: 4px solid #000000;
  border-radius: 30px;
  display: inline-block;
  box-shadow: 6px 6px 0px #000000;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

.buy-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-areas: "left-steps image right-steps";
  gap: 3rem;
  margin-bottom: 3rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  align-items: center;
}

.step-group-left {
  grid-area: left-steps;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.step-group-right {
  grid-area: right-steps;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.steps-image {
  grid-area: image;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
  position: relative;
  opacity: 0;
  transform: translateY(50px) scale(0.9);
  animation: cardLoad 0.6s ease-out 1.3s forwards;
}

.step-card {
  background: #ffffff;
  border: 5px solid #000000;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 8px 8px 0px #000000;
  position: relative;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(50px) scale(0.9);
  animation: cardLoad 0.6s ease-out forwards;
}

/* Animation delays for grouped structure */
.step-group-left .step-card:nth-child(1) {
  animation-delay: 0.9s;
} /* Step 1 */
.step-group-left .step-card:nth-child(2) {
  animation-delay: 1.1s;
} /* Step 2 */
.step-group-right .step-card:nth-child(1) {
  animation-delay: 1.5s;
} /* Step 3 */
.step-group-right .step-card:nth-child(2) {
  animation-delay: 1.7s;
} /* Step 4 */

.steps-manya-img {
  width: 300px;
  height: auto;
  max-width: 100%;
  transition: transform 0.3s ease;
  margin-bottom: 1rem;
}

.steps-manya-img:hover {
  transform: scale(1.1) rotate(10deg);
}

.image-speech-bubble {
  background: #ffffff;
  border: 4px solid #000000;
  border-radius: 20px;
  padding: 1rem 1.5rem;
  font-weight: 700;
  color: #000000;
  box-shadow: 5px 5px 0px #000000;
  position: relative;
  text-align: center;
}

.image-speech-bubble::after {
  content: "";
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 15px solid #ffffff;
}

.image-speech-bubble::before {
  content: "";
  position: absolute;
  top: -19px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 19px solid transparent;
  border-right: 19px solid transparent;
  border-bottom: 19px solid #000000;
}

.image-speech-bubble p {
  margin: 0;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@keyframes cardLoad {
  from {
    opacity: 0;
    transform: translateY(50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 0px #000000;
}

.step-number {
  position: absolute;
  top: -20px;
  left: 20px;
  width: 50px;
  height: 50px;
  background: #e0cda9;
  border: 4px solid #000000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Fredoka One", cursive;
  font-size: 1.5rem;
  color: #ffffff;
  text-shadow: 2px 2px 0px #000000;
  box-shadow: 4px 4px 0px #000000;
}

.step-title {
  font-family: "Fredoka One", cursive;
  font-size: 1.5rem;
  color: #f7a7b8;
  text-shadow: 2px 2px 0px #000000;
  margin: 1rem 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.step-description {
  font-size: 1rem;
  color: #000000;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.contract-address-box {
  display: flex;
  gap: 0.5rem;
  margin: 1rem 0;
  flex-wrap: wrap;
}

.contract-input {
  flex: 1;
  min-width: 200px;
  padding: 0.8rem;
  border: 3px solid #000000;
  border-radius: 10px;
  font-family: monospace;
  font-size: 0.9rem;
  background: #f0f0f0;
  color: #000000;
  font-weight: 600;
}

.copy-btn {
  padding: 0.8rem 1.5rem;
  background: #e0cda9;
  color: #ffffff;
  border: 3px solid #000000;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 3px 3px 0px #000000;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.copy-btn:hover {
  background: #90ee90;
  transform: translateY(-2px);
  box-shadow: 0 5px 0px #000000;
}

.copy-btn:active {
  transform: translateY(0);
  box-shadow: 3px 3px 0px #000000;
}

.copy-success {
  margin-top: 0.5rem;
  color: #e0cda9;
  font-weight: 700;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.copy-success.show {
  opacity: 1;
  transform: translateY(0);
}

/* Contract section copy success message styling */
.contract-section .copy-success {
  color: #90ee90;
  text-align: center;
  margin-top: 1rem;
  font-size: 1rem;
  background: rgba(0, 0, 0, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(144, 238, 144, 0.5);
}

.step-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: #f7a7b8;
  color: #ffffff;
  text-decoration: none;
  border: 3px solid #000000;
  border-radius: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.2s ease;
  box-shadow: 4px 4px 0px #000000;
}

.step-btn:hover {
  background: #ff8c69;
  transform: translateY(-3px);
  box-shadow: 0 7px 0px #000000;
}

.step-btn:active {
  transform: translateY(0);
  box-shadow: 4px 4px 0px #000000;
}

.step-icon {
  font-size: 3rem;
  margin-top: 1rem;
  filter: drop-shadow(2px 2px 0px #000000);
}

.buy-warning {
  background: #e8c8a5;
  border: 4px solid #000000;
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 6px 6px 0px #000000;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out 1.8s forwards;
}

.buy-warning p {
  margin: 0;
  font-size: 1rem;
  color: #000000;
  font-weight: 600;
}

/* Roadmap Section - Comic Book Style */
.roadmap {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #e0cda9 0%, #ffc0cb 100%);
  position: relative;
  overflow: hidden;
  margin-top: 0;
}

/* Tapered gradient divider bottom */
.roadmap::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(
    to right,
    #000000 0%,
    #000000 25%,
    transparent 50%,
    #000000 75%,
    #000000 100%
  );
  clip-path: polygon(
    0% 0%,
    25% 0%,
    50% 50%,
    75% 0%,
    100% 0%,
    100% 100%,
    75% 100%,
    50% 50%,
    25% 100%,
    0% 100%
  );
  z-index: 10;
}

.roadmap-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
  text-align: center;
}

.roadmap-title {
  font-family: "Fredoka One", cursive;
  font-size: 3rem;
  color: #ffffff;
  text-shadow: 4px 4px 0px #000000;
  -webkit-text-stroke: 2px #000000;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0;
  transform: translateY(-30px);
  animation: slideInDown 0.8s ease-out 0.3s forwards;
}

.roadmap-subtitle {
  font-size: 1.3rem;
  color: #000000;
  font-weight: 700;
  margin-bottom: 4rem;
  background: #ffffff;
  padding: 1rem 2rem;
  border: 4px solid #000000;
  border-radius: 30px;
  display: inline-block;
  box-shadow: 6px 6px 0px #000000;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

.roadmap-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

/* Roadmap Phases */
.roadmap-phase {
  display: flex;
  align-items: flex-start;
  margin-bottom: 4rem;
  position: relative;
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 0.8s ease-out forwards;
}

.roadmap-phase:nth-child(2) {
  animation-delay: 0.9s;
} /* Phase 1 */
.roadmap-phase:nth-child(3) {
  animation-delay: 1.2s;
} /* Phase 2 */
.roadmap-phase:nth-child(4) {
  animation-delay: 1.5s;
} /* Phase 3 */
.roadmap-phase:nth-child(5) {
  animation-delay: 1.8s;
} /* Phase 4 */

/* Alternate layout for phases */
.roadmap-phase:nth-child(even) {
  flex-direction: row-reverse;
}

.roadmap-phase:nth-child(even) .phase-content {
  text-align: right;
}

.phase-number {
  width: 80px;
  height: 80px;
  background: #ffffff;
  border: 6px solid #000000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Fredoka One", cursive;
  font-size: 2rem;
  color: #f7a7b8;
  text-shadow: 2px 2px 0px #000000;
  box-shadow: 6px 6px 0px #000000;
  position: relative;
  z-index: 5;
  margin: 0 2rem;
  flex-shrink: 0;
}

.phase-content {
  background: #ffffff;
  border: 5px solid #000000;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 8px 8px 0px #000000;
  max-width: 350px;
  text-align: left;
}

.phase-title {
  font-family: "Fredoka One", cursive;
  font-size: 1.5rem;
  color: #e0cda9;
  text-shadow: 2px 2px 0px #000000;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.phase-tasks {
  list-style: none;
  padding: 0;
  margin: 0;
}

.phase-tasks li {
  font-size: 1rem;
  color: #000000;
  font-weight: 600;
  margin-bottom: 0.8rem;
  padding-left: 0.5rem;
  position: relative;
}

.phase-tasks li:last-child {
  margin-bottom: 0;
}

/* Moon Destination */
.moon-destination {
  text-align: center;
  margin-top: 3rem;
  position: relative;
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 0.8s ease-out 2.1s forwards;
}

.moon {
  font-size: 4rem;
  filter: drop-shadow(4px 4px 8px rgba(0, 0, 0, 0.3));
  animation: moonGlow 2s ease-in-out infinite alternate;
}

@keyframes moonGlow {
  0% {
    transform: scale(1);
    filter: drop-shadow(4px 4px 8px rgba(0, 0, 0, 0.3));
  }
  100% {
    transform: scale(1.1);
    filter: drop-shadow(4px 4px 12px rgba(255, 255, 0, 0.5));
  }
}

.moon-text {
  font-family: "Fredoka One", cursive;
  font-size: 1.5rem;
  color: #ffffff;
  text-shadow: 3px 3px 0px #000000;
  margin-top: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-container {
    padding: 0 1rem;
  }

  .nav-menu {
    display: none;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
    padding: 0.6rem 1.2rem;
  }

  .manya-img {
    width: 280px;
    height: 280px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .btn {
    width: 250px;
    justify-content: center;
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
  }

  .floating-paw,
  .floating-bone {
    display: none; /* Hide floating elements on mobile */
  }

  .logo-text {
    font-size: 1.5rem;
  }

  .manya-speaker {
    display: none; /* Hide on mobile */
  }

  .speech-bubble {
    display: none; /* Hide speech bubbles on mobile */
  }

  .about {
    padding: 2rem 1rem;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .about-title {
    font-size: 1.8rem;
  }

  .about-description p {
    font-size: 1rem;
    padding: 0.8rem 1.2rem;
  }

  .about-stats {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .stat-item {
    min-width: 100px;
    padding: 1rem 0.8rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .about-img {
    width: 280px;
    height: auto;
    max-width: 100%;
  }

  .decoration-element {
    font-size: 1.5rem;
  }

  .how-to-buy {
    padding: 2rem 1rem;
  }

  .buy-title {
    font-size: 2.2rem;
  }

  .buy-subtitle {
    font-size: 1.1rem;
    padding: 0.8rem 1.5rem;
  }

  .buy-steps {
    grid-template-columns: 1fr;
    grid-template-areas:
      "left-steps"
      "image"
      "right-steps";
    gap: 1.5rem;
  }

  .step-group-left,
  .step-group-right {
    gap: 1.5rem;
  }

  .steps-image {
    margin: 1.5rem 0;
  }

  .steps-manya-img {
    width: 220px;
    height: auto;
    max-width: 100%;
  }

  .image-speech-bubble {
    padding: 0.8rem 1.2rem;
    font-size: 0.9rem;
  }

  .step-card {
    padding: 1.5rem;
  }

  .step-title {
    font-size: 1.2rem;
  }

  .step-description {
    font-size: 0.9rem;
  }

  .contract-address-box {
    flex-direction: column;
  }

  .contract-input {
    min-width: auto;
    font-size: 0.8rem;
  }

  .copy-btn {
    justify-content: center;
    font-size: 0.9rem;
  }

  .step-btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }

  .step-icon {
    font-size: 2rem;
  }

  .buy-warning {
    padding: 1rem;
  }

  .buy-warning p {
    font-size: 0.9rem;
  }

  .roadmap {
    padding: 2rem 1rem;
  }

  .roadmap-title {
    font-size: 2.2rem;
  }

  .roadmap-subtitle {
    font-size: 1.1rem;
    padding: 0.8rem 1.5rem;
    margin-bottom: 3rem;
  }

  .roadmap-timeline {
    max-width: 100%;
  }

  .roadmap-phase {
    flex-direction: column !important;
    align-items: center;
    margin-bottom: 3rem;
  }

  .roadmap-phase .phase-content {
    text-align: center !important;
    max-width: 100%;
    margin-top: 1rem;
  }

  .phase-number {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    margin: 0;
  }

  .phase-title {
    font-size: 1.2rem;
  }

  .phase-tasks li {
    font-size: 0.9rem;
  }

  .moon {
    font-size: 3rem;
  }

  .moon-text {
    font-size: 1.2rem;
  }
}

/* Contract Section - Clean Style */
.contract-section {
  padding: 4rem 2rem;
  background: #2c2c2c;
  color: #ffffff;
  text-align: center;
  position: relative;
  margin-top: 0;
}

.contract-container {
  max-width: 600px;
  margin: 0 auto;
}

.contract-title {
  font-family: "Fredoka One", cursive;
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contract-display {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid #ffffff;
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(10px);
}

.contract-address-text {
  font-family: monospace;
  font-size: 1.1rem;
  color: #ffffff;
  margin: 0 0 2rem 0;
  word-break: break-all;
  font-weight: 600;
  background: rgba(0, 0, 0, 0.3);
  padding: 1rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.contract-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.contract-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.2s ease;
  border: 2px solid #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  min-width: 140px;
  justify-content: center;
}

.copy-ca-btn {
  background: #e0cda9;
  color: #ffffff;
}

.copy-ca-btn:hover {
  background: #90ee90;
  transform: translateY(-2px);
}

.etherscan-btn {
  background: transparent;
  color: #ffffff;
}

.etherscan-btn:hover {
  background: #ffffff;
  color: #2c2c2c;
  transform: translateY(-2px);
}

/* Responsive Contract Section */
@media (max-width: 768px) {
  .contract-section {
    padding: 2rem 1rem;
  }

  .contract-title {
    font-size: 2rem;
  }

  .contract-display {
    padding: 1.5rem;
  }

  .contract-address-text {
    font-size: 0.9rem;
  }

  .contract-buttons {
    flex-direction: column;
    align-items: center;
  }

  .contract-btn {
    width: 100%;
    max-width: 200px;
  }
}

/* Footer Section - Simple Bar Style */
.footer {
  background: #ffffff;
  border-top: 3px solid #000000;
  padding: 1rem 2rem;
  position: relative;
  margin-top: 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-left p {
  margin: 0;
  color: #000000;
  font-weight: 600;
  font-size: 0.9rem;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-link {
  text-decoration: none;
  color: #000000;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  padding: 0.3rem 0;
  border-bottom: 2px solid transparent;
}

.footer-link:hover {
  color: #f7a7b8;
  border-bottom-color: #f7a7b8;
}

.footer-link.telegram-btn,
.footer-link.twitter-btn,
.footer-link.dexscreener-btn,
.footer-link.dextools-btn {
  padding: 0.5rem;
  border-radius: 50%;
  border: 2px solid #000000;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 2px solid #000000;
  background: #ffffff;
  color: #000000;
}

.footer-link.telegram-btn:hover,
.footer-link.twitter-btn:hover,
.footer-link.dexscreener-btn:hover,
.footer-link.dextools-btn:hover {
  background: #f7a7b8;
  color: #ffffff;
  border-color: #f7a7b8;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer {
    padding: 1rem;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .footer-right {
    justify-content: center;
    gap: 1rem;
  }

  .footer-link {
    font-size: 0.8rem;
  }
}

/* Fun hover effects */
.hero-title:hover {
  transform: scale(1.05);
  color: #f7a7b8;
}

.logo-text:hover {
  transform: scale(1.1);
  color: #e0cda9;
}

/* Comic cursor effects */
body {
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><circle cx="12" cy="12" r="8" fill="%23f7a7b8" stroke="%23000000" stroke-width="2"/></svg>'),
    auto;
}

.btn {
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><circle cx="12" cy="12" r="8" fill="%23e0cda9" stroke="%23000000" stroke-width="2"/></svg>'),
    pointer;
}
