/* pussy888app.online — hand-written stylesheet.
   Replaces the Tailwind CDN build. No @import, no external fonts, no runtime
   dependency of any kind: one request, cacheable, render-blocking for ~12KB. */

:root {
  --red: #d90429;
  --red-dark: #9d0420;
  --gold: #f2b705;
  --ink: #16181d;
  --body: #3b4149;
  --muted: #6b7280;
  --line: #e3e6ea;
  --bg: #f6f7f9;
  --panel: #fff;
  --black: #0a0a0a;
  --black-2: #16171b;
  --ok: #128a52;
  --bad: #c02626;
  --radius: 10px;
  --wrap: 1120px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    "Noto Sans", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--body);
  background: var(--bg);
  overflow-wrap: break-word;
}

img { max-width: 100%; height: auto; }
svg { width: 1em; height: 1em; fill: currentColor; display: block; }

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

h1, h2, h3 { color: var(--ink); line-height: 1.25; margin: 0 0 .5em; font-weight: 800; letter-spacing: -.01em; }
h1 { font-size: clamp(1.65rem, 4.2vw, 2.5rem); margin-bottom: .35em; }
h2 { font-size: clamp(1.3rem, 2.6vw, 1.7rem); }
h3 { font-size: 1.06rem; font-weight: 700; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

.wrap { width: min(100% - 2rem, var(--wrap)); margin-inline: auto; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--gold); color: #000; padding: .6rem 1rem; font-weight: 700;
}
.skip:focus { left: 0; }

/* ---------- header ---------- */

.topbar {
  background: var(--black);
  border-bottom: 3px solid var(--red);
  position: sticky; top: 0; z-index: 50;
}
.topbar-inner { display: flex; align-items: center; gap: 1rem; min-height: 60px; }

