/* Bottom-center social link box — all pages */
.social-bar-wrap {
  position: fixed;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 200;
  pointer-events: none;
}

.social-bar-wrap.hidden { display: none; }

.social-ca {
  font-family: 'Press Start 2P', 'Segoe UI', sans-serif;
  font-size: 8px;
  letter-spacing: 0.5px;
  color: #b8b090;
  text-align: center;
  padding: 4px 10px;
  background: rgba(12, 14, 8, 0.88);
  border: 2px solid #000;
  outline: 1px solid #4a481f;
  pointer-events: auto;
}

.social-bar {
  display: flex;
  gap: 8px;
  pointer-events: auto;
  padding: 6px 8px;
  background: rgba(12, 14, 8, 0.92);
  border: 2px solid #000;
  outline: 1px solid #4a481f;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.45);
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  padding: 9px 14px;
  font-family: 'Press Start 2P', 'Segoe UI', sans-serif;
  font-size: 8px;
  letter-spacing: 0.5px;
  text-decoration: none;
  color: #e8e0c8;
  background: linear-gradient(180deg, #3a3a2a 0%, #252518 100%);
  border: 2px solid #000;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 2px 2px 0 #000;
  transition: transform 0.08s, filter 0.08s;
}

.social-btn:hover {
  filter: brightness(1.12);
  transform: translateY(-1px);
}

.social-btn:active {
  transform: translateY(1px);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.4);
}

.social-btn.twitter { color: #8ec8f8; border-color: #1a3a5a; background: linear-gradient(180deg, #1e3a52 0%, #122430 100%); }
.social-btn.dex { color: #b0f0c0; border-color: #1a4a2a; background: linear-gradient(180deg, #1e4a2e 0%, #122818 100%); }
.social-btn.brego { color: #ffe77a; border-color: #5a4a18; background: linear-gradient(180deg, #4a3a18 0%, #2a2010 100%); }

@media (max-width: 520px) {
  .social-bar-wrap { bottom: 10px; max-width: calc(100vw - 16px); }
  .social-bar { gap: 5px; padding: 5px 6px; flex-wrap: wrap; justify-content: center; }
  .social-btn { min-width: 72px; padding: 8px 10px; font-size: 7px; }
  .social-ca { font-size: 6px; }
}

body.gate-body { padding-bottom: 78px; }
