/* The Clubhouse Casino — brand tokens */
:root {
  --ch-base: #08090b;
  --ch-base-alt: #13161c;
  --ch-card: #1e2229;
  --ch-card-hover: #262b34;
  --ch-accent: #dfa746;
  --ch-accent-2: #c49030;
  --ch-accent-hover: #f6d196;
  --ch-accent-rgb: 223, 167, 70;
  --ch-green: #30d158;
  --ch-green-rgb: 48, 209, 88;
}

.ch-color-x {
  color: var(--ch-accent);
}

.ch-anchors {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0.875rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--ch-border);
  border-radius: var(--ch-radius-sm);
}

.ch-anchors a {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--ch-border);
  color: var(--ch-text-muted);
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
}

.ch-anchors a:hover {
  color: var(--ch-accent);
  border-color: rgba(var(--ch-accent-rgb), 0.35);
}

.ch-faq {
  display: grid;
  gap: 0.75rem;
}

.ch-faq__item {
  border: 1px solid var(--ch-border);
  border-radius: var(--ch-radius-sm);
  background: var(--ch-card);
  overflow: hidden;
}

.ch-faq__question {
  margin: 0;
  padding: 1rem 1.125rem;
  font-size: 0.9375rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.ch-faq__question::-webkit-details-marker {
  display: none;
}

.ch-faq__answer {
  padding: 0 1.125rem 1rem;
  color: var(--ch-text-muted);
  font-size: 0.875rem;
  line-height: 1.55;
}

.ch-reviews {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.ch-reviews__title {
  margin: 0 0 0.75rem;
  font-size: 1.125rem;
  font-weight: 700;
}

.ch-reviews__item {
  padding: 1rem 1.125rem;
  border: 1px solid var(--ch-border);
  border-radius: var(--ch-radius-sm);
  background: var(--ch-card);
}

.ch-reviews__author {
  margin: 0 0 0.35rem;
  font-size: 0.9375rem;
  font-weight: 700;
}

.ch-reviews__text {
  margin: 0;
  color: var(--ch-text-muted);
  font-size: 0.875rem;
  line-height: 1.55;
}

/* Casinomate-style blocks */
.ch-hero { position: relative; overflow: hidden; border-radius: var(--ch-radius-lg); border: 1px solid var(--ch-border); background-color: #08090b; background-image: url("./img/home/hero.webp"); background-size: cover; background-position: right -200px center; background-repeat: no-repeat; min-height: clamp(220px, 35vw, 455px); }

.ch-hero__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: inherit;
  padding: 2rem 1.5rem;
}

@media (min-width: 768px) {
  .ch-hero__inner {
    padding: 2.5rem 2.5rem;
  }
}

.ch-hero__content {
  position: relative;
  z-index: 2;
  max-width: min(32rem, 58%);
  text-align: left;
}

.ch-hero__visual {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: auto;
  max-width: min(42%, 329px);
  max-height: 92%;
  height: auto;
  object-fit: contain;
  object-position: bottom right;
  pointer-events: none;
}

@media (max-width: 767px) {
  .ch-hero__inner {
    padding: 1.25rem 1rem;
    align-items: flex-end;
  }

  .ch-hero__content {
    max-width: 58%;
    width: 58%;
    min-width: 0;
  }

  .ch-hero__visual {
    max-width: 46%;
    opacity: 0.92;
  }

  .ch-hero__bonus {
    margin-bottom: 0.75rem;
    font-size: clamp(0.8125rem, 3.4vw, 1rem);
    line-height: 1.3;
  }

  .ch-hero__sub {
    display: none;
  }

  .ch-hero__cta {
    display: flex;
    width: 100%;
    max-width: 100%;
    min-height: 44px;
    padding: 0.5rem 0.75rem;
    font-size: 0.75rem;
    letter-spacing: 0.03em;
    line-height: 1.15;
    text-align: center;
    box-sizing: border-box;
    white-space: normal;
  }
}

@media (max-width: 480px) {
  .ch-hero__content {
    max-width: 62%;
    width: 62%;
  }

  .ch-hero__visual {
    max-width: 40%;
  }

  .ch-hero__cta {
    min-height: 40px;
    padding: 0.4375rem 0.5rem;
    font-size: 0.6875rem;
  }
}

.ch-hero__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ch-accent);
}

