:root {
  --bg: #0a0a0a;
  --bg-darker: #060606;
  --text: #f0f0f0;
  --text-dim: #c0c0c0;
  --accent: #20c15a;
  --accent-dim: #1a9c4a;
  --accent-glow: rgba(32, 193, 90, 0.22);
  --border: rgba(32, 193, 90, 0.16);
  --shadow: rgba(0, 0, 0, 0.78);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Courier New", Courier, monospace;
  line-height: 1.5;
  font-size: 15.5px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.scanline {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0,
    transparent 2px,
    rgba(32, 193, 90, 0.014) 2px,
    rgba(32, 193, 90, 0.014) 4px
  );
  opacity: 0.3;
  z-index: 9999;
}

.ghost-header {
  padding: 110px 6% 70px 56%;
  text-align: right;
}

.brand h1 {
  font-size: 7.6rem;
  font-weight: 400;
  letter-spacing: -0.1em;
  color: var(--accent);
  text-shadow: 0 0 35px var(--accent-glow);
  line-height: 0.82;
}

.subtext {
  font-size: 1.2rem;
  opacity: 0.6;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-top: 0.4em;
}

.hero, .platform-status, .features-list, .account-creation,
.product-discovery, .vendor-info, .ordering-guide,
.security-recommendations, .final-summary, .faq-section,
.platform-overview, .key-features {
  padding: 0 6% 80px 56%;
  text-align: right;
  margin: 40px 0;
}

h1, h2 {
  color: var(--accent);
  text-shadow: 0 0 18px var(--accent-glow);
}

h1 {
  font-size: 3.2rem;
  margin-bottom: 1.2rem;
  letter-spacing: -0.03em;
}

h2 {
  font-size: 2.3rem;
  margin-bottom: 1.4rem;
  opacity: 0.95;
}

p {
  margin-bottom: 1.3rem;
  opacity: 0.9;
  max-width: 60ch;
  margin-left: auto;
}

.core-block {
  margin: 70px 0 100px;
}

.mirrors h2 {
  font-size: 2.6rem;
}

.mirror-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 1.5rem 0;
}

.mirror-list.primary {
  margin-bottom: 2.5rem;
}

.onion-link {
  color: var(--accent);
  text-decoration: none;
  word-break: break-all;
  font-size: 1.55rem;
  opacity: 0.96;
  transition: all 0.15s ease;
}

.onion-link:hover {
  opacity: 1;
  text-shadow: 0 0 14px var(--accent-glow);
  transform: translateX(-5px);
}

.onion-link.primary-link {
  font-size: 1.8rem;
  font-weight: bold;
  padding: 0.6rem 1rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: rgba(32, 193, 90, 0.04);
}

.mirror-note {
  font-size: 1rem;
  opacity: 0.74;
  margin-top: 2rem;
  max-width: 52ch;
  margin-left: auto;
}

.ad-banner {
  margin: 110px 0 130px;
  text-align: center;
  padding: 0 6%;
}

.ad-banner img {
  max-width: 100%;
  height: auto;
  border: 1px solid var(--border);
  border-radius: 4px;
  box-shadow: 0 12px 50px var(--shadow), 0 0 90px rgba(32, 193, 90, 0.1);
  transition: transform 0.28s ease;
}

.ad-banner img:hover {
  transform: scale(1.012);
}

.screenshots {
  display: flex;
  justify-content: flex-end;
  gap: 6vw;
  padding: 0 6% 0 56%;
  flex-wrap: wrap;
  margin-bottom: 200px;
}

.shot-container {
  flex: 1 1 350px;
  max-width: 460px;
}

.shot-label {
  font-size: 1rem;
  color: var(--accent);
  opacity: 0.68;
  margin-bottom: 14px;
  text-align: right;
  letter-spacing: 0.03em;
}

.shot-container img {
  width: 100%;
  height: auto;
  border: 1px solid var(--border);
  border-radius: 4px;
  box-shadow: 0 45px 110px var(--shadow), inset 0 0 0 1px rgba(32, 193, 90, 0.06);
  transition: all 0.28s ease;
}

.shot-container img:hover {
  transform: translateY(-8px);
  box-shadow: 0 70px 160px rgba(0,0,0,0.88), 0 0 50px var(--accent-glow);
}

.wallet-section {
  padding-bottom: 180px;
}

.wallet-shot {
  max-width: 580px;
  margin-left: auto;
}

ul {
  list-style: none;
  margin: 1.6rem 0;
  max-width: 58ch;
  margin-left: auto;
}

ul li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 2.2rem;
}

ul li:before {
  content: "→";
  color: var(--accent);
  position: absolute;
  left: 0.2rem;
  font-size: 1.3rem;
}

.faq-section p {
  margin-bottom: 2rem;
}

.faq-section strong {
  color: var(--accent);
  opacity: 0.95;
}

footer {
  border-top: 1px solid var(--border);
  padding: 70px 6%;
  text-align: center;
  font-size: 0.94rem;
  opacity: 0.58;
  letter-spacing: 0.07em;
}

.status-line {
  max-width: 760px;
  margin: 0 auto;
}

@media (max-width: 1200px) {
  .ghost-header,
  .hero, .mirrors, .platform-status, .features-list,
  .account-creation, .product-discovery, .vendor-info,
  .ordering-guide, .security-recommendations, .final-summary,
  .faq-section, .wallet-section {
    padding-left: 6%;
    padding-right: 6%;
    text-align: center;
  }

  .brand h1 {
    font-size: 6.2rem;
  }

  .screenshots {
    flex-direction: column;
    align-items: center;
    gap: 90px;
    padding-left: 6%;
    padding-right: 6%;
  }

  .wallet-shot {
    max-width: 100%;
  }
}

@media (max-width: 720px) {
  .brand h1 {
    font-size: 5rem;
  }

  h1 {
    font-size: 2.6rem;
  }

  h2 {
    font-size: 2rem;
  }

  body {
    font-size: 15px;
  }

  .onion-link {
    font-size: 1.4rem;
  }

  .onion-link.primary-link {
    font-size: 1.6rem;
  }
}