*{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;
  color:var(--text);
  background:
    radial-gradient(1200px 800px at 18% 14%, rgba(254,103,169,.22), transparent 60%),
    radial-gradient(1100px 760px at 82% 18%, rgba(46,168,255,.18), transparent 64%),
    radial-gradient(900px 700px at 50% 92%, rgba(254,103,169,.12), transparent 70%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
  overflow-x:hidden;
}
main{
  max-width: 980px;
  margin: 0 auto;
  padding: 18px 16px 40px;
}
.header{
  margin: 10px 0 18px;
  padding: 14px 14px;
  border:1px solid var(--stroke);
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  border-radius: var(--r);
  box-shadow: var(--shadow);
}
h1,h2,h3,h4{margin: 16px 0 10px; line-height:1.2}
h1{font-size: 26px}
h2{font-size: 22px}
p,li{color:var(--muted); line-height:1.6; font-size: 15px}
a{color: var(--blue)}
img{
  max-width:100%;
  height:auto;
  display:block;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.10);
  box-shadow: 0 10px 26px rgba(0,0,0,.45);
}
table{
  width:100%;
  border-collapse: collapse;
  table-layout: fixed;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  overflow:hidden;
}
thead tr{
  background: rgba(255,255,255,.06) !important;
}
th, td{
  padding: 10px 10px;
  border-bottom: 1px solid rgba(255,255,255,.10);
  border-right: 1px solid rgba(255,255,255,.08);
  vertical-align: top;
  word-wrap: break-word;
  color: rgba(255,255,255,.86);
  font-weight: 500;
  font-size: 14px;
}
td{font-weight: 450; color: rgba(255,255,255,.80)}
th:last-child, td:last-child{border-right:none}
tbody tr:last-child td{border-bottom:none}
ul{margin: 8px 0 8px 18px}
code{color: rgba(255,255,255,.86)}
/* Make wide tables scroll on small screens */
.table-scroll{
  overflow-x:auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 14px;
}
.table-scroll table{min-width: 720px}
