/* =========================
   RESET / BASE
========================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: 'Nunito', Arial, sans-serif;
  color: #ffffff;
  background: radial-gradient(circle at top, #0b2a3a, #05141d);
}

main {
  flex: 1;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

button {
  font: inherit;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =========================
   CONTENT
========================= */
.site-main {
  flex: 1;
  padding-top: 56px;
}

.page-content {
  padding-bottom: 80px;
}

.page-content h1,
.page-content .wp-block-heading {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.page-content h1 {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 42px;
  line-height: 1.12;
  letter-spacing: -0.04em;
  color: #fff;
  background: transparent !important;
}

.page-content h2 {
  margin: 56px auto 14px;
  font-size: 34px;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.page-content h2:first-child {
  margin-top: 0;
}

.page-content h3 {
  margin: 32px auto 10px;
  font-size: 22px;
  line-height: 1.3;
  color: #fff;
}

.page-content p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.75;
}

.page-content p + p {
  margin-top: 10px;
}

.page-content ul,
.page-content ol {
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.75;
}

.page-content li::marker {
  color: #00d4ff;
}

.page-content strong {
  color: #fff;
}

.page-content p strong:only-child,
.page-content > .container > strong,
.page-content strong:first-child {
  display: inline-block;
  margin: 22px auto 8px;
  font-size: 20px;
  line-height: 1.35;
}

.page-content p:has(strong:only-child) {
  margin-bottom: 8px;
}

.page-content img,
.page-content .wp-block-image img {
  margin: 0 auto;
  border-radius: 16px;
}

.page-content figure {
  overflow: hidden;
}

.page-content code {
  padding: 2px 6px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: #00d4ff;
}

.page-content pre {
  overflow-x: auto;
  padding: 18px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.3);
}

.page-content hr {
  height: 1px;
  margin: 42px 0;
  border: 0;
  background: rgba(255, 255, 255, 0.08);
}

.page-content blockquote {
  margin: 32px 0;
  padding: 22px 26px;
  border-left: 4px solid #00d4ff;
  border-radius: 0 16px 16px 0;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.78);
  font-style: italic;
}

.notice-box {
  margin: 28px 0;
  padding: 18px 22px;
  border-radius: 16px;
  border: 1px solid rgba(255, 184, 0, 0.22);
  background: rgba(255, 184, 0, 0.08);
  color: rgba(255, 255, 255, 0.82);
}

.notice-box strong {
  color: #ffcc4d;
}

.section-head {
  margin-bottom: 40px;
  text-align: center;
}

.section-head h2 {
  margin-bottom: 10px;
  font-size: 32px;
}

