:root {
  --bg-main: #1a1040;
  --bg-deep: #120b30;
  --bg-secondary: #201448;
  --bg-card: #201448;
  --bg-card-hover: #2a1a5e;
  --bg-sidebar: #150d38;
  --bg-header: #0d0825;
  --bg-input: rgba(0, 0, 0, 0.3);

  --color-primary: #7c3aed;
  --color-primary-light: #a78bfa;
  --color-primary-dark: #5b21b6;
  --stb-brand-600: 124 58 237;
  --color-accent: #f59e0b;
  --color-accent-light: #fcd34d;
  --color-success: #10b981;
  --color-success-bright: #34d399;
  --color-danger: #ef4444;
  --color-new: #22c55e;

  --color-text: #ffffff;
  --color-text-muted: rgba(255, 255, 255, 0.65);
  --color-text-dim: rgba(255, 255, 255, 0.4);
  --color-border: rgba(255, 255, 255, 0.1);

  --sidebar-width: 230px;
  --header-height: 62px;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --radius-full: 999px;

  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.4);
  --transition: 0.2s ease;

  --space-x: 20px;
  --space-block: 24px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg-main);
  color: var(--color-text);
  font-family: "Jost", "Segoe UI", system-ui, -apple-system, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; padding: 0; margin: 0; }

/* ── HEADER ── */
.site-header {
  height: var(--header-height);
  background: var(--bg-header);
  display: flex;
  align-items: center;
  padding: 0 20px;
  position: sticky;
  top: 0;
  z-index: 300;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.site-header__left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}
.header__logo img { height: 38px; width: auto; }
/* ── HEADER NAV ── */
.header__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  flex: 1;
  margin-left: 0;
}
.header__nav-item {
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
}
.header__nav-item:hover {
  color: #fff;
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.12);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn-login {
  display: inline-flex;
  align-items: center;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.5);
  color: #fff;
  padding: 8px 22px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-login:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}
.btn-register {
  display: inline-flex;
  align-items: center;
  background: #22c55e;
  border: none;
  color: #fff;
  padding: 8px 22px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-register:hover { background: #16a34a; }

.header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  width: 36px;
  height: 36px;
  padding: 0;
  background: rgba(255,255,255,0.08);
  border: none;
  border-radius: 8px;
  flex-shrink: 0;
  transition: var(--transition);
  appearance: none;
}
.header__hamburger:hover { background: rgba(255,255,255,0.16); }
.header__hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}

/* ── LAYOUT ── */
.page-wrapper {
  display: flex;
  min-height: calc(100vh - var(--header-height));
}

/* ── SIDEBAR ── */
.sidebar {
  width: var(--sidebar-width);
  background: var(--bg-sidebar);
  display: flex;
  flex-direction: column;
  position: fixed;
  left: 0;
  top: var(--header-height);
  bottom: 0;
  z-index: 200;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none;
}
.sidebar::-webkit-scrollbar { display: none; }

.sidebar__nav {
  width: 100%;
  padding: 8px 0;
  flex: 1;
}

.sidebar__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  cursor: pointer;
  color: rgba(255,255,255,0.75);
  transition: var(--transition);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: normal;
  border-left: 3px solid transparent;
}
.sidebar__item:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
}
.sidebar__item.active {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-left-color: #22c55e;
}
.sidebar__item__icon {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sidebar__item__icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: block;
}
.sidebar__item__label { display: block; }

.sidebar__divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 6px 12px;
}

.sidebar__bottom {
  padding: 10px 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.sidebar__bottom-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  width: 100%;
}
.sidebar__bottom-btn:hover {
  background: rgba(255,255,255,0.13);
  color: #fff;
}
.sidebar__bottom-btn__icon img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}
.sidebar__bottom-btn__label { flex: 1; }

