:root {
  --clr-dark: #1F222E;
  --clr-dark-2: #15171F;
  --clr-green: #6AC340;
  --clr-green-600: #59a833;
  --clr-green-700: #4a8f2a;
  --clr-bg: #6AC340;
  --clr-box: #ffffff;
  --clr-box-alt: #f4f8f1;
  --clr-ink: #1c2230;
  --clr-ink-soft: #47506a;
  --clr-line: #e2e8dc;
  --clr-line-dark: #2c3040;
  --clr-white: #ffffff;
  --clr-gold: #f2b705;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 12px 30px rgba(21, 23, 31, .16);
  --shadow-sm: 0 4px 14px rgba(21, 23, 31, .12);
  --gap: 24px;
  --maxw: 1160px;
  --font: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--font);
  font-weight: 400;
  line-height: 1.6;
  color: var(--clr-ink);
  background: var(--clr-bg);
  background-image:
    radial-gradient(circle at 12% 8%, rgba(255, 255, 255, .18), transparent 42%),
    radial-gradient(circle at 88% 0%, rgba(21, 23, 31, .12), transparent 40%);
  background-attachment: fixed;
  min-height: 100vh;
  overflow-x: hidden;
}

body.fixed { overflow: hidden; }

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

a { color: var(--clr-dark-2); text-decoration: underline; }
a:hover { color: var(--clr-green-700); }

h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 1.25;
  color: var(--clr-ink);
  margin: 0 0 .6em;
  text-wrap: balance;
}

h1 { font-size: clamp(1.7rem, 4.6vw, 2.6rem); }
h2 { font-size: clamp(1.4rem, 3.4vw, 2rem); }
h3 { font-size: clamp(1.15rem, 2.4vw, 1.4rem); }
p { margin: 0 0 1rem; text-wrap: pretty; }

.wrapper { width: 100%; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 18px;
}

.box {
  background: var(--clr-box);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin: 18px 0;
  padding: 26px;
}

.header {
  background: var(--clr-dark);
  color: var(--clr-white);
  padding: 14px 22px;
  position: sticky;
  top: 0;
  z-index: 60;
  border-radius: 0 0 var(--radius) var(--radius);
  margin-top: 0;
}

.hdr-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo { display: inline-flex; align-items: center; text-decoration: none; }
.logo img { height: 40px; width: auto; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #d7dbe6;
  text-decoration: none;
  font-weight: 600;
  font-size: .95rem;
  padding: 6px 2px;
  transition: color .2s ease;
}
.nav-link:hover { color: var(--clr-green); }
.nav-link svg { width: 18px; height: 18px; flex: none; }

.hdr-side { display: flex; align-items: center; gap: 14px; }

.online-now {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  font-weight: 600;
  color: #cfd4e0;
  background: var(--clr-dark-2);
  padding: 7px 12px;
  border-radius: 40px;
}
.online-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--clr-green);
  box-shadow: 0 0 0 0 rgba(106, 195, 64, .7);
  animation: pulse-a4x 1.8s infinite;
}
@keyframes pulse-a4x {
  0% { box-shadow: 0 0 0 0 rgba(106, 195, 64, .6); }
  70% { box-shadow: 0 0 0 9px rgba(106, 195, 64, 0); }
  100% { box-shadow: 0 0 0 0 rgba(106, 195, 64, 0); }
}

