/* ThePokies — landing styles */

:root {
  --bg: #ffffff;
  --text: #2f3037;
  --heading: #16171a;
  --muted: #6b6d76;
  --line: #e6e6e9;
  --line-soft: #f0f0f2;
  --accent: #1f6feb;
  --radius: 14px;
  --maxw: 880px;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.page {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 56px 24px 96px;
}

/* ---------- typography ---------- */

h1, h2, h3 {
  color: var(--heading);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0;
}

h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 36px;
}

h2 {
  font-size: 1.75rem;
  font-weight: 750;
  margin: 44px 0 18px;
}

h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 34px 0 14px;
}

p {
  margin: 0 0 20px;
}

strong {
  color: var(--heading);
  font-weight: 700;
}

ol, ul {
  margin: 0 0 22px;
  padding-left: 26px;
}

li {
  margin-bottom: 8px;
}

li::marker {
  color: var(--muted);
  font-weight: 600;
}

hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 40px 0;
}

/* ---------- banner ---------- */

.banner {
  position: relative;
  margin: 0 0 36px;
}

.banner img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
}

.play-btn {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: inline-block;
  padding: 14px 46px;
  border-radius: 999px;
  background: #ffb400;
  color: #16171a;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .35);
  transition: transform .15s ease, background .15s ease;
}

.play-btn:hover {
  background: #ffc633;
  transform: translateX(-50%) translateY(-2px);
}

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

.table-wrap {
  width: 100%;
  overflow-x: auto;
  margin: 0 0 24px;
  -webkit-overflow-scrolling: touch;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.97rem;
  line-height: 1.6;
}

th, td {
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line-soft);
  vertical-align: top;
}

th {
  color: var(--heading);
  font-weight: 700;
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}

tbody tr:last-child td {
  border-bottom: 1px solid var(--line);
}

table.facts td:first-child {
  color: var(--heading);
  font-weight: 650;
  width: 34%;
  white-space: nowrap;
}

/* ---------- faq ---------- */

.faq .q {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.faq p:not(.q) {
  margin-bottom: 26px;
}

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

@media (max-width: 720px) {
  body { font-size: 17px; }
  .page { padding: 32px 18px 64px; }
  h1 { font-size: 1.9rem; margin-bottom: 26px; }
  h2 { font-size: 1.45rem; }
  h3 { font-size: 1.15rem; }
  .play-btn { bottom: 16px; padding: 11px 34px; font-size: .95rem; }
  th, td { padding: 10px 12px; }
}
