/* Global Reset */
* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background: #0066ff;
  color: #000;
  font-family: "Fredoka", system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Arial, sans-serif;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
}

img {
  image-rendering: pixelated;
  image-rendering: crisp-edges;
}

/* Utilities */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

.retro-num {
  font-family: "Press Start 2P", monospace;
}

/* Header and Hero */
.site-header {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-bottom: 8px solid #000;
}

.banner-bg {
  width: 100%;
  display: block;
  height: auto;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
}

.header-inner {
  background: #0066ff;
  padding-bottom: 32px;
}

.nav {
  display: flex;
  gap: 16px;
  justify-content: center;
  padding: 12px 0;
}

.nav-link {
  text-decoration: none;
  color: #fff;
  background: #000;
  padding: 8px 12px;
  border: 4px solid #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-link:hover {
  background: #ffff00;
  color: #000;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 16px;
}

.hero-logo {
  width: 200px;
  height: auto;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
}

.hero-title {
  margin: 0;
  color: #ffff00;
  text-shadow: none;
  font-size: 56px;
  line-height: 1;
}

.hero-tag {
  margin: 0;
  color: #fff;
  font-size: 18px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.btn {
  display: inline-block;
  text-decoration: none;
  padding: 12px 16px;
  border: 4px solid #000;
  background: #ff0000;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
}

.btn-secondary {
  background: #663300;
}

.btn:hover {
  background: #ffff00;
  color: #000;
}

/* Sections */
.section {
  padding: 32px 0;
  border-top: 8px solid #000;
  border-bottom: 8px solid #000;
}

.section-title {
  color: #fff;
  text-transform: uppercase;
  margin: 0 0 8px 0;
  font-size: 28px;
}

.section-text {
  background: #fff;
  color: #000;
  padding: 12px;
  border: 6px solid #000;
}

.pixel-divider { height: 8px; background: #000; margin: 12px 0; }

/* Tokenomics */
.section-tokenomics .token-list {
  list-style: none;
  margin: 16px 0 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.token-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 6px solid #000;
  padding: 12px;
}

.pixel-icon {
  width: 20px;
  height: 20px;
  background: #ffff00;
  border: 4px solid #000;
}

.token-label {
  color: #000;
}

.token-value {
  color: #ff0000;
}

/* Roadmap: 8-bit level blocks */
.section-roadmap .map {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.map-step {
  display: flex;
  align-items: flex-end;
}

.map-block {
  width: 100%;
  background: #663300;
  border: 8px solid #000;
  color: #fff;
  padding: 16px 12px;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.map-title {
  font-weight: 700;
  text-transform: uppercase;
}

.map-sub {
  margin-top: 8px;
  background: #ffff00;
  color: #000;
  padding: 4px 8px;
  border: 4px solid #000;
}

/* Footer */
.site-footer {
  padding: 20px 0 32px;
  border-top: 8px solid #000;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
}

.footer-icons {
  display: flex;
  gap: 8px;
}

.pixel-dot {
  width: 14px;
  height: 14px;
  background: #ffff00;
  border: 4px solid #000;
  display: inline-block;
}

.footer-text {
  text-align: center;
  color: #fff;
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.footer-link {
  text-decoration: none;
  color: #fff;
  background: #000;
  padding: 8px 12px;
  border: 4px solid #fff;
  text-transform: uppercase;
}

.footer-link:hover {
  background: #ffff00;
  color: #000;
}

/* Responsive - keep pixel feel while avoiding blur */
@media (max-width: 900px) {
  .section-tokenomics .token-list { grid-template-columns: 1fr; }
  .section-roadmap .map { grid-template-columns: 1fr 1fr; }
  .hero-title { font-size: 44px; }
}

@media (max-width: 560px) {
  .section-roadmap .map { grid-template-columns: 1fr; }
  .hero-logo { width: 160px; }
  .hero-title { font-size: 36px; }
}