/* sidebar promo block */
.sidebar__promo {
  margin: 10px 10px 12px;
  background: linear-gradient(160deg, #1a0a4e 0%, #2d1b69 100%);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 14px 14px 12px;
  text-align: center;
}
.sidebar__promo__label {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.55);
  margin-bottom: 3px;
}
.sidebar__promo__sub {
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
  line-height: 1.3;
}
.sidebar__promo__amount {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 10px;
}
.sidebar__promo__amount em {
  font-style: normal;
  color: #fcd34d;
}
.sidebar__promo__btn {
  display: block;
  background: #22c55e;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 8px 12px;
  border-radius: var(--radius-full);
  text-align: center;
  transition: var(--transition);
}
.sidebar__promo__btn:hover { background: #16a34a; }

/* sidebar overlay mobile */
.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(5,15,40,0.65);
  backdrop-filter: blur(3px);
  z-index: 350;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.sidebar-overlay.open { opacity: 1; pointer-events: auto; }

/* ── MAIN AREA ── */
.main-area {
  margin-left: var(--sidebar-width);
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  background: var(--bg-main);
}

.page-body {
  flex: 1;
  padding: var(--space-block) var(--space-x);
}

/* ── WELCOME BANNER ── */
.welcome-banner {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  margin-bottom: var(--space-block);
  min-height: 400px;
  display: flex;
  align-items: center;
}
.welcome-banner__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}
.welcome-banner__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,20,70,0.92) 0%, rgba(10,20,70,0.75) 45%, rgba(10,20,70,0.2) 75%, transparent 100%);
}
.welcome-banner__content {
  position: relative;
  z-index: 2;
  padding: 36px 40px;
  max-width: 560px;
}
.welcome-banner__label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.65);
  margin-bottom: 10px;
}
.welcome-banner__title {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.3;
}
.welcome-banner__amount {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
}
.btn-hero {
  display: inline-block;
  background: #22c55e;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  padding: 13px 36px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 20px rgba(34,197,94,0.45);
  transition: var(--transition);
  cursor: pointer;
  border: none;
}
.btn-hero:hover {
  background: #16a34a;
  box-shadow: 0 6px 24px rgba(34,197,94,0.6);
}

/* ── INFO ROWS (payments, providers) ── */
.info-row {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
  border: 1px solid rgba(255,255,255,0.07);
}
.info-row__label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 160px;
}
.info-row__tags {
  display: flex;
  flex-wrap: wrap;
  flex: 1;
  justify-content: space-between;
  gap: 6px;
}
.info-tag {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-full);
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  white-space: nowrap;
  text-decoration: none;
  transition: var(--transition);
  flex: 1;
  text-align: center;
}
.info-tag:hover {
  background: rgba(255,255,255,0.2);
  color: #fff;
  border-color: rgba(255,255,255,0.3);
}

/* ── SEO BLOCK ── */
.seo-block {
  margin: var(--space-block) 0;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
}
.seo-block__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.seo-block__body.open { max-height: 100%; }
.seo-block__toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  background: none;
  border: none;
  color: var(--color-primary-light);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
}
.seo-block__toggle-icon {
  width: 16px;
  height: 16px;
  transition: transform 0.3s;
}
.seo-block__toggle[aria-expanded="true"] .seo-block__toggle-icon {
  transform: rotate(180deg);
}

/* ── CONTENT (SEO text) ── */
.content h1, .content h2 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.4;
}
.content h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-primary-light);
  margin: 24px 0 10px;
}
.content h4 {
  font-size: 15px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  margin: 18px 0 8px;
}
.content p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: 14px;
}
.content li { color: var(--color-text-muted); }
.content strong { color: #fff; font-weight: 700; }
.content ol {
  list-style: decimal;
  padding-left: 20px;
  margin-bottom: 16px;
}
.content ol li {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 6px;
}
.content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.content ul li {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.65;
  padding-left: 18px;
  position: relative;
}
.content ul li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--color-primary-light);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
}
.content img {
  display: block;
  width: 80%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin: 20px auto;
}
.content table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 13px;
  margin: 16px 0 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(124,58,237,0.25);
  background: var(--bg-card);
}
.content .table-scroll {
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 700px) {
  .content table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
.content table thead tr {
  background: linear-gradient(90deg, rgba(124,58,237,0.3) 0%, rgba(124,58,237,0.12) 100%);
}
.content table th {
  padding: 12px 18px;
  text-align: left;
  font-weight: 800;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-primary-light);
  border-bottom: 1px solid rgba(124,58,237,0.3);
}
.content table td {
  padding: 11px 18px;
  color: var(--color-text-muted);
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 13px;
  vertical-align: middle;
}
.content table td:first-child { font-weight: 700; color: #fff; }
.content table tbody tr:nth-child(odd) { background: rgba(124,58,237,0.05); }
.content table tbody tr:hover { background: rgba(124,58,237,0.1); }

/* ── FAQ ── */
.faq {
  margin: var(--space-block) 0;
}
.faq__title {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq__item {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq__item:has(.faq__q[aria-expanded="true"]) {
  border-color: rgba(124,58,237,0.4);
}
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  text-align: left;
  line-height: 1.4;
}
.faq__q:hover { color: var(--color-primary-light); }
.faq__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--color-primary-light);
  transition: transform 0.3s;
}
.faq__q[aria-expanded="true"] .faq__icon { transform: rotate(180deg); }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq__a.open { max-height: 400px; }
.faq__a p {
  padding: 14px 20px 16px;
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin: 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* ── FOOTER ── */
.site-footer {
  background: var(--bg-sidebar);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 28px var(--space-x) 20px;
}
.footer__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px 16px;
  margin-bottom: 24px;
}
.footer__col-title {
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}
.footer__col ul li { margin-bottom: 8px; }
.footer__col ul li a {
  font-size: 13px;
  color: var(--color-text-muted);
  transition: var(--transition);
}
.footer__col ul li a:hover { color: #fff; }
.footer__bottom {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}
.footer__age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  border: 2px solid rgba(255,255,255,0.35);
  font-size: 13px;
  font-weight: 900;
  color: rgba(255,255,255,0.5);
}
.footer__disclaimer {
  font-size: 13px;
  color: var(--color-text-dim);
  line-height: 1.7;
  margin-bottom: 10px;
  text-align: center;
}
.footer__disclaimer a { color: var(--color-primary-light); }
.footer__copyright {
  font-size: 13px;
  color: var(--color-text-dim);
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.07);
  text-align: center;
}

