:root {
  --clr-nav: #0c4361;
  --clr-nav-2: #0a3850;
  --clr-bg: #19918f;
  --clr-bg-2: #157c7a;
  --clr-red: #b41c0a;
  --clr-red-2: #8f1608;
  --clr-blue: #0756d0;
  --clr-blue-2: #0645a8;
  --clr-white: #ffffff;
  --clr-soft: #eaf6f5;
  --clr-dark: #082a3d;
  --clr-gold: #ffd34e;
  --clr-line: rgba(255, 255, 255, 0.18);
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 10px 30px rgba(6, 32, 45, 0.28);
  --shadow-sm: 0 4px 14px rgba(6, 32, 45, 0.2);
  --gap: 18px;
  --maxw: 1200px;
  --font: "Nunito", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  background: var(--clr-bg);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  font-family: var(--font);
  background: linear-gradient(180deg, #19918f 0%, #147d7b 60%, #0f6f6d 100%);
  color: var(--clr-white);
  line-height: 1.6;
  font-size: 16px;
  min-height: 100vh;
}
body.fixed {
  overflow: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--clr-white);
  text-decoration: none;
}
h1,
h2,
h3,
h4 {
  line-height: 1.25;
  margin: 0 0 0.5em;
  font-weight: 800;
  letter-spacing: 0.2px;
}
h1 {
  font-size: clamp(26px, 4vw, 40px);
}
h2 {
  font-size: clamp(22px, 3vw, 30px);
}
h3 {
  font-size: clamp(18px, 2.4vw, 22px);
}
p {
  margin: 0 0 1em;
}
ul {
  margin: 0 0 1em;
  padding-left: 1.2em;
}