.header-buttons { display: flex; align-items: center; gap: 10px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 700;
  font-size: .92rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  border-radius: 40px;
  padding: 11px 20px;
  transition: transform .16s ease, box-shadow .2s ease, background .2s ease, filter .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--login {
  background: var(--clr-dark-2);
  color: var(--clr-white);
  border: 1px solid #333849;
}
.btn--login:hover { background: #1d2130; color: var(--clr-green); }

.btn--signup, .btn--green {
  background: var(--clr-green);
  color: #10240a;
  box-shadow: 0 8px 18px rgba(106, 195, 64, .38);
}
.btn--signup:hover, .btn--green:hover { background: var(--clr-green-600); box-shadow: 0 10px 22px rgba(106, 195, 64, .5); }

.btn--lg { padding: 15px 30px; font-size: 1.05rem; }
.btn--block { width: 100%; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 42px; height: 42px;
  border: none;
  background: var(--clr-dark-2);
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.burger span {
  width: 20px; height: 2px; background: var(--clr-white);
  border-radius: 2px; transition: transform .25s ease, opacity .2s ease;
}
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero-wrap { margin: 18px auto; }
.hero {
  position: relative;
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 340px;
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--clr-white);
  background: var(--clr-dark);
  box-shadow: var(--shadow);
  padding-right: 34px;
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding: 40px 34px;
  max-width: 620px;
  flex: 1 1 auto;
}
.hero-banner-img {
  flex: 0 0 auto;
  width: 360px;
  height: 360px;
  max-width: 40%;
  object-fit: cover;
  border-radius: calc(var(--radius) - 4px);
}
@media (max-width: 860px) {
  .hero-banner-img { display: none; }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(106, 195, 64, .18);
  border: 1px solid rgba(106, 195, 64, .5);
  color: var(--clr-green);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 40px;
  margin-bottom: 16px;
}
.hero h2 { color: var(--clr-white); font-size: clamp(1.8rem, 5vw, 3rem); margin-bottom: .35em; }
.hero p { color: #e4e7ee; font-size: 1.05rem; margin-bottom: 22px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-note { margin-top: 14px; font-size: .78rem; color: #b9bfce; }

.crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 12px 18px;
  background: rgba(21, 23, 31, .82);
  border-radius: 40px;
  font-size: .85rem;
}
.crumbs li { display: inline-flex; align-items: center; gap: 8px; color: #cfd4e0; }
.crumbs a { color: var(--clr-green); text-decoration: none; font-weight: 600; }
.crumbs a:hover { text-decoration: underline; }
.crumbs .sep { color: #6b7183; }

.section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.section-title svg { width: 26px; height: 26px; color: var(--clr-green-700); flex: none; }

.toc {
  background: var(--clr-box-alt);
  border: 1px solid var(--clr-line);
  border-left: 5px solid var(--clr-green);
  border-radius: var(--radius-sm);
  padding: 22px 24px;
  margin: 8px 0 28px;
}
.toc h2 { font-size: 1.2rem; margin-bottom: 14px; }
.toc-list {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 24px;
}
.toc-list a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--clr-dark-2);
  text-decoration: none;
  font-weight: 600;
  padding: 6px 0;
  border-bottom: 1px dashed transparent;
}
.toc-list a:hover { color: var(--clr-green-700); border-bottom-color: var(--clr-green); }
.toc-list svg { width: 18px; height: 18px; color: var(--clr-green-700); flex: none; }

.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 8px auto 28px; border-radius: var(--radius-sm); }
.info-table {
  width: 100%;
  min-width: 520px;
  margin: 0 auto;
  border-collapse: collapse;
  text-align: left;
  background: var(--clr-box);
  border: 1px solid var(--clr-line);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.info-table caption {
  caption-side: top;
  text-align: left;
  font-weight: 700;
  padding: 0 0 12px;
  color: var(--clr-ink-soft);
}
.info-table th, .info-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--clr-line);
  vertical-align: top;
}
.info-table tr:last-child th, .info-table tr:last-child td { border-bottom: none; }
.info-table tr:nth-child(even) { background: var(--clr-box-alt); }
.info-table th {
  width: 38%;
  color: var(--clr-ink);
  font-weight: 700;
}
.info-table .param { display: inline-flex; align-items: center; gap: 10px; }
.info-table .param svg { width: 20px; height: 20px; color: var(--clr-green-700); flex: none; }
.info-table td { color: var(--clr-ink-soft); }

.tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 8px 0 28px;
}
.tile {
  background: var(--clr-box-alt);
  border: 1px solid var(--clr-line);
  border-radius: var(--radius-sm);
  padding: 22px 20px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); border-color: var(--clr-green); }
.tile-ico {
  width: 52px; height: 52px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(106, 195, 64, .16);
  border-radius: 14px;
  margin-bottom: 14px;
}
.tile-ico svg { width: 26px; height: 26px; color: var(--clr-green-700); }
.tile h3 { font-size: 1.1rem; margin-bottom: 6px; }
.tile p { font-size: .92rem; color: var(--clr-ink-soft); margin: 0; }

