/* ======================= */
/* Фон и центрирование    */
/* ======================= */
body {
  margin: 0;
  background: #111; /* тёмный фон страницы */
  display: flex;
  justify-content: center; /* центрируем mini app */
  align-items: flex-start;
  min-height: 100vh;
  padding: 20px 0;
  font-family: Arial, sans-serif;
}

/* Мини-апп контейнер */
.mini-app {
  width: 360px;       /* как мобильный экран */
  max-width: 90%;
  background: #1a1a1a; /* фон мини-аппа */
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.6);
  box-sizing: border-box;
}

/* Заголовок внутри mini app */
.main-title {
  margin: 0 0 20px 0;
  font-size: 28px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-align: center;
  color: #fff;
}

/* Контейнер блоков */
.container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ======================= */
/* Блоки внутри контейнера */
/* ======================= */
.stat-block {
  width: 100%;
  background: #2a2a2a;
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  box-sizing: border-box;
}

.stat-block h2 {
  color: #fff;
  margin: 0 0 15px 0;
  font-size: 18px;
  color: #aaa;
}

.stat-block p {
  color: #fff;
  font-size: 28px;
  font-weight: bold;
  margin: 0;
}

/* Tokenomics */
#tokenomics-block h2 {
  margin-bottom: 20px;
}

.token-row {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.token-row:last-child {
  margin-bottom: 0;
}

.circle {
  color: #fff;
  min-width: 55px;
  height: 55px;
  background: #444;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
  box-shadow: inset 0 0 10px rgba(0,0,0,0.6);
}

#tokenomics-block span {
  font-size: 14px;
  color: #ccc;
}
