:root {
  --kh-bg: #070809;
  --kh-panel: #101113;
  --kh-panel-2: #17100f;
  --kh-ink: #fff7df;
  --kh-muted: #d7ceb7;
  --kh-gold: #d7a83a;
  --kh-gold-2: #f1d77a;
  --kh-emerald: #08c79f;
  --kh-ruby: #c7274b;
  --kh-blue: #0b2d70;
  --kh-border: rgba(241, 215, 122, .24);
  --kh-shadow: 0 24px 80px rgba(0, 0, 0, .52);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--kh-bg);
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  background:
    radial-gradient(circle at 18% 14%, rgba(8, 199, 159, .12), transparent 28rem),
    radial-gradient(circle at 88% 12%, rgba(199, 39, 75, .13), transparent 30rem),
    linear-gradient(180deg, #060708 0%, #0d0b0a 45%, #070809 100%) !important;
  color: var(--kh-ink) !important;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif !important;
  letter-spacing: 0 !important;
  overflow-x: hidden;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 2147483000;
  pointer-events: none;
  opacity: .11;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

a,
button,
.btn,
.mobile-btn,
.tab-title-row {
  cursor: pointer;
}

.container {
  max-width: 1180px !important;
  width: min(1180px, calc(100% - 32px)) !important;
  margin-inline: auto !important;
}

.header {
  position: fixed !important;
  inset: 0 0 auto 0 !important;
  z-index: 1000 !important;
  background:
    linear-gradient(180deg, rgba(5, 6, 7, .96), rgba(5, 6, 7, .86)),
    linear-gradient(90deg, rgba(215, 168, 58, .12), transparent 34%, rgba(8, 199, 159, .09)) !important;
  border-bottom: 1px solid rgba(241, 215, 122, .16) !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .45) !important;
  backdrop-filter: blur(16px);
  margin-bottom: 0 !important;
}

.header-content {
  min-height: 88px;
  gap: 24px;
}

.custom-logo-link {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 186px;
  min-height: 58px;
  padding: 6px 0 !important;
  border-radius: 8px;
  position: relative;
  isolation: isolate;
  overflow: visible;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.custom-logo-link::before {
  content: "";
  position: absolute;
  inset: 8px -10px;
  z-index: -1;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 45%, rgba(241, 215, 122, .36), transparent 52%),
    radial-gradient(circle at 52% 50%, rgba(8, 199, 159, .22), transparent 68%);
  filter: blur(14px);
  opacity: .86;
  transition: opacity .2s ease, transform .2s ease;
}

.custom-logo-link:hover::before {
  opacity: 1;
  transform: scale(1.04);
}

.custom-logo {
  width: 158px !important;
  max-width: 158px !important;
  height: auto !important;
  object-fit: contain !important;
  filter:
    drop-shadow(0 0 10px rgba(241, 215, 122, .46))
    drop-shadow(0 8px 18px rgba(0, 0, 0, .42));
}

.nav a {
  color: rgba(255, 247, 223, .88) !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}

.header .nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header .nav a {
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid transparent;
}

.header .nav a:hover {
  color: #fff !important;
  border-color: rgba(241, 215, 122, .24);
  background: rgba(241, 215, 122, .08);
}