.pc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 8px 0 28px;
}
.pc-col {
  border-radius: var(--radius-sm);
  padding: 22px 24px;
  border: 1px solid var(--clr-line);
}
.pc-col h3 { display: flex; align-items: center; gap: 10px; }
.pc-col h3 svg { width: 22px; height: 22px; flex: none; }
.pc-col ul { list-style: none; margin: 12px 0 0; padding: 0; }
.pc-col li { display: flex; align-items: flex-start; gap: 10px; padding: 8px 0; font-size: .95rem; color: var(--clr-ink-soft); border-bottom: 1px dashed var(--clr-line); }
.pc-col li:last-child { border-bottom: none; }
.pc-col li svg { width: 18px; height: 18px; flex: none; margin-top: 3px; }
.pc-pros { background: rgba(106, 195, 64, .1); border-color: rgba(106, 195, 64, .4); }
.pc-pros h3 { color: var(--clr-green-700); }
.pc-pros li svg { color: var(--clr-green-700); }
.pc-cons { background: rgba(21, 23, 31, .04); }
.pc-cons h3 { color: var(--clr-dark-2); }
.pc-cons li svg { color: #b23b3b; }

.jackpot {
  position: relative;
  overflow: hidden;
  background: var(--clr-dark);
  color: var(--clr-white);
  border-radius: var(--radius);
  padding: 34px 28px;
  text-align: center;
  margin: 8px 0 28px;
  box-shadow: var(--shadow);
}
.jackpot::before {
  content: "";
  position: absolute; inset: -40% -10% auto -10%;
  height: 200px;
  background: radial-gradient(circle, rgba(106, 195, 64, .35), transparent 60%);
  z-index: 0;
}
.jackpot > * { position: relative; z-index: 1; }
.jackpot h2 { color: var(--clr-white); }
.jackpot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
}
.jp-card {
  background: var(--clr-dark-2);
  border: 1px solid #2c3040;
  border-radius: var(--radius-sm);
  padding: 20px 16px;
}
.jp-label { font-size: .82rem; color: #aeb4c2; text-transform: uppercase; letter-spacing: .05em; }
.jp-amount {
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 800;
  color: var(--clr-green);
  margin: 8px 0;
  font-variant-numeric: tabular-nums;
}
.jp-sub { font-size: .8rem; color: #8b91a2; }

.slots-head { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.slots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 18px 0 28px;
}
.slot-card {
  background: var(--clr-box-alt);
  border: 1px solid var(--clr-line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease;
}
.slot-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.slot-thumb { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--clr-dark-2); }
.slot-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.slot-card:hover .slot-thumb img { transform: scale(1.06); }
.slot-body { padding: 14px 14px 18px; }
.slot-body h3 { font-size: 1rem; margin-bottom: 3px; }
.slot-prov { font-size: .8rem; color: var(--clr-ink-soft); margin-bottom: 12px; }

.faq { margin: 8px 0 28px; }
.acc {
  border: 1px solid var(--clr-line);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  background: var(--clr-box-alt);
  overflow: hidden;
}
.acc summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 700;
  color: var(--clr-ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.acc summary::-webkit-details-marker { display: none; }
.acc summary .chev { width: 20px; height: 20px; flex: none; color: var(--clr-green-700); transition: transform .25s ease; }
.acc[open] summary .chev { transform: rotate(180deg); }
.acc .acc-body { padding: 0 22px 20px; color: var(--clr-ink-soft); }
.acc .acc-body p { margin: 0; }

.author {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  background: var(--clr-box-alt);
  border: 1px solid var(--clr-line);
  border-radius: var(--radius-sm);
  padding: 24px;
  margin: 8px 0 12px;
}
.author-photo {
  width: 96px; height: 96px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--clr-green);
  flex: none;
}
.author-body h3 { margin-bottom: 2px; }
.author-role { color: var(--clr-green-700); font-weight: 600; font-size: .9rem; margin-bottom: 10px; }
.author-body p { font-size: .93rem; color: var(--clr-ink-soft); }
.author-meta { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; margin-top: 12px; font-size: .85rem; }
.author-links { display: flex; gap: 10px; }
.author-links a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px;
  background: var(--clr-dark);
  border-radius: 9px;
  color: var(--clr-white);
}
.author-links a:hover { background: var(--clr-green); color: #10240a; }
.author-links svg { width: 17px; height: 17px; }
.author-date { color: var(--clr-ink-soft); }

.text > h2 { margin-top: 1.4em; }
.text ul, .text ol { margin: 0 0 1.1rem; padding-left: 1.3rem; }
.text li { margin-bottom: .5rem; }
.text table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 1.4rem;
  border: 1px solid var(--clr-line);
}
.text th, .text td { padding: 12px 16px; border: 1px solid var(--clr-line); text-align: left; }
.text th { background: var(--clr-box-alt); font-weight: 700; }
.text blockquote {
  margin: 0 0 1.2rem;
  padding: 14px 20px;
  border-left: 4px solid var(--clr-green);
  background: var(--clr-box-alt);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--clr-ink-soft);
}
.text a { font-weight: 600; }
.text img { border-radius: var(--radius-sm); margin: 0 0 1.2rem; }