.ch-hero__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
}

.ch-hero__bonus {
  margin: 0 0 1.25rem;
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: var(--ch-accent-hover);
}

.ch-hero__sub {
  margin: 0 0 1.5rem;
  color: var(--ch-text-muted);
  font-size: 0.9375rem;
}

.ch-hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 2rem;
  border-radius: var(--ch-radius-pill);
  background: linear-gradient(90deg, #dfa746, #f6d196, #dfa746);
  color: #08090b;
  font-size: 0.9375rem;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.04em;
}

.ch-hero__cta:hover {
  filter: brightness(1.08);
  color: #08090b;
}

.ch-hero__cta--green {
  background: var(--ch-green);
  color: #08090b;
}

.ch-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .ch-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.ch-stats__item {
  padding: 1rem;
  text-align: center;
  background: var(--ch-card);
  border: 1px solid var(--ch-border);
  border-radius: var(--ch-radius-md);
}

.ch-stats__value {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--ch-accent);
}

.ch-stats__label {
  font-size: 0.75rem;
  color: var(--ch-text-muted);
  line-height: 1.35;
}

.ch-promo-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .ch-promo-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Casinomate games slider */
.games-block {
  display: flex;
  flex-direction: column;
  gap: 18px
}

.games-header {
  display: grid;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  grid-template-columns: 1fr auto 1fr
}

.games-header::before,
.games-header::after {
  content: "";
  height: 2px;
  background: linear-gradient(to right, transparent, var(--ch-accent), transparent)
}

.games-title {
  font-size: 26px;
  font-weight: 700;
  color: var(--ch-text);
  margin: 0;
  padding: 0 24px;
  text-transform: uppercase;
  letter-spacing: .12em;
  justify-self: center
}

.games-actions {
  position: absolute;
  top: 0;
  left: -60px;
  right: -60px;
  height: var(--thumb-h, 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
  z-index: 100
}

.games-actions .games-nav {
  display: contents
}

.games-actions .games-prev,
.games-actions .games-next {
  pointer-events: auto;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  width: 40px;
  height: 60px;
  background: rgba(30, 34, 41, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--ch-border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--ch-text);
  transition: all .5s cubic-bezier(.23, 1, .32, 1);
  box-shadow: 0 0 40px rgba(0, 0, 0, .1)
}

.games-actions .games-prev {
  border-radius: 20px 0 0 20px;
  transform: translateX(10px)
}

.games-actions .games-next {
  border-radius: 0 20px 20px 0;
  transform: translateX(-10px)
}

.games-actions .games-prev:hover,
.games-actions .games-next:hover {
  width: 55px;
  background: rgba(var(--ch-accent-rgb), .15);
  border-color: rgba(var(--ch-accent-rgb), 0.25);
  color: var(--ch-accent);
  box-shadow: 0 0 30px rgba(var(--ch-accent-rgb), .2);
  transform: translateX(0)
}

.games-actions .games-icon {
  width: 24px;
  height: 24px;
  fill: currentColor;
  transition: transform .4s ease
}

.games-actions .games-prev:hover .games-icon {
  transform: scale(1.2) translateX(-3px)
}

.games-actions .games-next:hover .games-icon {
  transform: scale(1.2) translateX(3px)
}

@media (hover: none) {
  .games-actions .games-prev:hover,
  .games-actions .games-next:hover,
  .games-actions .games-prev:active,
  .games-actions .games-next:active {
    width: 40px;
    background: rgba(30, 34, 41, 0.8);
    border-color: var(--ch-border);
    color: var(--ch-text);
    box-shadow: 0 0 40px rgba(0, 0, 0, .1)
  }

  .games-actions .games-prev:hover,
  .games-actions .games-prev:active {
    transform: translateX(10px)
  }

  .games-actions .games-next:hover,
  .games-actions .games-next:active {
    transform: translateX(-10px)
  }

  .games-actions .games-prev:hover .games-icon,
  .games-actions .games-next:hover .games-icon,
  .games-actions .games-prev:active .games-icon,
  .games-actions .games-next:active .games-icon {
    transform: none
  }
}

.games-slider {
  position: relative;
  width: 100%
}

.games-list {
  --gap: 18px;
  display: flex;
  gap: var(--gap);
  list-style: none;
  padding: 8px 0;
  margin: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  touch-action: pan-x pan-y;
  --cols: 6
}

.games-list::-webkit-scrollbar {
  display: none
}

.games-list.is-animating {
  pointer-events: none;
  scroll-snap-type: none;
  scroll-behavior: auto;
  overflow: hidden;
}

.games-list.is-animating .game-card {
  scroll-snap-align: none;
}


.game-card {
  flex: 0 0 calc((100% - ((var(--cols) - 1) * var(--gap))) / var(--cols));
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  min-width: 0;
  transition: transform .3s cubic-bezier(.23, 1.2, .32, 1);
}

.game-card:hover {
  transform: translateY(-4px);
}

a.game-thumb,
a.game-info {
  text-decoration: none;
  color: inherit;
}

a.game-thumb {
  display: block;
  -webkit-tap-highlight-color: transparent;
}

.game-thumb {
  position: relative;
  border-radius: var(--ch-radius);
  overflow: hidden;
  aspect-ratio: 1 / 1.25;
  max-height: 231px;
  background: #1a1a28;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, .1);
  transition: border-color .3s ease, box-shadow .3s ease;
}

.game-card:hover .game-thumb {
  border-color: rgba(245, 166, 35, .3);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .6);
}

