:root {
  --ink: #101314;
  --ink-2: #18201e;
  --paper: #f6f8fb;
  --paper-2: #e8eef6;
  --muted: #68717b;
  --line: #d7dde6;
  --green: #11457e;
  --green-2: #1d5fa8;
  --red: #d7141a;
  --red-2: #ef3d42;
  --gold: #d3a321;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(16, 19, 20, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
}

body.is-locked {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

svg {
  width: 1.05rem;
  height: 1.05rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.site-shell {
  min-height: 100vh;
  opacity: 0;
  pointer-events: none;
}

body.age-ok .site-shell {
  opacity: 1;
  pointer-events: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 76px;
  padding: 0.9rem clamp(1rem, 4vw, 3rem);
  background: rgba(247, 243, 234, 0.92);
  border-bottom: 1px solid rgba(222, 212, 191, 0.82);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  min-width: 0;
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  color: var(--paper);
  background: linear-gradient(135deg, var(--green), var(--red));
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand strong {
  font-size: 1.05rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.4rem);
}

.main-nav a {
  position: relative;
  color: var(--ink-2);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.45rem;
  width: 100%;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  padding: 0.65rem;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 46px;
  padding: 0.75rem 1rem;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--primary {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 12px 28px rgba(0, 104, 71, 0.24);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--green-2);
}

.button--secondary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 12px 28px rgba(201, 42, 42, 0.22);
}

.button--secondary:hover,
.button--secondary:focus-visible {
  background: var(--red-2);
}

.button--ghost {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
}

.button--card {
  width: 100%;
  color: var(--ink);
  background: var(--gold);
}

.button--small {
  min-height: 38px;
  padding: 0.55rem 0.8rem;
  font-size: 0.9rem;
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
  align-items: end;
  gap: clamp(1rem, 4vw, 3rem);
  padding: clamp(5rem, 10vh, 8rem) clamp(1rem, 4vw, 3rem) clamp(2rem, 6vh, 4rem);
  overflow: hidden;
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 19, 20, 0.92) 0%, rgba(16, 19, 20, 0.66) 48%, rgba(16, 19, 20, 0.2) 100%),
    linear-gradient(0deg, rgba(16, 19, 20, 0.72), transparent 46%);
  z-index: 1;
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__content,
.hero__panel {
  position: relative;
  z-index: 2;
}

.hero__content {
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 0.7rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 1rem;
  font-size: 5rem;
  line-height: 0.98;
}

h2 {
  margin-bottom: 0.8rem;
  font-size: 3rem;
  line-height: 1.05;
}

h3 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  line-height: 1.2;
}

.hero__lead {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.12rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.6rem 0 1rem;
}

.hero__notice {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.7rem;
  max-width: 700px;
  padding: 0.8rem 0;
  color: rgba(255, 255, 255, 0.82);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.hero__notice strong {
  color: var(--gold);
}

.hero__panel {
  align-self: end;
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(16, 19, 20, 0.58);
  backdrop-filter: blur(12px);
}

.hero__panel div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
}

.hero__panel span {
  color: rgba(255, 255, 255, 0.7);
}

.hero__panel strong {
  color: var(--gold);
  font-size: 1.05rem;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}

.trust-band div {
  min-height: 104px;
  display: grid;
  place-items: center;
  align-content: center;
  padding: 1.2rem 1rem;
  background: var(--white);
  text-align: center;
}

.trust-band strong {
  color: var(--green);
  font-size: 1.55rem;
  line-height: 1;
}

.trust-band span {
  color: var(--muted);
  font-weight: 700;
}

.section {
  padding: clamp(4rem, 9vw, 7rem) clamp(1rem, 4vw, 3rem);
}

.section__heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section__heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

.section--games {
  background: var(--paper);
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.game-card {
  display: grid;
  grid-template-rows: 220px 1fr;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 40px rgba(16, 19, 20, 0.08);
}

.game-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.game-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: 1rem;
}

