/* ============================================
   Money Train KG — footer.css
   ============================================ */
.site-footer {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 180, 5, 0.06), transparent 55%),
    linear-gradient(180deg, #120d08, #080503);
  border-top: 2px solid var(--gold-2);
  padding: 48px 0 30px;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}
.footer-brand img { display: block; }
.footer-title {
  font-family: var(--font-head);
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gold);
  margin: 0;
}

.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin: 6px 0 20px;
}
.footer-nav a {
  color: var(--text);
  font-size: 0.98rem;
  border-bottom: 1px dashed rgba(255, 180, 5, 0.35);
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.footer-nav a:hover { color: var(--gold); border-color: var(--gold); }

.footer-note {
  color: var(--muted);
  font-size: 0.9rem;
  max-width: 660px;
  margin: 0 auto;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 180, 5, 0.12);
}

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 2px solid var(--red);
  border-radius: 50%;
  color: #fff;
  background: rgba(179, 39, 30, 0.25);
  font-weight: 700;
  font-size: 0.95rem;
}

.footer-copy { color: var(--muted); font-size: 0.95rem; margin: 0; }
