:root {
  color-scheme: dark;
  --background: #100e17;
  --foreground: #f8f6ff;
  --muted: #b6b0c8;
  --surface: #1a1626;
  --border: #332d45;
  --accent: #b8ff65;
  --purple: #af87ff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 6rem; }
body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font: 1rem/1.7 Arial, Helvetica, sans-serif;
}
a { color: inherit; text-underline-offset: .25em; }
a:hover { color: var(--accent); }
img { display: block; max-width: 100%; height: auto; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.12; letter-spacing: -.035em; }
h2 { font-size: clamp(1.6rem, 2.4vw, 2.3rem); }
h3 { font-size: 1.3rem; line-height: 1.3; }
p { margin-bottom: 1.2rem; }
.shell { width: min(1220px, calc(100% - 64px)); margin-inline: auto; }

.header {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid var(--border);
  background: var(--background);
}
.header-row { min-height: 90px; display: flex; align-items: center; gap: 2rem; }
.brand {
  display: flex;
  align-items: center;
  white-space: nowrap;
  text-decoration: none;
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -.05em;
}
.brand-bet { color: var(--purple); }
.brand-mark { width: 35px; margin-right: 10px; font-size: 1.8rem; font-style: italic; line-height: 1; }
.brand-mark span { color: var(--accent); }
.main-nav { display: flex; gap: 1.8rem; margin: auto; }
.main-nav a, .footer-nav a { color: var(--muted); text-decoration: none; font-size: .92rem; }
.main-nav a:hover { color: white; }

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: .75rem 1.7rem;
  border: 1px solid var(--accent);
  border-radius: 8px;
  background: var(--accent);
  color: #14111d;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  transition: background .15s;
}
.button:hover { background: #d2ff9c; color: #14111d; }
.button.outline { border-color: #6e5a93; background: transparent; color: white; }
.button.outline:hover { background: #302344; }
.button.small { min-height: 42px; gap: 1rem; padding: .5rem 1.2rem; }

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 590px;
  margin-block: 32px 48px;
  padding: clamp(32px, 6vw, 78px);
  overflow: hidden;
  border: 1px solid #403255;
  border-radius: 18px;
  isolation: isolate;
}
.hero-media, .hero-shade { position: absolute; inset: 0; }
.hero-media { z-index: -2; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(16, 14, 23, .98) 0%, rgba(16, 14, 23, .91) 39%, rgba(16, 14, 23, .38) 72%, rgba(16, 14, 23, .16) 100%),
    linear-gradient(0deg, rgba(16, 14, 23, .35), transparent 45%);
}
.hero-copy { width: min(590px, 58%); }
.eyebrow, .label, .section-label {
  color: var(--purple);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.eyebrow { color: var(--muted); }
.dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--accent);
}
.hero h1 {
  margin: 1rem 0;
  color: var(--purple);
  font-size: clamp(3rem, 5.3vw, 4.9rem);
  font-weight: 800;
  letter-spacing: -.06em;
}
.welcome { margin: 1.1rem 0 1.35rem; }
.offer { margin: .35rem 0 .7rem; font-size: 1.5rem; font-weight: 500; line-height: 1.35; }
.offer strong { font-size: 2.7rem; letter-spacing: -.04em; }
.offer span { color: var(--purple); font-size: 1.65rem; font-weight: 700; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; }
.fine { margin-top: .75rem; color: #cbc5d8; font-size: .78rem; }

.breadcrumb { display: flex; flex-wrap: wrap; gap: .6rem; padding: 24px 0; color: var(--muted); font-size: .8rem; }
.breadcrumb a { text-decoration: none; }
.content-layout { display: grid; grid-template-columns: 250px minmax(0, 1fr); gap: 60px; padding-bottom: 65px; }
.content-layout.home-content { display: block; }
.home-content .article { max-width: 850px; margin-inline: auto; }
.toc { position: sticky; top: 25px; align-self: start; padding-top: 18px; border-top: 2px solid var(--purple); }
.toc summary { cursor: pointer; font-weight: 700; }
.toc ol { padding-left: 1.25rem; color: var(--muted); font-size: .86rem; }
.toc li { margin: .6rem 0; }
.toc a { text-decoration: none; }
.article { min-width: 0; max-width: 850px; }
.article > h1 { margin-bottom: 1.6rem; font-size: clamp(2.2rem, 4vw, 3.8rem); }
.article p, .article li { color: #d0cbdc; }
.article h2 { margin: 2.5rem 0 1rem; }
.article h3 { margin: 1.8rem 0 .9rem; }
.article a { color: #c9aaff; }
.article figure { margin: 2rem 0; padding: 12px; border: 1px solid var(--border); border-radius: 10px; background: #171321; }
.article figure img { max-height: 480px; margin: auto; object-fit: contain; }
.article figcaption { padding-top: 12px; color: var(--muted); font-size: .8rem; }
.table-scroll { overflow-x: auto; margin: 1.5rem 0; }
.article table { width: 100%; min-width: 540px; border-collapse: collapse; font-size: .9rem; }
.article th, .article td { padding: 12px; border: 1px solid var(--border); text-align: left; }
.article th { background: #292036; color: white; }
.article td { background: var(--surface); color: #d0cbdc; }
.faq-item { padding: 18px 0; border-top: 1px solid var(--border); }
.faq-item summary { cursor: pointer; font-size: 1.1rem; font-weight: 700; line-height: 1.4; }
.faq-item p { margin: 15px 0 0; }
.article-meta { margin-bottom: 24px; color: var(--muted); font-size: .8rem; }
.inline-promo { margin: 35px 0; padding: 25px; border: 1px solid #594474; border-radius: 12px; background: #231a32; }
.inline-promo strong { display: block; margin-bottom: 15px; font-size: 1.4rem; }
.notice { padding: 18px; border-left: 3px solid var(--purple); background: var(--surface); font-size: .9rem; }
.related { margin-top: 45px; padding: 25px; border-radius: 12px; background: var(--surface); }
.related h2 { margin-top: 0; font-size: 1.4rem; }
.related-links { display: flex; flex-wrap: wrap; gap: 15px; }

.footer { padding: 45px 0 25px; border-top: 1px solid var(--border); background: #0c0a11; }
.footer-top { display: flex; align-items: center; gap: 2rem; }
.footer-top p { margin: 0; color: var(--muted); font-size: .9rem; }
.age { display: grid; width: 44px; height: 44px; margin-left: auto; place-items: center; border: 1px solid #615771; border-radius: 50%; font-weight: 700; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 1.3rem; padding-block: 30px; }
.footer-bottom { padding-top: 20px; border-top: 1px solid var(--border); color: #aaa1bb; font-size: .8rem; }
.footer-bottom p { margin: .4rem 0; }
.footer-bottom a { margin-right: 20px; }
.skip { position: fixed; top: -100px; left: 20px; z-index: 100; padding: 12px; background: var(--accent); color: black; }
.skip:focus { top: 12px; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 5px; }
.not-found { min-height: 50vh; padding-block: 80px; }
.not-found h1 { font-size: 3rem; }

@media (max-width: 960px) {
  .main-nav { gap: 1rem; }
  .header-row { gap: 1rem; }
  .content-layout { grid-template-columns: 210px minmax(0, 1fr); gap: 30px; }
  .brand { font-size: 1.15rem; }
}

@media (max-width: 700px) {
  .shell { width: calc(100% - 32px); }
  .header-row { min-height: 96px; flex-wrap: wrap; justify-content: space-between; gap: 8px; padding-top: 10px; }
  .main-nav { order: 3; width: 100%; gap: 25px; margin: 0; padding: 5px 0 10px; overflow-x: auto; }
  .main-nav a { white-space: nowrap; }
  .hero {
    min-height: 510px;
    margin-block: 16px 30px;
    padding: 20px;
    align-items: flex-start;
  }
  .hero-media img { object-position: 63% center; }
  .hero-shade {
    background:
      linear-gradient(180deg, rgba(16, 14, 23, .98) 0%, rgba(16, 14, 23, .91) 57%, rgba(16, 14, 23, .52) 82%, rgba(16, 14, 23, .27) 100%),
      linear-gradient(90deg, rgba(16, 14, 23, .58), transparent);
  }
  .hero-copy { width: 100%; }
  .hero h1 { margin: .45rem 0 .3rem; font-size: 3rem; }
  .welcome { margin: .55rem 0 .85rem; }
  .offer { margin: .2rem 0 .45rem; font-size: 1.2rem; line-height: 1.25; }
  .offer strong { font-size: 2.1rem; }
  .offer span { font-size: 1.35rem; }
  .hero-copy .actions { margin-top: .1rem; }
  .hero-copy .actions a { flex: 1; min-height: 48px; }
  .fine { margin: .5rem 0 0; }
  .eyebrow { margin-bottom: .2rem; font-size: .72rem; }
  .content-layout { grid-template-columns: 1fr; gap: 24px; }
  .toc { position: static; }
  .toc ol { columns: 2; column-gap: 25px; }
  .toc li { break-inside: avoid; }
  .article > h1 { font-size: 2.35rem; }
  .article h2 { font-size: 1.7rem; }
  .footer-top { flex-wrap: wrap; gap: 15px; }
  .footer-top p { order: 3; width: 100%; }
  .footer-nav { gap: 16px 24px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}

/* Reusable mobile rules; long user-provided text must remain readable. */
body { overflow-wrap: anywhere; }
.header-row { flex-wrap: wrap; }
.main-nav { flex-wrap: wrap; }
.hero h1 { overflow-wrap: anywhere; }
.actions .button { min-height: 48px; min-width: 0; }
.hero .offer { font-weight: 700; font-size: clamp(1.3rem, 3vw, 2rem); }
.article table { display: block; overflow-x: auto; min-width: 0; }
.article th, .article td { min-width: 120px; }
.article figure { max-width: 100%; }
@media (max-width: 700px) {
  .header-row { min-height: 0; padding-block: 12px; }
  .main-nav { flex-wrap: nowrap; gap: 18px; }
  .hero { min-height: 390px; padding: 18px; }
  .hero h1 { font-size: clamp(2rem, 9vw, 3rem); }
  .hero-copy .actions { flex-wrap: nowrap; }
  .hero-copy .button { gap: 8px; padding: 10px 8px; }
  .toc ol { columns: 1; }
}

/* PayAndPlay branding on the retained SEO Site Fast layout. */
:root { --accent: #e6bf72; --purple: #d7b97d; --border: #39303d; }
body { background: #100e17; }
.header-row { min-height: 84px; justify-content: space-between; }
.brand { gap: 11px; font-size: 1.4rem; letter-spacing: -.04em; }
.brand-symbol { display: grid; place-items: center; border: 1px solid #ab8446; border-radius: 10px; width: 40px; height: 44px; color: var(--accent); font-size: 1.9rem; }
.brand-tail { color: var(--accent); }
.brand small { display: block; font-size: .65rem; letter-spacing: .33em; line-height: 1.2; color: var(--muted); }
.main-nav { margin: 0 0 0 auto; gap: 1.1rem; }
.main-nav a { display: inline-flex; min-height: 44px; align-items: center; padding: .3rem .2rem; }
.main-nav a[aria-current="page"] { color: var(--accent); }
.hero { margin-top: 24px; min-height: 540px; }
.hero-copy { width: min(620px,64%); }
.hero h1 { color: #f9f4e9; font-size: clamp(2.7rem,5.3vw,4.5rem); }
.hero .offer { color: var(--accent); font-size: clamp(1.55rem,3vw,2.25rem); margin: 1rem 0 1.25rem; }
.hero-shade { background: linear-gradient(90deg,rgba(16,14,23,.97),rgba(16,14,23,.78) 44%,rgba(16,14,23,.08)); }
.hero .button { min-width: 156px; }
.button { border-radius: 7px; }
.button:hover { background: #f3d59d; }
.button.outline { border-color: #927a54; }
.fine { font-size: .8rem; line-height: 1.65; max-width: 550px; }
.eyebrow { font-size: .8rem; }
.content-layout { grid-template-columns: 235px minmax(0,1fr); gap: 54px; }
.toc { max-height: calc(100vh - 55px); overflow-y: auto; scrollbar-width: thin; }
.toc summary { min-height: 44px; }
.toc ol { font-size: .875rem; padding-left: 1.15rem; }
.toc a { display: inline-block; padding-block: 4px; }
.article a { color: #e2c58e; }
.article section { scroll-margin-top: 24px; }
.article h2 { font-size: clamp(1.6rem,2.4vw,2.1rem); }
.article > p:first-of-type { font-size: 1.07rem; color: #e7e0ec; }
.games-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 14px; margin: 24px 0 36px; }
.game-card { display: block; min-width: 0; border: 1px solid #443545; border-radius: 10px; overflow: hidden; background: #201927; text-decoration: none; transition: border-color .15s,transform .15s; }
.game-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.game-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.game-card span { display: flex; align-items: center; min-height: 48px; padding: 8px 10px; font-size: .875rem; font-weight: 700; color: #f4ece3; }
.article .content-visual,.article .page-visual { padding: 0; overflow: hidden; border-radius: 14px; }
.article .content-visual img,.article .page-visual img { width: 100%; height: auto; max-height: none; object-fit: cover; }
.article .page-visual { margin: 22px 0 26px; }
.page-visual img { aspect-ratio: 16/8; }
.table-scroll { width: 100%; max-width: 100%; border-radius: 8px; }
.article table { display: table; min-width: 520px; }
.article th { background: #312737; }
.article th,.article td { min-width: 100px; padding: 12px 14px; }
.faq-item { padding: 0; border: 1px solid var(--border); border-radius: 9px; margin-bottom: 12px; background: #17131f; }
.faq-item summary { padding: 18px 20px; min-height: 56px; }
.faq-item summary h3 { display: inline; margin: 0; font-size: 1.05rem; line-height: 1.5; }
.faq-answer { padding: 0 20px 18px; }
.faq-answer p { margin: 0; }
.footer-nav a { display: inline-flex; align-items: center; min-height: 44px; }
.footer-company { display: flex; gap: 20px; align-items: center; padding-block: 20px; border-top: 1px solid var(--border); }
.footer-company p { color: var(--muted); font-size: .875rem; margin: 0; max-width: 900px; }
.footer-company .age { margin-left: 0; flex: 0 0 44px; }
.footer-support { display: flex; flex-wrap: wrap; align-items: center; gap: 20px; font-size: .875rem; }
.footer-support a { display: inline-flex; align-items: center; min-height: 44px; }
button,select,input { font: inherit; }
button { cursor: pointer; }
.text-button { color: var(--accent); padding: 10px 0; min-height: 44px; background: transparent; border: 0; text-decoration: underline; }
.cookie-banner { background: #241d2e; border-top: 1px solid #786142; padding: 18px max(16px,calc((100vw - 1220px)/2)); }
.cookie-banner p { font-size: .875rem; line-height: 1.6; margin-bottom: 12px; }
.cookie-banner strong { display: block; font-size: 1rem; color: var(--accent); }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.cookie-actions button { background: #33283e; border: 1px solid #8c7855; border-radius: 6px; padding: 11px 15px; min-height: 44px; color: #fff; font-size: .875rem; }
.cookie-actions button:hover { background: #493953; }
dialog { border: 1px solid #9a8055; border-radius: 14px; padding: 24px; width: min(560px,calc(100% - 28px)); max-height: calc(100vh - 40px); color: #f7f3fb; background: #1c1725; }
dialog::backdrop { background: #000b; }
.dialog-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 14px; font-size: 1.35rem; }
.dialog-close { font-size: 1.7rem; width: 44px; min-height: 44px; flex: 0 0 44px; background: transparent; color: #fff; border: 1px solid var(--border); border-radius: 6px; }
.cookie-toggle { display: flex; gap: 12px; align-items: flex-start; margin: 20px 0; font-size: 1rem; }
.cookie-toggle input { margin-top: 5px; width: 22px; height: 22px; accent-color: var(--accent); }
.size-select { display: flex; gap: 16px; align-items: center; margin: 20px 0; }
.size-select select { padding: 8px; min-height: 44px; border-radius: 5px; }
.cookie-explanation { font-size: .875rem; color: var(--muted); }
html.large-text { font-size: 112.5%; }
@media(max-width:960px) { .content-layout { grid-template-columns: 195px minmax(0,1fr); gap: 26px; } .games-grid { grid-template-columns: repeat(2,minmax(0,1fr)); } }
@media(max-width:700px) {
 .header-row { min-height: 0; padding-block: 12px 2px; gap: 8px; }
 .brand { font-size: 1.2rem; }.brand-symbol { width: 34px; height: 38px; }
 .main-nav { width: 100%; margin: 0; padding: 0 0 4px; gap: 17px; }
 .main-nav a { font-size: .875rem; }
 .hero { margin-block: 14px 22px; min-height: 360px; padding: 22px 18px; }
 .hero-copy { width: 100%; }
 .hero h1 { font-size: clamp(2.1rem,9vw,3rem); margin: .55rem 0 1rem; }
 .hero .offer { font-size: 1.55rem; margin: .6rem 0 1rem; }
 .hero .button { min-width: 0; }
 .hero .fine { font-size: .75rem; line-height: 1.6; }
 .hero-shade { background: linear-gradient(90deg,rgba(16,14,23,.94),rgba(16,14,23,.7)); }
 .hero-media img { object-position: 65% center; }
 .content-layout { grid-template-columns: minmax(0,1fr); gap: 18px; }
 .breadcrumb { padding-block: 16px; }
 .toc { max-height: none; padding-top: 12px; }
 .toc ol { columns: 1; }
 .toc a { padding-block: 8px; }
 .article > h1 { font-size: 2rem; }
 .article table { min-width: 490px; }
 .games-grid { gap: 10px; }
 .game-card span { font-size: .875rem; padding-inline: 8px; }
 .footer-company { align-items: flex-start; }
 .footer-support { gap: 6px 20px; }
 dialog { padding: 18px; }.cookie-actions button { flex: 1 1 140px; }
}

.article a.button { color: #100e17; }
.article a.button.outline { color: #f8f6ff; }
.article a.button.outline:hover { color: #100e17; }