.brand { display: flex; align-items: center; gap: .55rem; color: #fff; flex: 0 0 auto; }
.brand:hover { text-decoration: none; }
.brand img { width: 36px; height: 36px; object-fit: contain; }
.brand-text { font-weight: 800; font-size: 1.15rem; font-style: italic; letter-spacing: -.02em; color: var(--gold); }
.brand-text b { color: var(--red); font-weight: 800; }

.sitenav { display: flex; gap: .25rem; margin-inline-start: auto; flex-wrap: wrap; }
.sitenav a {
  color: #cbd0d8; font-size: .875rem; font-weight: 600;
  padding: .45rem .6rem; border-radius: 6px; white-space: nowrap;
}
.sitenav a:hover { color: #fff; background: #23252b; text-decoration: none; }
.sitenav a[aria-current="page"] { color: var(--gold); background: #23252b; }

.langs { display: flex; gap: .15rem; align-items: center; flex: 0 0 auto; }
.langs a, .langs span {
  font-size: .78rem; font-weight: 700; padding: .3rem .5rem; border-radius: 5px;
  color: #8d939d; border: 1px solid transparent;
}
.langs a:hover { color: #fff; border-color: #3a3d45; text-decoration: none; }
.langs .active { color: var(--gold); border-color: #3a3d45; background: #23252b; }

.nav-toggle {
  display: none; margin-inline-start: auto; background: none; border: 0;
  padding: .5rem; cursor: pointer; flex-direction: column; gap: 4px;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: #fff; }

/* ---------- breadcrumbs ---------- */

.crumbs { padding: .75rem 0 0; font-size: .8rem; color: var(--muted); }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--red); }
.crumbs i { font-style: normal; margin: 0 .45rem; color: #b9bec6; }
.crumbs [aria-current] { color: var(--ink); font-weight: 600; }

/* ---------- main ---------- */

main { padding: 1.5rem 0 3rem; }
main > .wrap:first-child { padding-bottom: .5rem; }

.keyfacts {
  background: linear-gradient(180deg, #fffdf3, #fff);
  border: 1px solid #f0e2ad; border-left: 4px solid var(--gold);
  border-radius: var(--radius); padding: 1rem 1.15rem; margin: 0 0 .5rem;
}
.kf-h {
  font-size: .7rem; text-transform: uppercase; letter-spacing: .09em;
  color: #9a7b06; margin: 0 0 .35rem; font-weight: 800;
}
.keyfacts p { font-size: 1.02rem; color: var(--ink); margin: 0; }

.sect { padding: 1.75rem 0; }
.sect-muted { background: #eef0f3; margin-top: 1rem; }
.sect > .wrap > h2 { scroll-margin-top: 80px; }

/* ---------- buttons ---------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-weight: 700; font-size: .95rem; padding: .8rem 1.4rem; border-radius: 8px;
  border: 0; cursor: pointer; text-align: center;
}
.btn:hover { text-decoration: none; }
.btn-primary { background: linear-gradient(180deg, var(--red), var(--red-dark)); color: #fff; box-shadow: 0 1px 2px rgba(0,0,0,.18); }
.btn-primary:hover { background: var(--red-dark); }
.btn-block { display: flex; width: 100%; }
.cta-row { margin-top: 1.25rem; }

/* ---------- download cards ---------- */

.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1rem; }
.card {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.35rem 1.15rem; text-align: center; display: flex; flex-direction: column;
}
.card-ico {
  width: 46px; height: 46px; margin: 0 auto .7rem; border-radius: 50%;
  background: #fdeaee; color: var(--red); display: grid; place-items: center; font-size: 24px;
}
.card h3 { margin-bottom: .2rem; }
.card-req { font-size: .78rem; color: var(--muted); font-weight: 600; margin-bottom: .6rem; }
.card-desc { font-size: .88rem; margin-bottom: 1.1rem; flex: 1; }
.card-more { display: block; margin-top: .7rem; font-size: .8rem; color: var(--muted); text-decoration: underline; }

/* ---------- lists ---------- */

.ticks { list-style: none; margin: 1rem 0 0; padding: 0; display: grid; gap: .55rem; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.ticks li { display: flex; gap: .6rem; align-items: flex-start; }
.ticks svg { color: var(--ok); font-size: 1.15rem; flex: 0 0 auto; margin-top: .18rem; }

.facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: .1rem 1.5rem; margin: 1rem 0 0; }
.facts > div { display: flex; justify-content: space-between; gap: 1rem; padding: .6rem 0; border-bottom: 1px solid #dfe3e8; }
.facts dt { font-weight: 600; color: var(--ink); font-size: .9rem; }
.facts dd { margin: 0; text-align: right; font-size: .9rem; }

.linkgrid { list-style: none; margin: 1rem 0 0; padding: 0; display: grid; gap: .75rem; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.linkgrid a {
  display: block; background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--radius); padding: .9rem 1rem; color: var(--ink);
}
.linkgrid a:hover { border-color: var(--red); text-decoration: none; }
.linkgrid b { display: block; color: var(--red); margin-bottom: .15rem; }
.linkgrid span { font-size: .85rem; color: var(--muted); }

/* ---------- steps ---------- */

.steps { list-style: none; counter-reset: s; margin: 1.25rem 0 0; padding: 0; display: grid; gap: .9rem; }
.steps li { display: flex; gap: .9rem; background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 1rem 1.1rem; scroll-margin-top: 80px; }
.step-n {
  flex: 0 0 auto; width: 30px; height: 30px; border-radius: 50%;
  background: var(--red); color: #fff; font-weight: 800; font-size: .9rem;
  display: grid; place-items: center;
}
.steps h3 { margin-bottom: .15rem; }
.steps p { font-size: .93rem; margin: 0; }

/* ---------- compare ---------- */

.compare { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1rem; margin-top: 1rem; }
.cmp { border-radius: var(--radius); padding: 1.1rem 1.2rem; border: 1px solid var(--line); background: var(--panel); }
.cmp h3 { margin-bottom: .7rem; }
.cmp ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; }
.cmp li { display: flex; gap: .55rem; align-items: flex-start; font-size: .92rem; }
.cmp svg { flex: 0 0 auto; font-size: 1.1rem; margin-top: .16rem; }
.cmp-good { border-top: 3px solid var(--ok); }
.cmp-good svg { color: var(--ok); }
.cmp-bad { border-top: 3px solid var(--bad); }
.cmp-bad svg { color: var(--bad); }

/* ---------- tables ---------- */

.tablewrap { overflow-x: auto; margin-top: 1rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); }
table { border-collapse: collapse; width: 100%; font-size: .9rem; min-width: 640px; }
th, td { padding: .7rem .8rem; text-align: left; border-bottom: 1px solid var(--line); vertical-align: middle; }
thead th { background: var(--black-2); color: #fff; font-size: .76rem; text-transform: uppercase; letter-spacing: .05em; white-space: nowrap; }
tbody tr:last-child td { border-bottom: 0; }
tbody tr:nth-child(even) { background: #fafbfc; }

.gametable .g-rank { color: var(--muted); font-weight: 700; width: 2.5rem; }
.gametable .g-name span { display: inline-flex; flex-direction: column; }
.gametable .g-name { display: flex; align-items: center; gap: .65rem; }
.gametable .g-name picture { flex: 0 0 auto; display: block; }
.gametable .g-name img { width: 44px; height: 44px; border-radius: 6px; object-fit: cover; display: block; }
.gametable .g-name em { font-style: normal; font-size: .74rem; color: var(--muted); }
.gametable .g-rtp { font-weight: 800; color: var(--ok); white-space: nowrap; }
.gametable .g-win { font-weight: 700; color: var(--ink); white-space: nowrap; }
.gametable .g-lines, .gametable .g-feat { color: var(--muted); }
.datatable td:first-child { font-weight: 600; color: var(--ink); }

.footnote { font-size: .8rem; color: var(--muted); margin-top: .7rem; }

/* ---------- FAQ ---------- */

.faq { display: grid; gap: .6rem; margin-top: 1rem; }
.qa { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.qa summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: .95rem 1.1rem; cursor: pointer; list-style: none;
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary h3 { margin: 0; font-size: .98rem; }
.qa summary svg { color: var(--muted); flex: 0 0 auto; transition: transform .18s ease; font-size: 1.2rem; }
.qa[open] summary svg { transform: rotate(180deg); }
.qa[open] summary { border-bottom: 1px solid var(--line); }
.qa summary:hover h3 { color: var(--red); }
.qa-body { padding: .95rem 1.1rem; font-size: .94rem; }

/* ---------- notice / cta / sources ---------- */

.notice { display: flex; gap: .85rem; background: #fff7e6; border: 1px solid #f0d9a0; border-radius: var(--radius); padding: 1.05rem 1.2rem; }
.notice-ico { color: #b07d05; font-size: 1.3rem; flex: 0 0 auto; margin-top: .1rem; }
.notice h2 { font-size: 1.02rem; margin-bottom: .3rem; }
.notice p { font-size: .92rem; margin: 0; }

.ctabox {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.25rem;
  background: linear-gradient(120deg, var(--black), #24262d); color: #d5d8dd;
  border-radius: var(--radius); padding: 1.6rem 1.7rem; border: 1px solid #2c2f36;
}
.ctabox h2 { color: #fff; margin-bottom: .25rem; }
.ctabox p { font-size: .9rem; margin: 0; max-width: 46ch; }
.ctabox .btn { flex: 0 0 auto; }

.sources { list-style: none; margin: 1rem 0 0; padding: 0; display: grid; gap: .5rem; font-size: .89rem; }
.sources li { padding-inline-start: 1rem; border-inline-start: 3px solid #cfd4da; }

/* ---------- footer ---------- */

/* No margin-top: main already carries the bottom padding, and stacking both
   leaves an obvious gap under the last section. */
.site-footer { background: var(--black); color: #9aa0a9; padding: 2.5rem 0 1.75rem; font-size: .88rem; }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem; }
.foot-about { margin-top: .7rem; max-width: 46ch; font-size: .84rem; }
.foot-h { color: #fff; font-size: .8rem; text-transform: uppercase; letter-spacing: .07em; margin-bottom: .6rem; }
.foot-links { list-style: none; margin: 0; padding: 0; display: grid; gap: .35rem; }
.foot-links a { color: #9aa0a9; }
.foot-links a:hover { color: #fff; }
.foot-warn { margin-top: 2rem; padding-top: 1.25rem; border-top: 1px solid #24262c; font-size: .8rem; }
.age {
  display: inline-block; background: var(--red); color: #fff; font-weight: 800;
  border-radius: 4px; padding: .05rem .4rem; margin-inline-end: .35rem; font-size: .78rem;
}
.foot-copy { font-size: .78rem; color: #6c727b; margin: .6rem 0 0; }

/* ---------- responsive ---------- */

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .sitenav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--black-2); border-bottom: 2px solid var(--red);
    flex-direction: column; gap: 0; padding: .4rem 0;
  }
  .sitenav.open { display: flex; }
  .sitenav a { padding: .7rem 1.25rem; border-radius: 0; }
  .topbar-inner { position: relative; }
  .langs { margin-inline-start: 0; }
  .foot-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .facts dd { text-align: left; }
  .ctabox { padding: 1.3rem; }
}

@media (max-width: 480px) {
  body { font-size: 15.5px; }
  .sect { padding: 1.4rem 0; }
  .brand-text { font-size: 1rem; }
}

@media print {
  .topbar, .site-footer, .btn, .ctabox { display: none; }
  .qa[open] .qa-body, .qa-body { display: block !important; }
}
