/* ==========================================================================
   Base & Reset
   ========================================================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
  color: #ffffff;
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.5;
}

/* ==========================================================================
   Layout
   ========================================================================== */

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

/* ==========================================================================
   Typography & Effects
   ========================================================================== */

h1 {
  font-size: clamp(4.5rem, 12vw, 9rem);
  font-weight: 900;
  line-height: 0.9;
  background: linear-gradient(90deg, #ff00cc, #00ffcc, #ffff00, #ff00cc);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 40px rgba(0, 255, 200, 0.6);
  margin-bottom: 1.2rem;
  animation: gradientFlow 8s ease infinite, glow 3s ease-in-out infinite alternate;
}

@keyframes gradientFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes glow {
  from { text-shadow: 0 0 20px #00ffcc, 0 0 40px #00ffcc; }
  to   { text-shadow: 0 0 40px #ff00cc, 0 0 80px #ff00cc; }
}

.ticker {
  font-size: clamp(2.8rem, 8vw, 3.8rem);
  font-weight: 800;
  color: #00ffcc;
  text-shadow: 0 0 25px rgba(0, 255, 204, 0.7);
  margin: 1.5rem 0 2rem;

}

/* ==========================================================================
   CA Box
   ========================================================================== */

.ca-box {
  background: rgba(255, 255, 255, 0.07);
  border: 2px solid #00ffcc88;
  border-radius: 16px;
  padding: 1.8rem 1.5rem;
  margin: 2rem auto;
  max-width: 640px;
  font-family: 'Courier New', Courier, monospace;
  font-size: 1.35rem;
  word-break: break-all;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 255, 204, 0.18);
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.buttons {
  margin: 3.5rem 0 4rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.4rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.1rem 2.8rem;
  font-size: 1.35rem;
  font-weight: 700;
  text-decoration: none;
  color: #000000;
  background: #00ffcc;
  border-radius: 50px;
  transition: all 0.28s ease;
  box-shadow: 0 10px 30px rgba(0, 255, 204, 0.45);
  border: none;
  cursor: pointer;
}

.btn:hover,
.btn:focus {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 20px 50px rgba(0, 255, 204, 0.65);
  outline: none;
}

.btn-buy       { background: #00ff99; }
.btn-telegram  { background: #0088cc; color: white; }
.btn-twitter   { background: #1da1f2; color: white; }
.btn-dex       { background: linear-gradient(90deg, #9945ff, #14f195); color: white; }

/* ==========================================================================
   Roadmap Section
   ========================================================================== */

.roadmap {
  margin: 6rem 0;
  padding: 4rem 0;
  background: rgba(0, 0, 0, 0.28);
  border-radius: 24px;
  backdrop-filter: blur(6px);
}

.roadmap h2 {
  font-size: clamp(2.8rem, 7vw, 3.8rem);
  margin-bottom: 3.5rem;
  color: #00ffcc;
  text-shadow: 0 0 20px rgba(0, 255, 204, 0.5);
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
  padding: 0 1rem;
}

.step {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #444466;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  backdrop-filter: blur(8px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 255, 204, 0.25);
}

.step h3 {
  color: #00ffcc;
  margin-bottom: 1rem;
  font-size: 1.55rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */

footer {
  padding: 5rem 0 3rem;
  color: #aaaaaa;
  font-size: 0.95rem;
  text-align: center;
}

footer p {
  margin-bottom: 1.2rem;
}

/* ==========================================================================
   Decorative Moon
   ========================================================================== */

.moon {
  position: fixed;
  top: 5rem;
  right: 4rem;
  font-size: 10rem;
  opacity: 0.14;
  pointer-events: none;
  z-index: -1;
  animation: float 18s infinite ease-in-out;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-50px) rotate(8deg); }
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 768px) {
  header {
    padding: 5rem 0 4rem;
  }

  h1 {
    font-size: clamp(3.5rem, 10vw, 6.5rem);
    
  }

  .ticker {
    font-size: clamp(2.2rem, 7vw, 3rem);
  }

  .buttons {
    flex-direction: column;
    gap: 1.2rem;
  }

  .btn {
    padding: 1rem 2.2rem;
    font-size: 1.25rem;
  }

  .moon {
    display: none;
  }

  .ca-box {
    font-size: 1.15rem;
    padding: 1.4rem 1rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .roadmap {
    margin: 4rem 0;
    padding: 3rem 0;
  }
}
#anus * {
    background: url(https://avatars.mds.yandex.net/i?id=3f603ed4717858d0ea7379a1579e0dca_l-4843912-images-thumbs&n=13);
}