/* =========================
   HEADER
========================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(5, 20, 29, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header__inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-logo {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  text-decoration: none;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.site-logo__main {
  color: #ffffff;
}

.site-logo__accent {
  color: #00d4ff;
}

.site-logo img {
  width: auto;
  max-height: 66px;
}

.site-nav {
  flex: 1;
  min-width: 0;
  overflow: visible;
}

.site-nav__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 10px;
  list-style: none;
  margin: 0;
  padding: 10px 0;
}

.site-nav__list li {
  flex: 0 0 auto;
  list-style: none;
}

.site-nav__list a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  transition:
    color 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease;
}

.site-nav__list a:hover {
  color: #00d4ff;
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}

.site-header__btn {
  flex: 0 0 auto;
  position: relative;
  overflow: hidden;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 12px;
  background: linear-gradient(90deg, #00d4ff, #0077ff);
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.site-header__btn--demo {
  background: linear-gradient(90deg, #ff3b3b, #ffb703);
  box-shadow: 0 0 20px rgba(255, 80, 60, 0.35);
}

.site-header__btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -80%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-20deg);
  animation: ctaShine 2.8s infinite;
}

.mobile-menu {
  display: none;
}

/* =========================
   BUTTONS
========================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 10px;
  font-weight: 900;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.btn--primary {
  background: linear-gradient(90deg, #00d4ff, #0077ff);
  color: #ffffff;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.9);
}

.header-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 48px;
  padding: 0 24px;

  border-radius: 999px;

  font-weight: 800;
  font-size: 15px;

  text-decoration: none;

  transition: 0.25s ease;
}

.header-btn--play {
  color: #fff;

  background: linear-gradient(135deg, #00b8ff, #3a86ff);

  box-shadow: 0 0 20px rgba(0, 184, 255, 0.35);
}

.header-btn--play:hover {
  transform: translateY(-2px);

  box-shadow: 0 0 30px rgba(0, 184, 255, 0.5);
}

.header-btn--demo {
  color: #8fefff;

  border: 1px solid rgba(0, 255, 255, 0.25);

  background: rgba(8, 35, 55, 0.45);

  backdrop-filter: blur(12px);
}

.header-btn--demo:hover {
  color: #fff;

  border-color: #00e1ff;

  box-shadow: 0 0 24px rgba(0, 225, 255, 0.25);
}
/* =========================
   DEMO GAME
========================= */
.demo-game {
  position: relative;
  max-width: 1100px;
  min-height: 460px;
  margin: 44px auto;
  overflow: hidden;
  border-radius: 28px;
  background: #061824;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.demo-game__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 0 !important;
  object-fit: cover;
  animation: demoBgFloat 9s ease-in-out infinite alternate;
}

.demo-game__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: 30px;
}

.demo-game-actions {
  position: absolute;
  right: 180px;
  top: 50%;
  z-index: 8;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transform: translateY(-65%);
}

.demo-game-btn {
  position: relative;
  overflow: hidden;
  min-width: 220px;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 28px;
  border: 0;
  border-radius: 20px;
  color: #ffffff;
  font-size: 17px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.32);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.demo-game-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -80%;
  width: 45%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-20deg);
  /* animation: demoBtnShine 2.8s infinite; */
}

.demo-game-btn:hover {
  transform: translateY(-3px) scale(1.02);
}

.demo-game-btn--demo {
  background: linear-gradient(90deg, #ff3b3b, #ffb703);
  box-shadow:
    0 0 20px rgba(255, 80, 60, 0.5),
    0 16px 35px rgba(0, 0, 0, 0.32);
}

.demo-game-btn--real {
  background: linear-gradient(90deg, #007bff, #00cc3f);
  box-shadow:
    0 0 20px rgba(0, 255, 153, 0.38),
    0 16px 35px rgba(0, 0, 0, 0.32);
}

.demo-bubbles {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
}

.demo-bubbles span {
  position: absolute;
  bottom: -40px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.45);
  background: radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.12) 30%, rgba(0, 212, 255, 0.08) 70%);
  box-shadow:
    inset 0 0 8px rgba(255, 255, 255, 0.35),
    0 0 14px rgba(0, 212, 255, 0.35);
  opacity: 0;
  animation: demoBubbleUp 9s linear infinite;
}

.demo-bubbles span:nth-child(1) {
  left: 12%;
  width: 10px;
  height: 10px;
  animation-delay: 0s;
  animation-duration: 8s;
}
.demo-bubbles span:nth-child(2) {
  left: 28%;
  width: 16px;
  height: 16px;
  animation-delay: 1.5s;
  animation-duration: 10s;
}
.demo-bubbles span:nth-child(3) {
  left: 46%;
  width: 9px;
  height: 9px;
  animation-delay: 3s;
  animation-duration: 7s;
}
.demo-bubbles span:nth-child(4) {
  left: 63%;
  width: 18px;
  height: 18px;
  animation-delay: 0.8s;
  animation-duration: 11s;
}
.demo-bubbles span:nth-child(5) {
  left: 78%;
  width: 12px;
  height: 12px;
  animation-delay: 2.4s;
  animation-duration: 9s;
}
.demo-bubbles span:nth-child(6) {
  left: 90%;
  width: 20px;
  height: 20px;
  animation-delay: 4s;
  animation-duration: 12s;
}