.game-card__body p {
  color: var(--muted);
  flex: 1;
}

.game-card__tag {
  align-self: flex-start;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.section--split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.72fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: start;
  color: var(--white);
  background: var(--ink);
}

.responsible-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.04rem;
}

.responsible-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.4rem;
}

.responsible-links a {
  padding: 0.72rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: var(--white);
  text-decoration: none;
}

.responsible-links a:hover,
.responsible-links a:focus-visible {
  border-color: var(--gold);
  color: var(--gold);
}

.rules-list {
  display: grid;
  gap: 0.85rem;
}

.rules-list div {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 0.85rem;
  align-items: start;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.rules-list span {
  color: var(--gold);
  font-weight: 900;
}

.rules-list p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
}

.section--faq {
  background: var(--paper-2);
}

.faq-list {
  max-width: 980px;
}

.faq-item {
  width: 100%;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
  font-weight: 900;
  text-align: left;
}

.faq-item svg {
  transition: transform 180ms ease;
}

.faq-item[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.faq-panel {
  display: none;
  padding: 0.3rem 1rem 1.1rem;
  color: var(--muted);
}

.faq-panel.is-open {
  display: block;
}

.section--contact {
  background: var(--paper);
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(320px, 0.8fr);
  gap: clamp(1.2rem, 5vw, 4rem);
  align-items: start;
  padding: clamp(1rem, 4vw, 2rem);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-card a {
  color: var(--green);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 0.9rem;
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  color: var(--ink);
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.8rem;
  color: var(--ink);
  background: #fbf8f1;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(0, 104, 71, 0.18);
  border-color: var(--green);
}

.site-footer {
  color: var(--paper);
  background: var(--ink);
}

.footer-warning {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  color: var(--ink);
  background: var(--gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1rem;
  padding: clamp(2rem, 5vw, 3.5rem) clamp(1rem, 4vw, 3rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid h3 {
  color: var(--gold);
}

.footer-grid p,
.footer-grid a {
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid a {
  display: block;
  margin: 0.4rem 0;
  text-decoration: none;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: var(--white);
}

.copyright {
  margin: 0;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
}

.age-gate,
.access-denied {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 1rem;
  background:
    linear-gradient(rgba(16, 19, 20, 0.76), rgba(16, 19, 20, 0.92)),
    url("../img/gemix.webp") center / cover no-repeat;
}

.age-gate.is-hidden,
.access-denied {
  display: none;
}

.access-denied.is-visible {
  display: grid;
}

.age-gate__panel,
.access-denied__panel {
  width: min(100%, 540px);
  padding: clamp(1.2rem, 5vw, 2.4rem);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  color: var(--white);
  background: rgba(16, 19, 20, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  text-align: center;
}

.age-badge {
  display: inline-grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin-bottom: 1rem;
  border: 3px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-weight: 900;
  font-size: 1.35rem;
}

.age-gate__panel p,
.access-denied__panel p {
  color: rgba(255, 255, 255, 0.78);
}

.age-gate__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow);
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-banner p {
  margin: 0;
}

.cookie-banner a {
  color: var(--green);
  font-weight: 800;
}

.cookie-banner div {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.game-modal {
  position: fixed;
  inset: 3vh 3vw;
  z-index: 300;
  display: none;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: var(--ink);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
}

.game-modal.is-open {
  display: grid;
}

.game-modal__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem;
  color: var(--white);
  background: #111817;
}

.game-modal__bar strong,
.game-modal__bar span {
  display: block;
}

.game-modal__bar span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.88rem;
}

.game-modal iframe {
  width: 100%;
  height: 100%;
  border: 0;
  background: #060606;
}

.icon-button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.page-hero {
  padding: clamp(5rem, 10vw, 7rem) clamp(1rem, 4vw, 3rem) clamp(3rem, 7vw, 5rem);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(16, 19, 20, 0.94), rgba(16, 19, 20, 0.7)),
    url("../img/rise-of-olympus-1000.jpeg") center / cover no-repeat;
}

.page-hero__inner {
  max-width: 820px;
}

.legal-content {
  max-width: 980px;
  padding: clamp(3rem, 7vw, 5rem) clamp(1rem, 4vw, 3rem);
}

.legal-content h2 {
  font-size: 1.7rem;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
}

.legal-content a {
  color: var(--green);
  font-weight: 800;
}

.legal-content section {
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--line);
}

@media (max-width: 980px) {
  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 2.5rem;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero__panel {
    max-width: 520px;
  }

  .game-grid,
  .section--split,
  .contact-card,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  h1 {
    font-size: 3.1rem;
  }

  h2 {
    font-size: 2.1rem;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.6rem clamp(1rem, 4vw, 3rem) 1rem;
    background: rgba(247, 243, 234, 0.98);
    border-bottom: 1px solid var(--line);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 0.75rem 0;
  }

  .hero {
    padding-top: 4rem;
  }

  .hero__actions,
  .age-gate__actions,
  .cookie-banner,
  .cookie-banner div {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .game-card {
    grid-template-rows: 190px 1fr;
  }

  .game-card img {
    height: 190px;
  }

  .game-modal {
    inset: 0;
    border-radius: 0;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: 2.4rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .site-header {
    min-height: 68px;
  }

  .brand small {
    display: none;
  }

  .trust-band {
    grid-template-columns: 1fr;
  }

  .hero__panel div,
  .rules-list div {
    grid-template-columns: 1fr;
  }
}

:root{--primary:#173f5f;--green:#173f5f;--green-2:#3caea3;--danger:#d62828;--red:#d62828;--red-2:#d62828;--gold:#f6d55c;--paper:#f7fbf8;}

body.layout-poster .game-card:nth-child(2){transform:translateY(28px)}body.layout-poster .section--games{background:linear-gradient(180deg,var(--paper),#fff)}
body.layout-split .hero{grid-template-columns:minmax(320px,.85fr) minmax(320px,1fr);align-items:center;color:var(--ink);background:var(--paper)}body.layout-split .hero::before{background:linear-gradient(90deg,rgba(255,255,255,.96),rgba(255,255,255,.82) 48%,rgba(255,255,255,.08))}body.layout-split .hero__media{left:45%;border-left:1px solid rgba(0,0,0,.08)}body.layout-split .hero__lead,body.layout-split .hero__notice{color:var(--muted)}body.layout-split .hero__notice{border-top-color:var(--line)}body.layout-split .game-grid{grid-template-columns:1fr}body.layout-split .game-card{grid-template-columns:260px 1fr;grid-template-rows:auto}body.layout-split .game-card img{height:100%}
body.layout-rail .site-header{left:0;bottom:0;width:240px;height:100vh;position:fixed;align-items:flex-start;justify-content:flex-start;flex-direction:column}body.layout-rail .main-nav{align-items:stretch;flex-direction:column}body.layout-rail .site-shell{padding-left:240px}body.layout-rail .hero{min-height:86vh;grid-template-columns:1fr}body.layout-rail .hero__panel{grid-template-columns:repeat(3,1fr);max-width:720px}body.layout-rail .game-grid{grid-template-columns:1.1fr .9fr .9fr}body.layout-rail .game-card:first-child{grid-row:span 2;grid-template-rows:360px 1fr}body.layout-rail .game-card:first-child img{height:360px}
body.layout-board .hero{min-height:78vh;align-items:center}body.layout-board .trust-band{grid-template-columns:repeat(2,1fr)}body.layout-board .game-grid{background:var(--ink);padding:1rem;border-radius:8px}body.layout-board .game-card{box-shadow:none}
body.layout-editorial .hero{min-height:72vh;grid-template-columns:1fr;color:var(--ink);background:#fff}body.layout-editorial .hero::before{background:linear-gradient(90deg,rgba(255,255,255,.96),rgba(255,255,255,.72)),linear-gradient(0deg,rgba(255,255,255,.82),transparent)}body.layout-editorial .hero__media{inset:0 0 0 50%;clip-path:polygon(12% 0,100% 0,100% 100%,0 100%)}body.layout-editorial .hero__lead,body.layout-editorial .hero__notice{color:var(--muted)}body.layout-editorial .hero__notice{border-top-color:var(--line)}body.layout-editorial .hero__panel{max-width:680px;grid-template-columns:repeat(3,1fr)}body.layout-editorial .game-card{border-top:6px solid var(--gold)}
body.layout-dashboard{background:#eef2f7}body.layout-dashboard .hero{min-height:auto;padding-top:3rem;padding-bottom:3rem;grid-template-columns:1fr 1fr;color:var(--ink);background:var(--paper-2)}body.layout-dashboard .hero::before{background:linear-gradient(90deg,rgba(238,242,247,.98),rgba(238,242,247,.82))}body.layout-dashboard .hero__media{position:relative;inset:auto;z-index:2;border-radius:8px;overflow:hidden;min-height:420px;order:2}body.layout-dashboard .hero__lead,body.layout-dashboard .hero__notice{color:var(--muted)}body.layout-dashboard .hero__notice{border-top-color:var(--line)}body.layout-dashboard .game-card{border-left:6px solid var(--primary)}
body.layout-arena{background:#111827}body.layout-arena .site-header{background:#111827;border-color:rgba(255,255,255,.12)}body.layout-arena .main-nav a,body.layout-arena .brand strong{color:#fff}body.layout-arena .brand small{color:rgba(255,255,255,.62)}body.layout-arena .hero{min-height:92vh}body.layout-arena .game-grid{gap:1.4rem}body.layout-arena .game-card{background:#fff;border:0}body.layout-arena .section--games{background:#f9fafb}body.layout-arena .trust-band div{background:#111827;color:#fff}body.layout-arena .trust-band span{color:rgba(255,255,255,.68)}
body.layout-ledger .hero{min-height:70vh;grid-template-columns:1fr 420px}body.layout-ledger .trust-band{max-width:1180px;margin:2rem auto;border:1px solid var(--line)}body.layout-ledger .game-grid{grid-template-columns:1fr}body.layout-ledger .game-card{grid-template-columns:220px 1fr;grid-template-rows:auto}body.layout-ledger .game-card img{height:100%}body.layout-ledger .game-card__body{display:grid;grid-template-columns:1fr 180px;align-items:center}
body.layout-route .hero{min-height:82vh;grid-template-columns:1fr}body.layout-route .hero__content{max-width:900px;margin:auto;text-align:center}body.layout-route .hero__actions,body.layout-route .hero__notice{justify-content:center}body.layout-route .hero__panel{grid-template-columns:repeat(3,1fr);max-width:760px;margin:auto}body.layout-route .game-grid{grid-template-columns:1fr 1fr}body.layout-route .game-card:first-child{grid-column:1/-1;grid-template-columns:42% 1fr;grid-template-rows:auto}body.layout-route .game-card:first-child img{height:100%}
body.layout-minimal .hero{min-height:68vh;grid-template-columns:1fr 300px;color:var(--ink);background:var(--paper)}body.layout-minimal .hero::before{background:linear-gradient(90deg,rgba(250,250,250,.96),rgba(250,250,250,.76))}body.layout-minimal .hero__lead,body.layout-minimal .hero__notice{color:var(--muted)}body.layout-minimal .hero__notice{border-top-color:var(--line)}body.layout-minimal .hero__panel{background:var(--ink);align-self:center}body.layout-minimal .game-card{box-shadow:none;border:2px solid var(--line)}
@media(max-width:1100px){body.layout-rail .site-header{position:sticky;width:auto;height:auto;flex-direction:row;align-items:center;justify-content:space-between}body.layout-rail .main-nav{flex-direction:row}body.layout-rail .site-shell{padding-left:0}body.layout-dashboard .hero,body.layout-split .hero{grid-template-columns:1fr}body.layout-dashboard .hero__media{order:0}body.layout-split .hero__media{left:0}}@media(max-width:980px){body.layout-split .game-card,body.layout-ledger .game-card,body.layout-route .game-card:first-child{grid-template-columns:1fr;grid-template-rows:220px 1fr}body.layout-split .game-card img,body.layout-ledger .game-card img,body.layout-route .game-card:first-child img{height:220px}body.layout-ledger .game-card__body{display:flex}body.layout-editorial .hero__media{inset:0;clip-path:none}body.layout-editorial .hero::before{background:linear-gradient(90deg,rgba(255,255,255,.96),rgba(255,255,255,.84))}}@media(max-width:760px){body.layout-arena .main-nav a{color:var(--ink)}} 

/* UNIQUE AGE HERO START */

.age-gate__top{display:flex;align-items:center;justify-content:space-between;gap:1rem;margin-bottom:1rem}.age-gate__site{font-weight:900;color:var(--gold);text-transform:uppercase;letter-spacing:.08em;font-size:.78rem}.age-gate__meta{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:.5rem;margin:1rem 0}.age-gate__meta span{padding:.55rem .65rem;border-radius:8px;background:rgba(255,255,255,.1);font-weight:800;font-size:.86rem}.hero-banner{display:grid;gap:.25rem;max-width:720px;margin-top:1rem;padding:.95rem 1rem;border-radius:8px;border:1px solid rgba(255,255,255,.24);background:rgba(255,255,255,.1);backdrop-filter:blur(10px)}.hero-banner strong{color:var(--gold);font-size:1.05rem}.hero-banner span{color:rgba(255,255,255,.82)}
.age-gate--ticket .age-gate__panel{max-width:620px;text-align:left;border:2px dashed var(--gold);background:rgba(16,25,34,.88)}.age-gate--ticket .age-badge{border-radius:8px}.hero-banner--ticket{border-style:dashed;background:linear-gradient(90deg,rgba(255,255,255,.14),rgba(255,255,255,.04))}
.age-gate--wave .age-gate__panel{max-width:760px;text-align:left;border-left:12px solid var(--accent);background:linear-gradient(135deg,rgba(7,59,76,.92),rgba(17,138,178,.64))}.age-gate--wave .age-badge{border-radius:8px 50% 8px 50%}.hero-banner--wave{background:linear-gradient(90deg,rgba(17,138,178,.34),rgba(255,255,255,.08))}
.age-gate--club .age-gate__panel{max-width:560px;text-align:left;background:#fff;color:var(--ink);border-color:var(--primary)}.age-gate--club .age-gate__panel p{color:var(--muted)}.age-gate--club .age-gate__meta span{background:var(--paper-2)}.age-gate--club .button--ghost{background:var(--paper)}.hero-banner--club{background:rgba(0,0,0,.38);border-left:6px solid var(--gold)}
.age-gate--stamp .age-gate__panel{max-width:600px;background:rgba(43,45,66,.9);transform:rotate(-1deg)}.age-gate--stamp .age-badge{transform:rotate(8deg);border-style:dashed}.hero-banner--stamp{transform:rotate(-.4deg);background:rgba(217,4,41,.2)}
.age-gate--gold .age-gate__panel{max-width:640px;text-align:left;background:#fff8df;color:var(--ink);border:2px solid var(--gold)}.age-gate--gold .age-gate__panel p{color:#4a4030}.age-gate--gold .age-gate__meta span{background:#f7e8b6}.hero-banner--gold{background:rgba(214,164,41,.25);border-color:var(--gold)}
.age-gate--console .age-gate__panel{max-width:720px;text-align:left;background:#0b132b;border-color:#3a86ff}.age-gate--console .age-gate__panel::before{content:\"STATUS: 18+ CHECK\";display:block;margin:-.8rem -.8rem 1rem;padding:.65rem .8rem;background:rgba(58,134,255,.22);font-weight:900;letter-spacing:.08em}.hero-banner--console{background:rgba(58,134,255,.18);border-color:rgba(58,134,255,.5)}
.age-gate--arena .age-gate__panel{max-width:620px;background:rgba(17,24,39,.92);border:2px solid var(--danger);box-shadow:0 0 0 8px rgba(225,29,72,.12),var(--shadow)}.age-gate--arena .age-badge{border-color:var(--danger);color:#fff;background:var(--danger)}.hero-banner--arena{background:rgba(17,24,39,.72);border-color:var(--danger)}
.age-gate--ledger .age-gate__panel{max-width:700px;text-align:left;background:#f8fafc;color:var(--ink);border-color:var(--line)}.age-gate--ledger .age-gate__panel p{color:var(--muted)}.age-gate--ledger .age-gate__meta span{background:#e9eef5;border-left:4px solid var(--primary)}.hero-banner--ledger{background:rgba(255,255,255,.18);border-left:8px solid var(--primary)}
.age-gate--route .age-gate__panel{max-width:680px;text-align:left;background:linear-gradient(135deg,rgba(23,63,95,.94) 0 62%,rgba(60,174,163,.84) 62%)}.age-gate--route .age-badge{border-radius:8px;box-shadow:8px 8px 0 rgba(0,0,0,.18)}.hero-banner--route{background:linear-gradient(90deg,rgba(60,174,163,.24),rgba(246,213,92,.18))}
.age-gate--minimal .age-gate__panel{max-width:500px;background:#fff;color:var(--ink);border-color:var(--line);box-shadow:none}.age-gate--minimal .age-gate__panel p{color:var(--muted)}.age-gate--minimal .age-badge{width:58px;height:58px}.age-gate--minimal .age-gate__meta{grid-template-columns:1fr}.age-gate--minimal .age-gate__meta span{background:var(--paper-2)}.hero-banner--minimal{background:rgba(255,255,255,.58);border-color:var(--line)}body.layout-minimal .hero-banner--minimal span{color:var(--muted)}
@media(max-width:760px){.age-gate__top,.age-gate__meta{grid-template-columns:1fr;display:grid}.age-gate__actions{align-items:stretch}.age-gate--stamp .age-gate__panel,.hero-banner--stamp{transform:none}}

/* UNIQUE AGE HERO END */

/* UNIQUE SITE SKIN START: bonusovajizda.com */
body.layout-route .site-header{background:#fff;border-bottom:4px solid var(--accent)}
body.layout-route .brand__mark{transform:skew(-6deg);background:linear-gradient(135deg,var(--primary),var(--accent))}
body.layout-route .hero::before{background:linear-gradient(180deg,rgba(23,63,95,.86),rgba(23,63,95,.76))}
body.layout-route .hero__content{padding:1.4rem;border:1px solid rgba(255,255,255,.22);background:rgba(23,63,95,.38);backdrop-filter:blur(8px)}
body.layout-route .hero__panel{transform:translateY(26px);background:rgba(23,63,95,.84)}
body.layout-route .trust-band{margin-top:2rem}
body.layout-route .trust-band div{background:#f7fbf8;border-top:4px solid var(--accent)}
body.layout-route .game-card:first-child{border-top:8px solid var(--gold)}
body.layout-route .game-card:not(:first-child){border-left:8px solid var(--accent)}
body.layout-route .button--card{background:linear-gradient(90deg,var(--accent),var(--gold))}
body.layout-route .section--faq{background:#eef9f6}
/* UNIQUE SITE SKIN END */
