/* wall.css */
.wall-display {
  background: var(--dark); border: 1px solid var(--dark4);
  border-radius: var(--radius-lg); padding: var(--space-xl);
  min-height: 280px; overflow: hidden; position: relative;
}
.wall-row { display: flex; align-items: center; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 0.9rem; justify-content: center; }
.wall-name-fc   { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--white); }
.wall-name-crew { font-size: 0.84rem; color: var(--grey2); }
.wall-name-you  {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 700;
  color: var(--red2); border: 1px dashed var(--red);
  padding: 0.1rem 0.6rem; border-radius: var(--radius-sm);
  animation: pulse 2s ease-in-out infinite;
}
.wall-dot { color: var(--dark4); font-size: 0.7rem; }
.wall-counter {
  text-align: center; padding: var(--space-md);
  background: rgba(215,40,47,0.06); border: 1px solid rgba(215,40,47,0.2);
  border-radius: var(--radius-md); margin-bottom: var(--space-lg);
}
.wall-counter-num { font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; color: var(--red2); line-height: 1; }
.wall-counter-lbl { font-size: 0.75rem; color: var(--grey); margin-top: 3px; }
.tier-option {
  border: 1px solid var(--dark4); border-radius: var(--radius-md);
  padding: var(--space-md); margin-bottom: var(--space-sm);
  cursor: pointer; transition: all 0.18s; position: relative;
}
.tier-option:hover, .tier-option.selected { border-color: var(--amber); background: rgba(232,160,32,0.05); }
.tier-option-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.25rem; }
.tier-name  { font-weight: 600; font-size: 0.9rem; }
.tier-price { color: var(--amber); font-weight: 700; font-family: var(--font-display); }
.tier-desc  { font-size: 0.78rem; color: var(--grey); line-height: 1.5; }