.wrapper {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100vh;
  gap: 22px;
  padding-bottom: 70px;
}
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 16px;
}
.box {
  background: rgba(9, 42, 61, 0.3);
  border: 1px solid var(--clr-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--gap);
}
.mt1 {
  margin-top: 14px;
}
.mb1 {
  margin-bottom: 14px;
}
.text-center {
  text-align: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-family: var(--font);
  font-weight: 800;
  text-align: center;
  line-height: 1;
  white-space: nowrap;
  transition:
    transform 0.15s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
  text-decoration: none;
}
.btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow: var(--shadow);
}
.btn:active {
  transform: translateY(0);
}
.btn--md {
  padding: 12px 20px;
  font-size: 15px;
}
.btn--sm {
  padding: 9px 14px;
  font-size: 13px;
}
.btn--lg {
  padding: 16px 30px;
  font-size: 18px;
}
.btn--blue {
  background: linear-gradient(180deg, #0a63e6, #0756d0);
  color: #fff;
  box-shadow: 0 6px 0 #063a8d;
}
.btn--red {
  background: linear-gradient(180deg, #d0250f, #b41c0a);
  color: #fff;
  box-shadow: 0 6px 0 #7c1206;
}
.btn--bonus {
  background: linear-gradient(90deg, #ffb020, #ff7a00);
  color: #26160a;
  box-shadow: 0 6px 0 #b85e00;
}
.btn--ghost {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: #fff;
}
.btn--full {
  width: 100%;
}
.btn svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

/* header */
.header {
  padding: 12px 16px;
}
.header nav {
  width: 100%;
}
.hdr-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.logo img {
  height: 46px;
  width: auto;
  border-radius: 8px;
}
.logo b {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.5px;
}
.logo b span {
  color: var(--clr-gold);
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.header-nav a.nav-lnk {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 12px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  color: #dff3f2;
  transition:
    background 0.2s,
    color 0.2s;
}
.header-nav a.nav-lnk:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}
.header-nav a.nav-lnk svg {
  width: 18px;
  height: 18px;
  fill: var(--clr-gold);
}
.header-buttons {
  display: flex;
  align-items: center;
  gap: 8px;
}
.jackpot-chip {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: 12px;
  background: linear-gradient(180deg, #0a3850, #072736);
  border: 1px solid var(--clr-gold);
  line-height: 1.1;
  min-width: 150px;
}
.jackpot-chip small {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #bfe3e1;
}
.jackpot-chip b {
  font-size: 18px;
  color: var(--clr-gold);
  font-variant-numeric: tabular-nums;
}
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--clr-line);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  transition: 0.25s;
}
.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 {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: linear-gradient(
    120deg,
    rgba(7, 39, 54, 0.92),
    rgba(7, 39, 54, 0.45)
  );
  box-shadow: var(--shadow);
  margin-top: 2px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
  align-items: center;
  padding: 26px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 211, 78, 0.15);
  border: 1px solid var(--clr-gold);
  color: var(--clr-gold);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.hero h1 {
  margin: 14px 0 10px;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.35);
}
.hero p {
  color: #e8f6f5;
  max-width: 52ch;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.hero-badges {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.hero-badges div {
  display: flex;
  flex-direction: column;
}
.hero-badges span {
  font-size: 12px;
  color: #bfe3e1;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.hero-badges b {
  font-size: 20px;
  color: #fff;
}
.hero-media {
  position: relative;
}
.hero-media img {
  border-radius: 12px;
  box-shadow: var(--shadow);
  border: 3px solid rgba(255, 255, 255, 0.12);
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: auto -30px -30px auto;
  width: 140px;
  height: 140px;
  background: radial-gradient(
    circle,
    rgba(255, 211, 78, 0.35),
    transparent 70%
  );
  filter: blur(6px);
  z-index: -1;
}

.content {
  padding: 22px;
}
.blk {
  margin: 26px 0;
}
.blk-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.blk-head h2 {
  margin: 0;
}
.blk-head .kk {
  width: 8px;
  height: 26px;
  border-radius: 6px;
  background: var(--clr-gold);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 20px;
  align-items: start;
}
.tiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.tile {
  background: linear-gradient(
    180deg,
    rgba(12, 67, 97, 0.65),
    rgba(12, 67, 97, 0.35)
  );
  border: 1px solid var(--clr-line);
  border-radius: 12px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.tile b {
  font-size: 20px;
  color: var(--clr-gold);
}
.tile span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #cdeeed;
}
.intro-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.casino-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.casino {
  display: grid;
  grid-template-columns: 56px 1.4fr 1fr auto;
  gap: 16px;
  align-items: center;
  background: linear-gradient(180deg, #0d4a6b, #0b3d59);
  border: 1px solid var(--clr-line);
  border-radius: var(--radius);
  padding: 16px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.casino:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.casino.top {
  border: 2px solid var(--clr-gold);
  box-shadow: 0 0 0 3px rgba(255, 211, 78, 0.12);
}
.casino .rank {
  font-size: 22px;
  font-weight: 900;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.casino.top .rank {
  background: var(--clr-gold);
  color: #26160a;
}
.casino .brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.casino .brand .logo-wm {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.casino .brand .logo-wm svg {
  height: 30px;
  width: auto;
}
.casino .brand .cname {
  font-size: 18px;
  font-weight: 900;
}
.casino .brand .meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  font-size: 12px;
  color: #cdeeed;
}
.casino .brand .flag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.1);
  padding: 2px 8px;
  border-radius: 999px;
}
.casino .brand .flag svg {
  height: 12px;
  width: auto;
  border-radius: 2px;
}
.casino .info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  color: #dff3f2;
}
.casino .info .score {
  display: flex;
  align-items: center;
  gap: 8px;
}
.casino .info .score b {
  font-size: 22px;
  color: var(--clr-gold);
}
.casino .info .stars {
  color: var(--clr-gold);
  letter-spacing: 2px;
  font-size: 14px;
}
.casino .info .bonus {
  font-weight: 800;
  color: #fff;
  background: rgba(255, 211, 78, 0.14);
  border: 1px dashed var(--clr-gold);
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 13px;
}
.casino .info .fine {
  font-size: 11px;
  color: #a9d6d4;
}
.casino .info .fine a {
  color: #ffd9d2;
  text-decoration: underline;
}
.casino .acts {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 150px;
}
.casino .terms {
  font-size: 11px;
  color: #a9d6d4;
}
.pager {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}
.load-status {
  text-align: center;
  color: #cdeeed;
  font-size: 13px;
  margin-top: 10px;
  min-height: 18px;
}

/* pros cons */
.pc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.pc {
  border-radius: var(--radius);
  padding: 18px;
  border: 1px solid var(--clr-line);
}
.pc.pros {
  background: linear-gradient(
    180deg,
    rgba(20, 124, 84, 0.4),
    rgba(12, 67, 97, 0.35)
  );
}
.pc.cons {
  background: linear-gradient(
    180deg,
    rgba(180, 28, 10, 0.35),
    rgba(12, 67, 97, 0.35)
  );
}
.pc h3 {
  display: flex;
  align-items: center;
  gap: 10px;
}
.pc ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pc li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 15px;
}
.pc li svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  margin-top: 2px;
}
.pros li svg {
  fill: #7be0a1;
}
.cons li svg {
  fill: #ff8b7b;
}

/* jackpots */
.jp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.jp {
  border-radius: var(--radius);
  padding: 18px;
  border: 1px solid var(--clr-line);
  background: linear-gradient(
    180deg,
    rgba(12, 67, 97, 0.7),
    rgba(8, 42, 61, 0.6)
  );
  text-align: center;
}
.jp.mini {
  box-shadow: inset 0 0 0 2px rgba(123, 224, 161, 0.35);
}
.jp.major {
  box-shadow: inset 0 0 0 2px rgba(255, 211, 78, 0.45);
}
.jp.mega {
  box-shadow: inset 0 0 0 2px rgba(255, 122, 0, 0.5);
}
.jp .lvl {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #cdeeed;
}
.jp .amt {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 900;
  color: var(--clr-gold);
  margin: 6px 0 14px;
  font-variant-numeric: tabular-nums;
}
.jp .winners {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.jp .winners li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 14px;
}
.jp .winners .who {
  display: flex;
  align-items: center;
  gap: 8px;
}
.jp .winners .av {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0a63e6, #b41c0a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
}
.jp .winners .amt-s {
  color: #7bffd0;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.shots {
  position: relative;
}
.shots-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.shots-track img {
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow-sm);
  cursor: zoom-in;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.shots-dots {
  display: none;
}

.author {
  display: flex;
  gap: 16px;
  align-items: center;
  background: rgba(9, 42, 61, 0.4);
  border: 1px solid var(--clr-line);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 18px;
}
.author img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 2px solid var(--clr-gold);
}
.author .who b {
  font-size: 18px;
}
.author .who span {
  display: block;
  font-size: 13px;
  color: #cdeeed;
}
.author .who .links {
  margin-top: 6px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.author .who .links a {
  font-size: 12px;
  color: #ffd9d2;
  text-decoration: underline;
}

.text h1,
.text h2,
.text h3 {
  color: #fff;
}
.text a {
  color: #ffd9d2;
  text-decoration: underline;
}
.text a:hover {
  color: #fff;
}
.text ul,
.text ol {
  margin: 0 0 1em;
  padding-left: 1.3em;
}
.text li {
  margin-bottom: 0.4em;
}
.text blockquote {
  margin: 1em 0;
  padding: 12px 18px;
  border-left: 4px solid var(--clr-gold);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 0 10px 10px 0;
}
.text table {
  width: 100%;
  border-collapse: collapse;
  margin: 1em auto;
  background: rgba(9, 42, 61, 0.4);
  border-radius: 10px;
  overflow: hidden;
}
.text th,
.text td {
  padding: 12px 14px;
  border: 1px solid var(--clr-line);
  text-align: left;
}
.text th {
  background: rgba(12, 67, 97, 0.8);
  font-weight: 800;
}
.text img {
  border-radius: 10px;
  margin: 1em 0;
}
.text-scroll {
  overflow-x: auto;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq details {
  background: linear-gradient(
    180deg,
    rgba(12, 67, 97, 0.6),
    rgba(8, 42, 61, 0.5)
  );
  border: 1px solid var(--clr-line);
  border-radius: 12px;
  padding: 2px 16px;
  transition: background 0.2s;
}
.faq details[open] {
  background: rgba(12, 67, 97, 0.85);
}
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 14px 0;
  font-weight: 800;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: "+";
  font-size: 24px;
  color: var(--clr-gold);
  transition: transform 0.2s;
}
.faq details[open] summary::after {
  content: "\2212";
}
.faq .ans {
  padding: 0 0 14px;
  color: #e3f4f3;
}

.footer {
  padding: 26px 20px;
  margin-top: 6px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 24px;
}
.footer .logo img {
  height: 44px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links a {
  color: #cdeeed;
  font-size: 14px;
}
.footer-links a:hover {
  color: #fff;
  text-decoration: underline;
}
.footer h4 {
  color: var(--clr-gold);
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
}
.pay-row,
.trust-row,
.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.pay-row svg,
.trust-row svg {
  height: 26px;
  width: auto;
  opacity: 0.9;
}
.social-row a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.social-row a:hover {
  background: var(--clr-blue);
}
.social-row svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}
.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--clr-line);
}
.footer-badges .bg {
  padding: 6px 10px;
  border: 1px solid var(--clr-line);
  border-radius: 8px;
  font-size: 11px;
  font-weight: 800;
  color: #cdeeed;
  background: rgba(0, 0, 0, 0.15);
}
.footer-badges .age {
  background: var(--clr-red);
  color: #fff;
  border-color: var(--clr-red);
}
.copyright {
  margin-top: 16px;
  color: #bfe3e1;
  font-size: 12px;
  line-height: 1.7;
  border-top: 1px solid var(--clr-line);
  padding-top: 14px;
}
.copyright a {
  color: #ffd9d2;
  text-decoration: underline;
}

