/* ============================================================
   $LANDMINE — style.css
   ============================================================ */

:root {
  --bg:          #100d05;
  --bg2:         #1a1408;
  --bg3:         #221b0a;
  --red:         #e8230a;
  --orange:      #ff6b00;
  --yellow:      #ffc400;
  --gold:        #d4a017;
  --green:       #39ff14;
  --cream:       #f5edd8;
  --muted:       #9a8e70;
  --border:      rgba(255,180,0,0.15);
  --glow-red:    rgba(232,35,10,0.6);
  --glow-orange: rgba(255,107,0,0.4);
  --font-head:   'Black Ops One', cursive;
  --font-body:   'Barlow', sans-serif;
  --font-cond:   'Barlow Condensed', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

/* ---- GLOBAL FIERY AMBIENT (fixed overlay) ---- */
.page-shell {
  position: relative;
  z-index: 60;
  isolation: isolate;
}

.global-sparks {
  position: fixed;
  inset: 0;
  z-index: 40;
  pointer-events: none;
  overflow: hidden;
}
.global-sparks::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 90% 55% at 50% 0%, rgba(255,100,0,.14) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 85% 40%, rgba(232,35,10,.1) 0%, transparent 50%),
    radial-gradient(ellipse 60% 45% at 15% 70%, rgba(255,180,0,.08) 0%, transparent 50%);
  animation: emberDrift 14s ease-in-out infinite alternate;
}
.global-sparks::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse 120% 100% at 50% 50%, transparent 40%, rgba(10,8,3,.28) 100%);
  animation: emberPulse 8s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes emberDrift {
  0% { opacity: .75; transform: translate(0, 0) scale(1); }
  100% { opacity: 1; transform: translate(-2%, 1%) scale(1.04); }
}
@keyframes emberPulse {
  0% { opacity: .5; }
  100% { opacity: .85; }
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3 { font-family: var(--font-head); line-height: 1.1; }
.highlight { color: var(--orange); }
.center-title { text-align: center; font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 1.5rem; }
.section-tag {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: .2em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: .75rem;
}
.section-tag.center { text-align: center; }

/* ---- CONTAINER ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ---- BUTTONS ---- */
.btn-buy {
  display: inline-block;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--red), var(--orange));
  color: #fff;
  font-family: var(--font-cond);
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: .1em;
  padding: .65rem 1.75rem;
  border-radius: 4px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s;
  box-shadow: 0 0 20px var(--glow-red);
}
.btn-buy:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 0 35px var(--glow-red);
}
.btn-ghost {
  display: inline-block;
  position: relative;
  overflow: hidden;
  background: transparent;
  color: var(--cream);
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .1em;
  padding: .65rem 1.75rem;
  border-radius: 4px;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: border-color .15s, color .15s;
}
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); }
.btn-xl { font-size: 1.1rem; padding: .8rem 2.5rem; }

/* Click animation + ripple */
@keyframes btnPressBurst {
  0% { transform: scale(1); filter: brightness(1); }
  28% { transform: scale(0.88); filter: brightness(1.35); }
  55% { transform: scale(1.06); filter: brightness(1.15); }
  100% { transform: scale(1); filter: brightness(1); }
}
.btn-buy.btn-click-anim,
.btn-ghost.btn-click-anim,
.social-btn.btn-click-anim {
  animation: btnPressBurst 0.5s cubic-bezier(0.34, 1.4, 0.64, 1);
}
.btn-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  transform: scale(0);
  animation: btnRipple 0.65s ease-out forwards;
  pointer-events: none;
  z-index: 2;
}
.btn-ghost .btn-ripple {
  background: rgba(255, 107, 0, 0.35);
}
.social-btn .btn-ripple {
  background: rgba(255, 255, 255, 0.25);
}
@keyframes btnRipple {
  to {
    transform: scale(14);
    opacity: 0;
  }
}
@keyframes hamburgerPop {
  0% { transform: scale(1) rotate(0deg); }
  40% { transform: scale(0.85) rotate(-8deg); }
  70% { transform: scale(1.12) rotate(6deg); }
  100% { transform: scale(1) rotate(0deg); }
}
.hamburger.btn-click-anim {
  animation: hamburgerPop 0.45s cubic-bezier(0.34, 1.4, 0.64, 1);
}

