:root {
  --gk-nav: #3e1819;
  --gk-nav-2: #4a1f1c;
  --gk-bg: #5d150f;
  --gk-bg-2: #6e1c14;
  --gk-gold: #fbcc49;
  --gk-gold-2: #e0ad2c;
  --gk-green: #7dc734;
  --gk-green-2: #69ac2a;
  --gk-text: #f6ecd6;
  --gk-muted: #d8c6a4;
  --gk-dark-text: #2a0f0b;
  --gk-line: rgba(251, 204, 73, 0.28);
  --gk-radius: 16px;
  --gk-radius-sm: 10px;
  --gk-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  background: var(--gk-bg);
}
body {
  font-family: "Lilita One", sans-serif;
  background: radial-gradient(
    1200px 600px at 50% -10%,
    var(--gk-bg-2),
    var(--gk-bg)
  );
  color: var(--gk-text);
  line-height: 1.6;
  letter-spacing: 0.3px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.fixed {
  overflow: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--gk-gold);
  text-decoration: none;
  transition: 0.25s;
}
a:hover {
  color: var(--gk-gold-2);
}
ul {
  list-style: none;
}
.wrapper {
  width: 100%;
}
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 16px;
}
.box {
  margin: 16px 0;
  padding: 22px;
  border-radius: var(--gk-radius);
  background: rgba(62, 24, 25, 0.55);
  border: 1px solid var(--gk-line);
  box-shadow: var(--gk-shadow);
}
h1,
h2,
h3,
h4 {
  line-height: 1.25;
  color: var(--gk-gold);
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.25);
  letter-spacing: 0.6px;
}
h1 {
  font-size: clamp(26px, 5vw, 44px);
  margin-bottom: 14px;
}
h2 {
  font-size: clamp(22px, 4vw, 32px);
  margin-bottom: 16px;
}
h3 {
  font-size: clamp(18px, 3vw, 22px);
  margin-bottom: 10px;
}
p {
  margin-bottom: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "Lilita One", sans-serif;
  border: none;
  cursor: pointer;
  border-radius: 999px;
  padding: 12px 22px;
  font-size: 16px;
  letter-spacing: 0.5px;
  transition:
    transform 0.18s,
    box-shadow 0.18s,
    filter 0.18s;
  text-transform: uppercase;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.4);
  filter: brightness(1.05);
}
.btn:active {
  transform: translateY(0);
}
.btn--play,
.btn--green {
  background: linear-gradient(180deg, var(--gk-green), var(--gk-green-2));
  color: #0f2a05;
}
.btn--bonus,
.btn--gold {
  background: linear-gradient(180deg, var(--gk-gold), var(--gk-gold-2));
  color: var(--gk-dark-text);
}
.btn--ghost {
  background: transparent;
  border: 2px solid var(--gk-gold);
  color: var(--gk-gold);
}
.btn--sm {
  padding: 8px 16px;
  font-size: 13px;
}
.btn--lg {
  padding: 15px 30px;
  font-size: 18px;
}
.btn--wide {
  width: 100%;
}

