/* css/tokenomics.css */

.tokenomics-section {
  background-color: #fff;
  padding: 4rem 0;
  text-align: center;
  /* If using Inter, ensure you've imported it (see note below) */
  font-family: 'Inter', sans-serif; 
}

.tokenomics-title {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 2rem;
  color: #333;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.tokenomics-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center; /* center the cards horizontally */
  margin-bottom: 2rem;
}

.tokenomics-card {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 2rem;
  min-width: 220px;
  transition: box-shadow 0.3s;
  text-align: center;
}

.tokenomics-card:hover {
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.tokenomics-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #000;
}

.tokenomics-card p {
  font-size: 1rem;
  margin: 0;
  color: #555;
}

/* Button for "Full Tokenomics" */
.tokenomics-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #000;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s;
}

.tokenomics-button:hover {
  background-color: #333;
}