.btn,
.btn.btn-primary,
.btn.btn-danger,
.btn.offer-btn,
.header .btn {
  min-height: 52px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 9px !important;
  border-radius: 8px !important;
  border: 1px solid rgba(255, 255, 255, .16) !important;
  padding: 14px 24px !important;
  font-weight: 800 !important;
  text-decoration: none !important;
  color: #fff !important;
  background: linear-gradient(135deg, var(--kh-ruby), #f06d34 58%, var(--kh-gold)) !important;
  box-shadow: 0 14px 30px rgba(199, 39, 75, .23), inset 0 1px 0 rgba(255, 255, 255, .28) !important;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.btn:hover,
.btn.btn-primary:hover,
.btn.btn-danger:hover,
.btn.offer-btn:hover,
.header .btn:hover {
  transform: translateY(-2px);
  filter: saturate(1.08) brightness(1.05);
  box-shadow: 0 18px 40px rgba(199, 39, 75, .32), inset 0 1px 0 rgba(255, 255, 255, .3) !important;
}

.header .btn-primary {
  background: linear-gradient(135deg, var(--kh-emerald), #04a37d) !important;
  box-shadow: 0 14px 28px rgba(8, 199, 159, .18), inset 0 1px 0 rgba(255, 255, 255, .25) !important;
}

.header .btn-danger {
  background: linear-gradient(135deg, var(--kh-blue), #1356b1) !important;
}

body.home {
  padding-top: 88px !important;
}

body:not(.home) {
  padding-top: 104px !important;
}

body.home .screen.page-section {
  position: relative;
  min-height: 760px;
  padding: 70px 0 74px !important;
  overflow: hidden;
  isolation: isolate;
  background: #070809 !important;
}

.kh-hero-bg-img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  pointer-events: none;
  user-select: none;
}

body.home .screen.page-section::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 130px;
  z-index: -1;
  background: linear-gradient(180deg, transparent, var(--kh-bg));
}

body.home .screen.page-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(3, 5, 7, .62) 0%, rgba(3, 5, 7, .46) 34%, rgba(3, 5, 7, .1) 58%, rgba(3, 5, 7, .34) 100%),
    linear-gradient(180deg, rgba(3, 5, 7, .02), rgba(3, 5, 7, .56)),
    linear-gradient(90deg, rgba(215, 168, 58, .11), transparent 22%, transparent 78%, rgba(8, 199, 159, .08)),
    repeating-linear-gradient(90deg, rgba(255,255,255,.035) 0 1px, transparent 1px 104px);
  opacity: 1;
}

body.home .screen .container,
body.home .screen-content {
  height: auto !important;
  min-height: 0 !important;
}

body.home .screen-content {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 460px);
  gap: 44px;
  align-items: center !important;
  padding-top: 0 !important;
}

.offer {
  max-width: 560px !important;
}

.kh-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-bottom: 18px;
  padding: 8px 14px;
  color: var(--kh-gold-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid rgba(241, 215, 122, .32);
  background: rgba(16, 11, 6, .62);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.1);
}

.offer-title {
  color: #fff !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: 58px !important;
  line-height: 1.03 !important;
  font-weight: 700 !important;
  text-wrap: balance;
  text-shadow: 0 5px 30px rgba(0,0,0,.6);
  margin-bottom: 22px !important;
}

.offer-title .kh-amount {
  display: inline-block;
  color: var(--kh-gold-2);
  text-shadow: 0 0 26px rgba(215, 168, 58, .35);
}

.offer-desc {
  max-width: 540px;
  color: rgba(255, 247, 223, .9) !important;
  font-size: 19px !important;
  line-height: 1.58 !important;
  margin-bottom: 24px !important;
}

.kh-hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.kh-hero-facts li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  color: rgba(255, 247, 223, .86);
  background: rgba(0, 0, 0, .38);
  backdrop-filter: blur(8px);
}

.kh-hero-facts li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--kh-emerald);
  box-shadow: 0 0 16px rgba(8,199,159,.7);
}

.offer .btn-row {
  gap: 14px !important;
  align-items: center;
}

.offer .btn-row .btn:last-child {
  color: #111 !important;
  background: linear-gradient(135deg, #f5d87a, var(--kh-gold)) !important;
  box-shadow: 0 16px 36px rgba(215, 168, 58, .28), inset 0 1px 0 rgba(255,255,255,.32) !important;
}

.kh-terms-line {
  margin-top: 16px;
  color: rgba(255, 247, 223, .68);
  font-size: 13px;
}

.screen-image.kh-hero-game {
  width: 100% !important;
  max-width: 460px !important;
  min-width: 0 !important;
  justify-self: end;
}

.kh-plinko {
  position: relative;
  width: min(100%, 430px);
  margin-inline: auto;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(241, 215, 122, .32);
  background:
    linear-gradient(180deg, rgba(241, 215, 122, .1), transparent 24%),
    linear-gradient(145deg, rgba(12, 13, 15, .94), rgba(28, 13, 18, .92));
  box-shadow: var(--kh-shadow), inset 0 1px 0 rgba(255,255,255,.14);
  touch-action: manipulation;
}

.kh-plinko::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 6px;
  pointer-events: none;
  border: 1px solid rgba(241, 215, 122, .14);
}

