/* Chef Husky landing — "Warung Neon"
   Palette, type and structure follow design/Style.dc.html.
   Mobile-first; everything under @media (min-width: 900px) is the desktop layer. */

/* ---------------------------------------------------------------- tokens */

:root {
  --ground: #17100e;
  --glow:
    radial-gradient(120% 34% at 50% -4%, rgba(226, 69, 47, 0.34), rgba(226, 69, 47, 0) 62%),
    repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.014) 0 2px, rgba(255, 255, 255, 0) 2px 7px);

  --card: #221610;
  --raised: #2c1c15;

  --line: #3b271e;
  --line-hi: #4a2e22;
  --line-gold: #6a4522;

  --ink: #f8f2ea;
  --ink-2: #cbbcae;
  --ink-3: #9b8b7e;
  --ink-4: #7c6d62;
  --ink-5: #6f6158;

  --gold: #f5b13f;
  --gold-hi: #ffcb74;
  --teal: #35bda3;
  --lantern: #e2452f;
  --caption: #b8895a;

  --cta: linear-gradient(180deg, #ffc766, #e89a1e);
  --cta-ink: #1c1206;
  --cta-glow: 0 10px 24px rgba(232, 154, 30, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.45);

  --display: "Archivo", system-ui, sans-serif;
  --body: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, monospace;

  --shell: 560px;
  --gutter: 18px;
  --gap: 40px;
}

/* ------------------------------------------------------------------ base */

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

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

body {
  margin: 0;
  background: var(--ground);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* room for the sticky action bar */
  padding-bottom: 84px;
}

img {
  max-width: 100%;
}

a {
  color: var(--gold);
  text-decoration: none;
}

a:hover {
  color: var(--gold-hi);
}

:focus-visible {
  outline: 2px solid var(--gold-hi);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 20;
  padding: 10px 16px;
  border-radius: 0 0 12px 0;
  background: var(--gold);
  color: var(--cta-ink);
  font-size: 14px;
  font-weight: 700;
}

.skip-link:focus {
  left: 0;
  color: var(--cta-ink);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

/* --------------------------------------------------------------- shell */

.page {
  min-height: 100vh;
  background: var(--glow), var(--ground);
}

.shell {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  margin-top: var(--gap);
}

.disp {
  font-family: var(--display);
  font-variation-settings: "wdth" 112;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0;
}

.lbl {
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-4);
}

.section__title {
  font-size: 25px;
  line-height: 1.1;
}

.section__lede {
  margin: 5px 0 0;
  font-size: 13px;
  color: var(--ink-3);
}

.card {
  border-radius: 16px;
  background: var(--card);
  border: 1px solid var(--line);
}

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

.masthead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 9px;
}

/* Swap `.brand__mark` for the operator logo once there is one. */
.brand__mark {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: var(--raised);
  border: 1px solid var(--line-hi);
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-size: 9px;
  color: var(--ink-4);
}

.brand__name {
  font-size: 12px;
  color: var(--ink-3);
}

.langswitch {
  display: flex;
  gap: 3px;
  padding: 3px;
  border-radius: 999px;
  background: var(--card);
  border: 1px solid var(--line);
}

.langswitch__opt {
  padding: 6px 13px;
  border: none;
  border-radius: 999px;
  font-family: var(--body);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  background: transparent;
  color: var(--ink-3);
  transition: background-color 0.15s ease, color 0.15s ease;
}

a.langswitch__opt:hover {
  background: rgba(245, 177, 63, 0.14);
  color: var(--gold-hi);
}

.langswitch__opt[aria-current="true"] {
  background: var(--gold);
  color: var(--cta-ink);
}

/* ---------------------------------------------------------------- hero */

.hero {
  padding-top: 8px;
}

.hero__badge {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(53, 189, 163, 0.1);
  border: 1px solid rgba(53, 189, 163, 0.3);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
}

.hero__title {
  margin-top: 14px;
  font-size: 42px;
  line-height: 0.98;
  text-wrap: balance;
}

.hero__sub {
  margin: 13px 0 0;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-2);
  text-wrap: pretty;
}

