@font-face {
  font-family: "Archivo";
  src: url("/assets/fonts/archivo-latin-ext-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Archivo";
  src: url("/assets/fonts/archivo-latin-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Archivo";
  src: url("/assets/fonts/archivo-latin-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Archivo";
  src: url("/assets/fonts/archivo-latin-ext-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Archivo";
  src: url("/assets/fonts/archivo-latin-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Archivo";
  src: url("/assets/fonts/archivo-latin-ext-800.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Archivo";
  src: url("/assets/fonts/archivo-latin-800.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --bg: #e7ebe3;
  --surface: #f4f6f1;
  --surface-2: #dce3d6;
  --border: #c5cebc;
  --text: #1c2418;
  --muted: #5a6454;
  --accent: #b45309;
  --accent-hover: #93370d;
  --accent-text: #fff8ee;
  --accent-2: #78350f;
  --ink: #1e2a22;
  --ink-2: #2c382e;
  --gold: #d4a017;
  --header-h: 64px;
  --radius: 6px;
  --prose: 100%;
  --page: 1080px;
  --stage: 960px;
}

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

html {
  font-family: "Archivo", "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 17px;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 52px);
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(1200px 420px at 50% -80px, rgb(212 160 23 / 0.12), transparent 60%),
    var(--bg);
  color: var(--text);
}

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

a:hover {
  color: var(--accent-hover);
  text-decoration: underline;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

[hidden] {
  display: none !important;
}

.skip-link {
  position: absolute;
  top: -999px;
  left: 16px;
  background: var(--accent);
  color: var(--accent-text);
  padding: 8px 16px;
  border-radius: var(--radius);
  z-index: 1000;
  font-weight: 700;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  height: var(--header-h);
  background: var(--ink);
  z-index: 50;
}

.header-container {
  max-width: var(--page);
  height: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.site-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #f3efe4;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.02em;
  min-width: 0;
}

.site-brand:hover {
  color: #fff8ee;
  text-decoration: none;
}

.site-brand img {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 4px;
}

.brand-name {
  font-size: 0.98rem;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.brand-name em {
  font-style: normal;
  color: var(--gold);
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
}

.badge-slot {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid rgb(212 160 23 / 0.45);
  padding: 2px 7px;
  border-radius: 3px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
}

.nav-link {
  color: #d7decc;
  font-weight: 600;
  font-size: 0.92rem;
}

.nav-link:hover,
.nav-link[aria-current="page"] {
  color: #fff8ee;
  text-decoration: none;
}

.header-cta {
  display: flex;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  font-size: 0.92rem;
  font-weight: 700;
  font-family: inherit;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  line-height: 1.2;
  white-space: nowrap;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--accent);
  color: var(--accent-text);
  border-color: #9a4108;
}

.btn-primary:hover {
  background: var(--accent-hover);
  color: var(--accent-text);
  text-decoration: none;
}

.btn-secondary {
  background: var(--surface);
  color: var(--text);
  border-color: var(--border);
}

.btn-secondary:hover {
  background: var(--surface-2);
  color: var(--accent-2);
  text-decoration: none;
}

.btn-sm {
  padding: 7px 13px;
  font-size: 0.84rem;
}

.btn-lg {
  padding: 13px 22px;
  font-size: 1rem;
}

.page {
  max-width: var(--page);
  width: 100%;
  margin: 0 auto;
  padding: 24px 20px 72px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  flex: 1;
}

.crumbs {
  font-size: 0.86rem;
  color: var(--muted);
}

.crumbs a {
  color: var(--muted);
}

.hero-product {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: transparent;
  border: none;
  padding: 0;
  box-shadow: none;
}

.hero-product-visual {
  width: 100%;
  overflow: hidden;
  background: #120e0a;
  border: 3px solid #2a2118;
  box-shadow: inset 0 0 0 1px #6a4e28, 0 10px 28px rgb(30 42 34 / 0.22);
}

.hero-product-visual img {
  width: 100%;
  height: auto;
  max-height: 430px;
  object-fit: cover;
  display: block;
}

.hero-product h1 {
  font-size: clamp(1.7rem, 3.4vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text);
}

.hero-intro {
  max-width: var(--prose);
  width: 100%;
  font-size: 1.05rem;
  color: #2a3326;
}

.hero-intro p {
  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
}

.hero-intro p + p {
  margin-top: 10px;
}

.key-facts-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.key-fact-cell {
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-right: 1px solid var(--border);
}

.key-fact-cell:last-child {
  border-right: none;
}

.key-fact-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.key-fact-value {
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--accent-2);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.jump-links-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: var(--header-h);
  z-index: 40;
  background: color-mix(in srgb, var(--bg) 92%, white);
}

.jump-label-wrapper,
.jump-label,
.jump-label-icon {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.jump-links-scroll {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 16px;
}

.jump-link {
  color: var(--text);
  font-weight: 600;
  font-size: 0.92rem;
}

.jump-link:hover {
  color: var(--accent);
  text-decoration: none;
}

.jump-link-dot {
  display: none;
}

.section-block {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section-title {
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--text);
}

.prose-text {
  max-width: var(--prose);
  width: 100%;
  font-size: 1.02rem;
  color: #243024;
  line-height: 1.7;
}

.prose-text p,
.prose-text li {
  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
}

.prose-text p + p,
.prose-text ul {
  margin-top: 12px;
}

.prose-text ul,
.prose-text ol {
  padding-left: 1.2em;
}

.prose-text h2,
.article-block h2 {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 8px 0 10px;
}

.prose-text h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 6px 0 8px;
}

.article-block {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.article-block .prose-text {
  gap: 10px;
  display: flex;
  flex-direction: column;
}

.demo-stage-wrapper {
  max-width: var(--stage);
  width: 100%;
  margin: 0 auto;
  background: #14110e;
  border: 8px solid #2a2218;
  box-shadow: inset 0 0 0 1px #7a5a2c, 0 16px 40px rgb(20 16 12 / 0.28);
}

.demo-screen-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 480px;
  background: #000 url("/media/banner.webp") center / cover no-repeat;
}

.demo-screen-container iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.demo-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px;
  text-align: center;
  background: #18181b;
  color: #fff;
  gap: 16px;
}

.demo-fallback p {
  max-width: 440px;
  color: #b8b8b0;
}

.demo-footer-bar {
  padding: 12px 16px;
  background: #1a1612;
  color: #c9c2b4;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.86rem;
}

.table-responsive {
  width: 100%;
  overflow-x: auto;
  background: var(--surface);
  border: 1px solid var(--border);
}

.specs-table,
.casino-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.95rem;
}

.specs-table th,
.specs-table td,
.casino-table th,
.casino-table td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.specs-table tr:last-child th,
.specs-table tr:last-child td,
.casino-table tr:last-child td {
  border-bottom: none;
}

.specs-table th[scope="row"] {
  width: 34%;
  color: var(--muted);
  font-weight: 600;
  background: rgb(220 227 214 / 0.55);
}

.specs-table thead th,
.casino-table thead th {
  background: var(--ink);
  color: #f3efe4;
  font-weight: 700;
  white-space: nowrap;
}

.specs-table td strong,
.casino-name-cell {
  font-weight: 700;
  color: var(--text);
}

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

.casino-logo {
  width: 120px;
  height: 40px;
  object-fit: contain;
  object-position: center;
  flex-shrink: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
}

.casino-logo[src*="betsson"] {
  background: #153033;
  border-color: #153033;
}

.casino-logo[src*="bet365"] {
  background: #027b5b;
  border-color: #027b5b;
}

.casino-logo[src*="jugadon"] {
  background: #e85d04;
  border-color: #e85d04;
}

.casino-table td {
  vertical-align: middle;
}

.gallery-lead {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.5;
  max-width: 46rem;
}

.gallery-stage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: start;
}

.gallery-frame {
  margin: 0;
  background: #14110e;
  border: 7px solid #2a2218;
  box-shadow: inset 0 0 0 1px #7a5a2c, 0 14px 32px rgb(20 16 12 / 0.22);
  overflow: hidden;
}

.gallery-frame-hero {
  grid-column: 1 / -1;
  border-width: 10px;
  box-shadow: inset 0 0 0 1px #7a5a2c, 0 18px 40px rgb(20 16 12 / 0.28);
}

.gallery-shot {
  display: block;
  overflow: hidden;
  background: #0c0a08;
  cursor: zoom-in;
  color: inherit;
}

.gallery-shot:hover {
  text-decoration: none;
}

.gallery-shot img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center 45%;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-shot:hover img,
.gallery-shot:focus-visible img {
  transform: scale(1.03);
}

.gallery-frame figcaption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px;
  background: #1a1612;
  color: #c9c2b4;
  font-size: 0.86rem;
  line-height: 1.4;
  border-top: 1px solid #3a3024;
}

.gallery-frame-hero figcaption {
  font-size: 0.95rem;
  padding: 12px 16px;
}

dialog.lightbox {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  margin: 0;
  padding: 24px 16px max(24px, env(safe-area-inset-bottom));
  border: 0;
  background: rgb(14 12 10 / 0.92);
  color: inherit;
}

dialog.lightbox[open] {
  display: flex;
  align-items: center;
  justify-content: center;
}

dialog.lightbox::backdrop {
  background: rgb(14 12 10 / 0.88);
}

.lightbox-panel {
  width: min(1080px, 96vw);
  margin: 0;
  background: #14110e;
  border: 8px solid #2a2218;
  box-shadow: inset 0 0 0 1px #7a5a2c, 0 24px 60px rgb(0 0 0 / 0.45);
}

.lightbox-panel img {
  display: block;
  width: 100%;
  height: auto;
  max-height: calc(100dvh - 150px);
  object-fit: contain;
  background: #0c0a08;
}

.lightbox-panel figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 16px;
  background: #1a1612;
  color: #c9c2b4;
  font-size: 0.92rem;
  line-height: 1.4;
  border-top: 1px solid #3a3024;
}

.lightbox-panel figcaption form {
  margin: 0;
}

.lightbox-close {
  appearance: none;
  flex-shrink: 0;
  border: 0;
  padding: 0;
  background: none;
  font: inherit;
  font-weight: 700;
  color: var(--gold);
  cursor: pointer;
}

.lightbox-close:hover {
  color: #fff8ee;
  text-decoration: underline;
}

.mid-cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid var(--border);
}

.mid-cta-content h3 {
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.mid-cta-content p {
  font-size: 0.9rem;
  color: var(--muted);
}

.casino-bonus-badge {
  display: inline-block;
  font-weight: 700;
  color: var(--accent-2);
}

.badge-tag {
  display: inline-block;
  margin-top: 4px;
  font-size: 0.78rem;
  color: var(--muted);
}

.similar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: stretch;
}

.similar-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: inherit;
  height: 100%;
}