/* ============================================================
   NAV
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: transparent;
  transition: background .3s, box-shadow .3s;
  border-bottom: 1px solid transparent;
}
#navbar.scrolled {
  background: rgba(10,8,3,.92);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--border);
  box-shadow: 0 2px 30px rgba(0,0,0,.6);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: .9rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
  color: var(--cream);
  font-family: var(--font-head);
  font-size: 1.35rem;
  letter-spacing: .05em;
}
.nav-logo img {
  width: 36px;
  height: 36px;
  object-fit: cover;
  border-radius: 50%;
}
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin-left: 1rem;
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .08em;
  transition: color .15s;
}
.nav-links a:hover { color: var(--cream); }
.nav-link-proofs {
  text-decoration: none !important;
}
.nav-proofs-box {
  display: inline-block;
  color: var(--red);
  border: 2px solid var(--red);
  padding: 0.12em 0.5em 0.1em;
  border-radius: 4px;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.25;
  box-shadow: 0 0 14px rgba(232, 35, 10, 0.35);
  text-shadow: 0 0 12px rgba(232, 35, 10, 0.45);
}
.nav-link-proofs:hover .nav-proofs-box {
  color: #fff0e8;
  border-color: #ff5533;
  box-shadow: 0 0 18px rgba(255, 85, 51, 0.45);
}
.inline-proofs-link {
  text-decoration: none;
  white-space: nowrap;
}
.fuse-exploded-line {
  font-weight: 700;
  color: var(--cream);
}
.fuse-after-proofs {
  color: rgba(154, 142, 112, 0.95);
}
.mobile-menu a.nav-link-proofs .nav-proofs-box {
  margin-top: 0.15rem;
}
@media (max-width: 1180px) {
  .nav-links { gap: 1.1rem; margin-left: 0.5rem; }
  .nav-links a { font-size: 0.78rem; letter-spacing: 0.06em; }
}
.nav-cta { margin-left: auto; font-size: .85rem; padding: .5rem 1.3rem; }
.hamburger {
  display: none;
  position: relative;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 1.5rem;
  cursor: pointer;
  margin-left: auto;
  line-height: 1;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: rgba(10,8,3,.97);
  border-top: 1px solid var(--border);
}
.mobile-menu a {
  color: var(--cream);
  text-decoration: none;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .1em;
}
.mobile-menu.open { display: flex; }

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: block; }
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 50% at 50% 42%, rgba(255,90,0,.16) 0%, transparent 68%),
    url('imgs/battlefield.png') center/cover no-repeat;
  filter: brightness(.28) saturate(.72);
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(10,8,3,0) 0%, var(--bg) 90%);
}

.hero-sparks {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.hero-sparks .spark {
  filter: brightness(1.4) saturate(1.25);
  box-shadow: 0 0 6px rgba(255, 160, 60, 0.95), 0 0 14px rgba(255, 80, 0, 0.55) !important;
}

/* spark particles (above gradient washes, still under .page-shell) */
.spark {
  position: absolute;
  z-index: 2;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--orange);
  animation: sparkFloat linear infinite;
  opacity: 0;
}
@keyframes sparkFloat {
  0%   { opacity: 0; transform: translate(0, 0) scale(1); }
  10%  { opacity: 1; }
  90%  { opacity: .5; }
  100% { opacity: 0; transform: translate(var(--tx), var(--ty)) scale(0); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem 1.5rem;
}
.hero-badge {
  display: inline-block;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .18em;
  color: var(--yellow);
  background: rgba(255,180,0,.12);
  border: 1px solid rgba(255,180,0,.3);
  padding: .35rem 1rem;
  border-radius: 100px;
  text-shadow:
    0 0 12px rgba(255, 210, 100, 0.45),
    0 0 28px rgba(255, 140, 40, 0.22);
}
.hero-title {
  font-size: clamp(4rem, 14vw, 10rem);
  letter-spacing: .04em;
  line-height: 1;
  background: linear-gradient(170deg, #fff 0%, var(--yellow) 40%, var(--orange) 75%, var(--red) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter:
    drop-shadow(0 0 1px rgba(255, 255, 255, 0.4))
    drop-shadow(0 0 18px rgba(255, 150, 80, 0.5))
    drop-shadow(0 0 42px rgba(255, 90, 0, 0.32));
  animation: titlePulse 3s ease-in-out infinite;
}
@keyframes titlePulse {
  0%, 100% {
    filter:
      drop-shadow(0 0 1px rgba(255, 255, 255, 0.35))
      drop-shadow(0 0 14px rgba(255, 140, 70, 0.42))
      drop-shadow(0 0 32px rgba(255, 80, 0, 0.22));
  }
  50% {
    filter:
      drop-shadow(0 0 2px rgba(255, 255, 255, 0.5))
      drop-shadow(0 0 22px rgba(255, 130, 60, 0.58))
      drop-shadow(0 0 48px rgba(255, 85, 0, 0.36));
  }
}
.hero-sub {
  font-family: var(--font-cond);
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  font-weight: 600;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.5;
  text-shadow:
    0 0 14px rgba(245, 237, 216, 0.12),
    0 0 28px rgba(255, 120, 50, 0.08);
}
.hero-sub em {
  color: var(--orange);
  font-style: normal;
  text-shadow:
    0 0 10px rgba(255, 140, 60, 0.35),
    0 0 22px rgba(255, 90, 0, 0.2);
}
.hero-shill {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 2.2vw, 1.05rem);
  font-weight: 500;
  color: rgba(245, 237, 216, 0.82);
  max-width: 38rem;
  line-height: 1.55;
  margin: 1.25rem auto 0;
  padding: 0 0.5rem;
}
.hero-shill strong {
  color: var(--cream);
  font-weight: 700;
}
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.btn-hero { font-size: 1.1rem; padding: .85rem 2.5rem; }

#hero .btn-buy {
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.45),
    0 0 14px rgba(255, 220, 180, 0.35),
    0 0 26px rgba(255, 100, 40, 0.25);
}
#hero .btn-ghost {
  text-shadow:
    0 0 10px rgba(245, 237, 216, 0.18),
    0 0 22px rgba(255, 140, 80, 0.1);
}

