/* PlayReviewers — Gumroad visual DNA · pink coin on a cream sketchbook
   Cream #f4f4f0 canvas · inky black type & buttons · one hot-pink accent #ff90e8
   Type: Inter (ABC Favorit) 400/500/700, negative tracking on display. Flat, hairline borders. */

:root {
  --cream: #f4f4f0;
  --paper: #ffffff;
  --ink: #000000;
  --graphite: #242423;
  --hairline: #d1d5dc;
  --pink: #ff90e8;
  --yellow: #ffc900;
  --lime: #f1f333;
  --vermillion: #dc341e;

  --font: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --r: 4px;
  --r-card: 16px;
  --r-tile: 24px;
  --r-pill: 9999px;
  --container: 1200px;
  --pad-inline: 24px;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--graphite);
  background: var(--cream);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.56;
  letter-spacing: -0.006em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--pink); color: var(--ink); }
h1, h2, h3, h4 { margin: 0; font-family: var(--font); color: var(--ink); font-weight: 700; line-height: 1.05; letter-spacing: -0.02em; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--pad-inline); }
.section { padding-block: 72px; }

.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 500; color: var(--ink); margin: 0 0 18px; }
.eyebrow::before { content: ""; width: 12px; height: 12px; border-radius: 50%; background: var(--pink); }
.eyebrow--yellow::before { background: var(--yellow); }
.eyebrow--lime::before { background: var(--lime); }
.section__head { margin-bottom: 44px; max-width: 720px; }
.section__title { font-size: clamp(34px, 5vw, 52px); font-weight: 700; letter-spacing: -0.022em; line-height: 1.05; }
.section__lede { margin: 20px 0 0; font-size: 19px; color: var(--graphite); line-height: 1.5; max-width: 620px; }