.game-badges {
  position: absolute;
  top: 8px;
  left: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 4;
}

.badge {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 800;
}

.badge--lightning {
  background: rgba(20, 20, 35, .75);
  backdrop-filter: blur(6px);
  color: #ffe066;
  border: 1px solid rgba(255, 220, 50, .25);
}

.badge--coins {
  background: rgba(20, 20, 35, .75);
  backdrop-filter: blur(6px);
  color: var(--ch-accent);
  border: 1px solid rgba(245, 166, 35, .25);
  font-size: 7px;
}

.game-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s cubic-bezier(.2, .9, .2, 1), filter .3s ease;
}

.game-card:hover .game-thumb img {
  transform: scale(1.06);
  filter: blur(3px) brightness(.55);
}

.game-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  z-index: 3;
}

.game-card:hover .game-overlay {
  opacity: 1;
  pointer-events: auto;
}

.play-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffd54f, #f5a623, #e8530a);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  box-shadow: 0 0 0 6px rgba(245, 166, 35, .18), 0 8px 28px rgba(0, 0, 0, .6);
  transition: transform .2s cubic-bezier(.23, 1.2, .32, 1), box-shadow .2s ease;
  transform: scale(.85);
}

.game-card:hover .play-btn {
  transform: scale(1);
}

.play-btn:hover {
  transform: scale(1.1) !important;
  box-shadow: 0 0 0 10px rgba(245, 166, 35, .22), 0 10px 32px rgba(0, 0, 0, .7);
}

.play-btn:active {
  transform: scale(.96) !important;
}

.play-btn svg {
  width: 22px;
  height: 22px;
  fill: #1a0600;
  margin-left: 3px;
}

.demo-link {
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, .35);
  background: rgba(0, 0, 0, .45);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  cursor: pointer;
  transform: translateY(8px);
  opacity: 0;
  transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
  text-decoration: none;
}

.game-card:hover .demo-link {
  transform: translateY(0);
  opacity: 1;
}

.demo-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, .15);
}

.game-info {
  display: block;
  padding: 10px 2px 0;
}

.game-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--ch-text);
  text-transform: uppercase;
  letter-spacing: .06em;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color .2s;
}

.game-card:hover .game-name {
  color: var(--ch-accent);
}

.game-provider {
  font-size: 12px;
  font-weight: 400;
  color: var(--ch-text-muted);
  margin-top: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width:1024px) {
  .games-block:not(.games-block--providers):not(.games-block--promo) .games-list {
    --cols: 4 !important;
    --gap: 14px;
  }

  .games-title {
    font-size: 16px;
    padding: 0
  }

  .ch-section.games-block:not(.games-block--providers):not(.games-block--promo) {
    padding-left: 48px;
    padding-right: 48px;
  }

  .games-actions {
    left: -48px;
    right: -48px
  }

  .games-actions .games-prev,
  .games-actions .games-next {
    height: 60px;
    width: 35px;
    background: rgba(30, 34, 41, 0.8)
  }

  .games-actions .games-prev:hover,
  .games-actions .games-next:hover {
    width: 45px
  }

  .game-card:not(.game-card--provider) .game-name {
    font-size: 12px;
    letter-spacing: .04em;
  }

  .game-card:not(.game-card--provider) .game-provider {
    font-size: 11px;
  }
}

