:root {
  --bg: #12051b;
  --bg2: #220933;
  --panel: rgba(18, 7, 29, 0.88);
  --panel-2: rgba(33, 12, 52, 0.92);
  --text: #fff7da;
  --muted: #caa8dd;
  --yellow: #ffe761;
  --pink: #ff4fd8;
  --cyan: #62f5ff;
  --green: #75ff93;
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'VT323', monospace;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 79, 216, 0.22), transparent 28%),
    radial-gradient(circle at top right, rgba(98, 245, 255, 0.18), transparent 22%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  min-height: 100vh;
  overflow-x: hidden;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.07;
  background-image:
    linear-gradient(rgba(255,255,255,0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.3) 1px, transparent 1px);
  background-size: 4px 4px;
}

.topbar,
main {
  position: relative;
  z-index: 1;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
}

.logo {
  font-family: 'Bangers', cursive;
  font-size: 2rem;
  color: var(--yellow);
  letter-spacing: 1px;
  text-shadow: 0 0 12px rgba(255, 231, 97, 0.4);
}

nav {
  display: flex;
  gap: 18px;
}

nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 1.35rem;
}

nav a:hover {
  color: var(--cyan);
}

main {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto 48px;
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: center;
  min-height: calc(100vh - 120px);
  padding: 22px 0 28px;
}

.eyebrow,
.microcopy,
.note,
.link-sub {
  color: var(--muted);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1.2rem;
}

h1 {
  font-family: 'Bangers', cursive;
  font-size: clamp(4rem, 11vw, 7.5rem);
  margin: 0.2em 0 0.12em;
  line-height: 0.9;
  color: var(--yellow);
  text-shadow: 0 0 16px rgba(255, 231, 97, 0.2), 4px 4px 0 rgba(255, 79, 216, 0.28);
}

h2 {
  margin-top: 0;
  font-family: 'Press Start 2P', cursive;
  font-size: clamp(1rem, 2vw, 1.35rem);
  color: var(--cyan);
  line-height: 1.5;
}

.tagline,
.panel p,
.panel li {
  font-size: 1.6rem;
  line-height: 1.5;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 28px 0 24px;
}

.btn,
.copy-btn,
.link-card {
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 14px;
  text-decoration: none;
  font-size: 1.35rem;
  border: 2px solid transparent;
}

.btn:hover,
.copy-btn:hover,
.link-card:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--yellow);
  color: #1b1220;
  box-shadow: 0 10px 30px rgba(255, 231, 97, 0.22);
}

.btn-secondary {
  color: var(--text);
  border-color: rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.04);
}

.contract-box {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  box-shadow: var(--shadow);
}

.contract-label {
  font-family: 'Press Start 2P', cursive;
  font-size: 0.8rem;
  color: var(--pink);
}

code {
  font-size: 1.15rem;
  word-break: break-all;
}

.copy-btn {
  cursor: pointer;
  border: 0;
  border-radius: 12px;
  padding: 10px 14px;
  background: var(--pink);
  color: white;  font-family: inherit;
  font-size: 1.15rem;
}

.hero-card,border: 1px solid var(--border);
  border-radius: 26px;
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.hero-card {
  position: relative;
  padding: 20px;
}

.hero-card::after {
  content: 'xD xD xD';
  position: absolute;
  right: 18px;
  bottom: 12px;
  font-family: 'Bangers', cursive;
  font-size: 1.6rem;
  color: rgba(255, 79, 216, 0.18);
  letter-spacing: 2px;
}

.screen {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  background: #08060d;
}

.screen-top {
  display: flex;
  gap: 8px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
}

.screen-top span {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--pink);
}

.screen-top span:nth-child(2) { background: var(--yellow); }
.screen-top span:nth-child(3) { background: var(--green); }

.screen-body {
  padding: 20px;
  font-size: 1.5rem;
  color: var(--green);
}

.blink {
  animation: blink 1s step-end infinite;
}

.emoji-burst {
  margin-top: 18px;
  text-align: center;
  font-size: 2rem;
}

.panel {
  margin-top: 22px;
  padding: 28px;
}

.panel:hover,
.hero-card:hover {
  border-color: rgba(255, 231, 97, 0.28);
}

.alt {
  background: var(--panel-2);
}

ul {
  padding-left: 22px;
}

.link-grid,
.launch-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.link-card,
.launch-card {
  display: block;
  padding: 18px;
  border-radius: 18px;
  text-decoration: none;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  color: var(--text);
}

.launch-card.full {
  grid-column: 1 / -1;
}

.link-card.live:hover {
  border-color: rgba(98, 245, 255, 0.55);
  box-shadow: 0 8px 24px rgba(98, 245, 255, 0.12);
}

.link-card.placeholder {
  opacity: 0.72;
  cursor: not-allowed;
}

.link-title {
  display: block;
  font-size: 1.6rem;
  margin-bottom: 4px;
}

.launch-label {
  display: inline-block;
  margin-bottom: 10px;
  font-family: 'Press Start 2P', cursive;
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--yellow);
}

.footer-panel {
  text-align: center;
  margin-bottom: 30px;
}

@keyframes blink {
  50% { opacity: 0; }
}

@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 8px;
  }

  .link-grid,
  .launch-grid {
    grid-template-columns: 1fr;
  }

  nav {
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
}

@media (max-width: 520px) {
  .topbar {
    padding: 16px;
    flex-direction: column;
    gap: 12px;
  }

  main {
    width: min(100% - 18px, 1120px);
  }

  .panel,
  .hero-card {
    border-radius: 22px;
  }

  .tagline,
  .panel p,
  .panel li,
  .screen-body,
  .link-title {
    font-size: 1.35rem;
  }

  code {
    font-size: 1rem;
  }
}.panel {