:root {
  color-scheme: dark;
}

body {
  margin: 0;
}

.bscShell {
  min-height: 100vh;
  color: #f5f3e9;
  background:
    radial-gradient(circle at 14% 12%, rgba(246, 186, 0, 0.12), transparent 28rem),
    #11120f;
  font-family: "Pixelify Sans", system-ui, sans-serif;
}

.shellTopBar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 22px;
  padding: 18px 28px;
  border-bottom: 1px solid #34372d;
  background: rgba(17, 18, 15, 0.92);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
}

.shellBrand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  color: inherit;
  text-decoration: none;
}

.shellBrand img {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  object-fit: cover;
  object-position: top;
}

.shellBrand span {
  display: grid;
}

.shellBrand b {
  font-family: "Press Start 2P", monospace;
  font-size: 14px;
  color: #f6ba00;
}

.shellBrand small {
  margin-top: 5px;
  color: #aaa99e;
  font-size: 13px;
}

.shellNav {
  display: flex;
  gap: 24px;
}

.shellNav a {
  color: #aaa99e;
  text-decoration: none;
  font-weight: 700;
}

.shellNav a:hover,
.shellNav .navActive {
  color: #f6ba00;
}

.shellActions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 8px;
}

.shellCa,
.shellActions .btn,
.shellCtas .btn {
  min-height: 40px;
  border: 1px solid #484b3f;
  border-radius: 8px;
  padding: 0 14px;
  color: #f5f3e9;
  background: #20221d;
  font: 700 15px "Pixelify Sans", sans-serif;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.shellCa:disabled,
.shellActions .btn:disabled {
  color: #777a70;
  cursor: not-allowed;
}

.shellActions .buyBtn,
.shellCtas .shellPrimary {
  color: #171710;
  background: #f6ba00;
  border-color: #f6ba00;
}

.shellMain,
.shellDocs {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0;
}

.shellHero {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(340px, 1.1fr);
  align-items: center;
  gap: 64px;
  min-height: 56vh;
}

.shellHeroArt {
  border: 1px solid #34372d;
  border-radius: 18px;
  padding: 16px;
  background: #191b17;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
}

.shellHeroArt img {
  display: block;
  width: 100%;
  border-radius: 12px;
}

.shellKicker,
.docsKicker {
  color: #f6ba00;
  font-family: "Press Start 2P", monospace;
  font-size: 11px;
  line-height: 1.8;
}

.shellHero h1,
.shellDocs .docsTitle {
  margin: 18px 0 22px;
  font-family: "Press Start 2P", monospace;
  font-size: clamp(34px, 6vw, 70px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.shellHeroCopy > p:not(.shellKicker) {
  max-width: 650px;
  color: #c7c7bc;
  font-size: 21px;
  line-height: 1.5;
}

.shellCtas {
  display: flex;
  gap: 12px;
  margin: 28px 0 8px;
}

.shellStatus {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid #34372d;
  border-radius: 12px;
  overflow: hidden;
  background: #191b17;
}

.shellStatus > div {
  display: grid;
  gap: 8px;
  padding: 22px;
  border-right: 1px solid #34372d;
}

.shellStatus > div:last-child {
  border-right: 0;
}

.shellStatus span {
  color: #85877e;
  font: 9px "Press Start 2P", monospace;
}

.shellStatus strong {
  color: #f5f3e9;
  font-size: 17px;
}

.shellNotice,
.shellError {
  margin: 20px 0 0;
  border: 1px solid #565126;
  border-radius: 10px;
  padding: 16px 18px;
  color: #d7d2a6;
  background: #242311;
  line-height: 1.5;
}

.shellError {
  border-color: #7b3b3b;
  color: #f0b0b0;
  background: #2b1717;
}

.shellDocs {
  max-width: 880px;
}

.shellDocs .docsTitle {
  font-size: clamp(32px, 5vw, 56px);
}

.shellDocs .docsLede {
  color: #c7c7bc;
  font-size: 21px;
  line-height: 1.5;
}

.shellDocs .docsSection {
  margin-top: 28px;
  border: 1px solid #34372d;
  border-radius: 12px;
  padding: 24px 28px;
  background: #191b17;
  font-size: 18px;
  line-height: 1.55;
}

.shellDocs a {
  color: #f6ba00;
}

.shellDocs code,
.shellNotice code {
  color: #ffe17a;
}

.footer {
  padding: 28px;
  text-align: center;
  color: #85877e;
  border-top: 1px solid #34372d;
}

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

  .shellNav {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .shellHero {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .shellStatus {
    grid-template-columns: 1fr;
  }

  .shellStatus > div {
    border-right: 0;
    border-bottom: 1px solid #34372d;
  }
}

@media (max-width: 620px) {
  .shellTopBar {
    padding: 14px;
  }

  .shellActions {
    grid-column: 1 / -1;
    justify-self: stretch;
    overflow-x: auto;
  }

  .shellActions > * {
    flex: 1 0 auto;
  }

  .shellMain,
  .shellDocs {
    width: min(100% - 28px, 1120px);
    padding: 42px 0;
  }

  .shellHero h1 {
    font-size: 38px;
  }

  .shellCtas {
    flex-direction: column;
  }
}
