/* ═══════════════════════════════════════════════════════════
   static.css — Shared styles for all static HTML pages
   tmbola.in
   ═══════════════════════════════════════════════════════════ */

/* ── Design tokens ── */
:root {
  --bg: #0e141f;
  --surface: #1a2234;
  --card: #232e42;
  --text: #e2e8f0;
  --muted: #94a3b8;
  --amber: #f59e0b;
  --teal: #14b8a6;
  --green: #10b981;
  --blue: #3b82f6;
  --border: #334155;
  --radius: 12px;
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
}

/* ── Mandala background ── */
.mandala-bg {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.mandala-bg::before,
.mandala-bg::after {
  content: '';
  position: absolute;
}

.mandala-bg::before {
  right: -11rem;
  top: -11rem;
  width: 40rem;
  height: 40rem;
  background: url('/images/mandala-amber.svg') no-repeat center/contain;
  opacity: 0.20;
  animation: mandala-spin 120s linear infinite;
}

.mandala-bg::after {
  left: -8rem;
  bottom: -8rem;
  width: 26rem;
  height: 26rem;
  background: url('/images/mandala-teal.svg') no-repeat center/contain;
  opacity: 0.35;
  animation: mandala-spin 120s linear infinite reverse;
}

@keyframes mandala-spin {
  to { transform: rotate(360deg); }
}

/* ── Footer ── */
.footer {
  text-align: center;
  padding: 28px 0 16px;
  color: var(--muted);
  font-size: 13px;
  border-top: 1px solid var(--border);
  margin-top: 28px;
}

.footer a {
  color: var(--amber);
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 10px;
}
