@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Inter:wght@400;600&display=swap');

body {
  background: #090909;
  color: #e2b13c;
  font-family: 'Inter', 'Montserrat', Arial, sans-serif;
  margin: 0;
  padding: 0;
}

header {
  background: #121212;
  padding: 2rem 0 1rem 0;
  text-align: center;
  border-bottom: 2px solid #e2b13c;
  box-shadow: 0 4px 16px #0006;
}

.logo-img {
  max-width: 170px;
  margin-bottom: 1rem;
  filter: drop-shadow(0 2px 24px #e2b13c88);
}

h1 {
  color: #e2b13c;
  font-family: 'Montserrat', sans-serif;
  font-size: 2.6rem;
  letter-spacing: 2px;
  margin: 0 0 0.3rem 0;
  font-weight: 700;
  text-shadow: 0 4px 24px #000a;
}

.subtitle {
  font-size: 1.12rem;
  color: #fff;
  letter-spacing: 1px;
  font-weight: 400;
  text-shadow: 0 2px 10px #000a;
}

nav {
  margin: 2rem 0 0 0;
}

nav a {
  color: #e2b13c;
  text-decoration: none;
  margin: 0 1.1rem;
  font-size: 1.08rem;
  font-weight: 600;
  transition: color 0.2s, border-bottom 0.2s;
  letter-spacing: 1px;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
}

nav a:hover {
  color: #fff;
  border-bottom: 2px solid #e2b13c;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.2rem;
}

section {
  padding: 3.2rem 0 2.2rem 0;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  color: #e2b13c;
  font-size: 2rem;
  border-left: 6px solid #e2b13c;
  padding-left: 1rem;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
  font-weight: 700;
  text-shadow: 0 2px 12px #0008;
}

.about-section, .vision-section, .tokenomics-section {
  background: #101010;
  border-radius: 12px;
  box-shadow: 0 2px 20px #0007;
  margin-bottom: 2.5rem;
}

.why-section, .disclaimer-section {
  background: #181818;
  border-radius: 12px;
  box-shadow: 0 2px 20px #0007;
  margin-bottom: 2.5rem;
}

p, ul, li {
  font-size: 1.11rem;
  line-height: 1.7;
  color: #e2b13c;
  margin-bottom: 1.1rem;
}

ul {
  padding-left: 1.2rem;
  margin-top: 0.5rem;
}

li {
  margin-bottom: 0.7rem;
}

b {
  color: #fff;
  font-weight: 700;
}

/* Tokenomics Table */
.table-responsive {
  overflow-x: auto;
  margin-bottom: 1.5rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: #111;
  color: #e2b13c;
  font-size: 1rem;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1rem;
}

th, td {
  border: 1px solid #e2b13c;
  padding: 0.75rem 0.6rem;
  text-align: left;
  vertical-align: top;
}

th {
  background: #181818;
  color: #e2b13c;
  font-weight: 700;
}

tr:nth-child(even) {
  background: #181818;
}

tr:nth-child(odd) {
  background: #111;
}

tfoot td {
  font-size: 1.1rem;
  color: #fff;
  background: #222;
  border-top: 2px solid #e2b13c;
  text-align: center;
}

.token-note {
  color: #fff;
  background: #181818;
  padding: 1rem 1.5rem;
  border-left: 4px solid #e2b13c;
  margin-top: 1.5rem;
  font-size: 1.05rem;
  border-radius: 0 7px 7px 0;
}

footer {
  background: #131313;
  color: #e2b13c;
  text-align: center;
  padding: 2rem 1rem 1rem 1rem;
  font-size: 1.02rem;
  letter-spacing: 1px;
  border-top: 2px solid #e2b13c;
  margin-top: 4rem;
  box-shadow: 0 -2px 16px #000c;
}

/* Responsive */
@media (max-width: 900px) {
  .container {
    max-width: 98vw;
    padding: 0 3vw;
  }
  .section-title { font-size: 1.4rem; }
  table, th, td { font-size: 0.98rem; }
}

@media (max-width: 600px) {
  h1 { font-size: 1.6rem; }
  .section-title { font-size: 1.1rem; }
  .logo-img { max-width: 110px; }
  nav { margin-top: 1rem; }
  nav a { margin: 0 0.5rem; font-size: 0.97rem; }
  section { padding: 1.2rem 0 0.7rem 0; }
}
.form-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #1a1d23;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 28px;
  font-size: 1.1em;
  transition: background 0.2s;
}
.form-btn:hover {
  background: #21213a;
}