.demo-game.is-demo-open {
  min-height: 720px;
  padding: 42px;
}

.demo-game.is-demo-open .demo-game-actions {
  display: none;
}

.demo-game.is-demo-open .demo-game__bg,
.demo-game.is-demo-open .demo-game__overlay,
.demo-game.is-demo-open .demo-bubbles {
  opacity: 0.22;
}

.demo-game-frame {
  position: relative;
  z-index: 20;
  width: 100%;
  height: 640px;
  overflow: hidden;
  border-radius: 22px;
  background: #000;
  border: 2px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}

.demo-game-frame[hidden] {
  display: none;
}

.demo-game-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #000;
}

.demo-game-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 20;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(8, 18, 35, 0.9);
  color: #fff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

/* =========================
   CASINO CARDS
========================= */
.page-content .casino-list {
  max-width: 980px;
  margin: 46px auto 70px;
}

.casino-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 50px 0;
}

.casino-card {
  position: relative;
  overflow: visible;
  padding: 34px 26px 20px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)), rgba(8, 34, 47, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.casino-card::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 0;
  bottom: 24px;
  width: 3px;
  border-radius: 0 999px 999px 0;
  background: linear-gradient(180deg, #00d4ff, #00ff99);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.casino-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 212, 255, 0.26);
  box-shadow: 0 24px 65px rgba(0, 212, 255, 0.1);
}

.casino-card:hover::before {
  opacity: 1;
}

.casino-card__badge {
  position: absolute;
  top: -14px;
  left: 22px;
  z-index: 5;
  min-width: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.02em;
}

.casino-card__badge::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(0, 0, 0, 0.15);
  pointer-events: none;
}