@media (max-width:768px) {
  .games-block:not(.games-block--providers):not(.games-block--promo) .games-list {
    --cols: 2 !important;
    --gap: 12px;
  }

  .ch-section.games-block:not(.games-block--providers):not(.games-block--promo) {
    padding-left: 36px;
    padding-right: 36px;
  }

  .games-actions {
    left: -36px;
    right: -36px;
  }

  .game-card:not(.game-card--provider) .game-info {
    padding-top: 8px;
  }

  .play-btn {
    width: 52px;
    height: 52px;
  }

  .play-btn svg {
    width: 20px;
    height: 20px;
  }

  .demo-link {
    font-size: 11px;
    padding: 5px 12px;
  }
}

@media (max-width:480px) {
  .ch-section.games-block:not(.games-block--providers):not(.games-block--promo) {
    padding-left: 32px;
    padding-right: 32px;
  }

  .games-actions {
    left: -32px;
    right: -32px;
  }

  .games-header {
    gap: 10px
  }

  .game-card:not(.game-card--provider) .game-name {
    font-size: 11px;
  }
}

@media (hover: none) {
  .game-card:not(.game-card--provider):hover {
    transform: none;
  }

  .game-card:not(.game-card--provider):hover .game-thumb {
    border-color: rgba(255, 255, 255, .1);
    box-shadow: none;
  }

  .game-card:not(.game-card--provider):hover .game-thumb img {
    transform: none;
    filter: none;
  }

  .game-card:not(.game-card--provider):hover .game-overlay {
    opacity: 0;
    pointer-events: none;
  }

  .game-card:not(.game-card--provider):hover .game-name {
    color: var(--ch-text);
  }

  a.game-thumb:active {
    opacity: .9;
  }

  .games-actions .games-prev:hover,
  .games-actions .games-prev:active,
  .games-actions .games-next:hover,
  .games-actions .games-next:active {
    width: 40px
  }

  .games-actions .games-next:hover,
  .games-actions .games-next:active {
    transform: translateX(0)
  }
}

@media (hover: none) and (max-width:768px) {
  .games-actions .games-prev:hover,
  .games-actions .games-prev:active,
  .games-actions .games-next:hover,
  .games-actions .games-next:active {
    width: 35px
  }
}

.ch-section.games-block {
  padding-left: 68px;
  padding-right: 68px;
}

@media (max-width: 768px) {
  .ch-section.games-block--providers {
    padding-left: 36px;
    padding-right: 36px;
  }
}

/* Promotions carousel (Casinomate-style: image background, content overlay) */
.ch-section.games-block--promo {
  padding-left: 68px;
  padding-right: 68px;
}

.games-block--promo .games-list {
  --cols: 3;
  --gap: 12px;
  flex-wrap: nowrap;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-left: 0;
  padding-right: 0;
}

.games-block--promo .game-card--promo {
  flex: 0 0 calc((100% - ((var(--cols) - 1) * var(--gap))) / var(--cols));
  min-width: calc((100% - ((var(--cols) - 1) * var(--gap))) / var(--cols));
  scroll-snap-align: start;
}

.game-card--promo {
  position: relative;
  border-radius: var(--ch-radius);
  overflow: hidden;
  background: var(--ch-card);
  border: 0;
}

.game-card--promo:hover {
  transform: none;
}

.game-card--promo > a {
  position: relative;
  display: block;
  min-height: 220px;
  height: 100%;
  padding: 24px;
  text-decoration: none;
  color: #fff;
}

.game-card--promo .game-media {
  position: absolute;
  margin: 0;
  inset: 0;
  z-index: 0;
}

.game-card--promo .game-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  transform: scale(1);
  transition: transform .45s ease, filter .45s ease;
}

.game-card--promo > a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 9, 11, .95) 0%, rgba(8, 9, 11, .85) 48%, rgba(8, 9, 11, .35) 72%, rgba(8, 9, 11, 0) 100%);
  z-index: 1;
}

.game-card--promo .promo-body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  max-width: 560px;
  height: 100%;
  padding: 0;
}