.hero__art {
  position: relative;
  margin-top: 18px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--card);
}

.hero__art img {
  display: block;
  width: 100%;
  height: auto;
}

.hero__art::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 96px;
  background: linear-gradient(180deg, rgba(23, 16, 14, 0), rgba(23, 16, 14, 0.92));
  pointer-events: none;
}

.hero__stamps {
  position: absolute;
  left: 14px;
  bottom: 12px;
  z-index: 1;
  display: flex;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero__stamps li {
  padding: 5px 9px;
  border-radius: 7px;
  background: rgba(23, 16, 14, 0.72);
  border: 1px solid var(--line-hi);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
}

.hero__actions {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

/* Desktop-only trust row; on mobile the same claims ride the key art. */
.hero__trust {
  display: none;
}

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

.btn {
  display: block;
  padding: 18px 20px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  transition: filter 0.15s ease, border-color 0.15s ease;
}

.btn--primary {
  background: var(--cta);
  color: var(--cta-ink);
  box-shadow: var(--cta-glow);
}

.btn--primary:hover {
  filter: brightness(1.05);
  color: var(--cta-ink);
}

.btn--ghost {
  padding: 16px 20px;
  background: var(--card);
  border: 1px solid var(--line-hi);
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
}

.btn--ghost:hover {
  border-color: #6b4634;
  color: var(--ink);
}

.btn--outline {
  padding: 14px;
  border-radius: 12px;
  border: 1px solid var(--line-gold);
  color: var(--gold);
  font-size: 14px;
}

.btn--outline:hover {
  background: rgba(245, 177, 63, 0.08);
  color: var(--gold-hi);
}

.btn--sm {
  padding: 15px;
  border-radius: 12px;
  font-size: 15px;
}

/* ---------------------------------------------------------------- specs */

.specs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 14px;
}

.spec {
  padding: 13px 12px 14px;
}

.spec__val {
  margin-top: 5px;
  font-size: 17px;
}

.spec__val--accent {
  color: var(--teal);
}

.note {
  margin: 10px 0 0;
  font-size: 11.5px;
  line-height: 1.6;
  color: var(--ink-4);
}

/* -------------------------------------------------------------- features */

.features {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.feature {
  display: flex;
  gap: 13px;
  padding: 15px;
}

.feature__icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: rgba(245, 177, 63, 0.1);
  border: 1px solid rgba(245, 177, 63, 0.28);
}

.feature__icon--teal {
  background: rgba(53, 189, 163, 0.1);
  border-color: rgba(53, 189, 163, 0.28);
}

.feature__icon--lantern {
  background: rgba(226, 69, 47, 0.1);
  border-color: rgba(226, 69, 47, 0.3);
}

.feature__title {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
}

.feature__body {
  margin: 5px 0 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-3);
  text-wrap: pretty;
}

/* ------------------------------------------------------------ screenshots */

.shots {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 13px;
}

.shot {
  margin: 0;
  border-radius: 13px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--card);
}

.shot img {
  display: block;
  width: 100%;
  /* `height: auto` is required: the intrinsic-size attributes on the <img>
     are presentational hints that would otherwise beat `aspect-ratio`. */
  height: auto;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  object-position: 50% 40%;
}

.shot figcaption {
  padding: 7px 9px;
  color: var(--caption);
}

/* --------------------------------------------------------------- casinos */