.kh-plinko-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px 12px;
  border-bottom: 1px solid rgba(241, 215, 122, .16);
  background: linear-gradient(90deg, rgba(8, 199, 159, .12), rgba(215, 168, 58, .08));
}

.kh-plinko-title {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 700;
  line-height: 1;
}

.kh-plinko-sub {
  margin-top: 3px;
  color: rgba(255, 247, 223, .66);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.kh-plinko-balance {
  min-width: 112px;
  padding: 8px 10px;
  color: var(--kh-gold-2);
  text-align: right;
  font-weight: 800;
  border-radius: 8px;
  border: 1px solid rgba(241, 215, 122, .18);
  background: rgba(0, 0, 0, .32);
}

.kh-plinko-canvas-wrap {
  position: relative;
  background:
    radial-gradient(circle at 50% 0%, rgba(8, 199, 159, .13), transparent 45%),
    linear-gradient(180deg, #08090b, #100b0a);
}

#kh-plinko-canvas {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 360 / 420;
}

.kh-plinko-win {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(0, 0, 0, .42);
  backdrop-filter: blur(2px);
}

.kh-plinko-win.is-visible {
  display: flex;
}

.kh-plinko-win-card {
  width: min(280px, 100%);
  padding: 22px 20px;
  text-align: center;
  border-radius: 8px;
  border: 1px solid rgba(241, 215, 122, .42);
  background: linear-gradient(180deg, rgba(19, 17, 14, .98), rgba(10, 9, 8, .98));
  box-shadow: 0 0 60px rgba(215, 168, 58, .35);
}

.kh-plinko-win-kicker {
  color: var(--kh-gold-2);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.kh-plinko-win-amount {
  margin: 8px 0 14px;
  color: #fff;
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
}

.kh-plinko-controls {
  padding: 16px 18px 18px;
  border-top: 1px solid rgba(241, 215, 122, .16);
  background: rgba(0, 0, 0, .36);
}

.kh-bet-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 12px;
}

.kh-bet {
  min-height: 38px;
  color: rgba(255, 247, 223, .78);
  font-weight: 800;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
}

.kh-bet.is-active {
  color: #101010;
  background: linear-gradient(135deg, #f5d87a, var(--kh-gold));
}

.kh-drop-ball {
  width: 100%;
  min-height: 54px;
  border: 0;
  border-radius: 8px;
  color: #101010;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #f9e68e, var(--kh-gold) 56%, #c3782f);
  box-shadow: 0 16px 34px rgba(215, 168, 58, .28), inset 0 1px 0 rgba(255,255,255,.38);
  touch-action: manipulation;
}

.kh-history {
  display: flex;
  gap: 6px;
  min-height: 25px;
  margin-bottom: 10px;
  overflow: hidden;
}

.kh-history span {
  min-width: 42px;
  padding: 4px 7px;
  color: var(--kh-gold-2);
  font-size: 11px;
  font-weight: 900;
  text-align: center;
  border-radius: 7px;
  border: 1px solid rgba(241, 215, 122, .2);
  background: rgba(241, 215, 122, .08);
}

.page-section {
  padding-block: 64px !important;
}

.page-section:nth-of-type(even),
.games.page-section,
.advant.page-section,
.reviews.page-section {
  background:
    radial-gradient(circle at 12% 20%, rgba(8, 199, 159, .08), transparent 24rem),
    linear-gradient(180deg, #090a0b, #0f0d0b) !important;
}

.page-section:nth-of-type(odd),
.slots.page-section,
.bonuses.page-section,
.faq.page-section {
  background:
    radial-gradient(circle at 88% 18%, rgba(199, 39, 75, .1), transparent 26rem),
    linear-gradient(180deg, #110b0b, #08090a) !important;
}

.kh-winners-section {
  position: relative;
  padding: 22px 0 24px;
  overflow: hidden;
  border-top: 1px solid rgba(241, 215, 122, .18);
  border-bottom: 1px solid rgba(241, 215, 122, .14);
  background:
    radial-gradient(circle at 18% 0, rgba(8, 199, 159, .14), transparent 26rem),
    linear-gradient(180deg, rgba(8, 13, 12, .98), rgba(7, 8, 9, .98)) !important;
}

.kh-winners-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 16px !important;
}

.kh-winners-title {
  margin: 0 !important;
  color: #fff !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: 30px !important;
  font-weight: 700 !important;
  line-height: 1.05 !important;
  text-shadow: 0 5px 24px rgba(0, 0, 0, .42);
}

.kh-winners-title span {
  color: var(--kh-emerald);
}

.kh-winners-sub {
  margin-top: 5px;
  color: rgba(255, 247, 223, .66);
  font-size: 13px;
  font-weight: 600;
}

.kh-winners-cta {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 9px 14px;
  border-radius: 8px;
  border: 1px solid rgba(241, 215, 122, .28);
  color: var(--kh-gold-2) !important;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none !important;
  text-transform: uppercase;
  background: rgba(241, 215, 122, .08);
}

.kh-winners-scroll {
  width: 100%;
  overflow: hidden;
  padding-inline: 18px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.kh-winners-track {
  --kh-winner-card-w: 230px;
  --kh-winner-gap: 14px;
  --kh-winners-distance: -1952px;
  display: flex;
  width: max-content;
  gap: var(--kh-winner-gap);
  animation: khWinnersScroll 34s linear infinite;
  transform: translate3d(0, 0, 0);
  will-change: transform;
  backface-visibility: hidden;
}

.kh-winners-track:hover {
  animation-play-state: paused;
}

@keyframes khWinnersScroll {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(var(--kh-winners-distance), 0, 0); }
}

.kh-winner-card {
  flex: 0 0 var(--kh-winner-card-w);
  width: var(--kh-winner-card-w);
  min-width: var(--kh-winner-card-w);
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px !important;
}

.kh-winner-slot {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(241, 215, 122, .38);
  background: #0b0c0d;
  box-shadow: 0 10px 22px rgba(0, 0, 0, .34), 0 0 20px rgba(8, 199, 159, .12);
}

.kh-winner-slot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kh-winner-name {
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
}

.kh-winner-game {
  margin-top: 2px;
  color: rgba(255, 247, 223, .62);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.2;
}

.kh-winner-amount {
  margin-top: 4px;
  color: var(--kh-emerald);
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
}

.section-title,
.kh-tour-title,
.page-content h1,
.page-content h2,
.page-text h1,
.page-text h2,
.main-text-content h1,
.main-text-content h2 {
  color: #fff !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-weight: 700 !important;
  line-height: 1.1 !important;
  text-shadow: 0 5px 28px rgba(0, 0, 0, .45);
}

.section-title {
  margin-bottom: 30px !important;
  font-size: 42px !important;
}

.section-title::after {
  content: "";
  display: block;
  width: 84px;
  height: 3px;
  margin: 14px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--kh-ruby), var(--kh-gold), var(--kh-emerald));
}

.slots .container {
  max-width: 1280px !important;
}

.kh-slots-intro {
  max-width: 820px;
  margin: -14px auto 30px;
  color: rgba(255, 247, 223, .82);
  font-size: 17px;
  line-height: 1.68;
  text-align: center;
}

.slots-list.kh-slot-gallery {
  display: grid !important;
  grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  gap: 16px !important;
}

.kh-slot-card {
  position: relative;
  display: block;
  min-width: 0;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(241, 215, 122, .24);
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  box-shadow: 0 16px 34px rgba(0, 0, 0, .34);
  text-decoration: none !important;
  transform: translateZ(0);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.kh-slot-card:hover {
  transform: translateY(-4px);
  border-color: rgba(241, 215, 122, .58);
  box-shadow: 0 22px 46px rgba(0, 0, 0, .46), 0 0 28px rgba(215, 168, 58, .14);
}

.kh-slot-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.03);
}