/* ── COOKIE ── */
.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10,18,50,0.97);
  border-top: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  padding: 12px 16px;
  z-index: 500;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--color-text-muted);
}
.cookie-notice a { color: var(--color-primary-light); text-decoration: underline; }
.cookie-notice__text { flex: 1; }
.btn-cookie {
  background: var(--color-primary);
  color: #fff;
  border: none;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  flex-shrink: 0;
  transition: var(--transition);
}
.btn-cookie:hover { background: var(--color-primary-dark); }
.cookie-notice.hidden { display: none; }

/* ── FLOAT CHAT ── */
.float-chat {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  background: var(--color-primary);
  color: #fff;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  padding: 14px 8px;
  border-radius: var(--radius-md) 0 0 var(--radius-md);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: -2px 0 12px rgba(124,58,237,0.4);
}
.float-chat:hover { background: var(--color-primary-dark); }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.28); }

/* ── SECTIONS (games etc) ── */
.section { padding: var(--space-block) 0; }
.section + .section { padding-top: 0; }
.section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.section__title { font-size: 20px; font-weight: 800; color: #fff; }
.section__controls { display: flex; align-items: center; gap: 6px; }
.section__see-all {
  display: flex;
  align-items: center;
  height: 30px;
  padding: 0 14px;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: transparent;
  white-space: nowrap;
  transition: var(--transition);
}
.section__see-all:hover { border-color: #fff; color: #fff; }
.section__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
  flex-shrink: 0;
}
.section__arrow:hover { background: rgba(255,255,255,0.16); color: #fff; }
.section__arrow svg { width: 14px; height: 14px; }

.games-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}
.game-card {
  position: relative;
  display: block;
  aspect-ratio: 3/4;
  cursor: pointer;
  background: #1e3278;
  border-radius: var(--radius-md);
}
.game-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.5); z-index: 2; }
.game-card__thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-md);
  z-index: 1;
}
.game-card__overlay {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  background: rgba(10,30,80,0.78);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 4;
  pointer-events: none;
}
.game-card__play-icon { width: 56px; height: 56px; object-fit: contain; }
.game-card__demo { font-size: 13px; font-weight: 700; color: #fff; }
.game-card:hover .game-card__overlay { opacity: 1; }
.game-card__name, .game-card__play { display: none; }
.game-card__badge {
  position: absolute;
  top: 7px;
  right: 7px;
  font-size: 9px;
  font-weight: 900;
  padding: 2px 7px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  background: var(--color-accent);
  color: #000;
  z-index: 5;
}
.game-card__badge--new { background: var(--color-new); color: #fff; }
.game-card__badge--hot { background: var(--color-danger); color: #fff; }
.game-card__badge--live { background: var(--color-primary); color: #fff; }
.game-card__badge--jackpot { background: linear-gradient(135deg,#f59e0b,#d97706); color: #000; }
.game-card__jackpot {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.82) 0%, transparent 100%);
  color: #fcd34d;
  font-size: 15px;
  font-weight: 900;
  text-align: center;
  padding: 32px 4px 12px;
  z-index: 4;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
}
.game-card__bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(0deg, #1a0a4e 0%, #5b21b6 100%);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  padding: 6px 8px 6px 38px;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  z-index: 3;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.game-card:hover .game-card__bar { opacity: 0; transform: translateY(6px); }

/* game card color variants */
.game-card--c1 { background: linear-gradient(160deg,#1565c0,#0d47a1); }
.game-card--c2 { background: linear-gradient(160deg,#0288d1,#01579b); }
.game-card--c3 { background: linear-gradient(160deg,#1976d2,#0d47a1); }
.game-card--c4 { background: linear-gradient(160deg,#0097a7,#006064); }
.game-card--c5 { background: linear-gradient(160deg,#1e88e5,#1565c0); }
.game-card--c6 { background: linear-gradient(160deg,#039be5,#0277bd); }
.game-card--c7 { background: linear-gradient(160deg,#1565c0,#0d47a1); }
.game-card--c8 { background: linear-gradient(160deg,#0277bd,#01579b); }
.game-card--grand { background: linear-gradient(160deg,#92400e,#78350f); box-shadow: inset 0 0 0 1px rgba(251,191,36,0.25); }
.game-card--major { background: linear-gradient(160deg,#991b1b,#7f1d1d); box-shadow: inset 0 0 0 1px rgba(239,68,68,0.22); }
.game-card--mini  { background: linear-gradient(160deg,#065f46,#064e3b); box-shadow: inset 0 0 0 1px rgba(52,211,153,0.2); }
.game-card--grand .game-card__badge--jackpot { background: linear-gradient(135deg,#fbbf24,#f59e0b); color: #000; }
.game-card--major .game-card__badge--jackpot { background: linear-gradient(135deg,#ef4444,#b91c1c); color: #fff; }
.game-card--mini  .game-card__badge--jackpot { background: linear-gradient(135deg,#10b981,#059669); color: #fff; }
.game-card--grand .game-card__jackpot { background: linear-gradient(0deg,rgba(120,53,15,0.95) 0%,rgba(120,53,15,0.5) 60%,transparent 100%); color: #fbbf24; }
.game-card--major .game-card__jackpot { background: linear-gradient(0deg,rgba(127,29,29,0.95) 0%,rgba(127,29,29,0.5) 60%,transparent 100%); color: #fca5a5; }
.game-card--mini  .game-card__jackpot { background: linear-gradient(0deg,rgba(6,78,59,0.95) 0%,rgba(6,78,59,0.5) 60%,transparent 100%); color: #6ee7b7; }

/* cat strip */
.cat-strip {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 0 0 var(--space-block);
  scrollbar-width: none;
}
.cat-strip::-webkit-scrollbar { display: none; }
.cat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 0 auto;
  width: 82px;
  background: var(--bg-card);
  border-radius: 12px;
  border: 1.5px solid transparent;
  padding: 10px 6px;
  gap: 6px;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}
.cat-card:hover { border-color: rgba(124,58,237,0.5); }
.cat-card.active { border-color: var(--color-primary); box-shadow: 0 4px 14px rgba(124,58,237,0.2); }
.cat-card__icon { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; }
.cat-card__icon img { width: 100%; height: 100%; object-fit: contain; }
.cat-card__label { font-size: 10px; font-weight: 700; color: rgba(255,255,255,0.8); text-align: center; line-height: 1.2; }

/* promo banner */
.promo-banner-wrap { padding: 0 0 var(--space-block); }
.promo-banner { display: block; position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.promo-banner__img { display: block; width: 100%; height: 500px; object-fit: cover; object-position: center; }
.promo-banner__cta {
  position: absolute; top: 50%; left: 5%;
  transform: translateY(-50%);
  background: rgba(20,8,50,0.88);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(124,58,237,0.25);
  border-radius: var(--radius-lg);
  padding: 22px 28px;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 10px; min-width: 200px;
}
.promo-banner__cta-label { font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.7); }
.promo-banner__cta-amount { font-size: 38px; font-weight: 900; color: #fcd34d; line-height: 1; }
.promo-banner__cta-btn {
  display: inline-block;
  background: #22c55e; color: #fff; font-size: 15px; font-weight: 800;
  padding: 12px 30px; border-radius: var(--radius-full);
  box-shadow: 0 4px 18px rgba(34,197,94,0.45); transition: var(--transition);
}
.promo-banner__cta-btn:hover { background: #16a34a; }

/* jackpot banner */
.jackpot-banner {
  margin: 0 0 var(--space-block);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #1a0a4e 0%, #7c3aed 50%, #1a0a4e 100%);
  border: 1px solid rgba(124,58,237,0.35);
  padding: 20px 24px;
  display: flex; align-items: center; gap: 24px;
  overflow: hidden; position: relative;
}
.jackpot-banner__label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--color-accent-light); margin-bottom: 4px; }
.jackpot-banner__amount { font-size: clamp(26px,4vw,40px); font-weight: 900; color: var(--color-accent); line-height: 1; }
.jackpot-banner__sub { font-size: 11px; color: var(--color-text-muted); margin-top: 4px; }
.jackpot-banner__games { flex: 1; display: flex; gap: 8px; overflow: hidden; }
.jackpot-mini-card { flex-shrink: 0; width: 80px; height: 80px; border-radius: var(--radius-md); overflow: hidden; cursor: pointer; }
.jackpot-banner__stats { flex-shrink: 0; display: flex; flex-direction: column; gap: 8px; }
.jackpot-stat { text-align: center; padding: 8px 14px; background: rgba(0,0,0,0.25); border-radius: var(--radius-md); min-width: 80px; }
.jackpot-stat__num { font-size: 14px; font-weight: 800; color: var(--color-accent-light); }
.jackpot-stat__label { font-size: 9px; color: var(--color-text-dim); text-transform: uppercase; letter-spacing: 0.06em; }

/* jackpot ticker */
.jackpot-ticker { background: rgba(40,10,90,0.4); border-top: 1px solid rgba(255,255,255,0.07); padding: 6px 16px; overflow: hidden; }
.jackpot-ticker__inner { display: flex; gap: 40px; animation: ticker 30s linear infinite; width: max-content; }
.jackpot-ticker__item { font-size: 11px; color: var(--color-text-muted); white-space: nowrap; }
.jackpot-ticker__item strong { color: var(--color-accent); }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* spin-rally, gameshows, exclusive, sports — keep basic styles */
.spin-rally-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 10px; }
.gameshows-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.exclusive-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.sports-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(100px,1fr)); gap: 10px; }
.spin-card { display: grid; grid-template-columns: 76px 1fr; grid-template-rows: 1fr auto; border-radius: var(--radius-md); background: var(--bg-card); overflow: hidden; border: 1px solid rgba(255,255,255,0.07); }
.spin-card__thumb-wrap { grid-column:1; grid-row:1; padding:6px; }
.spin-card__thumb { width:100%; height:100%; object-fit:cover; border-radius: var(--radius-sm); }
.spin-card__info { grid-column:2; grid-row:1; padding:8px 10px 8px 4px; display:flex; flex-direction:column; justify-content:center; gap:3px; }
.spin-card__name { font-size:14px; font-weight:700; color:#fff; line-height:1.3; margin-bottom:4px; }
.spin-card__field { display:flex; justify-content:space-between; gap:4px; }
.spin-card__field-label { font-size:12px; color:var(--color-text-muted); }
.spin-card__field-value { font-size:12px; font-weight:700; color:#fff; }
.spin-card__field-value--green { color:#22c55e; }
.btn-opt { grid-column:1/-1; grid-row:2; display:block; text-align:center; background:#22c55e; border:none; border-top:1px solid rgba(0,0,0,0.15); color:#fff; font-size:10px; font-weight:800; padding:7px 6px; border-radius:10px; cursor:pointer; transition:var(--transition); text-transform:uppercase; letter-spacing:0.07em; margin:8px; }
.btn-opt:hover { background:#16a34a; }
.gameshow-card, .excl-card { position:relative; border-radius:var(--radius-md); overflow:hidden; cursor:pointer; display:block; }
.gameshow-card { aspect-ratio: 3/2; }
.excl-card { aspect-ratio: 4/3; }
.gameshow-card__thumb, .excl-card__thumb { width:100%; height:100%; object-fit:cover; display:block; }
.gameshow-card__overlay, .excl-card__overlay { position:absolute; inset:0; background:rgba(10,30,80,0.72); display:flex; flex-direction:column; align-items:center; justify-content:center; gap:10px; opacity:0; transition:opacity 0.2s ease; }
.gameshow-card:hover .gameshow-card__overlay, .excl-card:hover .excl-card__overlay { opacity:1; }
.gameshow-card__play-icon, .excl-card__play-icon { width:52px; height:52px; object-fit:contain; }
.gameshow-card__demo, .excl-card__demo { font-size:13px; font-weight:700; color:#fff; }
.excl-card__badge { position:absolute; top:10px; right:10px; background:linear-gradient(135deg,#7c3aed,#5b21b6); color:#fff; font-size:9px; font-weight:800; text-transform:uppercase; padding:3px 8px; border-radius:var(--radius-full); z-index:3; }
.sport-card { border-radius:var(--radius-lg); overflow:hidden; cursor:pointer; aspect-ratio:2/3; position:relative; }
.sport-card__label { font-size:11px; font-weight:700; color:#fff; text-align:center; position:absolute; bottom:10px; left:0; right:0; text-shadow:0 1px 4px rgba(0,0,0,0.8); }
.sport-card--live { background:linear-gradient(160deg,#1d4ed8,#0891b2); }
.sport-card--football { background:linear-gradient(160deg,#15803d,#166534); }
.sport-card--tennis { background:linear-gradient(160deg,#d97706,#92400e); }
.sport-card--basketball { background:linear-gradient(160deg,#c2410c,#9a3412); }
.sport-card--hockey { background:linear-gradient(160deg,#1e40af,#1e3a8a); }
.sport-card--tennis2 { background:linear-gradient(160deg,#0288d1,#01579b); }
.sport-card--american { background:linear-gradient(160deg,#b45309,#78350f); }
.sport-card--baseball { background:linear-gradient(160deg,#047857,#064e3b); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  :root { --space-x: 12px; --space-block: 18px; }
  .header__hamburger { display: flex; }
  .header__nav { display: none; }
  .btn-login { display: inline-flex; padding: 7px 14px; font-size: 13px; }
  .btn-register { display: inline-flex; padding: 7px 14px; font-size: 13px; }
  .sidebar {
    display: flex !important;
    width: 400px !important;
    top: 0;
    height: 100dvh;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
    z-index: 400;
    margin: 0;
    border-radius: 0 16px 16px 0;
  }
  .sidebar.open { transform: translateX(0); }
  .sidebar-overlay { display: block; pointer-events: none; }
  .main-area { margin-left: 0 !important; }
  .games-grid, .games-grid--8 { grid-template-columns: repeat(4,1fr); gap: 8px; }
  .spin-rally-grid { grid-template-columns: repeat(3,1fr); }
  .exclusive-grid { grid-template-columns: repeat(2,1fr); }
  .gameshows-grid { grid-template-columns: repeat(2,1fr); }
  .welcome-banner { min-height: 200px; }
  .welcome-banner__content { padding: 24px 20px; }
  .promo-banner__img { height: 320px; }
  .footer__grid { grid-template-columns: repeat(2,1fr); }
  .jackpot-banner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .jackpot-banner__games { width: 100%; }
  .jackpot-banner__stats { flex-direction: row; }
}

@media (max-width: 600px) {
  :root { --space-x: 10px; --space-block: 14px; }
  .games-grid, .games-grid--8 { grid-template-columns: repeat(3,1fr); gap: 6px; }
  .spin-rally-grid { grid-template-columns: repeat(2,1fr); }
  .gameshows-grid { grid-template-columns: 1fr; }
  .exclusive-grid { grid-template-columns: repeat(2,1fr); }
  .welcome-banner { min-height: 160px; }
  .welcome-banner__content { padding: 18px 16px; }
  .welcome-banner__amount { font-size: 22px; }
  .promo-banner__img { height: 220px; }
  .promo-banner__cta { left:50%; transform:translate(-50%,-50%); max-width:85%; }
  .info-row { flex-direction: column; align-items: flex-start; gap: 8px; }
  .info-row__label { min-width: unset; }
  .footer__grid { grid-template-columns: 1fr; }
  .section__header { flex-direction: column; align-items: flex-start; gap: 8px; }
}

@media (max-width: 420px) {
  .btn-login { display: none; }
  .games-grid, .games-grid--8 { grid-template-columns: repeat(2,1fr); }
  .spin-rally-grid { grid-template-columns: 1fr; }
}

/* SEO hidden H1 */
.seo-h1-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}