/* Shared styling for the Privacy Policy and Terms & Conditions pages. */
@import url('https://fonts.googleapis.com/css2?family=Luckiest+Guy&family=Quicksand:wght@300;400;500;600;700&display=swap');
:root { --yellow:#FFD93D; --yellow-dark:#E6C230; --black:#000; --bg:#000;
  --border:rgba(255,255,255,.22); --white:#fff; --mid:#c7c7c7; --muted:#9a9a9a; }
* { box-sizing:border-box; margin:0; padding:0; }
body { font-family:'Quicksand',system-ui,-apple-system,'Segoe UI',Roboto,sans-serif;
  background:var(--bg); color:var(--white); line-height:1.7; }
a { color:var(--yellow); }

.main-header { background:#000; padding:16px 32px; display:flex; align-items:center;
  justify-content:space-between; border-bottom:2px solid var(--yellow); }
.header-logo-text { font-family:'Luckiest Guy','Arial Black',Impact,sans-serif;
  font-weight:800; font-size:22px; color:var(--white); text-decoration:none; }
.header-logo-text span { color:var(--yellow); }
.header-logo-sub { font-size:10px; color:var(--mid); letter-spacing:1px; text-transform:uppercase; }
.header-back { font-size:12px; color:var(--mid); text-transform:uppercase; letter-spacing:1px; text-decoration:none; }
.header-back:hover { color:var(--yellow); }

.legal-hero { text-align:center; padding:44px 24px 26px; border-bottom:1px solid var(--border); }
.legal-hero h1 { font-family:'Luckiest Guy','Arial Black',Impact,sans-serif; font-size:34px; }
.legal-hero h1 span { color:var(--yellow); }
.legal-hero .eff { font-size:13px; color:var(--muted); margin-top:8px; }
.legal-tabs { display:flex; gap:10px; justify-content:center; margin-top:18px; flex-wrap:wrap; }
.legal-tab { font-size:13px; font-weight:700; padding:9px 18px; border-radius:20px;
  border:1.5px solid var(--border); color:var(--mid); text-decoration:none; }
.legal-tab.active, .legal-tab:hover { background:var(--yellow); color:#000; border-color:var(--yellow); }

.legal { max-width:820px; margin:0 auto; padding:34px 24px 70px; }
.legal p { color:#ddd; margin-bottom:14px; font-size:15px; }
.legal h2 { font-size:19px; margin:30px 0 10px; color:var(--white);
  padding-bottom:6px; border-bottom:1px solid rgba(255,255,255,.10); }
.legal ul { margin:0 0 16px 22px; }
.legal li { color:#ddd; margin-bottom:9px; font-size:15px; }
.legal strong { color:#fff; }
.legal .lead { font-size:16px; color:var(--mid); margin-bottom:24px; }
.legal .note { background:rgba(255,217,61,.07); border-left:3px solid var(--yellow);
  border-radius:10px; padding:14px 18px; font-size:14px; color:var(--mid); margin:22px 0; }

.site-footer { background:#000; border-top:1px solid var(--border); padding:30px 24px; text-align:center; }
.site-footer div { font-size:13px; color:var(--mid); margin-bottom:6px; }
.site-footer a { color:var(--yellow); text-decoration:none; }
@media (max-width:768px){
  .main-header { padding:12px 16px; }
  .legal-hero h1 { font-size:26px; }
  .legal { padding:26px 16px 50px; }
}