.game-card--promo .promo-body__title {
  margin: 0 0 6px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ch-accent);
  text-shadow: 0 1px 0 rgba(8, 9, 11, .45);
  line-height: 1.2;
}

.game-card--promo .promo-body p:not(.promo-body__title) {
  margin: 0 0 18px;
  font-weight: 900;
  line-height: 1.15;
  font-size: 34px;
  color: #fff;
  text-shadow: 0 2px 10px rgba(8, 9, 11, .5);
}

.promo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 22px;
  border-radius: var(--ch-radius-pill);
  background: linear-gradient(135deg, var(--ch-accent), var(--ch-accent-2));
  color: #08090b;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .04em;
  text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .35);
  transition: transform .2s ease, box-shadow .2s ease;
  cursor: pointer;
  width: max-content;
}

.game-card--promo:hover .game-media img,
.game-card--promo:focus-within .game-media img {
  transform: scale(1.06);
  filter: saturate(1.05);
}

.game-card--promo .promo-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 34px rgba(var(--ch-accent-rgb), .5);
}

@media (max-width: 1024px) {
  .ch-section.games-block--promo {
    padding-left: 48px;
    padding-right: 48px;
  }

  .games-block--promo .games-list {
    --cols: 1;
  }

  .games-block--promo .games-list[data-mobile="1"] .game-card--promo {
    flex: 0 0 85%;
    min-width: 85%;
  }

  .game-card--promo > a {
    min-height: 180px;
    padding: 18px;
  }

  .game-card--promo .promo-body p:not(.promo-body__title) {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .ch-section.games-block--promo {
    padding-left: 36px;
    padding-right: 36px;
  }
}

.ch-promo-tile {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.25rem;
  background: var(--ch-card);
  border: 1px solid var(--ch-border);
  border-radius: var(--ch-radius-md);
  transition: border-color 0.2s;
}

.ch-promo-tile:hover {
  border-color: rgba(var(--ch-accent-rgb), 0.35);
}

.ch-promo-tile__badge {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ch-accent);
}

.ch-promo-tile__title {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
}

.ch-promo-tile__desc {
  margin: 0;
  flex: 1;
  font-size: 0.875rem;
  color: var(--ch-text-muted);
}

.ch-promo-tile__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 1.25rem;
  border-radius: var(--ch-radius-pill);
  background: var(--ch-green);
  color: #08090b;
  font-size: 0.8125rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

.ch-promo-tile__cta:hover {
  filter: brightness(1.08);
  color: #08090b;
}

@keyframes crypto-grid-scroll {
  from { background-position: 0 0; }
  to { background-position: 48px 48px; }
}

.crypto-info-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 28px 32px 32px;
  position: relative;
  overflow: hidden;
  background: var(--ch-card);
  border: 1px solid var(--ch-border);
  border-radius: var(--ch-radius);
  box-shadow: var(--ch-shadow-md), 0 0 40px rgba(var(--ch-accent-rgb), 0.05);
}

.crypto-info-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(var(--ch-accent-rgb), 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--ch-accent-rgb), 0.1) 1px, transparent 1px);
  background-size: 48px 48px;
  animation: crypto-grid-scroll 12s linear infinite;
  pointer-events: none;
}

.crypto-info-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle at top left, rgba(var(--ch-accent-rgb), 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.crypto-info {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  min-width: 0;
}

.crypto-info__title {
  font-size: clamp(20px, 2.5vw, 34px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--ch-text);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 0 10px;
}

.crypto-info__desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ch-text-muted);
  max-width: 480px;
  margin: 0 0 22px;
}

.crypto-info__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 28px;
  border-radius: calc(var(--ch-radius) - 2px);
  border: 1.5px solid var(--ch-accent);
  background: transparent;
  color: var(--ch-text);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.crypto-info__btn:hover {
  background: var(--ch-accent);
  color: var(--ch-base);
  box-shadow: 0 6px 24px rgba(var(--ch-accent-rgb), 0.25);
}

