:root {
  --bg-dark: #0e1117;
  --accent: #00ffa3;
  --text: #ffffff;
  --card-bg: #1a1e26;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--bg-dark);
  color: var(--text);
}

header {
  text-align: center;
  padding: 2rem 1rem;
}

header .logo {
  height: 60px;
  margin-bottom: 1rem;
}

header h1 {
  font-size: 2.5rem;
  margin: 0;
}

header p {
  opacity: 0.8;
  max-width: 600px;
  margin: 0.5rem auto 0;
}

section {
  padding: 2rem 1rem;
  max-width: 1000px;
  margin: auto;
}

h2 {
  text-align: center;
  margin-bottom: 1.5rem;
}

.crypto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}

.crypto-card {
  background: var(--card-bg);
  padding: 1rem;
  text-align: center;
  border-radius: 10px;
  transition: 0.3s;
}

.crypto-card:hover {
  transform: scale(1.05);
}

.mood-section {
  text-align: center;
}

.mood-circle {
  margin: 1rem auto;
  height: 150px;
  width: 150px;
  background: var(--card-bg);
  border: 5px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
}

.mission-section p {
  max-width: 800px;
  margin: auto;
  text-align: center;
  line-height: 1.5;
}

.contact-section {
  text-align: center;
}

.contact-section a {
  color: var(--accent);
  text-decoration: none;
}

footer {
  text-align: center;
  padding: 1rem;
  background: #0b0e13;
  opacity: 0.7;
}
.report-section {
  text-align: center;
}

.founding-button {
  margin-top: 1rem;
  padding: 0.8rem 1.4rem;
  border: 1px solid var(--accent);
  border-radius: 8px;
  background: transparent;
  color: var(--accent);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
}

.founding-button:hover {
  background: var(--accent);
  color: #0e1117;
}

.founding-membership {
  display: none;
  max-width: 700px;
  margin: 1.5rem auto 0;
  padding: 1.5rem;
  background: var(--card-bg);
  border-radius: 10px;
  text-align: left;
  line-height: 1.5;
}

.founding-membership.show {
  display: block;
}

.founding-membership h3 {
  text-align: center;
  margin-top: 0;
}

.founding-membership ul {
  max-width: 600px;
  margin: 1rem auto;
}

.wallet-address {
  display: inline-block;
  margin-top: 0.5rem;
  word-break: break-all;
  font-family: monospace;
  font-size: 0.9rem;
}
.report-section a {
  color: var(--accent);
  text-decoration: none;
}

.report-section a:hover {
  text-decoration: underline;
}