.casinos {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.casino {
  padding: 15px;
}

/* the promoted #1 row */
.casino--top {
  position: relative;
  padding: 22px 15px 15px;
  border-radius: 18px;
  border-color: var(--line-gold);
  box-shadow: 0 0 0 1px rgba(245, 177, 63, 0.13), 0 16px 34px rgba(0, 0, 0, 0.42);
}

.casino__ribbon {
  position: absolute;
  top: -10px;
  left: 15px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--cta);
  color: var(--cta-ink);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.casino__id {
  display: flex;
  align-items: center;
  gap: 11px;
}

.casino__rank {
  width: 22px;
  flex-shrink: 0;
  text-align: center;
  font-family: var(--display);
  font-weight: 800;
  font-size: 15px;
  color: var(--ink-5);
}

/* Swap `.casino__logo` for the operator logo once there is one. */
.casino__logo {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 10px;
  background: var(--raised);
  border: 1px solid var(--line-hi);
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-size: 8.5px;
  color: var(--ink-4);
}

.casino--top .casino__logo {
  width: 44px;
  height: 44px;
  border-radius: 11px;
}

.casino__name {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
}

.casino--top .casino__name {
  font-size: 17px;
}

/* PLACEHOLDER slot: real bonus terms go here, from the affiliate dashboard */
.casino__offer {
  display: inline-block;
  margin-top: 4px;
  padding: 5px 9px;
  border-radius: 7px;
  border: 1px dashed var(--line-hi);
  font-size: 11px;
  color: var(--ink-4);
}

.casino--top .casino__offer {
  border-color: var(--line-gold);
  color: var(--ink-3);
}

.casino__fields {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin: 11px 0 0;
  padding: 0;
  list-style: none;
}

.casino__fields li {
  padding: 5px 9px;
  border-radius: 999px;
  border: 1px dashed var(--line-hi);
  font-size: 10px;
  color: var(--ink-4);
}

.casino__action {
  margin-top: 12px;
}

.casino--top .casino__action {
  margin-top: 13px;
}

.casino__terms {
  margin: 7px 0 0;
  font-size: 10px;
  color: var(--ink-5);
  text-align: center;
}

/* -------------------------------------------------------------- payments */

.payments {
  margin-top: var(--gap);
  padding: 18px;
  border-radius: 18px;
  background: var(--card);
  border: 1px solid var(--line);
}

.payments__title {
  font-size: 21px;
}

.payments__lede {
  margin: 6px 0 13px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-3);
}

.payments__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.payments__grid li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 12px;
  border-radius: 11px;
  background: var(--ground);
  border: 1px solid var(--line);
}

.payments__name {
  font-size: 13.5px;
  font-weight: 700;
}

.payments__note {
  font-size: 10.5px;
  color: var(--ink-4);
}

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

.faq {
  display: grid;
  gap: 7px;
  margin-top: 14px;
  align-items: start;
}

.faq details {
  padding: 14px 15px;
}

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  cursor: pointer;
  list-style: none;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::marker {
  content: "";
}

.faq summary svg {
  flex-shrink: 0;
  transition: transform 0.18s ease;
}

.faq details[open] summary svg {
  transform: rotate(180deg);
}

.faq p {
  margin: 9px 0 0;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ink-3);
  text-wrap: pretty;
}

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

.footer {
  margin-top: 36px;
  padding-top: 18px;
  padding-bottom: 28px;
  border-top: 1px solid var(--raised);
}

.footer__row {
  display: flex;
  align-items: flex-start;
  gap: 11px;
}

.footer__age {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 2px solid #57392a;
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 800;
  font-size: 13px;
  color: var(--ink-3);
}

.footer__responsible {
  margin: 0;
  font-size: 11.5px;
  line-height: 1.65;
  color: var(--ink-4);
  text-wrap: pretty;
}

.footer__disclaimer {
  margin: 14px 0 0;
  font-size: 10.5px;
  line-height: 1.6;
  color: var(--ink-5);
}

/* ----------------------------------------------------------- sticky bar */

.stickybar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 15;
  padding: 11px 18px calc(16px + env(safe-area-inset-bottom, 0px));
  background: linear-gradient(180deg, rgba(23, 16, 14, 0), rgba(23, 16, 14, 0.94) 26%);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transform: translateY(120%);
  transition: transform 0.24s ease;
}

/* revealed by lang.js once the hero CTA has scrolled out of view */
.stickybar.is-shown {
  transform: translateY(0);
}

/* with no JS, show it rather than hiding it forever */
.no-js .stickybar {
  transform: translateY(0);
}