.footer {
  background: var(--clr-dark);
  color: #c4c9d6;
  border-radius: var(--radius) var(--radius) 0 0;
  margin-top: 24px;
}
.footer .box { background: transparent; box-shadow: none; margin: 0; }
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 30px;
  padding: 36px 26px 26px;
}
.footer-logo img { height: 40px; margin-bottom: 14px; }
.footer h4 { color: var(--clr-white); font-size: 1rem; margin-bottom: 14px; }
.footer-menu { list-style: none; margin: 0; padding: 0; }
.footer-menu li { margin-bottom: 9px; }
.footer-menu a { color: #c4c9d6; text-decoration: none; font-size: .92rem; }
.footer-menu a:hover { color: var(--clr-green); }
.flag-row { display: inline-flex; align-items: center; gap: 10px; margin: 8px 0 14px; font-weight: 600; color: #d7dbe6; }
.flag-row svg { width: 28px; height: auto; border-radius: 3px; }
.social-row { display: flex; gap: 10px; margin-top: 12px; }
.social-row a {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--clr-dark-2); border-radius: 9px; color: #d7dbe6;
}
.social-row a:hover { background: var(--clr-green); color: #10240a; }
.social-row svg { width: 18px; height: 18px; }

.logo-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
  padding: 8px 0 0;
}
.logo-chip {
  background: var(--clr-dark-2);
  border: 1px solid #2c3040;
  border-radius: 8px;
  padding: 7px 13px;
  font-size: .78rem;
  font-weight: 600;
  color: #d7dbe6;
  letter-spacing: .01em;
}
.trust-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.trust-chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--clr-dark-2);
  border: 1px solid #2c3040;
  border-radius: 40px;
  padding: 8px 14px;
  font-size: .78rem;
  font-weight: 600;
  color: #d7dbe6;
}
.trust-chip svg { width: 16px; height: 16px; color: var(--clr-green); }
.age-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%;
  border: 2px solid #b23b3b; color: #ff6b6b; font-weight: 800; font-size: .78rem;
}
.footer-legal {
  border-top: 1px solid #2c3040;
  padding: 20px 26px 30px;
  font-size: .8rem;
  color: #8b91a2;
}
.footer-legal p { margin: 0 0 8px; }
.footer-legal a { color: #aeb4c2; }
.footer-block { margin-top: 22px; }

.widget {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  background: var(--clr-dark);
  border-top: 2px solid var(--clr-green);
  box-shadow: 0 -8px 26px rgba(21, 23, 31, .35);
  transform: translateY(0);
  transition: transform .35s ease;
}
.widget.hide { transform: translateY(110%); }
.widget-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 18px;
}
.widget-text { color: var(--clr-white); font-size: .95rem; }
.widget-text strong { color: var(--clr-green); }
.widget-text span { display: block; font-size: .78rem; color: #aeb4c2; }
.widget-cta { display: flex; align-items: center; gap: 10px; }
.widget-link {
  color: #10240a;
  background: var(--clr-green);
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 40px;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(106, 195, 64, .4);
}
.widget-link:hover { background: var(--clr-green-600); color: #10240a; }
.widget-close {
  background: var(--clr-dark-2);
  border: 1px solid #333849;
  color: #c4c9d6;
  width: 34px; height: 34px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
}

.jc-js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.jc-js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .jc-js .reveal { opacity: 1; transform: none; transition: none; }
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

.zx91qd { display: none; }
.qm73fv { position: relative; }
.tb28ka { letter-spacing: .02em; }
.of51ne { opacity: .0001; pointer-events: none; }
.vh04ml { content-visibility: auto; }

.elementor-widget-container { display: contents; }
.wp-block-group { display: contents; }
.has-text-align-center { text-align: center; }
.entry-content { display: contents; }
.screen-reader-text {
  position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(1px, 1px, 1px, 1px);
}

@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .toc-list { grid-template-columns: 1fr; }
  .tiles { grid-template-columns: repeat(2, 1fr); }
  .jackpot-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .burger { display: flex; }
  .nav-menu {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(78vw, 320px);
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    background: var(--clr-dark);
    padding: 82px 26px 30px;
    transform: translateX(105%);
    transition: transform .3s ease;
    box-shadow: -10px 0 30px rgba(0, 0, 0, .4);
    overflow-y: auto;
    z-index: 55;
  }
  .nav-menu.active { transform: translateX(0); }
  .nav-menu li { width: 100%; }
  .nav-link { width: 100%; padding: 12px 0; border-bottom: 1px solid var(--clr-line-dark); font-size: 1rem; }
  .header-buttons .btn { padding: 9px 14px; font-size: .82rem; }
  .online-now { display: none; }
  .pc-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .slots-grid {
    grid-auto-flow: column;
    grid-auto-columns: 78%;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
  }
  .slot-card { scroll-snap-align: center; }
  .author { flex-direction: column; align-items: center; text-align: center; }
  .author-meta { justify-content: center; }
  .widget-inner { flex-direction: column; align-items: stretch; text-align: center; padding: 12px; }
  .widget-cta { justify-content: center; }
  .widget-text span { margin-bottom: 4px; }
  .jc-js .reveal { opacity: 1; transform: none; transition: none; }
}

@media (max-width: 460px) {
  .tiles { grid-template-columns: 1fr; }
  .hero-inner { padding: 30px 20px; }
  .box { padding: 20px 16px; }
}