.gk-header {
  background: linear-gradient(180deg, var(--gk-nav), var(--gk-nav-2));
  border: 1px solid var(--gk-line);
}
.gk-head-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}
.gk-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.gk-logo img {
  height: 62px;
  width: auto;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.5));
}
.gk-logo span {
  font-size: 22px;
  color: var(--gk-gold);
  letter-spacing: 1px;
}
.gk-nav-list {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.gk-nav-list a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--gk-text);
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 15px;
}
.gk-nav-list a:hover {
  background: rgba(251, 204, 73, 0.12);
  color: var(--gk-gold);
}
.gk-nav-ic {
  width: 18px;
  height: 18px;
  fill: var(--gk-gold);
  flex: none;
}
.gk-head-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.gk-jackpot-live {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid var(--gk-line);
  border-radius: 999px;
  padding: 8px 16px;
}
.gk-jackpot-live .lbl {
  font-size: 12px;
  color: var(--gk-muted);
  text-transform: uppercase;
}
.gk-jackpot-live .amt {
  font-size: 20px;
  color: var(--gk-gold);
  letter-spacing: 1px;
  text-shadow: 0 0 12px rgba(251, 204, 73, 0.5);
}
.gk-pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gk-green);
  box-shadow: 0 0 0 0 rgba(125, 199, 52, 0.7);
  animation: gkpulse 1.6s infinite;
}
@keyframes gkpulse {
  0% {
    box-shadow: 0 0 0 0 rgba(125, 199, 52, 0.6);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(125, 199, 52, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(125, 199, 52, 0);
  }
}

.gk-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.gk-burger span {
  width: 26px;
  height: 3px;
  background: var(--gk-gold);
  border-radius: 3px;
  transition: 0.3s;
}
.gk-burger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.gk-burger.active span:nth-child(2) {
  opacity: 0;
}
.gk-burger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.gk-hero {
  position: relative;
  overflow: hidden;
  border-radius: var(--gk-radius);
  margin: 16px 0;
  border: 1px solid var(--gk-line);
  box-shadow: var(--gk-shadow);
}
.gk-hero-media {
  position: relative;
}
.gk-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 460px;
  min-height: 280px;
}
.gk-hero-media:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(62, 24, 25, 0.92),
    rgba(93, 21, 15, 0.35)
  );
}
.gk-hero-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 26px 30px;
  max-width: 640px;
  animation: gkfade 1s ease both;
}
.gk-hero-inner .tag {
  display: inline-block;
  width: fit-content;
  background: var(--gk-green);
  color: #0f2a05;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.gk-hero-inner h1 {
  margin-bottom: 12px;
}
.gk-hero-inner p {
  color: var(--gk-text);
  font-size: 16px;
  margin-bottom: 20px;
}
.gk-hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@keyframes gkfade {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.gk-casino-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.gk-casino {
  display: flex;
  align-items: stretch;
  gap: 16px;
  background: linear-gradient(
    180deg,
    rgba(62, 24, 25, 0.75),
    rgba(62, 24, 25, 0.5)
  );
  border: 1px solid var(--gk-line);
  border-radius: var(--gk-radius);
  padding: 18px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.gk-casino:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.45);
}
.gk-casino .rank {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--gk-nav);
  color: var(--gk-gold);
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom-right-radius: 12px;
  font-size: 16px;
}
.gk-casino.top .rank {
  background: linear-gradient(180deg, var(--gk-gold), var(--gk-gold-2));
  color: var(--gk-dark-text);
}
.gk-casino.top {
  border-color: var(--gk-gold);
  box-shadow:
    0 0 0 1px var(--gk-gold),
    0 12px 26px rgba(0, 0, 0, 0.4);
}
.gk-casino.top:before {
  content: "TOP";
  position: absolute;
  top: 8px;
  right: -30px;
  transform: rotate(45deg);
  background: var(--gk-green);
  color: #0f2a05;
  padding: 3px 34px;
  font-size: 11px;
  letter-spacing: 2px;
}
.gk-cas-brand {
  flex: 0 0 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  padding-left: 22px;
}
.gk-cas-logo {
  width: 110px;
  height: 64px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  letter-spacing: 1px;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.15);
}
.gk-cas-name {
  font-size: 17px;
  color: var(--gk-gold);
}
.gk-cas-flag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--gk-muted);
}
.gk-cas-flag img {
  width: 20px;
  height: 14px;
  border-radius: 2px;
}
.gk-cas-mid {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
  border-left: 1px dashed var(--gk-line);
  border-right: 1px dashed var(--gk-line);
  padding: 0 16px;
}
.gk-cas-score {
  display: flex;
  align-items: center;
  gap: 10px;
}
.gk-score-badge {
  background: linear-gradient(180deg, var(--gk-green), var(--gk-green-2));
  color: #0f2a05;
  border-radius: 10px;
  padding: 6px 12px;
  font-size: 20px;
}
.gk-stars {
  color: var(--gk-gold);
  font-size: 15px;
  letter-spacing: 2px;
}
.gk-cas-bonus {
  font-size: 18px;
  color: var(--gk-text);
}
.gk-cas-bonus b {
  color: var(--gk-gold);
}
.gk-cas-adv {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 4px;
}
.gk-cas-adv li {
  font-size: 13px;
  color: var(--gk-muted);
  display: flex;
  gap: 7px;
  align-items: flex-start;
  font-family: sans-serif;
  font-weight: 600;
}
.gk-cas-adv li:before {
  content: "";
  width: 16px;
  height: 16px;
  flex: none;
  margin-top: 2px;
  background: var(--gk-green);
  -webkit-mask: url("/img/check.svg") center/contain no-repeat;
  mask: url("/img/check.svg") center/contain no-repeat;
}
.gk-cas-cta {
  flex: 0 0 190px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  justify-content: center;
}
.gk-cas-legal {
  font-size: 10px;
  color: var(--gk-muted);
  text-align: center;
  font-family: sans-serif;
  line-height: 1.4;
}
.gk-cas-legal a {
  font-size: 10px;
}

