/* Reset & base */
body {
  margin: 0;
  font-family: 'Poppins', Arial, sans-serif;
  background: #0d0d0d;
  color: #fff;
}

a {
  color: inherit;
  text-decoration: none;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #111;
  padding: 18px 32px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Luckiest Guy', cursive;
  font-size: 2rem;
  color: #FFD400;
}

.logo img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 50%;
  background: #222;
  border: 2px solid #FFD400;
}

.menu-toggle {
  background: none;
  border: none;
  color: #FFD400;
  font-size: 2rem;
  cursor: pointer;
  display: none;
}

nav#mainNav {
  display: flex;
  gap: 24px;
}

nav#mainNav a {
  font-weight: 600;
  color: #FFD400;
  padding: 6px 0;
  transition: color 0.2s;
}

nav#mainNav a:hover {
  color: #fff;
}

@media (max-width: 800px) {
  .header {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
  }
  nav#mainNav {
    flex-direction: column;
    gap: 12px;
    display: none;
    width: 100%;
    margin-top: 12px;
  }
  nav#mainNav.active {
    display: flex;
  }
  .menu-toggle {
    display: block;
    margin-left: auto;
  }
}

/* HERO SECTION */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding: 64px 32px 32px 32px;
  background: linear-gradient(120deg, #1a1a1a 60%, #FFD400 100%);
  min-height: 70vh;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1 1 340px;
  max-width: 540px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-text h1 {
  font-family: 'Luckiest Guy', cursive;
  font-size: 2.8rem;
  color: #FFD400;
  margin-bottom: 0;
  line-height: 1;
  text-shadow: 3px 3px 0 #000;
}

.hero-text h1 span {
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  text-shadow: 2px 2px 0 #FFD400;
}

.hero-text p {
  font-size: 1.15rem;
  color: #fff;
  margin-top: 0;
}

.hero-buttons {
  display: flex;
  gap: 18px;
  margin-top: 8px;
}

.buy-btn, .main-btn {
  background: linear-gradient(90deg, #22c55e 60%, #16a34a 100%);
  color: #fff;
  font-family: 'Luckiest Guy', cursive;
  font-size: 1.1rem;
  font-weight: bold;
  padding: 14px 32px;
  border-radius: 999px;
  border: none;
  box-shadow: 0 0 24px 0 rgba(34,197,94,0.25);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: breathing 2.2s infinite ease-in-out;
  outline: none;
}

@keyframes breathing {
  0% { transform: scale(1); box-shadow: 0 0 20px 0 rgba(34,197,94,0.3); }
  50% { transform: scale(1.08); box-shadow: 0 0 40px 8px rgba(34,197,94,0.5); }
  100% { transform: scale(1); box-shadow: 0 0 20px 0 rgba(34,197,94,0.3); }
}

.learn-btn, .ghost-btn {
  background: #222;
  color: #FFD400;
  font-weight: 600;
  border-radius: 999px;
  padding: 12px 28px;
  border: 2px solid #FFD400;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
}

.learn-btn:hover, .ghost-btn:hover {
  background: #FFD400;
  color: #222;
}

.hero-image {
  flex: 1 1 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image img {
  width: 320px;
  max-width: 90vw;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 0 32px 0 rgba(255,212,0,0.18);
  background: #fff;
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    gap: 32px;
    padding: 32px 12px;
  }
  .hero-image img {
    width: 220px;
  }
}

/* CONTRACT BOX */
.contract-box {
  margin-top: 18px;
  background: #222;
  border-radius: 12px;
  padding: 12px 18px;
  box-shadow: 0 0 12px 0 rgba(255,212,0,0.08);
  width: fit-content;
}

.contract-box .label {
  font-size: 0.95rem;
  color: #FFD400;
  font-weight: bold;
  margin-bottom: 4px;
}

.contract-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #111;
  border-radius: 8px;
  padding: 6px 10px;
}

.contract-text {
  font-family: monospace;
  font-size: 0.95rem;
  color: #fff;
  letter-spacing: 0.5px;
}

.copy-btn {
  background: #FFD400;
  color: #222;
  border: none;
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s;
}

.copy-btn:hover {
  background: #22c55e;
  color: #fff;
}

/* STORY SECTION */
.story-section {
  background: #181818;
  padding: 56px 0 32px 0;
}

.story-section h2 {
  font-family: 'Luckiest Guy', cursive;
  color: #FFD400;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 24px;
}

.story-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 18px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.event {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.event .dot {
  width: 18px;
  height: 18px;
  background: #FFD400;
  border-radius: 50%;
  margin-top: 6px;
  box-shadow: 0 0 8px #FFD400;
}

.event.active .dot {
  background: #22c55e;
  box-shadow: 0 0 12px #22c55e;
}

.event-content h3 {
  margin: 0 0 4px 0;
  font-size: 1.15rem;
  color: #FFD400;
}

.event-content .small-text {
  font-size: 0.98rem;
  color: #fff;
  opacity: 0.8;
}

.info-grid {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.info-box {
  background: #222;
  border-radius: 12px;
  padding: 18px 24px;
  flex: 1 1 220px;
  box-shadow: 0 0 12px 0 rgba(255,212,0,0.08);
}

.info-box h4 {
  margin: 0 0 6px 0;
  color: #FFD400;
  font-size: 1.1rem;
}

.info-box .small-text {
  font-size: 0.98rem;
  color: #fff;
  opacity: 0.8;
}

.footer-text {
  text-align: center;
  font-size: 1.2rem;
  color: #FFD400;
  margin-top: 18px;
  font-family: 'Luckiest Guy', cursive;
}

.footer-text span {
  color: #22c55e;
}

/* TOKENOMICS SECTION */
.tokenomics-section {
  background: #111;
  padding: 56px 0 32px 0;
}

.tokenomics-section h2 {
  font-family: 'Luckiest Guy', cursive;
  color: #FFD400;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 24px;
}

.token-grid {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.token-box {
  background: #222;
  border-radius: 12px;
  padding: 18px 24px;
  flex: 1 1 180px;
  text-align: center;
  box-shadow: 0 0 12px 0 rgba(255,212,0,0.08);
}

.token-box h3 {
  margin: 0 0 6px 0;
  color: #FFD400;
  font-size: 1.3rem;
}

.token-box.highlight {
  background: #FFD400;
  color: #222;
}

.token-box.highlight h3 {
  color: #222;
}

.next-burn {
  text-align: center;
  margin-top: 18px;
  color: #FFD400;
}

.next-burn h4 {
  margin: 0 0 4px 0;
  font-size: 1.1rem;
}

/* ROADMAP SECTION */
.roadmap-section {
  background: #181818;
  padding: 56px 0 32px 0;
}

.roadmap-section h2 {
  font-family: 'Luckiest Guy', cursive;
  color: #FFD400;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 24px;
}

.roadmap-grid {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.phase {
  background: #222;
  border-radius: 12px;
  padding: 18px 24px;
  flex: 1 1 220px;
  box-shadow: 0 0 12px 0 rgba(255,212,0,0.08);
  min-width: 220px;
}

.phase.active {
  border: 2px solid #FFD400;
}

.phase h3 {
  margin: 0 0 8px 0;
  color: #FFD400;
  font-size: 1.1rem;
}

.phase ul {
  padding-left: 18px;
  margin: 0;
  color: #fff;
  font-size: 1rem;
}

.phase ul li {
  margin-bottom: 6px;
}

/* HOW TO BUY SECTION */
.how-to-buy {
  background: #111;
  padding: 56px 0 32px 0;
}

.how-to-buy h2 {
  font-family: 'Luckiest Guy', cursive;
  color: #FFD400;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 24px;
}

.buy-grid {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.buy-card {
  background: #222;
  border-radius: 12px;
  padding: 18px 24px;
  flex: 1 1 220px;
  box-shadow: 0 0 12px 0 rgba(255,212,0,0.08);
  min-width: 220px;
  text-align: center;
}

.buy-card.large-card {
  flex: 2 1 320px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.buy-card h3 {
  margin: 0 0 6px 0;
  color: #FFD400;
  font-size: 1.1rem;
}

.buy-card p {
  font-size: 1rem;
  color: #fff;
  opacity: 0.85;
}

.main-btn, .ghost-btn {
  margin: 6px 0;
  width: 90%;
  max-width: 320px;
}

.ghost-btn {
  background: #222;
  color: #FFD400;
  border: 2px solid #FFD400;
  font-weight: 600;
  border-radius: 999px;
  padding: 12px 28px;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
}

.ghost-btn:hover {
  background: #FFD400;
  color: #222;
}

/* COMMUNITY SECTION */
.community {
  background: #181818;
  padding: 56px 0 32px 0;
  text-align: center;
}

.community h2 {
  font-family: 'Luckiest Guy', cursive;
  color: #FFD400;
  font-size: 2rem;
  margin-bottom: 24px;
}

.community-box {
  background: #222;
  border-radius: 12px;
  padding: 18px 24px;
  max-width: 480px;
  margin: 0 auto 24px auto;
  box-shadow: 0 0 12px 0 rgba(255,212,0,0.08);
}

.community-box h3 {
  margin: 0 0 8px 0;
  color: #FFD400;
  font-size: 1.1rem;
}

.community-box ul {
  list-style: none;
  padding: 0;
  margin: 0 0 8px 0;
}

.community-box ul li {
  font-size: 1rem;
  color: #FFD400;
  margin-bottom: 4px;
}

.community-box p {
  color: #fff;
  opacity: 0.85;
  margin: 0 0 4px 0;
}

.community-box strong {
  color: #22c55e;
  font-size: 1.1rem;
}

.social-grid {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 24px 0;
}

.social-card {
  background: #222;
  border-radius: 12px;
  padding: 18px 24px;
  min-width: 180px;
  text-align: center;
  color: #FFD400;
  box-shadow: 0 0 12px 0 rgba(255,212,0,0.08);
  transition: background 0.2s, color 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.social-card:hover {
  background: #FFD400;
  color: #222;
}

.social-card .icon {
  margin-bottom: 6px;
}

.footer-icons {
  display: flex;
  gap: 18px;
  justify-content: center;
  margin-top: 18px;
}

.social-icon {
  display: inline-block;
  background: #222;
  border-radius: 50%;
  padding: 8px;
  color: #FFD400;
  transition: background 0.2s, color 0.2s;
}

.social-icon:hover {
  background: #FFD400;
  color: #222;
}

@media (max-width: 600px) {
  .hero-text h1 {
    font-size: 2rem;
  }
  .hero-text h1 span {
    font-size: 1.2rem;
  }
  .hero-image img {
    width: 140px;
  }
  .token-grid, .roadmap-grid, .buy-grid, .info-grid, .social-grid {
    flex-direction: column;
    gap: 16px;
  }
  .phase, .token-box, .buy-card, .info-box, .social-card {
    min-width: 0;
    width: 100%;
  }
  .community-box {
    width: 100%;
    max-width: 100%;
  }
}

/* ABOUT SECTION */
.about-box {
  background: #222;
  border-radius: 18px;
  border: 2px solid #FFD400;
  box-shadow: 0 0 24px 0 rgba(255,212,0,0.10);
  padding: 2.5rem 2rem;
  margin: 0 auto 1.5rem auto;
  max-width: 700px;
  width: 100%;
  transition: box-shadow 0.2s;
  position: relative;
}

.about-box:hover {
  box-shadow: 0 0 40px 0 rgba(255,212,0,0.18), 0 0 0 2px #FFD400;
}

.about-info-item {
  background: #181818;
  border: 1.5px solid #FFD400;
  border-radius: 16px;
  box-shadow: 0 0 12px 0 rgba(255,212,0,0.08);
  padding: 1.2rem 1rem;
  margin: 0.5rem 0.25rem;
  text-align: center;
  font-size: 1rem;
  font-family: 'Freeman', sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 180px;
  flex: 1 1 180px;
}

@media (max-width: 900px) {
  .about-info-item {
    min-width: 140px;
    font-size: 0.95rem;
    padding: 1rem 0.5rem;
  }
  .about-box .flex-wrap {
    flex-direction: column !important;
    gap: 0.5rem !important;
  }
}

/* force single-row buttons but allow text shrink */
.step-card .dex-btn {
  white-space: nowrap;
  min-width: 90px;
  padding-left: 8px;
  padding-right: 8px;
  font-size: 13px;
}

/* allow the buttons to shrink but keep readable */
.step-card .dex-btn { flex: 1 1 0%; }
@media (max-width:360px){
  .step-card .dex-btn { font-size:12px; padding-left:6px; padding-right:6px; }
}