.hero-mine-wrap {
  position: relative;
  width: 240px;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: .5rem;
  border-radius: 50%;
  overflow: hidden;
  /* match the image's own background to make it seamless */
  background: radial-gradient(circle, rgba(40,28,8,.9) 50%, transparent 100%);
  -webkit-mask-image: radial-gradient(circle, black 55%, transparent 80%);
  mask-image: radial-gradient(circle, black 55%, transparent 80%);
}
.mine-glow {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,35,10,.62) 0%, rgba(255,100,0,.28) 45%, transparent 72%);
  animation: glowPulse 2s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { transform: scale(1); opacity: .78; }
  50% { transform: scale(1.18); opacity: 1; }
}
.hero-mine {
  width: 190px;
  height: 190px;
  object-fit: contain;
  animation: mineBob 3s ease-in-out infinite;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 24px rgba(232,35,10,.7)) drop-shadow(0 0 8px rgba(255,150,0,.4));
}
@keyframes mineBob {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-12px) rotate(2deg); }
}

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-cond);
  font-size: .7rem;
  letter-spacing: .2em;
  color: rgba(245, 237, 216, 0.88);
  text-shadow:
    0 0 10px rgba(245, 237, 216, 0.25),
    0 0 22px rgba(255, 130, 70, 0.14);
  animation: bounce 2s ease-in-out infinite;
  z-index: 2;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ============================================================
   TICKER
   ============================================================ */
.ticker-wrap {
  background: linear-gradient(90deg, var(--red), var(--orange), var(--red));
  overflow: hidden;
  white-space: nowrap;
  padding: .6rem 0;
}
.ticker {
  display: inline-flex;
  gap: 3rem;
  animation: ticker 30s linear infinite;
}
.ticker span {
  font-family: var(--font-cond);
  font-weight: 900;
  font-size: .85rem;
  letter-spacing: .15em;
  color: #fff;
}
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   ABOUT
   ============================================================ */