.similar-card:hover {
  text-decoration: none;
  color: inherit;
  border-color: color-mix(in srgb, var(--accent) 50%, var(--border));
  box-shadow: 0 8px 20px rgb(28 36 24 / 0.08);
}

.similar-card:hover h3 {
  color: var(--accent);
}

.similar-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.25;
}

.similar-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
}

.similar-card-meta span:last-child {
  color: var(--accent-2);
  white-space: nowrap;
}

.similar-card > p:not(.similar-card-meta) {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.45;
  flex: 1;
}

.similar-cta {
  margin-top: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
}

.faq-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}

.faq-item {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  box-shadow: none;
}

.faq-question {
  padding: 14px 0;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

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

.faq-question::after {
  content: "+";
  color: var(--accent);
  font-weight: 600;
}

details[open] .faq-question::after {
  content: "-";
}

.faq-answer {
  padding: 0 0 16px;
  color: #2a3326;
  line-height: 1.65;
  max-width: var(--prose);
  width: 100%;
}

.faq-answer p {
  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
}

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 40rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-weight: 700;
  font-size: 0.9rem;
}

.form-help {
  font-size: 0.82rem;
  color: var(--muted);
}

.form-control {
  padding: 10px 12px;
  font-size: 1rem;
  font-family: inherit;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  color: var(--text);
}

