/* WinSpirit Casino — brand tokens */
:root {
  --ws-base: #110e1b;
  --ws-base-alt: #221c36;
  --ws-card: #30284c;
  --ws-card-hover: #3f1c60;
  --ws-accent: #AE5FFF;
  --ws-accent-2: #9f06ef;
  --ws-accent-hover: #c084fc;
  --ws-accent-rgb: 174, 95, 255;
  --ws-green: #00eda6;
  --ws-green-rgb: 0, 237, 166;
  --ws-cta-gradient: linear-gradient(90deg, #AE5FFF 0%, #7625a8 35%, #9f06ef 70%, #4739e5 100%);
  --ws-tab-gradient: linear-gradient(90deg, #AE5FFF 0%, #7625a8 100%);
  --ws-text-on-accent: #ffffff;
  --ws-text-muted-80: rgba(255, 255, 255, 0.8);
  --ws-text-muted-72: rgba(255, 255, 255, 0.72);
  --ws-block-gap: 16px;
}

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

.ws-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(--ws-border);
  border-radius: var(--ws-radius-sm);
}

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

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

.ws-faq-block,
.ws-reviews-block {
  padding: 0 12px;
}

.ws-faq-block + .ws-reviews-block {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.ws-faq-block__title,
.ws-reviews__title {
  margin: 0 0 16px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
}

.ws-faq {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ws-faq__item {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: var(--ws-card);
  overflow: hidden;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.ws-faq__item[open] {
  border-color: rgba(174, 95, 255, 0.35);
  background: var(--ws-card-hover);
}

.ws-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0;
  padding: 14px 16px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

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

.ws-faq__question::after {
  content: "";
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%23AE5FFF' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.2s ease;
}

.ws-faq__item[open] .ws-faq__question::after {
  transform: rotate(180deg);
}

.ws-faq__answer {
  padding: 0 16px 14px;
  color: var(--ws-text-muted-80);
  font-size: 14px;
  line-height: 1.55;
}

.ws-faq__answer p {
  margin: 0 0 0.75rem;
}

.ws-faq__answer p:last-child {
  margin-bottom: 0;
}

.ws-faq__answer a {
  color: var(--ws-accent);
  text-decoration: none;
}

.ws-faq__answer a:hover {
  color: var(--ws-accent-hover);
}

.ws-reviews {
  display: grid;
  gap: 12px;
}

@media (min-width: 768px) {
  .ws-reviews {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.ws-reviews__item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 100%;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: var(--ws-card);
  transition: border-color 0.15s ease, background 0.15s ease;
}

.ws-reviews__item:hover {
  border-color: rgba(174, 95, 255, 0.25);
  background: var(--ws-card-hover);
}

.ws-reviews__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.ws-reviews__author {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
}

.ws-reviews__stars {
  flex-shrink: 0;
  color: var(--ws-accent);
  font-size: 12px;
  letter-spacing: 0.08em;
  line-height: 1;
}

.ws-reviews__text {
  margin: 0;
  color: var(--ws-text-muted-80);
  font-size: 14px;
  line-height: 1.55;
}

#faq.ws-section {
  padding-bottom: 2rem;
}

/* WinSpirit home blocks */
.ws-hero-section {
  width: 100%;
  margin: 0;
  padding: 0;
}

.ws-hero {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 500px;
  min-height: 500px;
  border-radius: 0;
  border: 0;
  background-color: #110e1b;
  background-image: url("./img/home/banner2.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.ws-hero__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2rem;
  width: 100%;
  max-width: var(--ws-max, 1400px);
  height: 100%;
  min-height: 500px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  box-sizing: border-box;
}

.ws-hero__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(21, 22, 29, 0.92) 0%, rgba(21, 22, 29, 0.55) 50%, transparent 78%);
  pointer-events: none;
}

.ws-hero__deposit {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  width: min(100%, 300px);
}

.ws-hero-deposit {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  border-radius: 12px;
  background: rgba(21, 22, 29, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.ws-hero-deposit__amount-row {
  display: flex;
  gap: 8px;
}

.ws-hero-deposit__input-wrap {
  position: relative;
  flex: 1;
  min-width: 0;
  display: block;
}

.ws-hero-deposit__input {
  width: 100%;
  height: 48px;
  padding: 0 28px 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: var(--ws-surface-input);
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  outline: none;
  box-sizing: border-box;
}

.ws-hero-deposit__input:focus {
  border-color: rgba(174, 95, 255, 0.5);
}

.ws-hero-deposit__suffix {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  color: var(--ws-text-muted-80);
  font-size: 14px;
  font-weight: 600;
  pointer-events: none;
}

.ws-hero-deposit__currency {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 48px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: var(--ws-surface-input);
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  flex-shrink: 0;
}

.ws-hero-deposit__currency img {
  display: block;
  width: 20px;
  height: 20px;
}

.ws-hero-deposit__currency svg {
  color: var(--ws-text-muted-80);
}

.ws-hero-deposit__presets {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.ws-hero-deposit__preset {
  min-height: 36px;
  padding: 6px 4px;
  border: 0;
  border-radius: 8px;
  background: var(--ws-surface-light);
  color: #fff;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s ease;
}

.ws-hero-deposit__preset:hover {
  background: var(--ws-surface-input);
}

.ws-hero-deposit__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 8px;
  background: var(--ws-cta-gradient);
  color: var(--ws-text-on-accent);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: filter 0.15s ease;
}

.ws-hero-deposit__submit:hover {
  filter: brightness(1.05);
  color: var(--ws-text-on-accent);
}

.ws-hero-deposit__payments {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.ws-hero-deposit__payments img {
  display: block;
  width: 20px;
  height: 20px;
  object-fit: contain;
  opacity: 0.9;
}

.ws-hero-deposit__terms {
  display: block;
  color: var(--ws-text-muted-80);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
}

.ws-hero-deposit__terms:hover {
  color: #fff;
}

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

.ws-hero__content {
  position: relative;
  z-index: 2;
  flex: 1;
  min-width: 0;
  max-width: min(32rem, 52%);
  text-align: left;
}

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

@media (max-width: 767px) {
  .ws-hero__inner {
    flex-direction: column;
    align-items: stretch;
    padding: 1.25rem 1rem;
    gap: 1rem;
  }

  .ws-hero__inner::before {
    background: linear-gradient(0deg, rgba(21, 22, 29, 0.95) 0%, rgba(21, 22, 29, 0.45) 55%, transparent 100%);
  }

  .ws-hero__deposit {
    width: 100%;
    order: 2;
  }

  .ws-hero__content {
    order: 1;
    max-width: 100%;
    width: 100%;
    min-width: 0;
  }

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

  .ws-hero__sub {
    display: none;
  }
}

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

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

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

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

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

.ws-hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 12px;
  border-radius: 6px;
  background: var(--ws-cta-gradient);
  color: var(--ws-text-on-accent);
  font-size: 14px;
  font-weight: 700;
  text-transform: none;
  text-decoration: none;
  letter-spacing: normal;
}

.ws-hero__cta:hover {
  filter: brightness(1.05);
  color: var(--ws-text-on-accent);
}

.ws-hero__cta--green {
  background: var(--ws-green);
  color: #110e1b;
}

.ws-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

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

.ws-stats__item {
  padding: 12px;
  text-align: center;
  background: var(--ws-card);
  border: 0;
  border-radius: 8px;
}

.ws-stats__value {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
}

.ws-stats__label {
  font-size: 12px;
  font-weight: 400;
  color: var(--ws-text-muted-80);
  line-height: 1.35;
}

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

@media (min-width: 768px) {
  .ws-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(--ws-accent), transparent)
}

.games-title {
  font-size: 26px;
  font-weight: 700;
  color: var(--ws-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(--ws-border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--ws-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(--ws-accent-rgb), .15);
  border-color: rgba(var(--ws-accent-rgb), 0.25);
  color: var(--ws-accent);
  box-shadow: 0 0 30px rgba(var(--ws-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(--ws-border);
    color: var(--ws-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;
  scrollbar-width: none;
  -ms-overflow-style: none;
  --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(--ws-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(--ws-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(--ws-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(--ws-accent);
}

.game-provider {
  font-size: 12px;
  font-weight: 400;
  color: var(--ws-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
  }

  .ws-section.games-block:not(.games-block--providers):not(.games-block--promo) {
    padding-left: 0;
    padding-right: 0;
  }

  .games-actions {
    left: 0;
    right: 0
  }

  .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;
  }

  .ws-section.games-block:not(.games-block--providers):not(.games-block--promo) {
    padding-left: 0;
    padding-right: 0;
  }

  .games-actions {
    left: 0;
    right: 0;
  }

  .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) {
  .ws-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(--ws-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
  }
}

.ws-section.games-block {
  padding-left: 0;
  padding-right: 0;
}

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

/* Promotions carousel (WinSpirit) */
.ws-promotions {
  padding-top: 0;
}

.ws-promotions__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
  padding: 0 12px;
}

.ws-promotions__title-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.ws-promotions__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: var(--ws-accent);
}

.ws-promotions__icon svg {
  width: 20px;
  height: 20px;
}

.ws-promotions__title {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
}

.ws-promotions__nav {
  display: flex;
  gap: 8px;
}

.ws-promotions__nav .games-prev,
.ws-promotions__nav .games-next {
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  border-radius: 6px;
  background: var(--ws-card-hover);
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  transition: opacity 0.15s ease, background 0.15s ease;
}

.ws-promotions__nav .games-prev:hover,
.ws-promotions__nav .games-next:hover {
  background: #3c3e51;
}

.ws-promotions__nav .games-prev:disabled,
.ws-promotions__nav .games-next:disabled {
  opacity: 0.45;
  cursor: default;
}

.ws-promotions__slider {
  overflow: hidden;
}

.ws-promotions__list {
  --cols: 3;
  --gap: 12px;
  display: flex;
  flex-wrap: nowrap;
  gap: var(--gap);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  margin: 0;
  padding: 8px 0 0;
  list-style: none;
  scrollbar-width: none;
}

.ws-promotions__list::-webkit-scrollbar {
  display: none;
}

.ws-promo-card {
  flex: 0 0 364px;
  min-width: 364px;
  scroll-snap-align: start;
  padding: 0;
}

.ws-promo-card__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 216px;
  height: 100%;
  padding: 16px;
  border-radius: 12px;
  overflow: hidden;
  border: 0;
  background: var(--ws-card);
}

.ws-promo-card__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  margin: 0;
  aspect-ratio: auto;
  overflow: hidden;
  border-radius: 12px;
}

.ws-promo-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(21, 22, 29, 0.88) 0%, rgba(21, 22, 29, 0.25) 52%, rgba(21, 22, 29, 0.08) 100%);
  pointer-events: none;
}

.ws-promo-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.ws-promo-card__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  padding: 0;
}

.ws-promo-card__eyebrow {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--ws-text-muted-80);
}

.ws-promo-card__title {
  margin: 0;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
  color: #fff;
}

.ws-promo-card__desc {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--ws-text-muted-80);
}

.ws-promo-card__cta {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 40px;
  margin: 8px 0 0;
  padding: 0 12px;
  border-radius: 6px;
  background: var(--ws-cta-gradient);
  color: var(--ws-text-on-accent);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: filter 0.15s ease;
}

.ws-promo-card__cta:hover {
  filter: brightness(1.05);
  color: var(--ws-text-on-accent);
}

@media (max-width: 1024px) {
  .ws-promotions__list {
    --cols: 1;
  }

  .ws-promo-card {
    flex: 0 0 min(364px, 85%);
    min-width: min(364px, 85%);
  }

  .ws-promo-card__title {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .ws-promotions__title {
    font-size: 18px;
  }
}

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

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

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

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

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

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

.ws-promo-tile__cta:hover {
  filter: brightness(1.08);
  color: #110e1b;
}

@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(--ws-card);
  border: 1px solid var(--ws-border);
  border-radius: var(--ws-radius);
  box-shadow: var(--ws-shadow-md), 0 0 40px rgba(var(--ws-accent-rgb), 0.05);
}

.crypto-info-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(var(--ws-accent-rgb), 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--ws-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(--ws-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(--ws-text);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 0 10px;
}

.crypto-info__desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ws-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(--ws-radius) - 2px);
  border: 1.5px solid var(--ws-accent);
  background: transparent;
  color: var(--ws-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(--ws-accent);
  color: var(--ws-base);
  box-shadow: 0 6px 24px rgba(var(--ws-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 carousel (WinSpirit) */
.ws-providers {
  gap: 12px;
}

.ws-providers__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 12px;
}

.ws-providers__title-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.ws-providers__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--ws-accent);
}

.ws-providers__title-link {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
}

.ws-providers__title-link:hover {
  color: var(--ws-accent);
}

.ws-providers__nav {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.ws-providers__nav .games-prev,
.ws-providers__nav .games-next {
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  border-radius: 6px;
  background: var(--ws-card-hover);
  color: var(--ws-text-muted-80);
  cursor: pointer;
  transition: background 0.15s ease;
}

.ws-providers__nav .games-prev:hover,
.ws-providers__nav .games-next:hover {
  background: #3c3e51;
}

.ws-providers__slider {
  overflow: hidden;
}

.ws-providers__list {
  --gap: 6px;
  display: flex;
  flex-wrap: nowrap;
  gap: var(--gap);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  margin: 0;
  padding: 4px 0 8px;
  list-style: none;
  scrollbar-width: none;
}

.ws-providers__list::-webkit-scrollbar {
  display: none;
}

.ws-providers__item {
  flex: 0 0 auto;
  scroll-snap-align: start;
}

.ws-providers__link {
  display: block;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.ws-providers__card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 130px;
  height: 69px;
  padding: 16px 14px;
  background: var(--ws-surface-light);
  border-radius: 8px;
  box-sizing: border-box;
  transition: background 0.15s ease;
}

.ws-providers__link:hover .ws-providers__card {
  background: var(--ws-surface-input);
}

.ws-providers__card img {
  display: block;
  width: 102px;
  height: 37px;
  max-width: 100%;
  object-fit: contain;
}

.ws-providers__text {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

@media (max-width: 768px) {
  .ws-providers__title-link {
    font-size: 18px;
  }

  .ws-providers__card {
    min-width: 118px;
    height: 64px;
    padding: 14px 12px;
  }

  .ws-providers__card img {
    width: 92px;
    height: 34px;
  }
}

/* Legacy 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(--ws-card-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border-radius: var(--ws-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;
}

.ws-section.games-block--providers {
  padding-left: 0;
  padding-right: 0;
}

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

  .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) {
  .ws-section.games-block--providers {
    padding-left: 0;
    padding-right: 0;
  }

  .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 */
.ws-hentry {
  margin: 0;
}

.ws-hentry .entry-content.ws-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(--ws-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(--ws-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(--ws-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(--ws-accent-hover), var(--ws-accent) 45%, var(--ws-green) 100%);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
  border-radius: 1px;
}

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

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

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

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

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

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

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

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

.entry-content ul:not(.ws-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(--ws-accent-hover), var(--ws-accent) 65%, var(--ws-green) 100%);
  box-shadow: 0 0 8px rgba(var(--ws-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(--ws-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(--ws-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(--ws-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(--ws-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(--ws-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(--ws-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(--ws-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(--ws-accent-rgb), 0.22);
}

.entry-content tbody td:first-child {
  font-weight: 800;
  color: var(--ws-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;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .entry-content table::-webkit-scrollbar {
    display: none;
  }

  .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 — WinSpirit */
.ws-footer {
  margin-top: 32px;
  padding: 32px 16px 40px;
  background: var(--ws-base);
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.ws-footer__inner {
  max-width: var(--ws-max, 1200px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ws-footer__menu {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.ws-footer__card {
  display: grid;
  gap: 16px;
  padding: 16px;
  border-radius: 12px;
  background: var(--ws-base-alt);
}

.ws-footer__heading {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.ws-footer__contacts {
  display: grid;
  gap: 12px;
}

.ws-footer__contact-list {
  display: grid;
  gap: 10px;
}

.ws-footer__contact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.ws-footer__contact:hover {
  color: var(--ws-accent);
}

.ws-footer__contact svg {
  flex-shrink: 0;
  color: var(--ws-accent);
}

.ws-footer__social-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ws-footer__social-btn {
  display: inline-flex;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.15s ease;
}

.ws-footer__social-btn:hover {
  color: var(--ws-accent);
}

.ws-footer__lang {
  position: relative;
  display: block;
}

.ws-footer__lang-flag {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 14px;
  border-radius: 2px;
  background:
    linear-gradient(to bottom, #012169 33%, #fff 33% 66%, #c8102e 66%),
    linear-gradient(90deg, #012169 33%, #fff 33% 66%, #c8102e 66%);
  background-size: 100% 100%;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15);
  pointer-events: none;
}

.ws-footer__lang-select {
  width: 100%;
  height: 48px;
  padding: 0 36px 0 44px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  font-weight: 700;
  appearance: none;
  cursor: pointer;
  background-image: linear-gradient(45deg, transparent 50%, #fff 50%), linear-gradient(135deg, #fff 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(50% - 3px), calc(100% - 12px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.ws-footer__links {
  display: grid;
  gap: 12px;
}

.ws-footer__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
  text-decoration: none;
}

.ws-footer__link:hover {
  color: #fff;
}

.ws-footer__badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 8px;
  background: var(--ws-green);
  color: #110e1b;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.ws-footer__affiliate {
  display: flex;
  justify-content: center;
}

.ws-footer__affiliate-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 12px;
  background: var(--ws-base-alt);
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
}

.ws-footer__affiliate-link img {
  display: block;
  height: 36px;
  width: auto;
}

.ws-footer__section {
  display: grid;
  gap: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ws-footer__section-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.ws-footer__section-title {
  margin: 0;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}

.ws-footer__show-all {
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.ws-footer__show-all:hover {
  background: rgba(255, 255, 255, 0.06);
}

.ws-footer__awards,
.ws-footer__payments,
.ws-footer__partners,
.ws-footer__overviews {
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 4px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.ws-footer__awards::-webkit-scrollbar,
.ws-footer__payments::-webkit-scrollbar,
.ws-footer__partners::-webkit-scrollbar,
.ws-footer__overviews::-webkit-scrollbar {
  display: none;
}

.ws-footer__awards {
  justify-content: flex-start;
}

.ws-footer__award {
  flex: 0 0 auto;
  width: 96px;
  height: 64px;
  object-fit: contain;
}

.ws-footer__pay-logo {
  flex: 0 0 auto;
  height: 48px;
  width: 96px;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.ws-footer__pay-logo img {
  display: block;
  height: 100%;
  width: 96px;
  max-width: none;
  object-fit: cover;
  object-position: 0 0;
}

.ws-footer__partner {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 48px;
  padding: 8px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
}

.ws-footer__partner img {
  max-width: 100%;
  max-height: 28px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.ws-footer__overview {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
}

.ws-footer__overview img {
  height: 36px;
  width: auto;
  object-fit: contain;
}

.ws-footer__trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px 20px;
  padding-top: 8px;
}

.ws-footer__trust-icon,
.ws-footer__trust-link img {
  display: block;
  height: 40px;
  width: auto;
  object-fit: contain;
}

.ws-footer__trust-link {
  display: inline-flex;
}

.ws-footer__copy {
  margin: 0;
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}

@media (min-width: 900px) {
  .ws-footer {
    padding: 40px 32px 48px;
  }

  .ws-footer__menu {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
  }

  .ws-footer__card {
    padding: 20px;
    align-content: start;
  }

  .ws-footer__award {
    width: 144px;
    height: 96px;
  }

  .ws-footer__awards {
    justify-content: center;
  }

  .ws-footer__overviews {
    justify-content: center;
  }
}

/* Category tabs (WinSpirit lobby filter) */
.ws-categories {
  padding-top: 0;
  padding-bottom: 0;
}

.ws-categories__bar {
  display: flex;
  align-items: stretch;
  gap: 12px;
}

.ws-categories__tabs-wrap {
  position: relative;
  flex: 1;
  min-width: 0;
}

.ws-categories__tabs {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 4px;
  background: var(--ws-card);
  border-radius: 8px;
  -webkit-overflow-scrolling: touch;
}

.ws-categories__tabs::-webkit-scrollbar {
  display: none;
}

.ws-categories__tab {
  position: relative;
  flex-shrink: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 0;
  min-height: 36px;
  padding: 0 12px;
  color: var(--ws-text-muted-80);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  border-radius: 6px;
  transition: color 0.15s ease, background 0.15s ease;
}

.ws-categories__tab:hover {
  color: #fff;
}

.ws-categories__tab--active {
  color: var(--ws-text-on-accent);
  background: var(--ws-tab-gradient);
}

.ws-categories__tab--active::after {
  display: none;
}

.ws-categories__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.ws-categories__icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.ws-categories__label {
  display: block;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ws-categories__indicator {
  display: none;
}

.ws-categories__provider {
  flex-shrink: 0;
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-width: 148px;
  height: 44px;
  padding: 0 12px;
  background: var(--ws-card);
  border: 0;
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.15s ease;
}

.ws-categories__provider:hover {
  background: var(--ws-card-hover);
}

.ws-categories__provider-label {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ws-categories__provider-chevron {
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 899px) {
  .ws-categories__bar {
    flex-direction: column;
    gap: 10px;
  }

  .ws-categories__provider {
    align-self: stretch;
    width: 100%;
  }
}

@media (max-width: 575px) {
  .ws-categories__tab {
    min-height: 36px;
    padding: 0 10px;
    font-size: 13px;
  }

  .ws-categories__icon svg {
    width: 18px;
    height: 18px;
  }
}

/* Games carousel (WinSpirit lobby — image only) */
.ws-games.games-block--slots {
  gap: 12px;
}

.ws-games__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 12px;
}

.ws-games__header--featured,
.ws-games__header--exclusive {
  align-items: center;
}

.ws-games__title-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.ws-games__icon--exclusive {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--ws-accent);
}

.ws-games__icon--jackpot-hunt {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.ws-games__icon--jackpot-hunt img {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.ws-games__icon--new-releases {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--ws-accent);
}

.ws-games__title-link {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
}

.ws-games__title-link:hover {
  color: var(--ws-accent);
}

.ws-games__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.ws-games__show-all {
  color: var(--ws-text-muted-80);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  text-decoration: none;
  white-space: nowrap;
}

.ws-games__show-all:hover {
  color: #fff;
}

.ws-games__title {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--ws-accent);
}

.ws-games__nav {
  display: flex;
  gap: 8px;
}

.ws-games__nav .games-prev,
.ws-games__nav .games-next {
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  border-radius: 6px;
  background: var(--ws-card-hover);
  color: var(--ws-text-muted-80);
  cursor: pointer;
  transition: background 0.15s ease;
}

.ws-games__nav .games-prev:hover,
.ws-games__nav .games-next:hover {
  background: #3c3e51;
}

.ws-games__slider {
  overflow: hidden;
}

.ws-games__list {
  --gap: 16px;
  display: flex;
  flex-wrap: nowrap;
  gap: var(--gap);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  margin: 0;
  padding: 4px 0 8px;
  list-style: none;
  scrollbar-width: none;
}

.ws-games__list::-webkit-scrollbar {
  display: none;
}

.ws-game-item {
  flex: 0 0 158px;
  min-width: 158px;
  scroll-snap-align: start;
}

.ws-game-item__link {
  display: block;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.ws-game-item__image {
  position: relative;
  display: block;
  aspect-ratio: 158 / 220;
  border-radius: 8px;
  overflow: hidden;
  background: var(--ws-base);
}

.ws-game-item__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.ws-game-item__link:hover .ws-game-item__image img {
  transform: scale(1.04);
}

@media (max-width: 768px) {
  .ws-games__title {
    font-size: 14px;
  }

  .ws-games__title-link {
    font-size: 18px;
  }

  .ws-games__show-all {
    font-size: 13px;
  }

  .ws-promo-card__title {
    font-size: 22px;
  }

  .ws-game-item {
    flex: 0 0 132px;
    min-width: 132px;
  }
}

/* Bet ticker (Live Wins / Hall of Fame / Rewards) */
.ws-bet-ticker {
  padding-top: 0;
  padding-bottom: 0;
  margin-top: var(--ws-block-gap);
}

.ws-bet-ticker__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 0;
  padding: 24px 0 12px;
  background: var(--ws-card-hover);
  border: 0;
  border-radius: 12px;
  overflow: visible;
}

.ws-bet-ticker__tabs {
  position: absolute;
  left: 10px;
  top: -14px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
  width: fit-content;
  max-width: calc(100% - 24px);
  padding: 2px;
  background: var(--ws-base);
  border-radius: 6px;
  z-index: 1;
}

.ws-bet-ticker__tab {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 8px;
  border: 0;
  border-radius: 24px;
  background: transparent;
  color: #fff;
  font-family: inherit;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.25;
  text-align: left;
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.15s ease, background 0.15s ease;
}

.ws-bet-ticker__tab:hover {
  color: #fff;
}

.ws-bet-ticker__tab--active {
  color: #fff;
}

.ws-bet-ticker__tab-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

.ws-bet-ticker__tab-icon--live {
  color: var(--ws-accent);
}

.ws-bet-ticker__panels {
  position: relative;
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.ws-bet-ticker__panel {
  display: none;
  height: 100%;
}

.ws-bet-ticker__panel.is-active {
  display: block;
}

.ws-bet-ticker__marquee {
  position: relative;
  height: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
}

.ws-bet-ticker__track {
  display: flex;
  width: max-content;
  animation: ws-bet-ticker-scroll 32s linear infinite;
}

.ws-bet-ticker__track--slow {
  animation-duration: 26s;
}

.ws-bet-ticker__marquee:hover .ws-bet-ticker__track {
  animation-play-state: paused;
}

@keyframes ws-bet-ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.ws-bet-ticker__group {
  display: flex;
  gap: 12px;
  padding-inline: 6px;
}

.ws-bet-ticker__card-link {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 148px;
  padding: 0 15px 0 0;
  border-radius: 8px;
  background: transparent;
  border: 1px solid var(--ws-card-hover);
  text-decoration: none;
  transition: border-color 0.15s ease;
}

.ws-bet-ticker__card-link:hover {
  border-color: rgba(174, 95, 255, 0.35);
}

.ws-bet-ticker__thumb {
  position: relative;
  flex-shrink: 0;
  width: 48px;
  height: 66px;
  border-radius: 6px;
  overflow: hidden;
  background: var(--ws-card-hover);
}

.ws-bet-ticker__thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ws-bet-ticker__meta {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
}

.ws-bet-ticker__user {
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ws-bet-ticker__amount {
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
  color: var(--ws-green);
}

.ws-bet-ticker__mult {
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  color: var(--ws-text-muted-80);
}

.ws-bet-ticker__gift-link {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 132px;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--ws-card);
  border: 0;
  text-decoration: none;
  color: #fff;
}

.ws-bet-ticker__gift-link:hover {
  background: #22232c;
}

.ws-bet-ticker__gift-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  color: var(--ws-accent);
  background: rgba(174, 95, 255, 0.12);
}

.ws-bet-ticker__gift-user {
  font-size: 12px;
  font-weight: 600;
}

@media (max-width: 767px) {
  .ws-bet-ticker__inner {
    padding: 16px 0 10px;
  }

  .ws-bet-ticker__tabs {
    left: 8px;
    max-width: calc(100% - 16px);
    overflow-x: auto;
    scrollbar-width: none;
  }

  .ws-bet-ticker__tabs::-webkit-scrollbar {
    display: none;
  }
}

/* Bets table */
.ws-bets {
  padding-inline: 0;
}

.ws-bets__inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ws-bets__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 12px;
}

.ws-bets__tabs {
  display: flex;
  align-items: center;
  gap: 0;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.ws-bets__tabs::-webkit-scrollbar {
  display: none;
}

.ws-bets__tab {
  flex-shrink: 0;
  padding: 10px 14px;
  border: 0;
  background: transparent;
  color: var(--ws-text-muted-80);
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25;
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.15s ease;
}

.ws-bets__tab:hover {
  color: #fff;
}

.ws-bets__tab--active {
  color: var(--ws-accent);
}

.ws-bets__limit-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 72px;
  height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: transparent;
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.ws-bets__panels {
  min-height: 0;
}

.ws-bets__panel {
  min-height: 0;
}

.ws-bets__table-wrap {
  height: 440px;
  overflow: auto;
  border-radius: 12px;
  background: var(--ws-surface-middle);
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.15) transparent;
}

.ws-bets__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
}

.ws-bets__table thead th {
  position: sticky;
  top: 0;
  z-index: 2;
  padding: 14px 16px;
  background: var(--ws-surface-light);
  color: var(--ws-text-muted-80);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ws-bets__table thead th:last-child {
  text-align: right;
}

.ws-bets__cell {
  padding: 10px 16px;
  vertical-align: middle;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.ws-bets__row {
  background: var(--ws-surface-middle);
}

.ws-bets__row--alt {
  background: rgba(255, 255, 255, 0.02);
}

.ws-bets__user {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.ws-bets__game {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.ws-bets__game:hover {
  color: var(--ws-accent);
}

.ws-bets__game-thumb {
  flex-shrink: 0;
  position: relative;
  width: 28px;
  height: 39px;
  border-radius: 4px;
  overflow: hidden;
  background: var(--ws-surface-dark);
}

.ws-bets__game-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ws-bets__game-name {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ws-bets__amount-wrap {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.ws-bets__amount-wrap--end {
  justify-content: flex-end;
  width: 100%;
}

.ws-bets__cell--payout {
  text-align: right;
}

.ws-bets__amount,
.ws-bets__mult,
.ws-bets__payout {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.ws-bets__mult--loss,
.ws-bets__payout--loss {
  color: #f87171;
}

.ws-bets__payout:not(.ws-bets__payout--loss) {
  color: var(--ws-green);
}

.ws-bets__currency {
  display: block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .ws-bets__table-wrap {
    height: 380px;
  }

  .ws-bets__cell--bet,
  .ws-bets__table thead th:nth-child(3) {
    display: none;
  }
}

@media (max-width: 640px) {
  .ws-bets__toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .ws-bets__limit {
    align-self: flex-end;
  }

  .ws-bets__cell--mult,
  .ws-bets__table thead th:nth-child(4) {
    display: none;
  }
}


/* —— WinSpirit unique blocks —— */
.ws-features__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.ws-feature-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, #221c36 0%, #30284c 55%, #3f1c60 100%);
  border: 1px solid rgba(174, 95, 255, 0.22);
  text-decoration: none;
  color: #fff;
  min-height: 84px;
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.ws-feature-card:hover {
  border-color: rgba(174, 95, 255, 0.55);
  transform: translateY(-1px);
}

.ws-feature-card__icon {
  width: 56px;
  height: 56px;
  object-fit: contain;
  flex-shrink: 0;
}

.ws-feature-card__media {
  width: 88px;
  height: 64px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
}

.ws-feature-card__eyebrow {
  margin: 0 0 4px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
  display: flex;
  align-items: center;
  gap: 6px;
}

.ws-feature-card__badge {
  display: inline-flex;
  align-items: center;
  padding: 1px 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, #AE5FFF, #9f06ef);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.ws-feature-card__title {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
}

.ws-feature-card--vip {
  background: linear-gradient(0deg, #110e1b, #1c0e47 70.9%, #1b0861 120.7%);
}

.ws-feature-card--secure {
  background: linear-gradient(135deg, #0a5766 0%, #221c36 60%);
}

.ws-feature-card--app {
  background: linear-gradient(135deg, #30284c 0%, #7625a8 100%);
}

.ws-hero__visual {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: min(46%, 440px);
  height: auto;
  object-fit: contain;
  pointer-events: none;
  border-radius: 12px 0 12px 0;
  opacity: 0.95;
}

.ws-hero__inner {
  position: relative;
}

.ws-bets__heading {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}

.ws-promo-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 900px) {
  .ws-features__grid {
    grid-template-columns: 1fr;
  }
  .ws-hero__visual {
    display: none;
  }
}

/* —— Official home banner carousel —— */
.ws-home-banner {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 0 16px;
  box-sizing: border-box;
}

.ws-home-banner__nav,
.ws-advantages__nav {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.ws-home-banner__btn,
.ws-advantages__btn {
  pointer-events: auto;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: rgba(48, 40, 76, 0.9);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, background 0.15s ease;
  padding: 0;
}

.ws-home-banner:hover .ws-home-banner__btn,
.ws-advantages:hover .ws-advantages__btn {
  opacity: 1;
  visibility: visible;
}

.ws-home-banner__btn:hover,
.ws-advantages__btn:hover {
  background: rgba(63, 28, 96, 0.95);
}

.ws-home-banner__btn.games-prev,
.ws-advantages__btn.games-prev { left: 12px; }

.ws-home-banner__btn.games-next,
.ws-advantages__btn.games-next { right: 12px; }

.ws-home-banner__btn svg,
.ws-advantages__btn svg {
  width: 24px;
  height: 24px;
}

.ws-home-banner__viewport,
.ws-advantages__viewport {
  overflow: hidden;
}

.ws-home-banner__list,
.ws-advantages__list {
  display: flex;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}

.ws-home-banner__list::-webkit-scrollbar,
.ws-advantages__list::-webkit-scrollbar {
  display: none;
}

.ws-home-banner__item {
  --banner-gap: 16px;
  flex: 0 0 calc((100% - (2 * var(--banner-gap))) / 3);
  width: calc((100% - (2 * var(--banner-gap))) / 3);
  min-width: calc((100% - (2 * var(--banner-gap))) / 3);
  max-width: calc((100% - (2 * var(--banner-gap))) / 3);
  scroll-snap-align: start;
}

@media (max-width: 767px) {
  .ws-home-banner__item {
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
  }
}

.ws-home-banner__card {
  display: flex;
  height: 176px;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  position: relative;
}

.ws-home-banner__copy {
  width: 50%;
  padding: 16px 16px 52px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.ws-home-banner__caption {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

.ws-home-banner__title {
  margin: 0;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
  color: #fff;
}

.ws-home-banner__var {
  display: inline-block;
}

.ws-home-banner__cta {
  position: absolute;
  left: 0;
  bottom: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 700;
  color: #c1b3db;
  background: rgba(48, 40, 76, 0.4);
  backdrop-filter: blur(8px);
  border-radius: 0 12px 0 0;
}

.ws-home-banner__cta svg {
  width: 16px;
  height: 16px;
}

.ws-home-banner__media {
  width: 50%;
  height: 100%;
}

.ws-home-banner__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

@media (min-width: 768px) {
  .ws-home-banner__card {
    height: 256px;
  }
  .ws-home-banner__copy {
    padding: 24px 24px 56px;
  }
  .ws-home-banner__title {
    font-size: 18px;
  }
  .ws-home-banner__cta {
    padding: 10px 24px;
  }
}

@media (min-width: 900px) {
  .ws-home-banner {
    margin: 0 0 20px;
  }
}

/* —— Advantages strip —— */
.ws-advantages {
  position: relative;
  margin: 0 0 20px;
}

.ws-advantages__item {
  flex: 0 0 min(280px, 82vw);
  scroll-snap-align: start;
}

.ws-advantage {
  display: grid;
  grid-template-columns: min-content 1fr min-content;
  gap: 12px;
  align-items: center;
  min-height: 64px;
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid rgba(174, 95, 255, 0.18);
  background: rgba(34, 28, 54, 0.85);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  text-decoration: none;
  color: #fff;
  height: 100%;
}

.ws-advantage__icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.ws-advantage__title {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.ws-advantage__desc {
  margin: 2px 0 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.35;
}

.ws-advantage__badge {
  display: inline-flex;
  align-items: center;
  padding: 1px 8px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.4;
  white-space: nowrap;
}

.ws-advantage__badge--primary {
  background: #AE5FFF;
  color: #110e1b;
}

.ws-advantage__badge--secondary {
  background: #00eda6;
  color: #110e1b;
}

.ws-advantage__arrow {
  width: 16px;
  height: 16px;
  color: #fff;
  display: flex;
  flex-shrink: 0;
}

.ws-advantage__arrow svg {
  width: 16px;
  height: 16px;
}

@media (min-width: 1024px) {
  .ws-advantages {
    margin: 0 0 24px;
  }
  .ws-advantages__item {
    flex-basis: 320px;
  }
  .ws-advantage {
    min-height: 88px;
    padding: 16px;
    gap: 16px;
  }
  .ws-advantage__icon {
    width: 56px;
    height: 56px;
  }
  .ws-advantage__title {
    font-size: 16px;
  }
  .ws-advantage__desc {
    font-size: 13px;
  }
}

@media (max-width: 899px) {
  .ws-home-banner__btn,
  .ws-advantages__btn {
    opacity: 0.85;
    visibility: visible;
  }
}

/* —— Lobby: PWA, game grids, alchemy, sports —— */
.ws-lobby {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 0 12px 24px;
}

.ws-pwa {
  display: grid;
  gap: 16px;
  padding: 16px;
  border-radius: 12px;
  background: #221c36;
  border: 1px solid rgba(174, 95, 255, 0.15);
}

.ws-pwa__banner {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}

.ws-pwa__title {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
}

.ws-pwa__sub {
  margin: 8px 0 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
}

.ws-pwa__sub a {
  color: #AE5FFF;
  font-weight: 700;
  text-decoration: underline;
}

.ws-pwa__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  padding: 10px 18px;
  border-radius: 10px;
  background: var(--ws-cta-gradient);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  width: fit-content;
}

.ws-pwa__note {
  margin: 12px 0 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.ws-lobby-games__title,
.ws-sports__title {
  margin: 0 0 16px;
  text-align: center;
  font-size: 24px;
  font-weight: 800;
  color: #fff;
}

.ws-lobby-games__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.ws-lobby-game {
  display: block;
  text-decoration: none;
}

.ws-lobby-game__media {
  position: relative;
  display: block;
  width: 100%;
  padding-bottom: 140%;
  border-radius: 10px;
  overflow: hidden;
  background: #30284c;
}

.ws-lobby-game__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.ws-lobby-game:hover .ws-lobby-game__media img {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.ws-lobby-game__badge {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 28%;
  z-index: 1;
}

.ws-lobby-game__badge img {
  position: static;
  width: 100%;
  height: auto;
}

.ws-lobby-games__action {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

.ws-lobby-games__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 10px;
  background: var(--ws-cta-gradient);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
}

.ws-alchemy {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-radius: 12px;
  border: 2px solid rgba(174, 95, 255, 0.45);
  background: linear-gradient(90deg, #221c36 0%, #3f1c60 55%, #221c36 100%);
  text-decoration: none;
  color: #fff;
  overflow: hidden;
  box-shadow: 0 0 24px rgba(174, 95, 255, 0.18);
}

.ws-alchemy__icon {
  width: 64px;
  height: 64px;
  object-fit: contain;
  flex-shrink: 0;
}

.ws-alchemy__title {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
}

.ws-alchemy__desc {
  margin: 4px 0 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.4;
}

.ws-alchemy__dates {
  margin: 8px 0 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.ws-alchemy__dot::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 6px;
  border-radius: 50%;
  background: #00eda6;
}

.ws-alchemy__go {
  margin-left: auto;
  align-self: flex-end;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 10px 0 10px 0;
  background: var(--ws-cta-gradient);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.ws-sports__card {
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
}

.ws-sports__img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 280px;
  object-fit: cover;
}

.ws-sports__overlay {
  position: absolute;
  left: 16px;
  bottom: 16px;
  color: #fff;
}

.ws-sports__eyebrow {
  margin: 0;
  font-size: 13px;
  opacity: 0.85;
}

.ws-sports__headline {
  margin: 4px 0 0;
  font-size: 22px;
  font-weight: 800;
}

/* Promo cards refresh */
.ws-promo-card__inner {
  display: grid;
  gap: 12px;
  background: #221c36;
  border-radius: 12px;
  padding: 16px;
  min-height: 100%;
}

.ws-promo-card__media {
  position: relative;
  height: 180px;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  justify-content: flex-end;
}

.ws-promo-card__media img {
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: cover;
  object-position: left center;
}

.ws-promo-card__meta {
  position: absolute;
  top: 8px;
  right: 8px;
  margin: 0;
  padding: 4px 8px;
  border-radius: 6px;
  background: rgba(17, 14, 27, 0.75);
  font-size: 11px;
  color: #fff;
}

.ws-promo-card__offer-label {
  margin: 8px 0 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
}

.ws-promo-card__offer {
  margin: 4px 0 0;
  font-size: 18px;
  font-weight: 800;
  color: #00eda6;
}

.ws-promo-card__actions {
  display: flex;
  gap: 8px;
  margin-top: auto;
  flex-wrap: wrap;
}

.ws-promo-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 10px;
  background: #30284c;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.ws-promo-card__cta--primary {
  background: var(--ws-cta-gradient);
}

.ws-promotions__all {
  display: inline-flex;
  align-items: center;
  margin-right: 8px;
  padding: 6px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

/* Top leaders 3-col */
.ws-leaders {
  margin: 0 12px 24px;
}

.ws-leaders__title {
  margin: 0 0 16px;
  text-align: center;
  font-size: 24px;
  font-weight: 800;
  color: #fff;
}

.ws-leaders__tabs {
  display: flex;
  gap: 4px;
  padding: 4px;
  margin-bottom: 12px;
  border-radius: 10px;
  border: 1px solid rgba(174, 95, 255, 0.25);
}

.ws-leaders__tab {
  flex: 1;
  border: 0;
  border-radius: 8px;
  padding: 8px;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 700;
  cursor: pointer;
}

.ws-leaders__tab--active {
  background: rgba(174, 95, 255, 0.35);
  color: #fff;
}

.ws-leaders__tables {
  display: grid;
  gap: 12px;
}

.ws-leaders__table {
  border-radius: 12px;
  overflow: hidden;
  background: #221c36;
  border: 1px solid rgba(174, 95, 255, 0.12);
}

.ws-leaders__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: linear-gradient(90deg, #30284c, #3f1c60);
}

.ws-leaders__head-title {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
}

.ws-leaders__head img {
  height: 40px;
  width: auto;
}

.ws-leaders__row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ws-leaders__game-name {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.ws-leaders__user {
  margin: 2px 0 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.ws-leaders__amount {
  text-align: right;
}

.ws-leaders__value {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
}

.ws-leaders__currency {
  margin: 2px 0 0;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
}

@media (min-width: 640px) {
  .ws-lobby-games__grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .ws-lobby {
    margin: 0 16px 32px;
    gap: 32px;
  }
  .ws-pwa {
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    padding: 24px;
    gap: 24px;
  }
  .ws-alchemy__icon {
    width: 112px;
    height: 112px;
  }
  .ws-alchemy__title {
    font-size: 24px;
  }
  .ws-alchemy__go span,
  .ws-alchemy__go {
    font-size: 13px;
  }
  .ws-leaders__tabs.lg-hidden {
    display: none;
  }
  .ws-leaders__tables {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .ws-leaders__table {
    display: block !important;
  }
  .ws-leaders__table[hidden] {
    display: block !important;
  }
}

@media (max-width: 899px) {
  .ws-alchemy__go span,
  .ws-alchemy__go {
    font-size: 0;
  }
  .ws-alchemy__go svg {
    width: 16px;
    height: 16px;
  }
  .ws-alchemy__go {
    font-size: 0;
    padding: 10px;
  }
  .ws-leaders__table--desktop-only:not([data-leaders-panel="casino"]) {
    display: none;
  }
  .ws-leaders__table[hidden] {
    display: none !important;
  }
}

/* Floating welcome promo banners (card styles; position via header) */
.ws-welcome-float__banner {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  min-width: 20rem;
  max-width: 30rem;
  padding: 14px 12px 14px 14px;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  cursor: pointer;
  transition: transform 0.15s ease, filter 0.15s ease;
}

.ws-welcome-float__banner:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.ws-welcome-float__banner--casino {
  background: linear-gradient(105deg, #AE5FFF 0%, #7625a8 45%, #9f06ef 100%);
}

.ws-welcome-float__banner--sport {
  background: linear-gradient(105deg, #00eda6 0%, #00b4d8 50%, #4739e5 100%);
}

.ws-welcome-float__badge {
  width: 4.5rem;
  height: 4.5rem;
  margin-right: 10px;
  flex-shrink: 0;
  object-fit: contain;
}

.ws-welcome-float__body {
  position: relative;
  z-index: 1;
  min-width: 0;
  flex: 1;
}

.ws-welcome-float__label {
  margin: 0 0 4px;
  font-size: 12px;
  font-weight: 700;
  color: #ffe66d;
}

.ws-welcome-float__banner--sport .ws-welcome-float__label {
  color: #110e1b;
}

.ws-welcome-float__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 700;
}

.ws-welcome-float__sub {
  display: block;
  margin-top: 2px;
  font-size: 11px;
  font-weight: 600;
  opacity: 0.9;
}

.ws-welcome-float__close {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  min-width: 2rem;
  padding-left: 8px;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  opacity: 0.85;
}

.ws-welcome-float__close:hover {
  opacity: 1;
}
