/* PlayForFun Social - Static, reviewer-safe CSS */
/* Keep minimal, fast, and predictable. */

:root{
  --bg:#0b0f16;
  --card:#111827;
  --text:#e5e7eb;
  --muted:#9ca3af;
  --border:rgba(229,231,235,.14);
  --link:#c7d2fe;
  --btn:#e5e7eb;
  --btnText:#0b0f16;
  --warnBg:#0f172a;
  --warnBorder:rgba(199,210,254,.35);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  background: radial-gradient(1200px 500px at 30% 0%, rgba(199,210,254,.12), transparent 60%),
              radial-gradient(900px 500px at 80% 10%, rgba(147,197,253,.10), transparent 55%),
              var(--bg);
  color:var(--text);
  line-height:1.55;
}

a{color:var(--link); text-decoration:none}
a:hover{text-decoration:underline}

.container{max-width:1040px; margin:0 auto; padding:24px}
.header{
  display:flex; align-items:center; justify-content:space-between; gap:16px;
  padding:18px 0;
}
.brand{
  display:flex; align-items:center; gap:12px;
}
.logo{
  width:36px; height:36px; border-radius:10px;
  background: linear-gradient(135deg, rgba(199,210,254,.9), rgba(147,197,253,.65));
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}
.brand h1{font-size:16px; margin:0; letter-spacing:.2px}
.brand p{margin:0; color:var(--muted); font-size:12px}

.nav{
  display:flex; flex-wrap:wrap; gap:10px; align-items:center; justify-content:flex-end;
}
.nav a{
  padding:8px 10px; border:1px solid transparent; border-radius:10px; color:var(--text);
  background: rgba(255,255,255,.02);
}
.nav a:hover{border-color:var(--border); text-decoration:none}

.hero{
  display:grid; grid-template-columns: 1.3fr .7fr; gap:18px;
  padding:18px 0 10px;
}
@media (max-width: 880px){
  .hero{grid-template-columns:1fr}
}

.card{
  background: rgba(17,24,39,.72);
  border:1px solid var(--border);
  border-radius:18px;
  padding:18px;
  box-shadow: 0 18px 45px rgba(0,0,0,.35);
}
.card h2{margin:0 0 8px; font-size:22px}
.card p{margin:0 0 10px; color:var(--muted)}
.card ul{margin:10px 0 0; padding-left:18px; color:var(--muted)}
.card li{margin:6px 0}

.compliance{
  background: rgba(15,23,42,.82);
  border:1px solid var(--warnBorder);
  border-radius:16px;
  padding:14px 14px 12px;
}
.compliance strong{display:block; margin-bottom:6px}
.compliance p{margin:0; color:var(--text); opacity:.9; font-size:14px}

.ctaRow{display:flex; flex-wrap:wrap; gap:10px; margin-top:14px}
.button{
  display:inline-block;
  padding:10px 14px;
  border-radius:12px;
  background: var(--btn);
  color: var(--btnText);
  font-weight:700;
  border:1px solid rgba(229,231,235,.15);
}
.button.secondary{
  background: rgba(255,255,255,.04);
  color: var(--text);
  border:1px solid var(--border);
  font-weight:600;
}
.button:hover{text-decoration:none; filter:brightness(1.02)}

.grid3{
  display:grid; grid-template-columns: repeat(3, 1fr); gap:14px; margin:16px 0 0;
}
@media (max-width: 880px){
  .grid3{grid-template-columns:1fr}
}

.small{font-size:13px; color:var(--muted)}
.kbd{
  display:inline-block;
  border:1px solid var(--border);
  padding:2px 8px;
  border-radius:10px;
  background: rgba(255,255,255,.03);
  color: var(--text);
  font-size:12px;
}

.footer{
  margin-top:26px;
  padding:20px 0 14px;
  border-top:1px solid var(--border);
  color:var(--muted);
  font-size:13px;
  display:flex; flex-wrap:wrap; gap:12px; align-items:flex-start; justify-content:space-between;
}
.footer .links{display:flex; flex-wrap:wrap; gap:10px}
.footer a{color:var(--muted)}
.hr{height:1px; background:var(--border); margin:18px 0}

.pageTitle{margin:6px 0 6px; font-size:26px}
.pageSub{margin:0 0 12px; color:var(--muted)}
.notice{
  border:1px solid var(--border);
  border-radius:14px;
  padding:14px;
  background: rgba(255,255,255,.02);
  color:var(--muted);
}