.form-control:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
  background: #fff;
}

textarea.form-control {
  min-height: 140px;
  resize: vertical;
}

.form-success {
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  max-width: 40rem;
}

.site-footer {
  margin-top: auto;
  background: var(--ink);
  color: #c9d1c0;
  padding: 40px 20px 88px;
}

.footer-container {
  max-width: var(--page);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 22px;
  font-size: 0.9rem;
  font-weight: 600;
}

.footer-nav a,
.footer-link {
  color: #e4ead9;
}

.footer-nav a:hover,
.footer-link:hover {
  color: #fff;
}

.footer-responsible,
.footer-disclaimer {
  font-size: 0.86rem;
  line-height: 1.5;
  color: #b8c2ae;
}

.footer-trust-row,
.footer-trust-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.trust-badge-item img,
.footer-trust-strip img {
  height: 34px;
  width: auto;
  object-fit: contain;
  filter: grayscale(0.2) brightness(1.1);
}

.footer-bottom,
.footer-copy {
  font-size: 0.82rem;
  color: #9aa590;
  border-top: 1px solid #354338;
  padding-top: 16px;
}

.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 16px;
  background: var(--ink);
  z-index: 100;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.mobile-sticky-bar .game-title-short {
  font-weight: 700;
  font-size: 0.88rem;
  color: #f3efe4;
}

@media (max-width: 900px) {
  .key-facts-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .key-fact-cell:nth-child(2n) {
    border-right: none;
  }

  .gallery-stage,
  .similar-grid {
    grid-template-columns: 1fr;
  }

  .gallery-frame {
    border-width: 6px;
  }

  .gallery-frame-hero {
    border-width: 8px;
  }

  .similar-card {
    height: auto;
  }
}

@media (max-width: 768px) {
  .site-nav {
    display: none;
  }

  .mobile-sticky-bar {
    display: flex;
  }

  .brand-name {
    font-size: 0.86rem;
  }

  .hero-product h1 {
    font-size: 1.55rem;
  }

  .hero-product-visual img {
    max-height: 210px;
  }

  .demo-screen-container {
    min-height: 320px;
  }

  .site-footer {
    padding-bottom: 96px;
  }

  .jump-links-scroll {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .jump-links-scroll::-webkit-scrollbar {
    display: none;
  }

  .casino-logo {
    width: 96px;
    height: 32px;
  }
}

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

  .btn:active {
    transform: none;
  }

  .gallery-shot img {
    transition: none;
  }

  .gallery-shot:hover img,
  .gallery-shot:focus-visible img {
    transform: none;
  }
}
