/* ===== VENGEANCE FONT ===== */
@font-face {
  font-family: 'Vengeance';
  src: url('fonts/vengeance.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ===== RESET ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #0e0e0e;
  --content-bg: #f5f0e8;
  --content-text: #1a1a1a;
  --lime: #a8ff00;
  --hot-pink: #ff2d7b;
  --orange: #ff6b00;
  --cyan: #00d4ff;
  --blue: #3355ff;
  --green: #00c853;
  --yellow: #ffe600;
  --muted: #999;
  --border: #2a2a2a;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: #fff;
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

::selection {
  background: var(--lime);
  color: #000;
}

/* ===== TOP BAR ===== */
.top-bar {
  background: #000;
  padding: 8px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 1.5px;
  color: #888;
  flex-wrap: wrap;
}

.top-bar .accent { color: var(--lime); }
.top-bar .sep { color: #333; }

.blink-text {
  color: var(--hot-pink);
  animation: blink 1.2s step-end infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* ===== MARQUEE ===== */
.marquee {
  overflow: hidden;
  white-space: nowrap;
  padding: 10px 0;
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.lime-marquee { background: var(--lime); color: #000; }
.pink-marquee { background: var(--hot-pink); color: #fff; }

.marquee-inner {
  display: inline-flex;
  gap: 12px;
  animation: marquee-scroll 35s linear infinite;
}

.marquee-inner.reverse { animation-direction: reverse; }
.marquee-inner .dot { opacity: 0.4; }

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== BUTTON NAV ===== */
.button-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  padding: 12px 16px;
  background: #0a0a0a;
  border-top: 2px solid var(--border);
  border-bottom: 2px solid var(--border);
}

.nav-pill {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 8px 18px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.15s;
  text-transform: uppercase;
}

.nav-pill:hover {
  transform: translateY(-2px);
  filter: brightness(1.2);
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.pill-green  { background: var(--green); color: #000; }
.pill-orange { background: var(--orange); color: #fff; }
.pill-blue   { background: var(--blue); color: #fff; }
.pill-pink   { background: var(--hot-pink); color: #fff; }
.pill-cyan   { background: var(--cyan); color: #000; }
.pill-dark   { background: #222; color: #fff; border-color: #444; }

.blink-bg {
  animation: blink-btn 1.5s ease-in-out infinite;
}

@keyframes blink-btn {
  0%, 100% { background: var(--hot-pink); }
  50% { background: var(--orange); }
}

/* ===== FAQ MODAL ===== */
.faq-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(6px);
}

.faq-modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.faq-modal {
  background: var(--content-bg);
  color: var(--content-text);
  max-width: 640px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 40px 36px;
  position: relative;
  border: 3px solid var(--lime);
  box-shadow: 0 0 60px rgba(168, 255, 0, 0.15);
  transform: translateY(30px) scale(0.95);
  transition: transform 0.3s ease;
}

.faq-modal-overlay.active .faq-modal {
  transform: translateY(0) scale(1);
}

.faq-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 32px;
  color: #999;
  cursor: pointer;
  transition: color 0.2s;
  line-height: 1;
}

.faq-close:hover { color: var(--hot-pink); }

.faq-modal-title {
  font-family: 'Vengeance', serif;
  font-size: 36px;
  letter-spacing: 3px;
  margin-bottom: 4px;
}

.faq-modal-sub {
  font-size: 14px;
  color: #888;
  margin-bottom: 28px;
}

.faq-modal .faq-item {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ddd;
}

.faq-modal .faq-item:last-child { border-bottom: none; margin-bottom: 0; }

.faq-modal .faq-q {
  font-family: 'Vengeance', serif;
  font-size: 18px;
  margin-bottom: 6px;
  color: var(--content-text);
  letter-spacing: 1px;
}

.faq-modal .faq-a {
  color: #666;
  font-size: 15px;
  padding-left: 12px;
  border-left: 3px solid var(--green);
}

/* ===== HERO (VIDEO BACKGROUND) ===== */
.hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
  background: #000;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 24px;
}

.site-title {
  font-family: 'Vengeance', serif;
  font-size: clamp(56px, 10vw, 110px);
  line-height: 1.05;
  color: var(--yellow);
  text-shadow:
    4px 4px 0 #000,
    -2px -2px 0 #000,
    2px -2px 0 #000,
    -2px 2px 0 #000,
    0 0 60px rgba(255, 230, 0, 0.4);
  letter-spacing: 2px;
}

/* ===== BRAND BAR ===== */
.brand-bar {
  background: #006400;
  padding: 8px 0;
  overflow: hidden;
  white-space: nowrap;
  border-top: 2px solid #00aa00;
  border-bottom: 2px solid #00aa00;
}

.brand-track {
  display: inline-flex;
  gap: 32px;
  animation: marquee-scroll 22s linear infinite;
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  color: var(--yellow);
  letter-spacing: 2px;
}

/* ===== CONTENT (SINGLE COLUMN) ===== */
.content {
  background: var(--content-bg);
  color: var(--content-text);
  padding: 0;
  font-size: 16px;
  line-height: 1.85;
  max-width: 100%;
}

.rotating-banner {
  background: var(--yellow);
  color: #000;
  text-align: center;
  padding: 14px 20px;
  font-family: 'Vengeance', serif;
  font-size: 18px;
  letter-spacing: 2px;
}

/* ===== CONTRACT STRIP ===== */
.contract-strip {
  background: #111;
  border-bottom: 2px solid var(--border);
  padding: 20px 0;
}

.contract-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.contract-left {
  flex: 1;
  min-width: 300px;
}

.contract-label {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--lime);
  display: block;
  margin-bottom: 8px;
}

.contract-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.contract-row code {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  color: var(--lime);
  background: #0a0a0a;
  border: 1px solid var(--border);
  padding: 10px 14px;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.copy-btn {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 10px 20px;
  border: 1px solid var(--lime);
  background: transparent;
  color: var(--lime);
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.copy-btn:hover, .copy-btn.copied {
  background: var(--lime);
  color: #000;
}

.contract-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.whitepaper-btn {
  display: inline-block;
  font-family: 'Vengeance', serif;
  font-size: 18px;
  letter-spacing: 3px;
  padding: 12px 28px;
  background: var(--yellow);
  color: #000;
  transition: all 0.2s;
  white-space: nowrap;
}

.whitepaper-btn:hover {
  background: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(255, 230, 0, 0.4);
}

.trade-btn {
  display: inline-block;
  font-family: 'Vengeance', serif;
  font-size: 18px;
  letter-spacing: 3px;
  padding: 12px 28px;
  background: var(--orange);
  color: #fff;
  transition: all 0.2s;
  white-space: nowrap;
}

.trade-btn:hover {
  background: #ff8533;
  transform: translateY(-1px);
}

/* ===== SCROLL ANIMATIONS ===== */
.anim-slide-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.anim-slide-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.anim-pop {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.anim-pop.visible {
  opacity: 1;
  transform: scale(1);
}

/* stagger delays for token cards */
.tcard:nth-child(1) { transition-delay: 0s; }
.tcard:nth-child(2) { transition-delay: 0.12s; }
.tcard:nth-child(3) { transition-delay: 0.24s; }
.tcard:nth-child(4) { transition-delay: 0.36s; }

/* ===== CONTENT BLOCKS ===== */
.content-block {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 24px;
  border-bottom: 2px solid #ddd;
}

.content-block:last-of-type { border-bottom: none; }

.lead { font-size: 17px; margin-bottom: 20px; }
.content-block p { margin-bottom: 16px; }

.hl { color: var(--green); font-weight: 700; }
.hl-red { color: #cc0000; font-weight: 700; }
.hl-pink { color: var(--hot-pink); font-weight: 700; }
.small-note { font-size: 12px; color: #999; }

.big-closer {
  font-family: 'Vengeance', serif;
  font-size: 26px;
  margin-top: 24px;
  line-height: 1.5;
  color: var(--content-text);
}

/* Callout box */
.callout-box {
  background: #fff;
  border: 2px solid var(--orange);
  border-left: 6px solid var(--orange);
  padding: 20px 24px;
  margin: 24px 0;
}

.callout-title {
  font-family: 'Vengeance', serif;
  font-size: 16px;
  letter-spacing: 2px;
  color: var(--orange);
  margin-bottom: 12px;
}

.dumb-quotes {
  list-style: none;
  font-size: 15px;
  font-style: italic;
  color: #555;
}

.dumb-quotes li {
  padding: 6px 0;
  border-bottom: 1px dashed #eee;
  padding-left: 16px;
  position: relative;
}

.dumb-quotes li::before {
  content: '>';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
  font-style: normal;
}

.dumb-quotes li:last-child { border-bottom: none; }

/* Block titles */
.block-title {
  font-family: 'Vengeance', serif;
  font-size: 32px;
  letter-spacing: 2px;
  margin-bottom: 4px;
  color: var(--content-text);
}

.block-sub {
  font-size: 14px;
  color: #888;
  margin-bottom: 28px;
}

/* ===== VIDEO INTRO ===== */
.video-intro-section {
  text-align: center;
}

.video-wrapper {
  max-width: 680px;
  margin: 0 auto;
}

.intro-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #1a1a1a;
  border: 2px solid #ddd;
  display: block;
}

/* ===== TOKENOMICS CARDS ===== */
.tokenomics-section {
  text-align: center;
}

.token-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.tcard {
  background: #fff;
  border: 2px solid #ddd;
  padding: 28px 16px;
  text-align: center;
  transition: border-color 0.3s, box-shadow 0.3s, opacity 0.5s, transform 0.5s;
}

.tcard:hover {
  border-color: var(--lime);
  box-shadow: 0 6px 24px rgba(168, 255, 0, 0.1);
}

.tcard-val {
  font-family: 'Vengeance', serif;
  font-size: 42px;
  letter-spacing: 2px;
  color: var(--content-text);
  line-height: 1.1;
}

.tcard-label {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--green);
  text-transform: uppercase;
  margin: 8px 0 6px;
}

.tcard-note {
  font-size: 13px;
  color: #999;
  font-style: italic;
}

.token-sub-text {
  font-size: 15px;
  color: #777;
  font-style: italic;
  max-width: 500px;
  margin: 0 auto 20px;
  line-height: 1.7;
}

.token-footer {
  font-size: 13px;
  color: #aaa;
  font-style: italic;
}

/* ===== UNIFIED ROADMAP ===== */
.roadmap-unified {
  background: #fff;
  border: 2px solid #ddd;
  padding: 32px 28px;
  font-size: 16px;
  line-height: 1.9;
  color: #444;
}

.roadmap-unified p {
  margin-bottom: 18px;
}

.roadmap-unified strong {
  color: var(--content-text);
}

.roadmap-closer {
  font-family: 'Vengeance', serif;
  font-size: 22px;
  letter-spacing: 1px;
  color: var(--content-text) !important;
  text-align: center;
  margin-top: 8px;
  line-height: 1.4;
}

/* ===== LINKS NETWORK ===== */
.links-network {
  background: #111;
  border-top: 2px solid var(--border);
  padding: 48px 24px;
}

.links-net-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.links-net-title {
  font-family: 'Vengeance', serif;
  font-size: 28px;
  letter-spacing: 3px;
  color: #fff;
  margin-bottom: 28px;
}

.links-net-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.net-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  background: #1a1a1a;
  border: 1px solid #333;
  transition: all 0.25s ease;
  text-decoration: none;
}

.net-card:hover {
  border-color: var(--lime);
  background: #222;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.net-card-label {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--lime);
  margin-bottom: 6px;
}

.net-card-name {
  font-family: 'Vengeance', serif;
  font-size: 20px;
  color: #fff;
  letter-spacing: 1px;
}

.net-card-accent {
  border-color: var(--lime);
  background: #1a2a1a;
}

.net-card-accent:hover {
  background: #223322;
  box-shadow: 0 8px 24px rgba(168, 255, 0, 0.15);
}

/* Content warning */
.content-warning {
  max-width: 800px;
  margin: 0 auto;
  background: #fff3cd;
  border: 1px solid #e6d48e;
  padding: 16px 24px;
  font-size: 14px;
  color: #856404;
  margin-bottom: 24px;
}

/* ===== FOOTER ===== */
.footer {
  background: #000;
  padding: 32px;
  text-align: center;
  border-top: 2px solid var(--border);
}

.footer-title {
  font-family: 'Vengeance', serif;
  font-size: 28px;
  color: var(--yellow);
  letter-spacing: 3px;
  margin-bottom: 16px;
  text-shadow: 2px 2px 0 #000;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.footer-links a {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: #666;
  letter-spacing: 1px;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--lime); }

.footer-copy { font-size: 12px; color: #333; }

/* ===== WHITEPAPER PAGE ===== */
.whitepaper-body {
  background: #fefcf4;
  color: #1a1a1a;
}

.wp-container {
  max-width: 780px;
  margin: 0 auto;
  padding: 40px 32px 60px;
}

.wp-back {
  display: inline-block;
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--orange);
  margin-bottom: 32px;
  transition: color 0.2s;
}

.wp-back:hover { color: var(--hot-pink); }

.wp-header {
  text-align: center;
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 3px solid var(--yellow);
}

.wp-title {
  font-family: 'Vengeance', serif;
  font-size: clamp(36px, 7vw, 64px);
  letter-spacing: 4px;
  color: var(--orange);
  line-height: 1.1;
  margin-bottom: 12px;
}

.wp-subtitle {
  font-size: 16px;
  color: #666;
}

.wp-version {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: #aaa;
  letter-spacing: 2px;
  margin-top: 8px;
}

.wp-section {
  margin-bottom: 40px;
}

.wp-section h2 {
  font-family: 'Vengeance', serif;
  font-size: 26px;
  letter-spacing: 2px;
  margin-bottom: 16px;
  color: #1a1a1a;
  border-left: 5px solid var(--orange);
  padding-left: 14px;
}

.wp-section h3 {
  font-family: 'Space Mono', monospace;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--green);
  margin: 20px 0 10px;
}

.wp-section p {
  font-size: 16px;
  line-height: 1.85;
  color: #444;
  margin-bottom: 14px;
}

.wp-number-wall {
  background: #000;
  padding: 32px 24px;
  border: 3px solid var(--yellow);
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  justify-content: center;
}

.wp-number-wall p {
  font-family: 'Vengeance', serif;
  font-size: 22px;
  color: var(--lime);
  letter-spacing: 3px;
  padding: 6px 16px;
  animation: ngu-pulse 2s ease-in-out infinite alternate;
  margin-bottom: 0;
}

.wp-number-wall p:nth-child(odd) {
  animation-delay: -1s;
}

@keyframes ngu-pulse {
  0% { color: var(--lime); text-shadow: 0 0 8px rgba(168, 255, 0, 0.3); }
  100% { color: var(--yellow); text-shadow: 0 0 20px rgba(255, 230, 0, 0.6); }
}

.wp-code {
  background: #111;
  color: var(--lime);
  font-family: 'Space Mono', monospace;
  font-size: 14px;
  line-height: 1.7;
  padding: 24px;
  border: 1px solid #333;
  overflow-x: auto;
  margin: 16px 0;
}

.wp-formula {
  background: #fff;
  border: 2px solid var(--orange);
  padding: 20px;
  text-align: center;
  font-family: 'Vengeance', serif;
  font-size: 20px;
  letter-spacing: 2px;
  color: var(--orange);
  margin: 16px 0;
}

.wp-list {
  list-style: none;
  padding-left: 0;
}

.wp-list li {
  padding: 8px 0 8px 24px;
  position: relative;
  color: #555;
  font-size: 15px;
  border-bottom: 1px dashed #eee;
}

.wp-list li::before {
  content: '!';
  position: absolute;
  left: 0;
  font-weight: 900;
  color: var(--hot-pink);
}

.wp-list li:last-child { border-bottom: none; }

.wp-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
}

.wp-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #eee;
  font-size: 15px;
}

.wp-table td:first-child {
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--green);
  width: 100px;
}

.wp-table td:last-child {
  color: #555;
}

.wp-final {
  background: #fff3cd;
  border: 1px solid #e6d48e;
  padding: 16px 20px;
  font-size: 14px;
  color: #856404;
  margin-top: 20px;
}

.wp-footer {
  text-align: center;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 2px solid #eee;
  font-size: 13px;
  color: #bbb;
}

.wp-footer p { margin: 4px 0; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #0a0a0a; }
::-webkit-scrollbar-thumb { background: #222; }
::-webkit-scrollbar-thumb:hover { background: var(--lime); }

/* ===== RESPONSIVE ===== */
@media (max-width: 860px) {
  .contract-inner { flex-direction: column; align-items: flex-start; }
  .contract-right { width: 100%; }
}

@media (max-width: 500px) {
  .button-nav { gap: 4px; }
  .nav-pill { font-size: 10px; padding: 6px 12px; }
  .site-title { font-size: 40px; }
  .contract-row { flex-direction: column; }
  .contract-row code { width: 100%; }
  .token-cards { grid-template-columns: 1fr; }
  .tcard-val { font-size: 32px; }
  .links-net-grid { grid-template-columns: 1fr 1fr; }
  .wp-container { padding: 24px 16px 40px; }
  .wp-number-wall p { font-size: 16px; padding: 4px 10px; }
}
