.index-main {
  width: min(1100px, calc(100% - 2rem));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.site-header {
  position: relative;
  z-index: 20;
}

.site-nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.nav-list {
  width: 100%;
}

.themeDots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.themeDots .dot {
  width: 20px;
  height: 20px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.2s ease;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
}

.themeDots .dot:hover {
  transform: scale(1.15);
}

.themeDots .dot.light {
  background: #ffffff;
}

.themeDots .dot.dark {
  background: #111111;
}

.themeDots .dot.basic {
  background: var(--quinary-color);
}

.hero-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero {
  text-align: center;
}

.hero p {
  max-width: 820px;
  margin: 0 auto;
}

.hero-actions {
  display: flex;
  justify-content: center;
}

.hero-cta {
  min-width: 240px;
}

.marketplace-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.marketplace-row a {
  display: inline-block;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  background: var(--secondary-color);
  color: var(--text-color);
  text-decoration: none;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.2s ease, background 0.2s ease;
}

.marketplace-row a:hover {
  background: var(--quinary-color);
  transform: translateY(-2px);
}

.tokenomics-section {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.section-head {
  margin-bottom: 1.5rem;
}

.tokenomics-intro {
  max-width: 760px;
  margin: 0 auto;
  opacity: 0.94;
}

.tokenomics-chart {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin: 2rem 0;
}

.chart-item {
  min-width: 130px;
  text-align: center;
}

.chart-item .percent {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--quinary-color);
}

.chart-item .label {
  display: block;
  margin-top: 0.35rem;
  opacity: 0.92;
}

.presale-status {
  margin: 2rem 0;
  padding: 1.5rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.live-badge {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: var(--quinary-color);
  color: #fff;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.presale-button-wrap {
  margin-top: 1rem;
}

.presale-button {
  display: inline-block;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  background: var(--quinary-color);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.presale-button:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}

.token-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.token-card {
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid var(--quinary-color);
  border-radius: 14px;
  padding: 1.25rem;
  text-align: left;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.14);
}

.token-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.token-card-header h3 {
  margin: 0;
}

.token-logo-small {
  height: 34px;
  width: auto;
}

.address {
  margin-top: 0.45rem;
  padding: 0.75rem;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.18);
  color: var(--tertiary-color);
  font-family: monospace;
  word-break: break-all;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.addr-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.75rem;
}

.copy-btn {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: transparent;
  color: var(--text-color);
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  cursor: pointer;
  font-weight: 700;
  transition: background 0.2s ease, transform 0.2s ease;
}

.copy-btn:hover {
  background: var(--quinary-color);
  color: #fff;
  transform: translateY(-1px);
}

.hint {
  opacity: 0.8;
  font-size: 0.92rem;
}

.token-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.token-links a,
.token-card a {
  color: var(--quinary-color);
  text-decoration: none;
  font-weight: 600;
}

.token-links a:hover,
.token-card a:hover {
  text-decoration: underline;
}

.brand-section {
  margin-top: 1rem;
}

.content-panels {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.content-details {
  border-radius: 16px;
  overflow: hidden;
}

.content-details summary {
  cursor: pointer;
  font-weight: 700;
}

.details-body {
  padding: 0 1.25rem 1.25rem;
}

.details-body p {
  margin: 0;
  line-height: 1.75;
}

.contact-form {
  max-width: 680px;
  margin-top: 1rem;
}

.contact-form label {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 1rem;
}

.contact-submit {
  display: inline-block;
}

.hidden-trap {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

#form-result {
  margin-top: 1rem;
  font-weight: 700;
}

.site-footer {
  position: relative;
  z-index: 5;
  margin-top: 5rem;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-links {
  position: relative;
  z-index: 6;
}

.footer-links a {
  position: relative;
  z-index: 6;
}

@media (max-width: 900px) {
  .token-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .index-main {
    width: calc(100% - 1rem);
  }

  .marketplace-row {
    flex-direction: column;
    align-items: stretch;
  }

  .marketplace-row a {
    text-align: center;
  }

  .tokenomics-chart {
    gap: 1rem;
  }

  .chart-item {
    min-width: 110px;
  }

  .details-body {
    padding: 0 1rem 1rem;
  }

  .site-footer {
    margin-top: 4rem;
    padding-top: 2rem;
  }
}