.stickybar__inner {
  display: flex;
  align-items: center;
  gap: 11px;
  max-width: calc(var(--shell) - var(--gutter) * 2);
  margin: 0 auto;
  padding: 9px 10px 9px 14px;
  border-radius: 16px;
  background: rgba(34, 22, 16, 0.94);
  border: 1px solid var(--line-hi);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.stickybar__copy {
  flex: 1;
  min-width: 0;
}

.stickybar__title {
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.stickybar__note {
  font-size: 10.5px;
  color: var(--ink-4);
}

.stickybar__cta {
  flex-shrink: 0;
  padding: 13px 18px;
  border-radius: 12px;
  background: var(--cta);
  color: var(--cta-ink);
  font-size: 14px;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.stickybar__cta:hover {
  color: var(--cta-ink);
  filter: brightness(1.05);
}

/* ================================================================ desktop */

@media (min-width: 900px) {
  :root {
    --shell: 1180px;
    --gutter: 32px;
    --gap: 64px;
  }

  body {
    padding-bottom: 0;
  }

  .stickybar {
    display: none;
  }

  .masthead {
    padding: 22px 0;
  }

  .langswitch__opt {
    padding: 7px 14px;
  }

  .section__title {
    font-size: 34px;
  }

  .section__lede {
    margin-top: 7px;
    font-size: 14px;
  }

  /* hero: copy left, key art right */
  .hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 440px;
    align-items: center;
    gap: 60px;
    padding: 40px 0 56px;
  }

  .hero__badge {
    justify-self: start;
    padding: 7px 13px;
  }

  .hero__title {
    font-size: 68px;
    line-height: 0.95;
    margin-top: 20px;
  }

  .hero__sub {
    margin-top: 20px;
    max-width: 46ch;
    font-size: 19px;
  }

  .hero__art {
    grid-row: 1 / span 5;
    grid-column: 2;
    align-self: stretch;
    margin-top: 0;
    display: grid;
    place-items: center;
    padding: 30px;
    min-height: 520px;
    border-radius: 22px;
    background: #1d130f;
  }

  .hero__art::after,
  .hero__stamps {
    display: none;
  }

  .hero__art img {
    width: auto;
    max-height: 460px;
    border-radius: 12px;
    box-shadow: 0 20px 46px rgba(0, 0, 0, 0.5);
  }

  .hero__actions {
    grid-template-columns: repeat(2, minmax(0, max-content));
    justify-content: start;
    gap: 12px;
    margin-top: 32px;
  }

  .hero__actions .btn {
    padding-left: 34px;
    padding-right: 34px;
  }

  .hero__actions .btn--ghost {
    padding-top: 18px;
    padding-bottom: 18px;
    font-size: 16px;
  }

  .hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    margin: 26px 0 0;
    padding: 0;
    list-style: none;
  }

  .hero__trust li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    color: var(--ink-3);
  }

  .specs {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
    margin-top: 22px;
  }

  .spec {
    padding: 16px 18px;
  }

  .spec__val {
    margin-top: 6px;
    font-size: 22px;
  }

  .note {
    font-size: 12.5px;
  }

  .features {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 22px;
  }

  .feature {
    flex-direction: column;
    padding: 22px;
    gap: 16px;
  }

  .feature__title {
    font-size: 17px;
  }

  .feature__body {
    font-size: 14px;
  }

  .shots {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 22px;
  }

  .shot figcaption {
    padding: 9px 11px;
  }

  .casinos {
    gap: 14px;
    margin-top: 26px;
  }

  .casino {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    align-items: center;
    column-gap: 36px;
    padding: 20px 24px;
  }

  .casino--top {
    padding: 24px;
  }

  .casino__ribbon {
    left: 24px;
    padding: 4px 11px;
    font-size: 10px;
  }

  .casino__id {
    grid-row: 1;
    grid-column: 1;
    gap: 16px;
  }

  .casino__rank {
    width: 26px;
    font-size: 17px;
  }

  .casino__logo {
    width: 48px;
    height: 48px;
    border-radius: 12px;
  }

  .casino--top .casino__logo {
    width: 52px;
    height: 52px;
    border-radius: 13px;
  }

  .casino__name {
    font-size: 18px;
  }

  .casino--top .casino__name {
    font-size: 20px;
  }

  .casino__fields {
    grid-row: 2;
    grid-column: 1;
    margin-top: 10px;
    padding-left: 42px;
  }

  .casino__action,
  .casino--top .casino__action {
    grid-row: 1 / -1;
    grid-column: 2;
    margin-top: 0;
  }

  .casino__terms {
    font-size: 10.5px;
  }

  .payments {
    padding: 32px;
  }

  .payments__title {
    font-size: 26px;
  }

  .payments__lede {
    margin-bottom: 20px;
    font-size: 15px;
  }

  .payments__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
  }

  .payments__grid li {
    padding: 16px;
  }

  .payments__name {
    font-size: 15px;
  }

  .faq {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 22px;
  }

  .faq details {
    padding: 18px 20px;
  }

  .faq summary {
    font-size: 15px;
  }

  .faq p {
    font-size: 14px;
  }

  .footer {
    margin-top: 56px;
    padding-bottom: 56px;
  }

  .footer__responsible {
    max-width: 90ch;
    font-size: 12px;
  }
}

