.footer{
  border-top:1px solid var(--border);
  background:rgba(11,15,20,0.35);
}

.footer-inner{
  padding:18px 0;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:14px;
}

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

.social-btn{
  width:58px;
  height:58px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:12px;
  border:1px solid rgba(255,215,90,0.25);
  background:rgba(255,255,255,0.04);
  transition:transform 140ms ease,background 140ms ease,border-color 140ms ease,box-shadow 140ms ease;
}

.social-btn:hover{
  transform:translateY(-2px);
  background:rgba(255,215,90,0.08);
  border-color:rgba(255,215,90,0.45);
  box-shadow:0 10px 26px rgba(255,215,90,0.12);
}

.social-icon{
  width:30px;
  height:30px;
  display:block;
  object-fit:contain;
}

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