@import url('https://fonts.googleapis.com/css2?family=Space+Mono:wght@400;700&family=Inter:wght@400;500;600;700;800;900&display=swap');

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

:root {
  --lime: #C6F221;
  --black: #000000;
  --white: #FFFFFF;
  --dark: #111;
  --text-muted: #888;
  --radius: 12px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  /* === BRICK WALL BACKGROUND === */
  background-color: #1a1510;
  background-image:
    /* Mortar - horizontal */
    repeating-linear-gradient(
      0deg,
      transparent 0px,
      transparent 39px,
      #120f0a 39px,
      #120f0a 41px
    ),
    /* Mortar - vertical row 1 */
    repeating-linear-gradient(
      90deg,
      transparent 0px,
      transparent 79px,
      #120f0a 79px,
      #120f0a 81px
    ),
    /* Mortar - vertical row 2 (offset) */
    repeating-linear-gradient(
      90deg,
      transparent 0px,
      transparent 79px,
      #120f0a 79px,
      #120f0a 81px
    );
  background-size: 100% 40px, 80px 80px, 80px 80px;
  background-position: 0 0, 0 0, 40px 40px;
}

/* Brick color overlay - gives warm brick tone */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent 0px,
      transparent 39px,
      rgba(50, 38, 28, 0.6) 39px,
      rgba(50, 38, 28, 0.6) 41px
    ),
    repeating-linear-gradient(
      90deg,
      transparent 0px,
      transparent 79px,
      rgba(50, 38, 28, 0.4) 79px,
      rgba(50, 38, 28, 0.4) 81px
    );
  background-size: 100% 40px, 80px 80px;
  background-position: 0 0, 0 0;
  pointer-events: none;
  z-index: 0;
}

/* Second overlay for brick face color */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background:
    /* Brick faces - warm brown tone */
    repeating-linear-gradient(
      0deg,
      rgba(45, 35, 25, 0.3) 0px,
      rgba(45, 35, 25, 0.3) 38px,
      transparent 38px,
      transparent 40px
    ),
    /* Vignette */
    radial-gradient(ellipse at center, transparent 30%, rgba(0,0,0,0.4) 100%);
  background-size: 100% 40px, 100% 100%;
  pointer-events: none;
  z-index: 0;
}

#main-site { position: relative; z-index: 1; }

/* ========== LOADING ========== */
#loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #1a1510;
}

.loader-wall-left, .loader-wall-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  background-image:
    repeating-linear-gradient(0deg, transparent 0px, transparent 39px, #120f0a 39px, #120f0a 41px),
    repeating-linear-gradient(90deg, transparent 0px, transparent 79px, #120f0a 79px, #120f0a 81px),
    repeating-linear-gradient(0deg, rgba(50,38,28,0.5) 0px, rgba(50,38,28,0.5) 38px, transparent 38px, transparent 40px);
  background-size: 100% 40px, 80px 80px, 100% 40px;
}
.loader-wall-left { left: 0; transform-origin: left center; }
.loader-wall-right { right: 0; transform-origin: right center; }

.loader-lightning {
  position: absolute;
  inset: 0;
  background: var(--lime);
  opacity: 0;
  z-index: 5;
  pointer-events: none;
}

#loader.flash .loader-lightning {
  animation: lightningFlash 0.5s ease-out;
}

@keyframes lightningFlash {
  0% { opacity: 0.95; }
  8% { opacity: 0; }
  16% { opacity: 0.55; }
  24% { opacity: 0; }
  40% { opacity: 0.25; }
  100% { opacity: 0; }
}

.loader-cracks {
  position: absolute;
  inset: 0;
  z-index: 4;
  opacity: 0;
}

#loader.cracking .loader-cracks { opacity: 1; }
#loader.cracking .loader-wall-left { animation: wallBreakL 0.5s cubic-bezier(0.4,0,0.2,1) forwards; }
#loader.cracking .loader-wall-right { animation: wallBreakR 0.5s cubic-bezier(0.4,0,0.2,1) forwards; }

@keyframes wallBreakL {
  0% { transform: translateX(0) rotate(0); opacity: 1; }
  100% { transform: translateX(-105%) rotate(-1.5deg); opacity: 0; }
}
@keyframes wallBreakR {
  0% { transform: translateX(0) rotate(0); opacity: 1; }
  100% { transform: translateX(105%) rotate(1.5deg); opacity: 0; }
}

.loader-content {
  position: relative;
  z-index: 6;
  text-align: center;
}

