/* =========================
   RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* =========================
   BASE
========================= */
body {
  font-family: "Tektur", sans-serif;
  background: #893518;
  color: #ffffff;
  line-height: 1.6;
}

p {
  -webkit-text-stroke: 0.1rem;
  -webkit-text-stroke-color: #893518;
}

/* =========================
   NAVIGATION
========================= */
.nav-buttons {
  position: fixed;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  z-index: 999;
}

.nav-buttons a {
  text-decoration: none;
  font-family: "Londrina Solid", serif;
  background-color: #000;
  color: #fff;
  padding: 8px 15px;
  border-radius: 20px;
  font-weight: 600;
  transition: background 0.3s;
}

.nav-buttons a:hover {
  background-color: #fff;
  color: #000;
}

/* =========================
   HEADER
========================= */
.tokenomics-header {
  text-align: center;
  padding: 60px 15px 30px;
}

.header-image {
  width: 15rem;
  max-width: 100%;
  border-radius: 23%;
  margin: 0 auto 20px;
  display: block;
  animation: floatCoin 3s ease-in-out infinite;
}

@keyframes floatCoin {
  0% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0); }
}

.tokenomics-header h1 {
  font-size: clamp(2rem, 8vw, 4rem);
  font-family: "Londrina Solid", cursive;
  color: #ffffff;
  -webkit-text-stroke: 3px #ffdc18;
  margin-bottom: 15px;
}

.tokenomics-header p {
  font-size: clamp(1rem, 4vw, 1.2rem);
  max-width: 90%;
  margin: 0 auto;
}

/* =========================
   STATS GRID
========================= */
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 40px 10px;
}

.stat-card {
  background: #ffffff;
  color: #893518;
  padding: 20px 15px;
  border-radius: 20px;
  border: 3px solid #ffdc18;
  text-align: center;
  width: 180px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.stat-icon {
  width: 40px;
  margin-bottom: 10px;
}

.stat-card h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: #ffdc18;
  -webkit-text-stroke: 1px #ffffff;
}

.stat-card p {
  font-size: 1rem;
  font-weight: 600;
}

/* =========================
   DISCLOSURE / WALLET SECTIONS
========================= */
.disclosure {
  max-width: 1000px;
  margin: 50px auto;
  padding: 0 15px;
}

.disclosure h2 {
  font-size: clamp(1.8rem, 6vw, 2.5rem);
  color: #ffdc18;
  -webkit-text-stroke: 2px #ffffff;
  margin-bottom: 20px;
  text-align: center;
}

.disclosure .updated {
  text-align: center;
  font-size: 0.9rem;
  margin-bottom: 20px;
  font-style: italic;
}

.wallet-section {
  background: #ffffff;
  color: #893518;
  border: 3px solid #ffdc18;
  border-radius: 20px;
  padding: 20px 15px;
  margin-bottom: 25px;
}

.wallet-section h3 {
  color: #ffdc18;
  -webkit-text-stroke: 1px #ffffff;
  margin-bottom: 12px;
}

.wallet-section p {
  margin-bottom: 8px;
}

.wallet-section ul {
  margin-left: 15px;
  margin-bottom: 8px;
}

/* =========================
   WALLET DISPLAY
========================= */
.wallet-text {
  background: #ffdc18;
  color: #893518;
  padding: 4px 8px;
  border-radius: 8px;
  font-family: monospace;
  font-weight: 700;
  word-break: break-all;
  display: inline-block;
  max-width: 85%;
  vertical-align: middle;
}

.copy-icon {
  cursor: pointer;
  margin-left: 8px;
  font-size: 1.1rem;
  background: #893518;
  color: #ffffff;
  padding: 4px 6px;
  border-radius: 6px;
  transition: 0.2s ease;
  vertical-align: middle;
}

.copy-icon:hover {
  background: #ffdc18;
  color: #893518;
  transform: scale(1.2);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
  .stats-grid {
    flex-direction: column;
    align-items: center;
  }

  .stat-card {
    width: 90%;
  }

  .wallet-section {
    padding: 15px 12px;
  }
}

@media (max-width: 500px) {
  .tokenomics-header h1 {
    font-size: clamp(1.5rem, 8vw, 2.5rem);
  }

  .stat-card {
    padding: 15px 10px;
  }

  .wallet-text {
    font-size: 0.85rem;
  }
}