.crypto-info__logos {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.crypto-info__coin {
  display: block;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: default;
}

.crypto-info__coin:hover {
  transform: scale(1.2) rotate(8deg);
  z-index: 2;
}

@media (max-width: 991px) {
  .crypto-info-wrap {
    gap: 1rem;
    padding: 24px 24px 28px;
  }

  .crypto-info__logos {
    gap: 8px;
  }
}

@media (max-width: 767px) {
  .crypto-info-wrap {
    flex-direction: column;
    align-items: flex-start;
    padding: 22px 18px 26px;
    gap: 20px;
  }

  .crypto-info__logos {
    width: 100%;
    justify-content: center;
    flex-wrap: nowrap;
  }

  .crypto-info__coin {
    width: 38px;
    height: 38px;
  }

  .crypto-info__btn {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
  }
}

@media (max-width: 479px) {
  .crypto-info-wrap {
    padding: 18px 14px 22px;
  }

  .crypto-info__title {
    font-size: 18px;
  }

  .crypto-info__desc {
    font-size: 13px;
    margin-bottom: 18px;
  }

  .crypto-info__coin {
    width: 34px;
    height: 34px;
  }
}

/* Providers slider (Casinomate-style) */
.games-block--providers {
  margin-bottom: 35px;
}

.games-block--providers .games-list {
  --cols: 8;
  flex-wrap: nowrap;
}

.game-card--provider {
  background: var(--ch-card-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border-radius: var(--ch-radius);
  min-height: 88px;
}

.game-card--provider:hover {
  transform: none;
}

.game-card--provider .provider-card {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 56px;
  text-decoration: none;
}

.game-card--provider .provider-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.75;
  transition: filter 0.18s ease, opacity 0.18s ease;
}

.game-card--provider .provider-card:hover img {
  filter: none;
  opacity: 1;
}

.ch-section.games-block--providers {
  padding-left: 68px;
  padding-right: 68px;
}

@media (max-width: 1024px) {
  .ch-section.games-block--providers {
    padding-left: 48px;
    padding-right: 48px;
  }

  .games-block--providers .games-list[data-mobile="2"] .game-card--provider {
    flex: 0 0 calc((100% - (3 * var(--gap))) / 4.15);
    min-width: calc((100% - (3 * var(--gap))) / 4.15);
  }
}

@media (max-width: 768px) {
  .ch-section.games-block--providers {
    padding-left: 36px;
    padding-right: 36px;
  }

  .games-block--providers .games-list[data-mobile="2"] .game-card--provider {
    flex: 0 0 calc((100% - var(--gap)) / 2.15);
    min-width: calc((100% - var(--gap)) / 2.15);
    min-height: 76px;
    padding: 12px;
  }
}

@media (max-width: 480px) {
  .games-block--providers .games-list[data-mobile="2"] .game-card--provider {
    flex: 0 0 calc((100% - var(--gap)) / 2.08);
    min-width: calc((100% - var(--gap)) / 2.08);
  }
}

/* Hentry / entry-content — Casino Mate post-11 page type-page */
.ch-hentry {
  margin: 0;
}

.ch-hentry .entry-content.ch-content {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  margin: 0;
}

.entry-header {
  text-align: center;
  margin-bottom: 1.25rem;
}

.entry-title {
  font-size: clamp(1.75rem, 3.5vw, 2.2rem);
  font-weight: 700;
  color: #f5f5f5;
  text-align: center;
  margin: 0 0 10px;
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
}

.entry-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 80px;
  height: 3px;
  background: var(--ch-accent);
  border-radius: 2px;
  transition: width 0.4s ease;
}

.entry-title:hover::after {
  width: 100%;
}

.entry-content p {
  line-height: 1.6;
  font-size: clamp(14px, 1.2vw, 16px);
  color: #e5e5e5;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-rendering: optimizeLegibility;
  margin: 0 0 1.25em;
}

.entry-content__heading {
  margin: 1.75em 0 0.75em;
  font-size: clamp(1.25rem, 2.2vw, 1.5rem);
  font-weight: 700;
  color: #f5f5f5;
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
}

.entry-content__heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 56px;
  height: 2px;
  background: var(--ch-accent);
  border-radius: 2px;
}

.entry-content h3 {
  margin: 1.25em 0 0.5em;
  font-size: 1.05rem;
  font-weight: 700;
  color: #f5f5f5;
}

.entry-content a {
  position: relative;
  color: var(--ch-accent);
  text-decoration: none;
  transition: color 0.25s ease;
}

.entry-content a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--ch-accent-hover), var(--ch-accent) 45%, var(--ch-green) 100%);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
  border-radius: 1px;
}