.gk-loadmore-wrap {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.gk-loader {
  display: none;
  margin: 16px auto 0;
  width: 34px;
  height: 34px;
  border: 4px solid rgba(251, 204, 73, 0.25);
  border-top-color: var(--gk-gold);
  border-radius: 50%;
  animation: gkspin 1s linear infinite;
}
.gk-loader.on {
  display: block;
}
@keyframes gkspin {
  to {
    transform: rotate(360deg);
  }
}

.gk-pc {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.gk-pc-col {
  flex: 1 1 260px;
  border-radius: var(--gk-radius);
  padding: 18px;
  border: 1px solid var(--gk-line);
}
.gk-pc-col.pros {
  background: linear-gradient(
    180deg,
    rgba(125, 199, 52, 0.14),
    rgba(125, 199, 52, 0.05)
  );
}
.gk-pc-col.cons {
  background: linear-gradient(
    180deg,
    rgba(220, 60, 50, 0.14),
    rgba(220, 60, 50, 0.05)
  );
}
.gk-pc-col h3 {
  display: flex;
  align-items: center;
  gap: 8px;
}
.gk-pc-col ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 8px;
}
.gk-pc-col li {
  font-family: sans-serif;
  font-weight: 600;
  font-size: 15px;
  display: flex;
  gap: 9px;
  align-items: flex-start;
  color: var(--gk-text);
}
.gk-pc-col.pros li:before {
  content: "+";
  color: var(--gk-green);
  font-family: "Lilita One";
  font-size: 18px;
  line-height: 1;
}
.gk-pc-col.cons li:before {
  content: "–";
  color: #ff8a7a;
  font-family: "Lilita One";
  font-size: 18px;
  line-height: 1;
}

.gk-jp-grid {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.gk-jp {
  flex: 1 1 280px;
  border-radius: var(--gk-radius);
  padding: 20px;
  text-align: center;
  border: 1px solid var(--gk-line);
  background: radial-gradient(
    400px 200px at 50% 0,
    rgba(251, 204, 73, 0.16),
    rgba(0, 0, 0, 0.15)
  );
  position: relative;
  overflow: hidden;
}
.gk-jp .tier {
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gk-muted);
}
.gk-jp .sum {
  font-size: clamp(24px, 4vw, 34px);
  color: var(--gk-gold);
  margin: 8px 0 14px;
  text-shadow: 0 0 16px rgba(251, 204, 73, 0.45);
}
.gk-jp.grand {
  border-color: var(--gk-gold);
  box-shadow: 0 0 0 1px var(--gk-gold);
}
.gk-jp-top {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}
.gk-jp-top li {
  display: flex;
  justify-content: space-between;
  font-family: sans-serif;
  font-weight: 700;
  font-size: 13px;
  background: rgba(0, 0, 0, 0.22);
  border-radius: 8px;
  padding: 7px 10px;
}
.gk-jp-top li span:last-child {
  color: var(--gk-green);
}

.gk-reviews-grid {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.gk-review {
  flex: 1 1 280px;
  background: rgba(62, 24, 25, 0.6);
  border: 1px solid var(--gk-line);
  border-radius: var(--gk-radius);
  padding: 18px;
}
.gk-rev-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.gk-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #0f2a05;
  flex: none;
}
.gk-rev-name {
  font-size: 16px;
  color: var(--gk-gold);
}
.gk-rev-stars {
  color: var(--gk-gold);
  font-size: 13px;
  letter-spacing: 2px;
}
.gk-review p {
  font-family: sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--gk-text);
}

.gk-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 560px;
  margin: 18px auto 0;
}
.gk-form label {
  font-size: 14px;
  color: var(--gk-muted);
}
.gk-form input,
.gk-form textarea {
  width: 100%;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid var(--gk-line);
  border-radius: var(--gk-radius-sm);
  padding: 12px 14px;
  color: var(--gk-text);
  font-family: sans-serif;
  font-size: 15px;
}
.gk-form textarea {
  min-height: 120px;
  resize: vertical;
}
.gk-form input:focus,
.gk-form textarea:focus {
  outline: none;
  border-color: var(--gk-gold);
  box-shadow: 0 0 0 3px rgba(251, 204, 73, 0.18);
}
.gk-form-ok {
  display: none;
  background: linear-gradient(
    180deg,
    rgba(125, 199, 52, 0.2),
    rgba(125, 199, 52, 0.08)
  );
  border: 1px solid var(--gk-green);
  color: var(--gk-text);
  padding: 12px 14px;
  border-radius: var(--gk-radius-sm);
  font-family: sans-serif;
  font-weight: 700;
}
.gk-form-ok.on {
  display: block;
  animation: gkfade 0.5s both;
}