.kh-slot-meta {
  min-height: 72px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 12px;
  color: #fff;
  background: linear-gradient(180deg, rgba(10, 9, 8, .96), rgba(16, 10, 9, .98));
}

.kh-slot-name {
  min-width: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
}

.kh-slot-play {
  min-width: 50px;
  padding: 7px 9px;
  color: #12110d;
  font-size: 11px;
  font-weight: 900;
  text-align: center;
  border-radius: 999px;
  background: linear-gradient(135deg, #f5d87a, var(--kh-gold));
}

.bonuses-content,
.advant-row,
.reviews-content,
.faq-list {
  position: relative;
}

.page-item,
.bonus,
.reviews-item .inner,
.faq-item,
.advant-element,
.kh-tour-step,
.kh-winner-card {
  border-radius: 8px !important;
  border: 1px solid rgba(241, 215, 122, .2) !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.025)),
    rgba(11, 12, 13, .84) !important;
  box-shadow: 0 18px 48px rgba(0, 0, 0, .34) !important;
}

.bonus {
  min-height: 176px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(135deg, rgba(199, 39, 75, .24), rgba(215, 168, 58, .18)),
    linear-gradient(180deg, #12100f, #09090a) !important;
}

.bonus-text {
  color: #fff !important;
  font-size: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  text-decoration: none !important;
}

#kingshills-casino-uk p,
.page-content p,
.page-text p,
.main-text-content p,
.faq-item-answ,
.item__text,
.advant-element-text {
  color: rgba(255, 247, 223, .84) !important;
  font-size: 17px;
  line-height: 1.72;
}

#kingshills-casino-uk h3,
.page-content h3,
.page-text h3,
.main-text-content h3 {
  margin-top: 32px;
  color: var(--kh-gold-2) !important;
  font-size: 24px;
  font-weight: 800;
}

.kh-editorial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.kh-editorial-grid .page-item {
  padding: 24px;
}

.kh-editorial-grid h3 {
  margin: 0 0 10px;
  color: var(--kh-gold-2) !important;
  font-size: 20px;
  font-weight: 900;
}

.kh-editorial-grid p {
  margin: 0;
  color: rgba(255, 247, 223, .82) !important;
  font-size: 16px;
  line-height: 1.66;
}

.comparison-table,
.main-text-content table,
.page-text table,
.responsible-gambling table {
  overflow: hidden;
  border-radius: 8px;
  border-color: rgba(241, 215, 122, .22) !important;
  box-shadow: 0 18px 44px rgba(0,0,0,.28);
}

.comparison-table th,
.main-text-content table th,
.page-text table th,
.responsible-gambling table th {
  color: #12100d !important;
  background: linear-gradient(135deg, #f5d87a, var(--kh-gold)) !important;
}

.tab-title {
  color: #fff !important;
  font-weight: 800 !important;
}

.footer {
  border-top: 1px solid rgba(241, 215, 122, .18);
  background:
    radial-gradient(circle at 50% 0, rgba(215, 168, 58, .1), transparent 28rem),
    #050607 !important;
}

.wheel-open-btn,
#wheel-common,
.wheel-modal {
  display: none !important;
}

.cookieadmin_law_container.cookieadmin_box {
  max-width: 420px !important;
  border-radius: 8px !important;
  border: 1px solid rgba(215, 168, 58, .32) !important;
  box-shadow: 0 20px 60px rgba(0,0,0,.42) !important;
}

.cookieadmin_btn {
  min-height: 42px !important;
  border-radius: 7px !important;
  font-weight: 700 !important;
}

.cookieadmin_accept_btn {
  background: linear-gradient(135deg, var(--kh-emerald), #04a37d) !important;
}

.cookieadmin-poweredby {
  display: none !important;
}

.cookieadmin_re_consent,
.cookieadmin_reconsent_img {
  display: none !important;
}

@media (max-width: 1100px) {
  body.home .screen-content {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .offer {
    max-width: 720px !important;
    text-align: center;
    margin-inline: auto !important;
  }

  .kh-eyebrow,
  .kh-hero-facts,
  .offer .btn-row {
    justify-content: center;
    margin-inline: auto;
  }

  .screen-image.kh-hero-game {
    justify-self: center;
    max-width: 420px !important;
  }
}

@media (max-width: 900px) {
  .header {
    padding: 10px 0 12px !important;
  }

  .header-content {
    min-height: 0;
    flex-wrap: wrap;
    gap: 10px 14px;
  }

  .header .nav:not(.mobile-nav) {
    display: none !important;
  }

  .mobile-btn {
    display: block !important;
    margin-left: auto;
  }

  .custom-logo-link {
    min-width: 150px;
    min-height: 48px;
    padding: 7px 10px !important;
  }

  .custom-logo {
    width: 128px !important;
    max-width: 128px !important;
  }

  .header-buttons {
    position: static !important;
    transform: none !important;
    order: 3;
    width: 100%;
    gap: 10px;
  }

  .header-buttons .btn {
    flex: 1 1 0;
    min-height: 44px !important;
    height: 44px !important;
    padding: 8px 12px !important;
    font-size: 15px !important;
  }

  body.home,
  body:not(.home) {
    padding-top: 132px !important;
  }

  body.home .screen.page-section {
    min-height: 0;
    padding: 44px 0 52px !important;
    background-position: center top !important;
  }

  .offer-title {
    font-size: 46px !important;
  }

  .offer-desc {
    font-size: 18px !important;
  }

  .slots-list.kh-slot-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .kh-editorial-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 1180px) !important;
  }

  body.home .screen.page-section {
    padding-top: 34px !important;
    background: #070809 !important;
  }

  .kh-hero-bg-img {
    object-position: center top;
  }

  .offer-title {
    font-size: 38px !important;
  }

  .offer-desc {
    font-size: 16px !important;
  }

  .kh-hero-facts {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .offer .btn-row .btn {
    width: 100%;
  }

  .screen-image.kh-hero-game {
    max-width: 360px !important;
  }

  .kh-plinko-top {
    padding: 14px 14px 10px;
  }

  .kh-plinko-title {
    font-size: 22px;
  }

  .kh-plinko-controls {
    padding: 14px;
  }

  .section-title {
    font-size: 34px !important;
  }

  .kh-winners-section {
    padding: 18px 0 20px;
  }

  .kh-winners-head {
    align-items: flex-start;
    margin-bottom: 12px !important;
  }

  .kh-winners-title {
    font-size: 24px !important;
  }

  .kh-winners-sub {
    font-size: 12px;
  }

  .kh-winners-cta {
    display: none;
  }

  .kh-winners-scroll {
    padding-inline: 12px;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .kh-winners-track {
    --kh-winner-card-w: 212px;
    --kh-winner-gap: 10px;
    --kh-winners-distance: -1776px;
    animation-duration: 30s;
  }

  .kh-winner-card {
    flex-basis: var(--kh-winner-card-w);
    width: var(--kh-winner-card-w);
    min-width: var(--kh-winner-card-w);
    min-height: 72px;
    padding: 9px 10px !important;
  }

  .kh-winner-slot {
    width: 50px;
    height: 50px;
    flex-basis: 50px;
  }

  .slots-list.kh-slot-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }

  .kh-slot-meta {
    min-height: 64px;
    grid-template-columns: 1fr;
  }

  .kh-slot-play {
    display: none;
  }

  .cookieadmin_law_container.cookieadmin_box {
    left: 12px !important;
    right: 12px !important;
    bottom: 10px !important;
    width: auto !important;
    max-height: 28vh !important;
    overflow: auto !important;
    padding: 10px !important;
  }

  #cookieadmin_notice_title {
    font-size: 14px !important;
    line-height: 1.25 !important;
    margin-bottom: 4px !important;
  }

  .cookieadmin_notice_con,
  #cookieadmin_notice {
    max-height: 52px !important;
    overflow: auto !important;
    font-size: 11px !important;
    line-height: 1.3 !important;
  }

  .cookieadmin_consent_btns {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 6px !important;
    margin-top: 8px !important;
  }

  .cookieadmin_btn {
    width: 100% !important;
    min-height: 34px !important;
    padding: 7px 5px !important;
    font-size: 11px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