.stickybar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  background: linear-gradient(90deg, #0c4361, #0a3850);
  border-top: 2px solid var(--clr-gold);
  box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 16px;
}
.stickybar p {
  margin: 0;
  font-weight: 800;
  font-size: 15px;
}
.stickybar p span {
  color: var(--clr-gold);
}
.stickybar .btn {
  text-decoration: none;
}
.stickybar .cls {
  background: transparent;
  border: 0;
  color: #bfe3e1;
  font-size: 22px;
  cursor: pointer;
  padding: 0 6px;
}

.info-hero {
  padding: 20px;
  text-align: center;
}
.breadcrumbs {
  font-size: 13px;
  color: #cdeeed;
  margin-bottom: 8px;
}
.breadcrumbs a {
  color: #ffd9d2;
  text-decoration: underline;
}

.u-fade {
  opacity: 0;
  transform: translateY(20px);
}
.u-inview {
  opacity: 1;
  transform: none;
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.wp-block-spacer {
  height: 1px;
}
.aligncenter {
  margin-left: auto;
  margin-right: auto;
}
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.elementor-widget-container {
  display: contents;
}
.pill {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 12px;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.divider-neon {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--clr-gold), transparent);
  margin: 20px 0;
  border: 0;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(4, 20, 29, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 120;
  padding: 20px;
}
.lightbox.open {
  display: flex;
}
.lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  border-radius: 12px;
}
.lightbox .cls {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 34px;
  color: #fff;
  cursor: pointer;
  background: none;
  border: 0;
}

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .intro-grid {
    grid-template-columns: 1fr;
  }
  .jp-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .casino {
    grid-template-columns: 44px 1fr;
    grid-auto-rows: auto;
  }
  .casino .info {
    grid-column: 1/-1;
  }
  .casino .acts {
    grid-column: 1/-1;
    flex-direction: row;
  }
  .casino .acts .btn {
    flex: 1;
  }
}
@media (max-width: 760px) {
  .hdr-grid {
    grid-template-columns: auto auto;
    grid-template-areas: "logo btns" "nav nav";
    row-gap: 12px;
  }
  .logo {
    grid-area: logo;
  }
  .header-buttons {
    grid-area: btns;
    justify-self: end;
  }
  .jackpot-chip {
    display: none;
  }
  .header-nav {
    grid-area: nav;
    position: fixed;
    inset: 0 0 0 auto;
    width: min(78vw, 320px);
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: var(--clr-nav);
    padding: 78px 18px 24px;
    transform: translateX(110%);
    transition: transform 0.3s ease;
    z-index: 100;
    box-shadow: var(--shadow);
  }
  .header-nav.active {
    transform: none;
  }
  .header-nav a.nav-lnk {
    font-size: 16px;
    padding: 14px 12px;
    border-bottom: 1px solid var(--clr-line);
  }
  .burger {
    display: flex;
    position: relative;
    z-index: 110;
  }
  .pc-grid {
    grid-template-columns: 1fr;
  }
  .shots-track {
    grid-auto-flow: column;
    grid-template-columns: none;
    grid-auto-columns: 82%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
  }
  .shots-track img {
    scroll-snap-align: center;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .author {
    flex-direction: column;
    text-align: center;
  }
  .stickybar p {
    font-size: 13px;
  }
}
@media (max-width: 420px) {
  .tiles {
    grid-template-columns: 1fr;
  }
  .header-buttons .btn--md {
    padding: 10px 12px;
    font-size: 13px;
  }
}