#about {
  padding: 8rem 0;
  background: var(--bg2);
  position: relative;
}
#about::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-text h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
}
.about-text p { color: var(--muted); margin-bottom: 1.25rem; font-size: 1.05rem; }
.about-text p strong { color: var(--cream); }
.about-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.stat-num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  color: var(--orange);
  line-height: 1;
}
.stat-label {
  font-family: var(--font-cond);
  font-size: .8rem;
  letter-spacing: .12em;
  color: var(--muted);
  margin-top: .25rem;
}
.about-img-wrap {
  position: relative;
  text-align: center;
}
.about-img {
  width: 100%;
  max-width: 440px;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: 0 0 60px rgba(232,35,10,.15);
  transition: box-shadow .3s;
}
.about-img:hover { box-shadow: 0 0 80px rgba(232,35,10,.3); }
.about-img-caption {
  margin-top: 1rem;
  font-size: .8rem;
  color: var(--muted);
  font-style: italic;
}

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-stats { gap: 1.5rem; }
}

/* ============================================================
   WHY BUY
   ============================================================ */
#why { padding: 8rem 0 0; }
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 5rem;
}
.card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2rem 1.5rem;
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,107,0,.4);
  box-shadow: 0 8px 40px rgba(255,107,0,.1);
}
.card-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.card h3 { font-family: var(--font-head); font-size: 1.15rem; margin-bottom: .75rem; color: var(--cream); }
.card p { color: var(--muted); font-size: .95rem; }

.surf-banner {
  position: relative;
  height: 340px;
  overflow: hidden;
  background: var(--bg);
}
.surf-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(1.2) brightness(.85);
}
.surf-text {
  position: absolute;
  bottom: 2rem;
  right: 3rem;
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 4rem);
  color: rgba(255,255,255,.9);
  text-shadow: 0 0 40px var(--green), 0 2px 6px rgba(0,0,0,.8);
  letter-spacing: .1em;
}

@media (max-width: 900px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .cards-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   HOW TO BUY
   ============================================================ */
#how-to-buy { padding: 8rem 0; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin: 3rem 0;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 2.8rem;
  left: 2.5rem;
  right: 2.5rem;
  height: 1px;
  background: linear-gradient(90deg, var(--orange), var(--yellow), var(--orange));
  z-index: 0;
}
.step {
  position: relative;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2rem 1.5rem 1.75rem;
  z-index: 1;
  transition: border-color .2s, box-shadow .2s;
}
.step:hover {
  border-color: rgba(255,107,0,.5);
  box-shadow: 0 0 30px rgba(255,107,0,.08);
}
.step-num {
  font-family: var(--font-head);
  font-size: 3rem;
  line-height: 1;
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}
.step h3 { font-family: var(--font-head); font-size: 1.1rem; margin-bottom: .6rem; color: var(--cream); }
.step p { color: var(--muted); font-size: .9rem; }
.buy-cta-wrap {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1rem;
  flex-wrap: wrap;
}
.contract-wrap {
  text-align: center;
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.contract-label {
  font-family: var(--font-cond);
  font-size: .75rem;
  letter-spacing: .15em;
  color: var(--muted);
}
.contract-addr {
  font-family: 'Courier New', monospace;
  font-size: .85rem;
  color: var(--orange);
  background: rgba(255,107,0,.08);
  border: 1px solid rgba(255,107,0,.2);
  padding: .3rem .9rem;
  border-radius: 4px;
}
.contract-hint {
  flex-basis: 100%;
  max-width: 40rem;
  margin: 0.5rem auto 0;
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--muted);
  text-align: center;
}
.contract-hint code {
  font-size: 0.78em;
}