.entry-content a:hover {
  color: var(--ch-accent-hover);
}

.entry-content a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.entry-content .ch-anchors a::after {
  display: none;
}

.entry-content ul.ch-anchors {
  margin: 0 0 1.25rem;
  padding: 0.875rem 1rem;
  list-style: none;
}

.entry-content ul.ch-anchors li {
  padding-left: 0;
  margin: 0;
}

.entry-content ul.ch-anchors li::before {
  display: none;
}

.entry-content ul:not(.ch-anchors) {
  margin: 0 0 1.6em;
  padding: 0;
  list-style: none;
  line-height: 1.6;
  color: #e5e5e5;
}

.entry-content ul:not(.ch-anchors) li {
  position: relative;
  margin: 0 0 0.35em;
  padding-left: calc(8px + 0.8em);
  line-height: 1.4;
}

.entry-content ul:not(.ch-anchors) li::before {
  content: "";
  position: absolute;
  left: 0;
  top: calc((1.6em - 8px) / 2);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: radial-gradient(40% 40% at 30% 30%, var(--ch-accent-hover), var(--ch-accent) 65%, var(--ch-green) 100%);
  box-shadow: 0 0 8px rgba(var(--ch-accent-rgb), 0.55);
}

.entry-content ul ul {
  margin-top: 0.4em;
}

.entry-content ul ul li {
  padding-left: calc(6px + 0.8em);
}

.entry-content ul ul li::before {
  top: calc((1.6em - 6px) / 2);
  width: 6px;
  height: 6px;
  box-shadow: 0 0 6px rgba(var(--ch-accent-rgb), 0.45);
}

.entry-content ol {
  margin: 0 0 1.6em 1.2em;
  padding: 0;
  list-style: decimal outside;
  line-height: 1.6;
  color: #e5e5e5;
}

.entry-content ol li {
  margin: 0 0 0.7em;
  font-variant-numeric: tabular-nums;
}

.entry-content ol li::marker {
  color: var(--ch-accent);
  font-weight: 800;
}

.entry-content ol ol {
  margin-top: 0.6em;
  list-style: lower-alpha outside;
}

.entry-content ol ol ol {
  list-style: lower-roman outside;
}

.entry-content li > ul,
.entry-content li > ol {
  margin-top: 0.4em;
}

.entry-content strong {
  color: #fff;
  font-weight: 700;
}

.entry-content img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  max-height: 90vh;
  object-fit: contain;
}

.entry-content table {
  width: 100%;
  max-width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  color: #f5f7fb;
  background:
    linear-gradient(180deg, rgba(8, 9, 11, 0.75), rgba(8, 9, 11, 0.35)),
    radial-gradient(1000px 420px at 70% 0%, rgba(var(--ch-accent-rgb), 0.12), transparent 60%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  font-size: clamp(14px, 1.2vw, 15px);
  table-layout: fixed;
  word-break: break-word;
  margin: 1.25em 0;
}

.entry-content table::after {
  content: "";
  display: block;
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, transparent, rgba(var(--ch-accent-rgb), 0.55), transparent);
}

.entry-content th {
  padding: 14px 18px;
  text-align: left;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
  font-size: 14px;
  background: linear-gradient(90deg, rgba(var(--ch-accent-rgb), 0.25), rgba(30, 34, 41, 0.6) 45%, rgba(8, 9, 11, 0.6));
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: inset 0 -2px 0 rgba(var(--ch-accent-rgb), 0.35);
}

.entry-content td {
  padding: 13px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(8, 10, 16, 0.78);
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
  vertical-align: top;
}

.entry-content tbody tr:nth-child(even) td {
  background: rgba(19, 22, 28, 0.78);
}

.entry-content tbody tr:hover td {
  background: linear-gradient(90deg, rgba(var(--ch-accent-rgb), 0.08), rgba(30, 34, 41, 0.2) 60%, rgba(0, 0, 0, 0));
  box-shadow: inset 0 0 0 1px rgba(var(--ch-accent-rgb), 0.22);
}

.entry-content tbody td:first-child {
  font-weight: 800;
  color: var(--ch-accent);
}

.entry-content tbody tr:last-child td {
  border-bottom: none;
}