/* buttons */
.btn { display: inline-flex; align-items: center; gap: 8px; border-radius: var(--r); padding: 13px 24px; font-family: var(--font); font-weight: 500; font-size: 16px; letter-spacing: -0.01em; border: 1px solid transparent; transition: transform .15s var(--ease), background .2s var(--ease), color .2s var(--ease); }
.btn--primary { background: var(--ink); color: #fff; }
.btn--primary:hover { transform: translate(-1px, -1px); background: #1a1a1a; }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--hairline); }
.btn--ghost:hover { border-color: var(--ink); }
.btn--pink { background: var(--pink); color: var(--ink); }
.btn--pink:hover { transform: translate(-1px, -1px); }
.btn--lg { padding: 15px 28px; font-size: 17px; }

/* header */
.header { position: sticky; top: 0; z-index: 50; background: rgba(244,244,240,0.88); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-bottom: 1px solid transparent; }
.header.has-scroll { border-bottom-color: var(--hairline); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 70px; gap: 20px; }
.logo { font-family: var(--font); font-weight: 700; font-size: 22px; letter-spacing: -0.03em; color: var(--ink); display: inline-flex; align-items: center; gap: 8px; }
.logo__coin { width: 20px; height: 20px; border-radius: 50%; background: var(--pink); border: 1.5px solid var(--ink); flex: none; }
.logo__accent { color: var(--ink); }
.header__nav { display: flex; align-items: center; gap: 26px; }
.header__links { display: flex; align-items: center; gap: 22px; list-style: none; margin: 0; padding: 0; }
.header__link { font-size: 15px; font-weight: 500; color: var(--graphite); letter-spacing: -0.01em; transition: color .2s ease; }
.header__link:hover { color: var(--ink); }
.header__badge { display: inline-flex; align-items: center; gap: 5px; background: var(--paper); border: 1px solid var(--ink); border-radius: var(--r-pill); padding: 4px 11px; font-size: 13px; font-weight: 500; color: var(--ink); }
.header__badge svg { width: 13px; height: 13px; fill: var(--pink); }
.burger { display: none; width: 42px; height: 42px; border: 1px solid var(--hairline); border-radius: var(--r); background: var(--paper); align-items: center; justify-content: center; }
.burger svg { width: 20px; height: 20px; stroke: var(--ink); }

/* hero */
.hero { padding-block: 60px 72px; position: relative; overflow: hidden; }
.hero__inner { max-width: 900px; }
.hero__badge { display: inline-flex; align-items: center; gap: 7px; background: var(--paper); border: 1px solid var(--ink); border-radius: var(--r-pill); padding: 5px 14px; font-size: 14px; font-weight: 500; color: var(--ink); margin-bottom: 26px; }
.hero__badge svg { width: 14px; height: 14px; fill: var(--pink); }
.hero__title { font-size: clamp(48px, 8.5vw, 96px); font-weight: 700; letter-spacing: -0.028em; line-height: 0.98; color: var(--ink); }
.hero__title mark { background: var(--pink); color: var(--ink); padding: 0 0.08em; border-radius: 4px; box-decoration-break: clone; -webkit-box-decoration-break: clone; }
.hero__lede { margin: 28px 0 0; max-width: 560px; font-size: 20px; color: var(--graphite); line-height: 1.5; }
.hero__actions { margin-top: 34px; display: flex; gap: 12px; flex-wrap: wrap; }
.hero__coins { position: absolute; top: 40px; right: -40px; display: flex; gap: 12px; opacity: .9; pointer-events: none; }
.hero__coin { width: 120px; height: 120px; border-radius: 50%; border: 2px solid var(--ink); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 40px; color: var(--ink); }
.hero__coin:nth-child(1) { background: var(--pink); transform: rotate(-8deg); }
.hero__coin:nth-child(2) { background: var(--yellow); transform: rotate(6deg) translateY(30px); }

/* tiles wall (hero preview / featured) */
.tiles { margin-top: 52px; display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.tiles__item { aspect-ratio: 1; border-radius: var(--r-card); overflow: hidden; border: 1px solid var(--hairline); background: var(--paper); transition: transform .15s var(--ease); }
.tiles__item:hover { transform: translate(-2px, -2px); }
.tiles__item img { width: 100%; height: 100%; object-fit: cover; }

/* games */
.games__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.game { background: var(--paper); border: 1px solid var(--hairline); border-radius: var(--r-card); padding: 20px; display: flex; flex-direction: column; transition: transform .15s var(--ease), border-color .2s var(--ease); }
.game:hover { transform: translate(-2px, -2px); border-color: var(--ink); }
.game__shot { border-radius: 12px; overflow: hidden; border: 1px solid var(--hairline); margin-bottom: 16px; aspect-ratio: 16 / 10; background: var(--cream); }
.game__shot img { width: 100%; height: 100%; object-fit: cover; }
.game__top { display: flex; align-items: center; gap: 13px; margin-bottom: 14px; }
.game__icon { width: 56px; height: 56px; border-radius: 12px; overflow: hidden; flex: none; border: 1px solid var(--hairline); }
.game__icon img { width: 100%; height: 100%; object-fit: cover; }
.game__name { font-family: var(--font); font-size: 18px; font-weight: 700; letter-spacing: -0.015em; color: var(--ink); line-height: 1.15; }
.game__dev { font-size: 13px; color: var(--graphite); margin-top: 2px; }
.game__genre { display: inline-block; font-size: 12px; font-weight: 500; color: var(--ink); background: var(--lime); border-radius: var(--r-pill); padding: 3px 12px; margin-bottom: 14px; align-self: flex-start; }
.game:nth-child(3n+2) .game__genre { background: var(--yellow); }
.game:nth-child(3n) .game__genre { background: var(--pink); }
.game__rating { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.stars { position: relative; display: inline-block; width: 90px; height: 16px; }
.stars__bg, .stars__fg { position: absolute; inset: 0; display: flex; gap: 2px; }
.stars__bg svg { fill: var(--hairline); }
.stars__fg { overflow: hidden; }
.stars__fg svg { fill: var(--ink); }
.stars svg { width: 16px; height: 16px; flex: none; }
.game__rating-num { font-weight: 500; color: var(--ink); font-size: 14px; }
.game__desc { font-size: 15px; line-height: 1.5; color: var(--graphite); margin: 0 0 18px; flex: 1; }
.game__btn { align-self: flex-start; margin-top: auto; }

/* categories (swatch markers) */
.cats__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.cat { display: flex; align-items: center; gap: 14px; background: var(--paper); border: 1px solid var(--hairline); border-radius: var(--r-card); padding: 20px 22px; transition: transform .15s var(--ease), border-color .2s var(--ease); }
.cat:hover { transform: translate(-2px, -2px); border-color: var(--ink); }
.cat__swatch { width: 34px; height: 34px; border-radius: 10px; border: 1.5px solid var(--ink); flex: none; }
.cat:nth-child(6n+1) .cat__swatch { background: var(--pink); }
.cat:nth-child(6n+2) .cat__swatch { background: var(--yellow); }
.cat:nth-child(6n+3) .cat__swatch { background: var(--lime); }
.cat:nth-child(6n+4) .cat__swatch { background: var(--vermillion); }
.cat:nth-child(6n+5) .cat__swatch { background: var(--ink); }
.cat:nth-child(6n) .cat__swatch { background: var(--paper); }
.cat__t { display: block; font-family: var(--font); font-size: 17px; font-weight: 700; color: var(--ink); letter-spacing: -0.015em; }
.cat__c { display: block; font-size: 13px; color: var(--graphite); margin-top: 2px; }

/* stats */
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stat { background: var(--paper); border: 1px solid var(--hairline); border-radius: var(--r-card); padding: 28px 24px; }
.stat__n { font-family: var(--font); font-size: clamp(38px, 4.6vw, 54px); font-weight: 700; letter-spacing: -0.028em; color: var(--ink); line-height: 1; }
.stat__n mark { background: var(--pink); color: var(--ink); padding: 0 0.06em; border-radius: 4px; }
.stat__l { margin: 12px 0 0; font-size: 14px; color: var(--graphite); }

/* method */
.method__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.method { padding: 28px; border: 1px solid var(--hairline); border-radius: var(--r-tile); background: var(--paper); }
.method__ico { width: 46px; height: 46px; border: 1.5px solid var(--ink); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; background: var(--pink); }
.method__ico svg { width: 22px; height: 22px; stroke: var(--ink); fill: none; }
.method:nth-child(2) .method__ico { background: var(--yellow); }
.method:nth-child(3) .method__ico { background: var(--lime); }
.method__h { font-family: var(--font); font-size: 22px; font-weight: 700; letter-spacing: -0.018em; color: var(--ink); margin: 0 0 9px; }
.method__p { margin: 0; font-size: 15px; color: var(--graphite); line-height: 1.55; }

/* how we earn */
.earn__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.earn { background: var(--paper); border: 1px solid var(--hairline); border-radius: var(--r-card); padding: 28px; }
.earn__n { font-family: var(--font); font-size: 15px; font-weight: 700; color: var(--ink); background: var(--pink); display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 50%; border: 1.5px solid var(--ink); }
.earn:nth-child(2) .earn__n { background: var(--yellow); }
.earn:nth-child(3) .earn__n { background: var(--lime); }
.earn__h { font-family: var(--font); font-size: 20px; font-weight: 700; color: var(--ink); margin: 16px 0 8px; letter-spacing: -0.015em; }
.earn__p { font-size: 15px; color: var(--graphite); line-height: 1.55; margin: 0; }
.earn__actions { margin-top: 34px; }

/* reviews */
.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review { border: 1px solid var(--hairline); border-radius: var(--r-tile); padding: 28px; background: var(--paper); display: flex; flex-direction: column; gap: 18px; }
.review--pink { background: var(--pink); border-color: var(--ink); }
.review__stars { display: flex; gap: 3px; }
.review__stars svg { width: 16px; height: 16px; fill: var(--ink); }
.review__quote { font-family: var(--font); font-size: 19px; font-weight: 500; line-height: 1.35; color: var(--ink); letter-spacing: -0.015em; margin: 0; flex: 1; }
.review__who { display: flex; align-items: center; gap: 12px; }
.review__ava { width: 42px; height: 42px; border-radius: 50%; background: var(--ink); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 15px; }
.review--pink .review__ava { background: var(--paper); color: var(--ink); border: 1.5px solid var(--ink); }
.review__name { font-weight: 700; color: var(--ink); font-size: 15px; }
.review__role { font-size: 13px; color: var(--graphite); }

/* spotlight */
.spotlight { background: var(--ink); border-radius: var(--r-tile); padding: 44px; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.spotlight__tag { display: inline-flex; align-items: center; gap: 7px; background: var(--pink); color: var(--ink); border-radius: var(--r-pill); padding: 5px 14px; font-size: 13px; font-weight: 700; margin-bottom: 20px; }
.spotlight__h { font-family: var(--font); font-size: clamp(30px, 4vw, 44px); font-weight: 700; color: #fff; letter-spacing: -0.02em; line-height: 1.05; margin: 0 0 16px; }
.spotlight__p { font-size: 16px; color: #cfcfce; line-height: 1.55; margin: 0 0 26px; }
.spotlight__media { border-radius: var(--r-card); overflow: hidden; border: 1px solid #333; aspect-ratio: 16 / 11; }
.spotlight__media img { width: 100%; height: 100%; object-fit: cover; }

/* steps */
.steps__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step { padding: 28px; border: 1px solid var(--hairline); border-radius: var(--r-card); background: var(--paper); }
.step__n { width: 40px; height: 40px; border-radius: 12px; background: var(--ink); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--font); font-weight: 700; font-size: 18px; margin-bottom: 18px; }
.step__h { font-family: var(--font); font-size: 20px; font-weight: 700; letter-spacing: -0.015em; color: var(--ink); margin: 0 0 8px; }
.step__p { margin: 0; font-size: 15px; color: var(--graphite); line-height: 1.55; }

/* subscribe */
.subscribe__wrap { max-width: 620px; margin-inline: auto; text-align: center; border: 1px solid var(--ink); border-radius: var(--r-tile); padding: 48px 44px; background: var(--paper); }
.subform { margin-top: 28px; text-align: left; }
.subform__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.subform__field { margin-bottom: 14px; }
.subform__field--full { grid-column: 1 / -1; }
.subform label { display: block; font-size: 14px; font-weight: 500; color: var(--ink); margin-bottom: 7px; }
.subform input[type="text"], .subform input[type="tel"], .subform input[type="email"] { width: 100%; padding: 13px 15px; border: 1px solid var(--hairline); border-radius: var(--r); background: var(--cream); font-family: var(--font); font-size: 16px; color: var(--ink); transition: border-color .2s ease; }
.subform input:focus { outline: none; border-color: var(--ink); }
.subform__consent { display: flex; gap: 10px; align-items: flex-start; margin: 6px 0 20px; }
.subform__consent input { margin-top: 3px; width: 17px; height: 17px; accent-color: var(--ink); flex: none; }
.subform__consent label { margin: 0; font-size: 13px; color: var(--graphite); line-height: 1.45; }
.subform__consent a { color: var(--ink); text-decoration: underline; }
.subform__submit { width: 100%; justify-content: center; }
.subform__success { display: none; margin-top: 18px; padding: 15px 18px; border: 1.5px solid var(--ink); border-radius: var(--r); color: var(--ink); font-size: 15px; background: var(--pink); }
.subform__success.is-visible { display: block; }

/* FAQ */
.faq__list { width: 100%; border-top: 2px solid var(--ink); }
.faq__item { border-bottom: 1px solid var(--hairline); }
.faq__q { width: 100%; text-align: left; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 0; background: none; border: none; font-family: var(--font); font-size: 20px; font-weight: 700; color: var(--ink); letter-spacing: -0.015em; }
.faq__q svg { width: 20px; height: 20px; flex: none; stroke: var(--ink); transition: transform .3s var(--ease); }
.faq__item.is-open .faq__q svg { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq__a-inner { padding-bottom: 24px; font-size: 16px; color: var(--graphite); line-height: 1.6; max-width: 860px; }

/* footer */
.footer { background: var(--paper); border-top: 1px solid var(--hairline); padding-block: 56px 36px; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; }
.footer__tagline { margin: 16px 0 0; font-size: 15px; color: var(--graphite); max-width: 320px; line-height: 1.55; }
.footer__col h4 { font-size: 13px; letter-spacing: -0.01em; color: var(--ink); margin: 0 0 16px; font-weight: 700; }
.footer__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.footer__col a { font-size: 15px; color: var(--graphite); transition: color .2s ease; }
.footer__col a:hover { color: var(--ink); }
.footer__bottom { margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--hairline); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer__copy { font-size: 13px; color: var(--graphite); }
.footer__contact { font-size: 13px; color: var(--graphite); }
.footer__contact a { color: var(--ink); font-weight: 500; }

/* back to top */
.totop { position: fixed; right: 22px; bottom: 22px; z-index: 40; width: 46px; height: 46px; border-radius: 12px; background: var(--pink); border: 1.5px solid var(--ink); display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transform: translateY(10px); transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s; }
.totop.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.totop:hover { transform: translate(-1px, -3px); }
.totop svg { width: 19px; height: 19px; stroke: var(--ink); fill: none; }

/* cookie */
.cookie { position: fixed; left: 22px; right: 22px; bottom: 22px; z-index: 60; max-width: 560px; margin-inline: auto; background: var(--paper); border: 1.5px solid var(--ink); border-radius: var(--r-card); padding: 22px 24px; display: none; }
.cookie.is-visible { display: block; }
.cookie__text { font-size: 14px; line-height: 1.5; margin: 0 0 15px; color: var(--graphite); }
.cookie__text a { color: var(--ink); text-decoration: underline; }
.cookie__actions { display: flex; gap: 10px; }

/* legal */
.legal { padding-block: 56px 80px; }
.legal__head { max-width: 820px; margin: 0 auto 36px; }
.legal__updated { font-size: 13px; color: var(--graphite); margin: 0 0 20px; }
.legal__body { max-width: 820px; margin-inline: auto; }
.legal__body h2 { font-size: 27px; font-weight: 700; margin: 40px 0 12px; letter-spacing: -0.018em; }
.legal__body h3 { font-size: 19px; font-weight: 700; margin: 24px 0 10px; color: var(--ink); }
.legal__body p, .legal__body li { font-size: 16px; color: var(--graphite); line-height: 1.65; }
.legal__body ul { padding-left: 22px; }
.legal__body a { color: var(--ink); text-decoration: underline; }
.legal__body strong { color: var(--ink); }
.backhome { margin-top: 8px; }

/* responsive */
@media (max-width: 1024px) {
  .stats__grid, .tiles { grid-template-columns: repeat(3, 1fr); }
  .spotlight { grid-template-columns: 1fr; gap: 28px; }
  .hero__coins { display: none; }
}
@media (max-width: 860px) {
  .games__grid, .method__grid, .earn__grid, .reviews__grid, .steps__grid, .cats__grid { grid-template-columns: repeat(2, 1fr); }
  .header__links, .header__badge { display: none; }
  .burger { display: flex; }
  .header__nav.is-open { position: fixed; inset: 70px 0 auto; display: flex; flex-direction: column; align-items: flex-start; gap: 4px; background: var(--cream); border-bottom: 1px solid var(--hairline); padding: 18px var(--pad-inline) 26px; }
  .header__nav.is-open .header__links { display: grid; gap: 4px; }
  .header__nav.is-open .header__link { padding: 12px 0; font-size: 17px; }
  .header__nav.is-open .header__cta { margin-top: 12px; }
}
@media (max-width: 560px) {
  .section { padding-block: 52px; }
  .games__grid, .method__grid, .earn__grid, .reviews__grid, .steps__grid, .cats__grid, .stats__grid, .subform__row, .tiles { grid-template-columns: 1fr; }
  .tiles { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 1fr; gap: 30px; }
  .subscribe__wrap { padding: 34px 24px; }
  .spotlight { padding: 28px; }
}
@media (prefers-reduced-motion: reduce) { * { scroll-behavior: auto !important; transition: none !important; animation: none !important; } }