.casino-card__badge--top {
  background: linear-gradient(90deg, #00ffcc, #00bfff);
  box-shadow: 0 0 14px rgba(0, 255, 204, 0.45);
}
.casino-card__badge--new {
  background: linear-gradient(90deg, #3b82f6, #2563eb);
  box-shadow: 0 0 14px rgba(59, 130, 246, 0.45);
}
.casino-card__badge--hot {
  background: linear-gradient(90deg, #ff3b3b, #ff8c00);
  box-shadow: 0 0 16px rgba(255, 59, 59, 0.55);
}
.casino-card__badge--exclusive {
  background: linear-gradient(90deg, #a855f7, #6366f1);
  box-shadow: 0 0 14px rgba(168, 85, 247, 0.45);
}
.casino-card__badge--fast {
  background: linear-gradient(90deg, #facc15, #f59e0b);
  box-shadow: 0 0 14px rgba(250, 204, 21, 0.45);
}
.casino-card__badge--custom {
  background: linear-gradient(90deg, #22c55e, #06b6d4);
  box-shadow: 0 0 14px rgba(34, 197, 94, 0.45);
}

.casino-card__main {
  display: grid;
  grid-template-columns: minmax(280px, 1.25fr) minmax(300px, 1fr) minmax(190px, 220px);
  gap: 28px;
  align-items: center;
}

.casino-card__brand {
  min-width: 0;
  display: grid;
  grid-template-columns: 96px 1fr;
  align-items: center;
  gap: 22px;
}

.casino-card__logo,
.casino-table__logo {
  flex: 0 0 auto;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #00d4ff, #0077ff);
  color: #00121c;
  font-weight: 900;
}

.casino-card__logo {
  width: 96px;
  height: 96px;
  border-radius: 24px;
  font-size: 36px;
  box-shadow: 0 12px 30px rgba(0, 212, 255, 0.22);
}

.casino-card__logo img,
.casino-table__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.06);
}

.casino-card__logo img {
  padding: 8px;
  border-radius: 24px;
}

.casino-card__logo:has(img),
.casino-table__logo:has(img) {
  background: transparent;
  box-shadow: none;
}

.casino-card__brand-text h3 {
  margin: 0 0 8px;
  font-size: 28px;
  line-height: 1.05;
}

.casino-card__brand-text p {
  max-width: 360px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.45;
}

.casino-card__offer {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(170px, 1fr) auto auto;
  align-items: center;
  gap: 14px;
}

.casino-card__bonus span,
.casino-card__label {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  font-weight: 700;
}

.casino-card__bonus strong {
  display: block;
  max-width: 320px;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.3;
}

.casino-card__rating-inline,
.casino-card__rating--clean {
  min-width: 78px;
  text-align: center;
}

.casino-card__score {
  min-width: 62px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 216, 77, 0.12);
  border: 1px solid rgba(255, 216, 77, 0.24);
  color: #ffd84d;
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.stars {
  display: flex;
  justify-content: center;
  gap: 2px;
  margin-top: 5px;
  color: #ffd84d;
  font-size: 17px;
  letter-spacing: 1px;
  line-height: 1;
}

.star {
  position: relative;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.2);
}

.star.full {
  color: #ffd84d;
}

.star.half::before {
  content: '★';
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  overflow: hidden;
  color: #ffd84d;
}

.casino-card__side {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.casino-card__action,
.casino-card__action .btn--casino {
  width: 100%;
}

.casino-card__action .btn--casino {
  max-width: 220px;
  min-height: 68px;
  margin-left: auto;
  border-radius: 18px;
  background: linear-gradient(90deg, #00ff99, #00cc66);
  color: #00120b !important;
  text-decoration: none;
  font-size: 18px;
  font-weight: 900;
}

.casino-card__action .btn--casino:hover {
  transform: translateY(-2px);
}

.casino-card__note {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  line-height: 1.35;
  text-align: center;
}

.casino-card__bottom {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 22px;
}

.casino-card__chips {
  display: flex;
  align-items: center;
  gap: 8px;
}

.casino-card__chips .casino-card__label {
  margin-bottom: 0;
  white-space: nowrap;
}

.casino-card__chips div {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.casino-card__chips div span {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.75);
  font-size: 11px;
  font-weight: 700;
}

.casino-card__promo {
  min-width: 174px;
  justify-self: end;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(0, 212, 255, 0.08);
  border: 1px dashed rgba(0, 212, 255, 0.3);
}

.casino-card__promo small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  font-weight: 500;
}

.casino-card__promo b {
  display: block;
  margin-top: 3px;
  color: #00d4ff;
  font-size: 15px;
  line-height: 1;
}

.casino-card__copy {
  position: relative;
  overflow: hidden;
  margin-left: auto;
  border: 0;
  border-radius: 10px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
  transition: background 0.25s ease;
}

.casino-card__copy:hover {
  background: rgba(255, 255, 255, 0.18);
}

.casino-card__copy.is-copied {
  background: #00ff99;
  color: #00120b;
  transform: scale(0.95);
}

/* =========================
   TABLES
========================= */
.casino-table-wrap,
.content-table-wrap {
  max-width: 980px;
  overflow-x: auto;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 34, 47, 0.72);
  scrollbar-width: thin;
  scrollbar-color: #00d4ff rgba(255, 255, 255, 0.04);
}

.casino-table-wrap {
  margin: 44px auto 64px;
}

.content-table-wrap {
  margin: 36px auto 52px;
  -webkit-overflow-scrolling: touch;
}

.casino-table-wrap::-webkit-scrollbar,
.content-table-wrap::-webkit-scrollbar {
  height: 8px;
}

.casino-table-wrap::-webkit-scrollbar-track,
.content-table-wrap::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 999px;
}

.casino-table-wrap::-webkit-scrollbar-thumb,
.content-table-wrap::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, #00d4ff, #0077ff);
  border-radius: 999px;
}

.casino-table-wrap::-webkit-scrollbar-thumb:hover,
.content-table-wrap::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(90deg, #00ffcc, #00aaff);
}

.casino-table,
.content-table-wrap table {
  width: 100%;
  border-collapse: collapse;
}

.casino-table {
  min-width: 760px;
}

.content-table-wrap table {
  min-width: 640px;
  margin: 0;
  background: transparent;
}

.content-table-wrap thead,
.casino-table th {
  background: rgba(255, 255, 255, 0.045);
}

.casino-table th,
.casino-table td,
.content-table-wrap th,
.content-table-wrap td {
  vertical-align: middle;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  text-align: center;
}

.casino-table th,
.casino-table td {
  padding: 16px;
}

.content-table-wrap th,
.content-table-wrap td {
  padding: 18px 20px;
  line-height: 1.5;
}

.casino-table th,
.content-table-wrap th {
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.casino-table td:first-child,
.casino-table td:nth-child(2),
.content-table-wrap td:first-child {
  text-align: left;
}

.content-table-wrap td:first-child {
  font-weight: 800;
  color: #ffffff;
}

.casino-table tr:last-child td,
.content-table-wrap tr:last-child td {
  border-bottom: 0;
}

.casino-table__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}

.casino-table__logo {
  width: 52px;
  height: 52px;
  border-radius: 14px;
}

.casino-table__logo img {
  padding: 5px;
}

.casino-table__rating {
  color: #ffd84d;
}

.casino-table code {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0, 212, 255, 0.08);
  color: #00d4ff;
  font-weight: 800;
}