@media (max-width: 900px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
}
@media (max-width: 480px) {
  .steps-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   FUSE / ON-CHAIN RNG (landmine briefing)
   ============================================================ */
#fuse-wiring {
  padding: 8rem 0;
  background: var(--bg);
  position: relative;
  border-top: 1px solid var(--border);
}
.vrf-head {
  display: grid;
  grid-template-columns: 1fr minmax(200px, 280px);
  gap: 3rem;
  align-items: start;
  margin-bottom: 3.5rem;
}
.vrf-title {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.15;
  margin-bottom: 1.25rem;
  color: var(--cream);
}
.vrf-lead {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 1rem;
  max-width: 640px;
}
.vrf-lead strong { color: var(--cream); }
.vrf-lead-muted {
  font-size: 0.92rem;
  color: rgba(154, 142, 112, 0.85);
  max-width: 640px;
  line-height: 1.55;
}
.vrf-lead-muted a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.vrf-lead-muted a:hover { color: var(--yellow); }
.vrf-lead-muted em { color: var(--cream); font-style: italic; }
.vrf-head-visual {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.25rem;
  text-align: center;
  box-shadow: 0 0 40px rgba(232, 35, 10, 0.08);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.vrf-head-visual:hover {
  border-color: rgba(255, 107, 0, 0.45);
  box-shadow: 0 8px 36px rgba(255, 107, 0, 0.1);
  transform: translateY(-3px);
}
.vrf-visual-img {
  width: 100%;
  max-width: 220px;
  height: auto;
  display: block;
  margin: 0 auto 0.75rem;
  filter: drop-shadow(0 0 12px rgba(57, 255, 20, 0.25));
}
.vrf-visual-caption {
  font-family: var(--font-cond);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  color: var(--yellow);
}
.vrf-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.vrf-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.75rem 1.35rem;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.vrf-card:hover {
  border-color: rgba(255, 107, 0, 0.45);
  box-shadow: 0 8px 36px rgba(255, 107, 0, 0.1);
  transform: translateY(-3px);
}
.vrf-card-icon {
  font-size: 1.85rem;
  margin-bottom: 0.85rem;
}
.vrf-card h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  margin-bottom: 0.65rem;
  color: var(--cream);
}
.vrf-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}
.vrf-card p em { color: rgba(245, 237, 216, 0.9); font-style: italic; }
.vrf-footnote {
  font-size: 0.82rem;
  color: var(--muted);
  padding: 1.1rem 1.25rem;
  border-left: 3px solid var(--orange);
  background: rgba(255, 107, 0, 0.06);
  border-radius: 0 6px 6px 0;
  line-height: 1.55;
}
.vrf-foot-tag {
  font-family: var(--font-cond);
  font-weight: 900;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--orange);
  margin-right: 0.5rem;
}

@media (max-width: 900px) {
  .vrf-head { grid-template-columns: 1fr; }
  .vrf-head-visual { max-width: 320px; margin: 0 auto; }
  .vrf-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .vrf-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   GALLERY
   ============================================================ */
#gallery {
  padding: 8rem 0;
  background: var(--bg2);
  position: relative;
}
#gallery::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.gallery-sub {
  text-align: center;
  color: var(--muted);
  margin-bottom: 3rem;
  font-size: 1rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: .75rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--border);
  cursor: pointer;
  background: var(--bg);
  min-height: 220px;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .4s ease, filter .4s ease;
}
.gallery-item:hover img { transform: scale(1.06); filter: brightness(1.1) saturate(1.2); }
.gallery-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: .75rem 1rem;
  background: linear-gradient(transparent, rgba(0,0,0,.85));
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .12em;
  color: var(--yellow);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .25s, transform .25s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; transform: translateY(0); }

.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .gallery-item.tall { grid-row: span 1; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .gallery-item.wide { grid-column: span 1; }
}

/* ============================================================
   COMMUNITY
   ============================================================ */
