body.wall-page {
  margin: 0;
  background:
    radial-gradient(circle at top, rgba(0,255,102,0.18), transparent 28%),
    linear-gradient(180deg, #050505 0%, #090909 45%, #12061d 100%);
  color: #f5f5f5;
  font-family: Inter, Arial, sans-serif;
}

.wof-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(14px);
  position: sticky;
  top: 0;
  z-index: 50;
}

.wof-brand {
  text-decoration: none;
  color: #fff;
}

.wof-brand span {
  display: block;
  color: #45ff36;
  font-size: 11px;
  letter-spacing: 0.24em;
}

.wof-brand strong {
  font-size: 28px;
}

.wof-nav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.wof-nav a,
.wof-btn {
  text-decoration: none;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  padding: 10px 16px;
  border-radius: 999px;
  transition: 0.2s ease;
}

.wof-nav a:hover,
.wof-btn:hover {
  transform: translateY(-2px);
  border-color: #45ff36;
}

.wof-main {
  padding: 24px;
}

.wof-hero {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 22px;
  align-items: stretch;
}

.wof-scan-card,
.wof-duck-panel,
.wof-map {
  background: rgba(10,10,10,0.86);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 0 40px rgba(0,0,0,0.4);
}

.wof-kicker {
  color: #45ff36;
  letter-spacing: 0.18em;
  font-size: 12px;
}

.wof-copy,
.wof-status,
.wof-card-copy p {
  color: rgba(255,255,255,0.72);
}

.wof-scorebar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px 0;
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(69,255,54,0.16), rgba(123,44,255,0.16));
}

#wof-points {
  font-size: 40px;
  color: #45ff36;
}

.wof-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.wof-btn.primary {
  background: linear-gradient(135deg, #45ff36, #0dcf83);
  color: #050505;
  font-weight: 800;
}

.wof-duck-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.wof-duck-panel img {
  width: 180px;
  max-width: 100%;
  filter: drop-shadow(0 0 20px rgba(69,255,54,0.4));
}

.wof-unlock-track {
  margin: 28px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(150px,1fr));
  gap: 14px;
}

.wof-unlock-track article {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 18px;
}

.wof-unlock-track article.active {
  border-color: #45ff36;
  box-shadow: 0 0 24px rgba(69,255,54,0.25);
}

.wof-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
  gap: 18px;
}

.wof-card {
  overflow: hidden;
  border-radius: 24px;
  background: #111;
  border: 1px solid rgba(255,255,255,0.08);
  position: relative;
}

.wof-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.wof-card-copy {
  padding: 18px;
}

.wof-lock {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0,0,0,0.78);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.16em;
}

.wof-card.unlocked .wof-lock {
  background: #45ff36;
  color: #050505;
  border-color: transparent;
}

@media (max-width: 900px) {
  .wof-hero {
    grid-template-columns: 1fr;
  }

  .wof-header {
    flex-direction: column;
    gap: 14px;
  }
}