.casino-table__btn {
  min-width: 130px;
  display: inline-flex;
  justify-content: center;
  padding: 11px 16px;
  border-radius: 12px;
  background: linear-gradient(90deg, #00ff99, #00cc66);
  color: #00120b;
  text-decoration: none;
  font-weight: 900;
}

/* =========================
   FAQ
========================= */
.faq-list {
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  overflow: hidden;
  margin-bottom: 14px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)), rgba(8, 34, 47, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.faq-item h3 {
  position: relative;
  margin: 0;
  padding: 20px 56px 20px 22px;
  font-size: 17px;
  line-height: 1.35;
  cursor: pointer;
}

.faq-item h3::after {
  content: '+';
  position: absolute;
  top: 50%;
  right: 22px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  border-radius: 50%;
  background: rgba(0, 212, 255, 0.12);
  color: #00d4ff;
  font-size: 20px;
  font-weight: 800;
}

.faq-item.is-open h3::after {
  content: '−';
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 22px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
  transition: 0.25s ease;
}

.faq-item.is-open .faq-item__answer {
  max-height: 300px;
  padding: 0 22px 22px;
}

/* =========================
   FASTLINKS
========================= */
.fastlinks {
  width: 250px;
  margin: 32px 0;
  padding: 15px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)), rgba(8, 34, 47, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.fastlinks__title {
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
}

.fastlinks__list {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding-left: 22px;
}

.fastlinks__list li {
  color: #00e0ff;
  font-weight: 700;
}

.fastlinks__list a {
  color: #ffffff;
  font-size: 13px;
  text-decoration: none;
  transition: 0.2s ease;
}

.fastlinks__list a:hover {
  color: #00e0ff;
}

.fastlinks--left {
  float: left;
  margin: 8px 32px 24px 0;
}

.fastlinks--right {
  float: right;
  margin: 8px 0 24px 32px;
}

.fastlinks--center {
  margin-left: auto;
  margin-right: auto;
}

.fastlinks--full {
  width: 100%;
  max-width: 920px;
}

.clear {
  clear: both;
}

/* =========================
   PROS / CONS
========================= */
.pros-cons-list {
  max-width: 980px;
  margin: 42px auto 58px;
}

.pros-cons {
  width: 100%;
  padding: 0;
  background: transparent;
  border: 0;
}

.pros-cons__grid {
  width: 100%;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 22px;
}

.pros-cons__box {
  flex: 1 1 0;
  max-width: 480px;
  padding: 20px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)), rgba(8, 34, 47, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.pros-cons__box h4 {
  margin: 0 0 16px;
  font-size: 18px;
  color: #ffffff;
}

.pros-cons__box ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pros-cons__box li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 28px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.55;
}