/* ------------------------------------------------------- prose & tables */

.prose {
  margin: 12px 0 0;
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--ink-2);
  text-wrap: pretty;
}

.prose strong {
  color: var(--ink);
  font-weight: 700;
}

.rules {
  margin: 14px 0 0;
  padding: 13px 15px;
  border-left: 2px solid var(--gold);
  border-radius: 0 12px 12px 0;
  background: var(--card);
  font-family: var(--mono);
  font-size: 11.5px;
  line-height: 1.7;
  color: var(--ink-2);
}

.rules span {
  display: block;
  margin-top: 7px;
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-5);
}

.steps {
  margin: 14px 0 0;
  padding: 0 0 0 20px;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ink-2);
}

.steps li {
  margin-top: 8px;
}

.steps b {
  color: var(--gold-hi);
  font-family: var(--mono);
  font-weight: 600;
}

.tablewrap {
  margin-top: 14px;
  overflow-x: auto;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--card);
  -webkit-overflow-scrolling: touch;
}

.ptable {
  width: 100%;
  min-width: 336px;
  border-collapse: collapse;
  font-size: 11.5px;
}

.ptable caption {
  padding: 12px 12px 0;
  text-align: left;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-4);
}

.ptable th,
.ptable td {
  padding: 9px 7px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.ptable thead th {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-4);
  white-space: nowrap;
}

.ptable tbody th {
  font-weight: 600;
  color: var(--ink);
}

.ptable td {
  font-family: var(--mono);
  color: var(--ink-2);
  white-space: nowrap;
}

.ptable td.x {
  color: var(--gold-hi);
}

.ptable tbody tr:last-child th,
.ptable tbody tr:last-child td {
  border-bottom: 0;
}

.ptable--text {
  min-width: 300px;
}

.ptable--text td {
  white-space: normal;
  font-family: var(--body);
  line-height: 1.5;
}

.ptable tr.is-bonus th,
.ptable tr.is-bonus td {
  background: rgba(53, 189, 163, 0.07);
}

@media (min-width: 900px) {
  .prose {
    font-size: 14.5px;
    max-width: 76ch;
  }

  .steps {
    font-size: 14.5px;
  }

  .ptable {
    font-size: 13.5px;
    min-width: 480px;
  }

  .ptable--text {
    min-width: 0;
  }

  .ptable th,
  .ptable td {
    padding: 10px 14px;
  }

  .ptable thead th {
    font-size: 10px;
  }

  .rules {
    font-size: 12.5px;
  }
}

/* -------------------------------------------------------------- branding */

.brand__mark {
  padding: 0;
  overflow: hidden;
}

.brand__mark svg {
  width: 100%;
  height: 100%;
  display: block;
}

.brand__name {
  font-family: var(--display);
  font-variation-settings: "wdth" 112;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.casino__logo--img {
  width: 76px;
  height: 42px;
  border-radius: 10px;
  padding: 6px 8px;
}

.casino--top .casino__logo--img {
  width: 88px;
  height: 46px;
  border-radius: 11px;
}

.casino__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