#community {
  padding: 8rem 0;
  text-align: center;
  overflow: hidden;
  position: relative;
}
#community::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(232,35,10,.07) 0%, transparent 70%);
  pointer-events: none;
}
.community-banner-img {
  width: 100%;
  max-width: 900px;
  border-radius: 12px;
  margin-bottom: 3rem;
  border: 1px solid var(--border);
  box-shadow: 0 0 60px rgba(255,107,0,.1);
}
.community-sub {
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 3rem;
  font-size: 1.05rem;
}
.socials {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.social-btn {
  display: flex;
  align-items: center;
  gap: .6rem;
  position: relative;
  overflow: hidden;
  padding: .7rem 1.6rem;
  border-radius: 6px;
  text-decoration: none;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .08em;
  border: 1px solid var(--border);
  transition: transform .15s, box-shadow .15s, border-color .15s;
}
.social-btn svg { width: 18px; height: 18px; }
.social-btn:hover { transform: translateY(-2px); }
.social-btn.telegram { background: rgba(0,136,204,.12); color: #29b6f6; border-color: rgba(0,136,204,.3); }
.social-btn.telegram:hover { box-shadow: 0 4px 20px rgba(0,136,204,.2); }
.social-btn.twitter { background: rgba(255,255,255,.06); color: var(--cream); border-color: rgba(255,255,255,.15); }
.social-btn.twitter:hover { box-shadow: 0 4px 20px rgba(255,255,255,.08); }
.social-btn.dex { background: rgba(255,107,0,.1); color: var(--orange); border-color: rgba(255,107,0,.3); }
.social-btn.dex:hover { box-shadow: 0 4px 20px rgba(255,107,0,.15); }
.social-btn.uniswap { background: rgba(255,0,122,.1); color: #ff007a; border-color: rgba(255,0,122,.3); }
.social-btn.uniswap:hover { box-shadow: 0 4px 20px rgba(255,0,122,.15); }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 3rem 0;
}
.footer-inner { text-align: center; }
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: 1.5rem;
}
.footer-logo img {
  width: 32px;
  height: 32px;
  object-fit: cover;
  border-radius: 50%;
}
.footer-logo span { font-family: var(--font-head); font-size: 1.2rem; color: var(--cream); }
.footer-disclaimer {
  color: var(--muted);
  font-size: .8rem;
  max-width: 560px;
  margin: 0 auto 1rem;
  line-height: 1.6;
}
.footer-copy { color: rgba(154,142,112,.4); font-size: .75rem; }

/* ============================================================
   LIVE PROOF BOARD (recent txs — landmine theme)
   ============================================================ */
.proofs-lead {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2rem;
  color: var(--muted);
  font-size: 1rem;
}
.proofs-lead strong { color: var(--cream); }
.proof-inline-badge {
  display: inline-block;
  font-family: var(--font-cond);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .08em;
  padding: .12rem .45rem;
  border-radius: 999px;
  background: rgba(255, 196, 0, 0.12);
  color: var(--yellow);
  border: 1px solid rgba(255, 196, 0, 0.35);
  vertical-align: middle;
}
.proof-board-wrap {
  max-width: 720px;
  margin: 0 auto 1.5rem;
}
.proof-toolbar {
  margin-bottom: 1.35rem;
  padding: 1rem 1.15rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 107, 0, 0.22);
  background: rgba(12, 10, 6, 0.55);
}
.proof-toolbar-label {
  display: block;
  font-family: var(--font-cond);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--yellow);
  margin-bottom: 0.55rem;
}
.proof-toolbar-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}
.proof-wallet-input {
  flex: 1 1 200px;
  min-width: 0;
  font-family: ui-monospace, 'Cascadia Code', 'Courier New', monospace;
  font-size: 0.88rem;
  padding: 0.55rem 0.75rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.35);
  color: var(--cream);
}
.proof-wallet-input::placeholder {
  color: rgba(154, 142, 112, 0.65);
}
.proof-wallet-input:focus {
  outline: none;
  border-color: rgba(255, 107, 0, 0.55);
  box-shadow: 0 0 0 2px rgba(255, 107, 0, 0.12);
}
.proof-filter-clear {
  font-family: var(--font-cond);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 0.85rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  cursor: pointer;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.proof-filter-clear:hover {
  color: var(--cream);
  border-color: rgba(255, 107, 0, 0.35);
}
.proof-toolbar-hint {
  margin: 0.65rem 0 0;
  font-size: 0.78rem;
  color: rgba(154, 142, 112, 0.88);
  line-height: 1.45;
}
.proof-toolbar-hint strong {
  color: var(--cream);
  font-weight: 700;
}
.proof-cards {
  display: grid;
  gap: 1.5rem;
  margin: 0;
}
.proof-pager {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 1.5rem;
  margin-top: 1.25rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: rgba(12, 10, 6, 0.65);
  border: 1px solid rgba(255, 107, 0, 0.22);
}
.proof-pager-btn {
  font-family: var(--font-cond);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 107, 0, 0.45);
  background: rgba(255, 107, 0, 0.12);
  color: var(--orange);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.proof-pager-btn:hover:not(:disabled) {
  background: rgba(255, 107, 0, 0.22);
  color: var(--yellow);
}
.proof-pager-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.proof-pager-meta {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 600;
}
.proof-card {
  position: relative;
  background: linear-gradient(145deg, rgba(34, 27, 10, 0.95), rgba(20, 16, 8, 0.98));
  border: 2px solid rgba(255, 107, 0, 0.35);
  border-radius: 16px;
  padding: 2.15rem 1.5rem 1.35rem;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.4),
    0 12px 40px rgba(232, 35, 10, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.proof-card-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.proof-card-corner-block {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  max-width: min(58%, 14rem);
  text-align: right;
  font-family: var(--font-cond);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.2;
  color: rgba(245, 237, 216, 0.88);
  text-transform: uppercase;
  z-index: 1;
}
.proof-card-head-simple {
  justify-content: flex-start;
  margin-bottom: 0.65rem;
  padding-right: min(42%, 9.5rem);
}
@media (max-width: 480px) {
  .proof-card-corner-block {
    font-size: 0.55rem;
    max-width: 62%;
  }
  .proof-card-head-simple {
    padding-right: 0;
    padding-top: 0.15rem;
  }
}
.proof-card-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  margin-top: 0.2rem;
}
.proof-card-burn-time {
  font-family: var(--font-cond);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.25;
  color: rgba(255, 196, 0, 0.92);
  text-align: right;
  margin-left: auto;
  max-width: 100%;
}
.proof-card-burn-time--na {
  color: rgba(154, 142, 112, 0.85);
  font-weight: 700;
}
.proof-card-exploded-line {
  font-family: var(--font-head);
  font-size: clamp(1.15rem, 3.2vw, 1.45rem);
  letter-spacing: 0.02em;
  color: var(--cream);
  margin-bottom: 0.35rem;
  line-height: 1.2;
}
.exploded-word {
  color: var(--red);
  font-weight: 400;
  text-shadow: 0 0 18px rgba(232, 35, 10, 0.45);
}
.proof-card-kicker {
  font-family: var(--font-cond);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}
.proof-card-time {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--cream);
}
.proof-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: flex-end;
}
.proof-badge {
  font-family: var(--font-cond);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  border: 1px solid transparent;
}
.proof-badge.ok {
  background: rgba(57, 255, 20, 0.1);
  color: var(--green);
  border-color: rgba(57, 255, 20, 0.35);
}
.proof-badge.warn {
  background: rgba(255, 196, 0, 0.12);
  color: var(--yellow);
  border-color: rgba(255, 196, 0, 0.4);
}
.proof-badge.vrf {
  background: rgba(180, 120, 255, 0.12);
  color: #d4b5ff;
  border-color: rgba(180, 120, 255, 0.45);
}
.proof-badge.rng {
  background: rgba(0, 200, 180, 0.1);
  color: #7ee8dc;
  border-color: rgba(0, 200, 180, 0.35);
}
.proof-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem 1rem;
  margin: 0.5rem 0 0.85rem;
  padding: 0.85rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