.pros-cons__box li:last-child {
  margin-bottom: 0;
}

.pros-cons__box--pros li::before,
.pros-cons__box--cons li::before {
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 900;
}

.pros-cons__box--pros li::before {
  content: '✓';
  color: #00ff99;
}

.pros-cons__box--cons li::before {
  content: '−';
  color: #ff6b6b;
}

/* =========================
   STEPS GUIDE
========================= */
.steps-guide {
  position: relative;
  margin: 50px 0;
}

.steps-guide__item {
  position: relative;
  margin-bottom: 30px;
  padding-left: 60px;
}

.steps-guide__item:last-child {
  margin-bottom: 0;
}

.steps-guide__item::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: -30px;
  width: 2px;
  background: rgba(255, 255, 255, 0.12);
}

.steps-guide__item:last-child::before {
  display: none;
}

.steps-guide__number {
  position: absolute;
  left: -6px;
  top: -25px;
  z-index: 5;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #00d4ff, #7a5cff);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  box-shadow:
    0 0 20px rgba(0, 212, 255, 0.45),
    0 0 40px rgba(122, 92, 255, 0.25);
}

.steps-guide__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 24px 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.steps-guide__text {
  flex: 1;
}

.steps-guide__text h3 {
  margin: 0 0 15px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}

.steps-guide__text p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 18px;
  line-height: 1.7;
}

.steps-guide__image {
  flex-shrink: 0;
}

.steps-guide__image img {
  width: 100%;
  max-width: 250px;
  border-radius: 18px;
}

/* =========================
   STICKY CTA / SCROLL TOP
========================= */
.sticky-cta {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 999;
  width: 100%;
  background: rgba(8, 34, 47, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.4);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.sticky-cta.show {
  transform: translateY(0);
}

.sticky-cta__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.sticky-cta__left {
  display: flex;
  flex-direction: column;
}

.sticky-cta__label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.sticky-cta__name {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.sticky-cta__btn {
  padding: 12px 20px;
  border-radius: 12px;
  background: linear-gradient(90deg, #00ff99, #00cc66);
  color: #00120b;
  font-weight: 900;
  text-decoration: none;
  transition: 0.25s;
}

.sticky-cta__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 255, 153, 0.3);
}

.scroll-top {
  position: fixed;
  right: 20px;
  bottom: 90px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: none;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
}

.scroll-top.show {
  opacity: 1;
  pointer-events: auto;
}

.scroll-top:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* =========================
   FOOTER
========================= */
.site-footer {
  margin-top: 80px;
  padding: 56px 0 24px;
  background: rgba(3, 14, 21, 0.82);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 1fr;
  gap: 40px;
}

.footer-logo {
  display: inline-flex;
  gap: 6px;
  margin-bottom: 14px;
  color: #ffffff;
  font-size: 24px;
  font-weight: 900;
  text-decoration: none;
  letter-spacing: -0.04em;
}

.footer-logo span {
  color: #00d4ff;
}

.site-footer p {
  max-width: 420px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.6;
}

.site-footer h3 {
  margin-bottom: 14px;
  color: #ffffff;
  font-size: 14px;
}

.site-footer__nav {
  display: flex;
  flex-direction: column;
}

.site-footer__nav a {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.62);
  text-decoration: none;
  font-weight: 700;
}

.site-footer__nav a:hover {
  color: #00d4ff;
}