.loader-feather {
  width: 36px;
  height: 36px;
  margin-bottom: 14px;
  animation: featherPulse 1s ease-in-out infinite;
}

@keyframes featherPulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.08); opacity: 1; }
}

.loader-title {
  font-family: 'Space Mono', monospace;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 18px;
}

.loader-bar-track {
  width: 140px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto;
}

.loader-bar-fill {
  height: 100%;
  background: var(--lime);
  width: 0%;
  animation: loaderFill 0.9s cubic-bezier(0.4,0,0.2,1) forwards;
}

@keyframes loaderFill {
  0% { width: 0%; }
  100% { width: 100%; }
}

#loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s, visibility 0.3s;
}

/* ========== MAIN ========== */
#main-site {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
#main-site.visible { opacity: 1; transform: translateY(0); }

/* ========== NAV ========== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(26, 21, 16, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(198, 242, 33, 0.06);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-logo {
  width: 24px;
  height: 24px;
  border-radius: 5px;
  object-fit: cover;
  image-rendering: pixelated;
}

.nav-name {
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lime);
}

.nav-x {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.65rem;
  font-weight: 500;
  transition: color var(--transition);
}
.nav-x:hover { color: var(--white); }
.nav-x svg { width: 13px; height: 13px; }

/* ========== HERO ========== */
.hero {
  padding: 64px 14px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(198, 242, 33, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero-logo {
  width: 80px;
  height: 80px;
  border-radius: 14px;
  object-fit: cover;
  image-rendering: pixelated;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 12px rgba(198, 242, 33, 0.25));
}

.hero-banner {
  width: 100%;
  max-width: 520px;
  border-radius: 14px;
  object-fit: cover;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
  image-rendering: auto;
}

.hero-title {
  font-family: 'Space Mono', monospace;
  font-size: clamp(1.8rem, 8vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 4px;
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, var(--lime) 0%, #E8FF6B 50%, var(--lime) 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 1;
  margin-bottom: 10px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  background: rgba(198, 242, 33, 0.06);
  border: 1px solid rgba(198, 242, 33, 0.1);
  border-radius: 100px;
  font-size: 0.58rem;
  font-weight: 600;
  color: var(--lime);
  position: relative;
  z-index: 1;
}

.hero-badge-icon {
  width: 12px;
  height: 12px;
}

/* ========== INFO BAND ========== */
.info-band {
  padding: 0 14px;
  margin-bottom: 14px;
}

.info-inner {
  max-width: 480px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(198, 242, 33, 0.08);
  border-radius: 10px;
  overflow: hidden;
}

.info-item {
  background: rgba(26, 21, 16, 0.95);
  padding: 11px 4px;
  text-align: center;
}

.info-label {
  font-size: 0.48rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.info-val {
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--white);
}

.info-val.lime { color: var(--lime); }

/* ========== BUTTONS ========== */
.actions {
  padding: 0 14px;
  margin-bottom: 22px;
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-primary {
  background: var(--lime);
  color: var(--black);
}

.btn-primary:hover {
  background: #D4FF3A;
  transform: translateY(-2px);
  box-shadow: 0 5px 18px rgba(198, 242, 33, 0.22);
}

.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  background: transparent;
  color: var(--lime);
  border: 1px solid rgba(198, 242, 33, 0.25);
}

.btn-secondary:hover {
  background: rgba(198, 242, 33, 0.06);
  border-color: var(--lime);
}

.btn-disabled {
  background: rgba(40,35,28,0.8);
  color: #555;
  cursor: not-allowed;
  position: relative;
}

.btn-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--text-muted);
  color: var(--dark);
  font-size: 0.4rem;
  font-weight: 700;
  padding: 2px 5px;
  border-radius: 100px;
  letter-spacing: 0.06em;
}

/* ========== DIVIDER ========== */
.divider {
  max-width: 480px;
  margin: 0 auto 22px;
  padding: 0 14px;
}

.divider-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(198, 242, 33, 0.1), transparent);
}

/* ========== NFT VIEWER ========== */
.showcase {
  padding: 0 14px;
  margin-bottom: 30px;
  text-align: center;
}

.showcase-tag {
  display: inline-block;
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lime);
  background: rgba(198, 242, 33, 0.05);
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 8px;
}

