/* ── FOOTER ── */
/* ── FOOTER ── */
  footer {
    background: linear-gradient(180deg, #080615 0%, #050410 100%);
    border-top: 1px solid rgba(123,95,255,0.1);
    padding: 50px 60px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    flex-wrap: wrap;
    gap: 16px;
  }
  footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(123,95,255,0.25), transparent);
  }

  .footer-logo {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.5);
    background: linear-gradient(135deg, rgba(255,255,255,0.5), rgba(160,132,255,0.5));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .footer-legal a {
    color: rgba(200,200,230,0.4);
    text-decoration: none;
    font-size: 12px;
    transition: color 0.2s;
  }
  .footer-legal a:hover {
    color: var(--accent);
  }
  .footer-legal-sep {
    color: rgba(200,200,230,0.2);
    margin: 0 8px;
  }

  .footer-copy {
    font-size: 12px;
    color: rgba(255,255,255,0.25);
  }

  

/* ── SECTION SHARED ── */
/* ── SECTION SHARED ── */
  .page-section {
    padding: 0;
    width: 100%;
    max-width: 100%;
    margin: 0;
  }

  .section-header {
    text-align: center;
    margin-bottom: 60px;
  }

  

/* ── STATS PANEL ── */
/* ── STATS PANEL ── */
  .wheel-stats-panel {
    margin-top: 12px;
    background: rgba(13,11,30,0.92);
    border: 1px solid rgba(123,95,255,0.16);
    border-radius: 6px;
    padding: 16px 20px;
    position: relative;
  }

  .wheel-stats-panel::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(123,95,255,0.35), transparent);
  }

  


.page-section { display: block; width: 100%; max-width: 100%; margin: 0; padding: 0; }
.nav-links a.active { color: #fff !important; }