.site-footer__menu {
  max-width: 320px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__menu li {
  max-width: 100%;
}

.site-footer__menu a {
  max-width: 100%;
  display: inline-flex;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
  white-space: normal;
  overflow-wrap: anywhere;
}

.site-footer__menu a:hover {
  color: #00d4ff;
  background: rgba(0, 212, 255, 0.08);
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
}

/* =========================
   ANIMATIONS
========================= */
@keyframes ctaShine {
  0% {
    left: -80%;
  }
  45%,
  100% {
    left: 130%;
  }
}

@keyframes demoBtnShine {
  0% {
    left: -80%;
  }
  45%,
  100% {
    left: 130%;
  }
}

@keyframes demoBubbleUp {
  0% {
    transform: translate3d(0, 0, 0) scale(0.6);
    opacity: 0;
  }
  12% {
    opacity: 0.85;
  }
  50% {
    transform: translate3d(18px, -220px, 0) scale(1);
  }
  100% {
    transform: translate3d(-14px, -520px, 0) scale(1.25);
    opacity: 0;
  }
}

@keyframes demoBgFloat {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.04);
  }
}

/* =========================
   RESPONSIVE
========================= */
@media (hover: none) {
  .casino-card:hover {
    transform: none;
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
  }

  .casino-card:hover::before {
    opacity: 0;
  }

  .casino-card__action .btn--casino:hover,
  .site-nav__list a:hover {
    transform: none;
  }

  .site-nav__list a:hover {
    background: none;
    color: rgba(255, 255, 255, 0.72);
  }
}

@media (max-width: 1200px) {
  .demo-game-actions {
    right: 100px;
  }
}