.gk-faq {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.gk-faq-item {
  border: 1px solid var(--gk-line);
  border-radius: var(--gk-radius-sm);
  overflow: hidden;
  background: rgba(0, 0, 0, 0.18);
}
.gk-faq-q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  color: var(--gk-gold);
  font-family: "Lilita One";
  font-size: 16px;
  padding: 15px 18px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.gk-faq-q .ic {
  transition: 0.3s;
  flex: none;
  color: var(--gk-gold);
}
.gk-faq-item.open .gk-faq-q .ic {
  transform: rotate(45deg);
}
.gk-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding: 0 18px;
}
.gk-faq-item.open .gk-faq-a {
  max-height: 400px;
  padding: 0 18px 16px;
}
.gk-faq-a p {
  font-family: sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--gk-muted);
}

.gk-content {
  font-family: sans-serif;
  font-weight: 500;
  color: var(--gk-text);
  line-height: 1.7;
}
.gk-content h1,
.gk-content h2,
.gk-content h3,
.gk-content h4 {
  font-family: "Lilita One";
  margin: 22px 0 12px;
}
.gk-content p {
  margin-bottom: 14px;
  font-size: 15px;
}
.gk-content a {
  text-decoration: underline;
}
.gk-content ul,
.gk-content ol {
  margin: 0 0 14px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.gk-content ul li {
  list-style: disc;
}
.gk-content ol li {
  list-style: decimal;
}
.gk-content blockquote {
  border-left: 4px solid var(--gk-gold);
  background: rgba(251, 204, 73, 0.08);
  padding: 12px 16px;
  margin: 0 0 14px;
  border-radius: 0 10px 10px 0;
  font-style: italic;
}
.gk-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto 16px;
  display: block;
  overflow-x: auto;
}
.gk-content th,
.gk-content td {
  border: 1px solid var(--gk-line);
  padding: 10px 12px;
  text-align: left;
}
.gk-content th {
  background: var(--gk-nav);
  color: var(--gk-gold);
}
.gk-content img {
  border-radius: 12px;
  margin: 8px 0;
}
.gk-content figure {
  margin: 0 0 14px;
}
.gk-content code {
  background: rgba(0, 0, 0, 0.3);
  padding: 2px 6px;
  border-radius: 6px;
  font-size: 13px;
}

.gk-author {
  display: flex;
  gap: 14px;
  align-items: center;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--gk-line);
  border-radius: var(--gk-radius);
  padding: 14px;
  margin-bottom: 16px;
}
.gk-author .av {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--gk-gold), var(--gk-gold-2));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gk-dark-text);
  font-size: 22px;
  flex: none;
}
.gk-author .nm {
  color: var(--gk-gold);
  font-size: 16px;
}
.gk-author .bio {
  font-family: sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: var(--gk-muted);
}

.gk-footer {
  background: linear-gradient(180deg, var(--gk-nav-2), var(--gk-nav));
  border-top: 2px solid var(--gk-line);
  margin-top: 24px;
  padding: 28px 0;
}
.gk-foot-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  justify-content: space-between;
}
.gk-foot-col {
  flex: 1 1 200px;
}
.gk-foot-col h4 {
  font-size: 16px;
  margin-bottom: 12px;
}
.gk-foot-col ul {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.gk-foot-col a {
  color: var(--gk-muted);
  font-size: 14px;
}
.gk-foot-col a:hover {
  color: var(--gk-gold);
}
.gk-foot-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.gk-foot-logos .chip {
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid var(--gk-line);
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 11px;
  color: var(--gk-muted);
  font-family: sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.gk-foot-ic {
  width: 26px;
  height: 26px;
  fill: var(--gk-gold);
}
.gk-foot-social {
  display: flex;
  gap: 10px;
}
.gk-foot-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gk-line);
}
.gk-foot-social a:hover {
  background: var(--gk-gold);
}
.gk-foot-social a:hover .gk-foot-ic {
  fill: var(--gk-dark-text);
}
.gk-foot-bottom {
  border-top: 1px solid var(--gk-line);
  margin-top: 22px;
  padding-top: 16px;
  text-align: center;
  font-family: sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: var(--gk-muted);
}
.gk-foot-bottom .flag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0 6px;
}
.gk-foot-bottom img {
  width: 22px;
  height: 15px;
  display: inline-block;
  border-radius: 2px;
  vertical-align: middle;
}