.showcase-title {
  font-family: 'Space Mono', monospace;
  font-size: clamp(0.95rem, 4vw, 1.2rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.nft-viewer {
  max-width: 280px;
  margin: 0 auto;
  cursor: pointer;
  position: relative;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  transition: max-width 0.3s ease;
}

.nft-viewer.first-image {
  max-width: 320px;
}

.nft-frame {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid rgba(198, 242, 33, 0.12);
  position: relative;
  transition: border-color var(--transition), box-shadow var(--transition);
  background: rgba(30,25,18,0.8);
}

.nft-viewer.first-image .nft-frame {
  border-color: rgba(198, 242, 33, 0.3);
  box-shadow: 0 0 30px rgba(198, 242, 33, 0.1);
}

.nft-viewer:hover .nft-frame {
  border-color: var(--lime);
  box-shadow: 0 0 20px rgba(198, 242, 33, 0.1);
}

.nft-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: pixelated;
  transition: opacity 0.12s ease;
}

/* Hand pointer click indicator — only on first image */
.nft-tap-icon {
  position: absolute;
  bottom: 18%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  z-index: 10;
  pointer-events: none;
  filter: drop-shadow(0px 4px 10px rgba(0, 0, 0, 0.7));
  animation: tapBounce 1.2s ease-in-out infinite;
  will-change: transform;
}

.nft-tap-icon svg {
  width: 100px;
  height: 100px;
  display: block;
}

.nft-tap-text {
  font-family: 'Space Mono', monospace;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  color: rgba(0, 0, 0, 0.5);
  letter-spacing: 0.15em;
  margin-top: 4px;
}

.nft-tap-icon.hidden {
  display: none;
}

@keyframes tapBounce {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50% { transform: translate(-50%, -50%) translateY(-14px); }
}

.nft-hint {
  margin-top: 8px;
  font-size: 0.55rem;
  color: #554;
  font-weight: 500;
  letter-spacing: 0.03em;
}

/* ========== ABOUT ========== */
.about {
  padding: 0 14px;
  margin-bottom: 30px;
}

.about-inner {
  max-width: 480px;
  margin: 0 auto;
  background: rgba(26, 21, 16, 0.85);
  border: 1px solid rgba(198, 242, 33, 0.05);
  border-radius: 14px;
  padding: 20px 14px;
  text-align: center;
}

.about-title {
  font-family: 'Space Mono', monospace;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 8px;
}

.about-text {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}

.about-stats {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.about-stat { text-align: center; }

.about-stat-num {
  font-family: 'Space Mono', monospace;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--lime);
}

.about-stat-label {
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ========== ROADMAP ========== */
.roadmap {
  padding: 0 14px;
  margin-bottom: 30px;
}

.roadmap-inner { max-width: 480px; margin: 0 auto; }
.roadmap-header { text-align: center; margin-bottom: 16px; }

.roadmap-title {
  font-family: 'Space Mono', monospace;
  font-size: clamp(0.95rem, 3vw, 1.1rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.roadmap-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.roadmap-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px;
  background: rgba(26, 21, 16, 0.85);
  border: 1px solid rgba(198, 242, 33, 0.04);
  border-radius: 10px;
  transition: border-color var(--transition);
}

.roadmap-item:hover { border-color: rgba(198, 242, 33, 0.12); }

.roadmap-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  flex-shrink: 0;
  margin-top: 4px;
}

.roadmap-dot.pending {
  background: transparent;
  border: 1px solid rgba(198, 242, 33, 0.25);
}

.roadmap-content h4 {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}

.roadmap-content p {
  font-size: 0.62rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ========== COLLAB ========== */
.collab-page {
  padding: 0 14px;
  margin-bottom: 30px;
}

.collab-inner {
  max-width: 480px;
  margin: 0 auto;
  background: rgba(26, 21, 16, 0.85);
  border: 1px solid rgba(198, 242, 33, 0.05);
  border-radius: 14px;
  padding: 22px 16px;
}

.collab-title {
  font-family: 'Space Mono', monospace;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--lime);
  text-align: center;
  margin-bottom: 6px;
}

.collab-subtitle {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 18px;
  line-height: 1.45;
}

.collab-requirements {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.collab-req {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: rgba(198, 242, 33, 0.03);
  border: 1px solid rgba(198, 242, 33, 0.06);
  border-radius: 8px;
}

.collab-req-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(198, 242, 33, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--lime);
}

.collab-req-text {
  font-size: 0.68rem;
  color: var(--white);
  font-weight: 500;
}

.collab-req-text span {
  color: var(--text-muted);
  font-size: 0.58rem;
  display: block;
  margin-top: 1px;
}

.collab-cta { text-align: center; }

/* ========== FOOTER ========== */
.footer {
  padding: 22px 14px;
  border-top: 1px solid rgba(198, 242, 33, 0.05);
  text-align: center;
}

.footer-inner {
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-feather { width: 16px; height: 16px; }

.footer-name {
  font-family: 'Space Mono', monospace;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lime);
}

.footer-links {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-link {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.62rem;
  font-weight: 500;
  transition: color var(--transition);
}

.footer-link:hover { color: var(--white); }
.footer-link svg { width: 12px; height: 12px; }

.footer-chain {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 9px;
  background: rgba(198, 242, 33, 0.04);
  border: 1px solid rgba(198, 242, 33, 0.08);
  border-radius: 100px;
  font-size: 0.52rem;
  font-weight: 600;
  color: var(--lime);
}

.footer-chain svg { width: 9px; height: 9px; }

.footer-copy {
  font-size: 0.5rem;
  color: #333;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 480px) {
  .hero { padding: 58px 10px 12px; }
  .hero-logo { width: 64px; height: 64px; }
  .hero-banner { border-radius: 10px; }
  .info-inner { grid-template-columns: repeat(2, 1fr); }
  .info-item { padding: 9px 4px; }
  .actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 240px; justify-content: center; }
  .nft-viewer { max-width: 240px; }
}

/* ========== MODAL ========== */
.wl-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

.wl-modal {
  background: rgba(26,21,16,0.98);
  border: 1px solid rgba(198,242,33,0.08);
  border-radius: 14px;
  padding: 22px 18px;
  max-width: 360px;
  width: 100%;
  position: relative;
  max-height: 80vh;
  overflow-y: auto;
}

.wl-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 26px;
  height: 26px;
  border: none;
  background: rgba(255,255,255,0.06);
  color: var(--text-muted);
  font-size: 0.9rem;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wl-close:hover { background: rgba(198,242,33,0.1); color: var(--white); }

.wl-steps {
  display: flex;
  gap: 5px;
  justify-content: center;
  margin-bottom: 18px;
}

.wl-step-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}

.wl-step-dot.active { background: var(--lime); }
.wl-step-dot.done { background: rgba(198,242,33,0.3); }

.wl-heading {
  font-family: 'Space Mono', monospace;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
  text-align: center;
}

.wl-desc {
  font-size: 0.66rem;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 14px;
  line-height: 1.4;
}

.wl-input {
  width: 100%;
  padding: 10px 11px;
  background: rgba(17,17,17,0.8);
  border: 1px solid rgba(198,242,33,0.08);
  border-radius: 8px;
  color: var(--white);
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  outline: none;
  margin-bottom: 10px;
}

.wl-input:focus { border-color: var(--lime); }
.wl-input::placeholder { color: #444; }

.wl-continue { width: 100%; justify-content: center; }
.wl-action-btn { width: 100%; justify-content: center; margin-bottom: 6px; }

.wl-link-btn {
  display: block;
  width: 100%;
  text-align: center;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.62rem;
  cursor: pointer;
  padding: 4px;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.wl-link-btn:hover { color: var(--lime); }

.wl-done-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 10px;
  background: rgba(198,242,33,0.04);
  border: 1px solid rgba(198,242,33,0.1);
  border-radius: 8px;
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--lime);
  margin-bottom: 10px;
}

.wl-final { text-align: center; }

.wl-success-icon { margin-bottom: 12px; }

.wl-success-title { color: #4FC3F7 !important; font-size: 1rem !important; }

.wl-check {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px;
  margin-top: 10px;
  background: rgba(79, 195, 247, 0.08);
  border: 1px solid rgba(79, 195, 247, 0.2);
  border-radius: 8px;
  font-family: 'Space Mono', monospace;
  font-size: 0.8rem;
  font-weight: 700;
  color: #4FC3F7;
}

.wl-check-icon {
  font-size: 1rem;
  font-weight: 900;
}

.wl-error {
  font-size: 0.62rem;
  color: #ef5350;
  text-align: center;
  min-height: 16px;
  margin-bottom: 6px;
}

.wl-action-btn {
  width: 100% !important;
  justify-content: center;
  font-size: 0.8rem !important;
  padding: 14px 18px !important;
}

.wl-summary {
  background: rgba(17,17,17,0.6);
  border-radius: 8px;
  padding: 10px;
  margin: 12px 0;
}

.wl-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 0;
}

.wl-summary-row + .wl-summary-row { border-top: 1px solid rgba(255,255,255,0.03); }

.wl-summary-label { font-size: 0.6rem; color: var(--text-muted); }

.wl-summary-value {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  color: var(--lime);
  font-weight: 700;
}