@media (max-width: 1100px) {
  .container {
    max-width: 920px;
  }

  .site-header__inner {
    min-height: 68px;
  }

  .casino-card__main {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .casino-card__brand {
    grid-template-columns: 90px 1fr;
  }

  .casino-card__offer {
    grid-template-columns: 1fr auto auto;
    width: 100%;
  }

  .casino-card__side,
  .casino-card__action .btn--casino {
    width: 100%;
    max-width: none;
  }

  .casino-card__bottom {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .casino-card__chips {
    align-items: flex-start;
  }
}

@media (max-width: 991px) {
  .steps-guide__content {
    flex-direction: column;
    align-items: flex-start;
    padding: 25px;
  }

  .steps-guide__image {
    width: 100%;
  }

  .steps-guide__text h3 {
    font-size: 24px;
  }

  .steps-guide__text p {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  .site-main {
    padding-top: 34px;
  }

  .site-logo {
    font-size: 18px;
  }

  .site-logo img {
    max-height: 38px;
  }

  .site-header__inner {
    gap: 12px;
  }

  .site-header__actions {
    gap: 8px;
  }

  .site-header__btn {
    min-height: 42px;
    padding: 0 14px;
    font-size: 13px;
  }

  .page-content {
    padding-bottom: 54px;
  }

  .page-content h1 {
    font-size: 34px;
  }

  .page-content h2 {
    margin: 42px auto 14px;
    font-size: 28px;
    line-height: 1.18;
  }

  .page-content p,
  .page-content ul,
  .page-content ol {
    font-size: 16px;
    line-height: 1.65;
  }

  .pros-cons__grid {
    flex-direction: column;
  }

  .pros-cons__box {
    padding: 18px;
  }

  .demo-game {
    min-height: 440px;
    margin: 28px 16px;
    border-radius: 22px;
  }

  .demo-game__bg {
    object-fit: cover;
    object-position: 38% center;
  }

  .demo-game-actions {
    right: 30px;
    top: 50%;
    transform: translateY(-65%);
  }

  .demo-game-btn {
    width: 100%;
    min-height: 58px;
    font-size: 16px;
  }

  .demo-game.is-demo-open {
    min-height: 620px;
    padding: 15px;
  }

  .demo-game-frame {
    height: 560px;
    border-radius: 18px;
  }

  .casino-list {
    gap: 22px;
    padding: 24px 0;
  }

  .casino-card {
    padding: 28px 14px 16px;
    border-radius: 20px;
  }

  .casino-card::before {
    top: 22px;
    bottom: 22px;
  }

  .casino-card__badge {
    left: 18px;
    top: -14px;
    padding: 8px 14px;
    font-size: 11px;
  }

  .casino-card__main {
    gap: 14px;
  }

  .casino-card__brand {
    gap: 8px;
  }

  .casino-card__brand-text h3 {
    margin-bottom: 6px;
    font-size: 22px;
  }

  .casino-card__brand-text p {
    margin-bottom: 0;
    font-size: 13px;
    line-height: 1.45;
  }

  .casino-card__offer {
    gap: 10px;
  }

  .casino-card__bonus span {
    margin-bottom: 4px;
    font-size: 12px;
  }

  .casino-card__bonus strong {
    font-size: 15px;
    line-height: 1.3;
  }

  .casino-card__score {
    min-width: 54px;
    height: 36px;
    font-size: 22px;
  }

  .stars {
    font-size: 13px;
  }

  .casino-card__action .btn--casino {
    min-height: 48px;
    border-radius: 16px;
    font-size: 15px;
  }

  .casino-card__note {
    margin-top: 6px;
    font-size: 10px;
  }

  .casino-card__bottom {
    margin-top: 14px;
    padding-top: 12px;
    gap: 10px;
  }

  .casino-card__chips {
    gap: 6px;
  }

  .casino-card__chips div {
    gap: 6px;
  }

  .casino-card__chips div span {
    padding: 4px 8px;
    font-size: 11px;
    min-height: auto;
  }

  .casino-card__promo {
    padding: 8px 10px;
    min-height: auto;
  }

  .casino-card__copy {
    min-width: 64px;
    height: 34px;
    font-size: 12px;
  }

  .faq-item h3 {
    padding: 18px 52px 18px 18px;
    font-size: 16px;
  }

  .sticky-cta {
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
  }

  .sticky-cta__inner {
    padding: 12px 16px;
  }

  .sticky-cta__label {
    font-size: 11px;
  }

  .sticky-cta__name {
    font-size: 14px;
  }

  .sticky-cta__btn {
    padding: 11px 14px;
    font-size: 13px;
    white-space: nowrap;
  }

  .scroll-top {
    right: 16px;
    bottom: 86px;
  }

  .site-footer {
    margin-top: 50px;
    padding: 38px 0 22px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .site-footer__menu {
    max-width: 100%;
  }

  .site-footer__bottom {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 575px) {
  .steps-guide__item {
    padding-left: 45px;
  }

  .steps-guide__number {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }

  .steps-guide__content {
    padding: 20px;
    border-radius: 18px;
  }

  .demo-game-actions {
    right: 10px;
  }

  .casino-card__brand {
    grid-template-columns: 90px 1fr;
    justify-items: center;
    text-align: center;
  }

  .casino-card__offer {
    grid-template-columns: 1fr auto auto;
    width: 100%;
  }

  .casino-card__bonus {
    order: 2;
  }

  .casino-card__rating-inline,
  .casino-card__rating--clean {
    order: 1;
  }

  .casino-card__bottom {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: start;
    gap: 12px 16px;
  }

  .casino-card__promo {
    grid-column: 2;
    grid-row: 1 / span 2;
    min-width: 86px;
    margin: 0;
    padding: 5px;
  }

  .casino-card__promo b {
    font-size: 11px;
  }
}

@media (max-width: 490px) {
  .casino-card__promo {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
}

@media (max-width: 420px) {
  .container {
    padding: 0 14px;
  }

  .site-logo {
    font-size: 16px;
  }

  .casino-card {
    padding-left: 14px;
    padding-right: 14px;
  }

  .casino-card__brand-text h3 {
    font-size: 23px;
  }

  .casino-card__copy {
    width: 100%;
  }

  .sticky-cta__left {
    max-width: 50%;
  }

  .sticky-cta__name,
  .sticky-cta__label {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}