@media (max-width: 600px) {
  .proof-stat-grid { grid-template-columns: 1fr 1fr; }
}
.proof-stat-label {
  display: block;
  font-size: 0.72rem;
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}
.proof-stat-val {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--cream);
  word-break: break-all;
}
.proof-stat-val-wallet {
  font-family: ui-monospace, 'Cascadia Code', 'Courier New', monospace;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.4;
}
a.proof-wallet-link {
  color: #7eb8ff;
  text-decoration: underline;
  text-underline-offset: 2px;
}
a.proof-wallet-link:hover {
  color: var(--yellow);
}
.proof-detail {
  font-size: 0.85rem;
  color: rgba(245, 237, 216, 0.78);
  line-height: 1.5;
  margin-bottom: 0.85rem;
}
.proof-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
}
.proof-links a {
  font-family: var(--font-cond);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: var(--orange);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 107, 0, 0.35);
}
.proof-links a:hover {
  color: var(--yellow);
  border-bottom-color: var(--yellow);
}
.proofs-error {
  text-align: center;
  color: var(--red);
  padding: 2rem;
}
.proof-entropy-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.35rem;
  font-size: 0.82rem;
  color: var(--muted);
}
.proof-entropy-row strong {
  color: var(--cream);
  font-weight: 600;
}
.proof-formula-wrap,
.proof-entropy-hash-wrap {
  margin: 0.65rem 0 0.35rem;
}
.proof-formula-wrap .proof-stat-label,
.proof-entropy-hash-wrap .proof-stat-label {
  margin-bottom: 0.35rem;
}
.proof-formula,
.proof-hash {
  display: block;
  font-size: 0.72rem;
  line-height: 1.45;
  color: rgba(245, 237, 216, 0.88);
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 0.55rem 0.65rem;
  word-break: break-all;
  white-space: pre-wrap;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}