.gk-widget {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  background: linear-gradient(90deg, var(--gk-nav), var(--gk-nav-2));
  border-top: 2px solid var(--gk-gold);
  box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.4);
  transform: translateY(0);
  transition: 0.4s;
}
.gk-widget.hide {
  transform: translateY(120%);
}
.gk-widget-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 16px;
  max-width: 1180px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.gk-widget-txt {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gk-text);
}
.gk-widget-txt img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}
.gk-widget-txt b {
  color: var(--gk-gold);
}
.gk-widget-txt small {
  color: var(--gk-muted);
  font-family: sans-serif;
  font-weight: 600;
  display: block;
  font-size: 11px;
}
.gk-widget-cta {
  display: flex;
  align-items: center;
  gap: 8px;
}
.gk-widget a.gk-nolink {
  text-decoration: none !important;
}
.gk-widget-close {
  background: transparent;
  border: none;
  color: var(--gk-muted);
  font-size: 20px;
  cursor: pointer;
  padding: 4px 8px;
}

.gk-badge-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #ff8a7a;
  color: #ff8a7a;
  font-size: 11px;
  font-family: "Lilita One";
}

.gk-crumbs {
  font-family: sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: var(--gk-muted);
  margin: 10px 0;
}
.gk-crumbs a {
  color: var(--gk-gold);
}

.gk-note {
  font-family: sans-serif;
  font-weight: 600;
  font-size: 12px;
  color: var(--gk-muted);
  text-align: center;
  margin-top: 10px;
}
.gk-hidden {
  display: none !important;
}
.gk-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.gk-mt0 {
  margin-top: 0;
}
.gk-tc {
  text-align: center;
}
.gk-wp-shim,
.gk-elementor-inner,
.gk-yoast-crumb {
  display: none;
}
.gk-clearfix::after {
  content: "";
  display: table;
  clear: both;
}
.gk-skeleton {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.14),
    rgba(255, 255, 255, 0.06)
  );
  background-size: 200% 100%;
  animation: gkshim 1.4s infinite;
}
@keyframes gkshim {
  to {
    background-position: -200% 0;
  }
}

@media (max-width: 900px) {
  .gk-cas-brand {
    flex-basis: 120px;
    padding-left: 24px;
  }
  .gk-cas-cta {
    flex-basis: 160px;
  }
  .gk-cas-logo {
    width: 96px;
    height: 56px;
    font-size: 16px;
  }
}
@media (max-width: 760px) {
  .gk-nav-list {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 78%;
    max-width: 320px;
    background: var(--gk-nav);
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 70px 20px 20px;
    z-index: 70;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
  }
  .gk-nav-list.active {
    display: flex;
    animation: gkslide 0.3s both;
  }
  @keyframes gkslide {
    from {
      transform: translateX(100%);
    }
    to {
      transform: none;
    }
  }
  .gk-nav-list a {
    width: 100%;
    font-size: 17px;
    padding: 12px;
  }
  .gk-burger {
    display: flex;
    z-index: 80;
  }
  .gk-head-cta .btn--ghost {
    display: none;
  }
  .gk-casino {
    flex-direction: column;
  }
  .gk-cas-brand {
    flex-basis: auto;
    flex-direction: row;
    justify-content: flex-start;
    padding-left: 40px;
  }
  .gk-cas-mid {
    border-left: none;
    border-right: none;
    border-top: 1px dashed var(--gk-line);
    border-bottom: 1px dashed var(--gk-line);
    padding: 12px 0;
  }
  .gk-cas-cta {
    flex-basis: auto;
  }
  .gk-cas-cta .btn {
    width: 100%;
  }
  .gk-jackpot-live {
    order: 3;
    width: 100%;
    justify-content: center;
  }
  .gk-widget-inner {
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 420px) {
  .gk-logo span {
    display: none;
  }
  .gk-hero-inner {
    padding: 18px;
  }
}