.entry-content table + div,
.entry-content table + table,
.entry-content table + ul,
.entry-content table + ol {
  margin-top: 20px;
}

@media (max-width: 768px) {
  .entry-title {
    font-size: 1.8rem;
  }

  .entry-title::after {
    width: 50px;
    height: 2px;
  }

  .entry-content table {
    display: block;
    overflow-x: auto;
    border-radius: 10px;
    table-layout: auto;
  }

  .entry-content th,
  .entry-content td {
    padding: 12px 14px;
    font-size: 13px;
    white-space: nowrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  .entry-title::after,
  .entry-content a::after {
    transition: none;
  }
}

/* Site footer — Casinomate-style */
.site-footer .container,
.footer-dark .container {
  max-width: var(--ch-max);
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.site-footer {
  background-color: #13161c;
  color: #aaa;
  text-align: center;
  font-size: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 30px;
}

.site-footer .footer-heading {
  font-weight: 800;
  margin: 0 0 10px;
  color: #fff;
}

.site-footer .footer-grid--auto {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  align-items: start;
  padding: 30px 0;
}

.site-footer .footer-contact {
  text-align: left;
}

.site-footer .footer-contact a,
.site-footer .footer-contact-list a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-weight: 700;
  transition: color 0.15s ease;
}

.site-footer .footer-contact a:hover,
.site-footer .footer-contact-list a:hover {
  color: var(--ch-accent-hover);
}

.site-footer .footer-links-list,
.site-footer .footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.site-footer .footer-links {
  text-align: left;
}

.site-footer .footer-links-list a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  transition: color 0.15s ease;
}

.site-footer .footer-links-list a:hover {
  color: var(--ch-accent-hover);
}

.site-footer .footer-socials {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
}

.site-footer .footer-socials .footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.site-footer .footer-socials .footer-social:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.26);
  color: #fff;
}

.footer-dark {
  background: #08090b;
  padding: 30px 0;
  color: #fff;
}

.footer-dark a {
  color: #fff;
  text-decoration: none;
}

.footer-dark a:hover {
  text-decoration: underline;
}

.footer-brands {
  margin: 30px 0;
  text-align: center;
}

.footer-brands__title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.35;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 16px;
}

.footer-brands__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 20px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.provider-card--footer,
.footer-brands__item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.provider-card__img,
.footer-brands__img {
  max-height: 48px;
  width: auto;
  object-fit: contain;
  transition: transform 0.25s ease, opacity 0.25s ease, filter 0.25s ease;
  filter: grayscale(100%) opacity(0.9);
}

.footer-brands__img {
  max-height: 60px;
}

.provider-card__img:hover,
.footer-brands__img:hover {
  transform: scale(1.05);
  filter: none;
  opacity: 1;
}

.footer-disclaimer {
  max-width: 800px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  line-height: 1.55;
  text-align: center;
}

@media (max-width: 770px) {
  .site-footer .footer-grid--auto {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
  }

  .site-footer .footer-col {
    position: relative;
    padding: 14px 0;
  }

  .site-footer .footer-col + .footer-col {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .site-footer .footer-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    padding: 8px 4px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 700;
  }

  .site-footer .footer-heading::after {
    content: "";
    flex: 0 0 auto;
    width: 9px;
    height: 9px;
    border-right: 2px solid rgba(255, 255, 255, 0.85);
    border-bottom: 2px solid rgba(255, 255, 255, 0.85);
    transform: rotate(-45deg);
    transition: transform 0.2s ease;
    margin-left: 10px;
  }

  .site-footer .footer-col.is-open .footer-heading::after {
    transform: rotate(45deg);
  }

  .site-footer .footer-links-list,
  .site-footer .footer-contact-list {
    overflow: hidden;
    max-height: 0;
    display: block;
    padding: 0 4px;
    margin: 0;
    transition: max-height 0.25s ease;
    text-align: left;
  }

  .site-footer .footer-col.is-open .footer-links-list,
  .site-footer .footer-col.is-open .footer-contact-list {
    max-height: 600px;
    padding-bottom: 8px;
  }

  .site-footer .footer-links-list > li,
  .site-footer .footer-contact-list > li {
    padding: 8px 0;
  }
}

@media (max-width: 575px) {
  .site-footer .container,
  .footer-dark .container {
    padding: 0 15px;
  }
}