/* ── HITNSPIN TEMPLATE ── */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary:        rgb(255, 107, 28);
  --primary-dim:    rgba(255, 107, 28, 0.14);
  --accent:         rgb(255, 195, 40);
  --bg-body:        rgb(245, 245, 250);
  --bg-header:      rgb(255, 255, 255);
  --bg-card:        rgb(255, 255, 255);
  --bg-card2:       rgb(248, 248, 252);
  --text-primary:   rgb(20, 20, 32);
  --text-secondary: rgb(90, 88, 110);
  --text-muted:     rgb(155, 150, 175);
  --border:         rgba(0, 0, 0, 0.09);
  --sidebar-w:      68px;
  --sidebar-open-w: 280px;
  --header-h:       56px;
  --thumb-radius:   12px;
  --font-main:      'Nunito', 'Arial', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  background: var(--bg-body);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── SIDEBAR OVERLAY ── */
.sidebar-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.45); z-index: 150;
}
.sidebar-overlay.active { display: block; }

/* ── SIDEBAR ── */
.sidebar {
  position: fixed;
  top: var(--header-h); left: 0;
  width: var(--sidebar-w);
  height: calc(100vh - var(--header-h));
  background: linear-gradient(160deg, rgb(228, 62, 130) 0%, rgb(152, 46, 192) 55%, rgb(80, 20, 152) 100%);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 200;
  transition: width 0.24s ease;
}
.sidebar.open { width: var(--sidebar-open-w); }
.sidebar.open ~ .main-wrap { margin-left: var(--sidebar-open-w); }

/* overflow only when open (prevent flash of content) */
.sidebar.open { overflow-y: auto; }
.sidebar::-webkit-scrollbar { width: 4px; }
.sidebar::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.22); border-radius: 4px; }

/* ── SIDEBAR: PROMO PANEL (hidden when closed) ── */
.sidebar__promo-wrap {
  display: none;
  position: relative;
  padding-top: 110px;
  margin: 8px 10px 0;
  flex-shrink: 0;
}
.sidebar.open .sidebar__promo-wrap { display: block; }
.sidebar__promo-char {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  height: 190px; width: auto;
  object-fit: contain;
  z-index: 2;
  pointer-events: none;
}
.sidebar__promo {
  position: relative;
  background: rgba(255,255,255,0.13);
  backdrop-filter: blur(6px);
  border-radius: 18px;
  padding: 82px 16px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: visible;
}
.sidebar__promo-title {
  font-size: 0.9rem; font-weight: 800;
  color: #fff; line-height: 1.2; margin-bottom: 6px;
}
.sidebar__promo-sub {
  font-size: 0.7rem; color: rgba(255,255,255,0.8);
  margin-bottom: 14px;
}
.sidebar__promo-btns {
  display: flex; gap: 8px; width: 100%;
}
.btn-login-sm {
  flex: 1; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 20px; border: 1.5px solid rgba(255,255,255,0.72);
  color: #fff; font-size: 0.78rem; font-weight: 700;
  transition: background 0.15s;
}
.btn-login-sm:hover { background: rgba(255,255,255,0.15); }
.btn-signup-sm {
  flex: 1; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 20px; background: var(--primary);
  color: #fff; font-size: 0.78rem; font-weight: 700;
  transition: opacity 0.15s;
}
.btn-signup-sm:hover { opacity: 0.88; }

/* ── SIDEBAR: FILTER (hidden when closed) ── */
.sidebar__filter {
  display: none;
  margin: 0 10px 8px;
  align-items: center; gap: 7px;
  padding: 7px 14px; border-radius: 20px;
  border: 1.5px solid rgba(255,255,255,0.38);
  color: rgba(255,255,255,0.88);
  font-size: 0.8rem; font-weight: 600;
  transition: background 0.15s, border-color 0.15s;
  flex-shrink: 0;
}
.sidebar.open .sidebar__filter { display: flex; }
.sidebar__filter:hover { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.1); }
.sidebar__filter svg { width: 15px; height: 15px; }

/* ── SIDEBAR: CATEGORY ICONS (hidden when closed) ── */
.sidebar__cats {
  display: none;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px; padding: 0 8px 8px;
  flex-shrink: 0;
}
.sidebar.open .sidebar__cats { display: grid; }
.sidebar__cat {
  display: flex; flex-direction: column;
  align-items: center; gap: 4px; padding: 8px 4px;
  border-radius: 10px;
  background: rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.9);
  font-size: 0.6rem; font-weight: 700; text-align: center;
  transition: background 0.15s;
}
.sidebar__cat:hover { background: rgba(255,255,255,0.24); }
.sidebar__cat.active { background: rgba(255,255,255,0.28); }
.sidebar__cat img { width: 32px; height: 32px; object-fit: contain; }

/* ── SIDEBAR: 2-COL MENU (hidden when closed) ── */
.sidebar__2col {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 4px; padding: 0 8px;
  flex-shrink: 0;
}
.sidebar.open .sidebar__2col { display: grid; }
.sidebar__2col-link {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 5px; padding: 10px 6px;
  border-radius: 12px;
  background: rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.88);
  font-size: 0.68rem; font-weight: 700; text-align: center;
  transition: background 0.15s;
}
.sidebar__2col-link:hover { background: rgba(255,255,255,0.24); }
.sidebar__2col-icon { width: 38px; height: 38px; object-fit: contain; }

/* ── SIDEBAR: DIVIDER ── */
.sidebar__divider {
  height: 1px; background: rgba(255,255,255,0.18); margin: 8px 10px;
  flex-shrink: 0;
}
.sidebar:not(.open) .sidebar__divider { display: none; }

/* ── SIDEBAR: MAIN NAV ── */
.sidebar__nav {
  display: flex; flex-direction: column;
  padding: 6px 0 16px; flex: 1;
}
.sidebar__item {
  display: flex; align-items: center;
  gap: 0; padding: 11px 0;
  justify-content: center;
  color: rgba(255,255,255,0.82);
  font-size: 0.82rem; font-weight: 700;
  transition: background 0.15s, color 0.15s;
  position: relative; white-space: nowrap;
}
.sidebar__item:hover { background: rgba(255,255,255,0.12); color: #fff; }
.sidebar__item.active { background: rgba(255,255,255,0.18); color: #fff; }
.sidebar.open .sidebar__item { gap: 10px; padding: 11px 16px; justify-content: flex-start; }

.sidebar__icon { width: 28px; height: 28px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.sidebar__icon img { width: 28px; height: 28px; object-fit: contain; }

.sidebar__label {
  opacity: 0; width: 0; overflow: hidden;
  transition: opacity 0.18s, width 0.18s;
}
.sidebar.open .sidebar__label { opacity: 1; width: auto; overflow: visible; }

.sidebar__badge {
  margin-left: auto; display: none;
  padding: 2px 8px; border-radius: 10px;
  background: rgb(46, 196, 100); color: #fff;
  font-size: 0.6rem; font-weight: 800; text-transform: uppercase;
}
.sidebar.open .sidebar__badge { display: inline-flex; }

/* ── HEADER ── */
.header {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: var(--bg-header);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center;
  gap: 10px; padding: 0 20px 0 14px;
  z-index: 300;
  box-shadow: 0 1px 8px rgba(0,0,0,0.07);
}

.header__burger {
  width: 36px; height: 36px;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  gap: 5px; flex-shrink: 0; border-radius: 6px;
  transition: background 0.15s;
}
.header__burger:hover { background: rgba(0,0,0,0.06); }
.header__burger span {
  display: block; width: 20px; height: 2px;
  background: var(--text-primary); border-radius: 2px;
  transition: transform 0.22s, opacity 0.22s;
}
.header__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__burger.open span:nth-child(2) { opacity: 0; }
.header__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.header__logo { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.header__logo-img { height: 32px; width: auto; object-fit: contain; }
.header__logo-text {
  font-size: 1.1rem; font-weight: 900;
  color: var(--primary);
  letter-spacing: 0.02em; text-transform: uppercase;
}

.header__spacer { flex: 1; }

.header__search {
  display: flex; align-items: center; gap: 6px;
  padding: 0 16px; height: 36px;
  border: 1.5px solid var(--primary); border-radius: 20px;
  color: var(--primary); font-size: 0.82rem; font-weight: 600;
  background: transparent; flex-shrink: 0;
  transition: background 0.15s;
}
.header__search:hover { background: var(--primary-dim); }
.header__search svg { width: 16px; height: 16px; }

/* Lang select */
.lang-select { position: relative; flex-shrink: 0; }
.lang-select__btn {
  display: flex; align-items: center; gap: 5px;
  padding: 0 12px; height: 36px;
  border: 1px solid var(--border); border-radius: 20px;
  background: var(--bg-card); color: var(--text-secondary);
  font-size: 0.78rem; font-weight: 600; cursor: pointer;
  transition: border-color 0.15s;
}
.lang-select__btn:hover { border-color: var(--primary); }
.lang-select__btn svg { width: 14px; height: 14px; }
.lang-select__arrow { width: 12px !important; height: 12px !important; transition: transform 0.15s; }
.lang-select__btn[aria-expanded="true"] .lang-select__arrow { transform: rotate(180deg); }
.lang-select__dropdown {
  display: none; position: absolute;
  top: calc(100% + 6px); right: 0;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 10px; overflow: hidden;
  min-width: 80px; z-index: 400;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}
.lang-select__dropdown.open { display: block; }
.lang-select__option {
  padding: 8px 14px; font-size: 0.8rem;
  color: var(--text-secondary); cursor: pointer;
  transition: background 0.12s, color 0.12s;
}
.lang-select__option:hover { background: var(--bg-card2); color: var(--text-primary); }
.lang-select__option.active { color: var(--primary); font-weight: 700; }

/* Header auth buttons */
.btn-login {
  padding: 0 20px; height: 36px;
  display: inline-flex; align-items: center;
  border-radius: 20px; border: 1.5px solid var(--primary);
  color: var(--primary); font-size: 0.82rem; font-weight: 700;
  background: transparent; transition: background 0.15s;
}
.btn-login:hover { background: var(--primary-dim); }

.btn-signup {
  padding: 0 20px; height: 36px;
  display: inline-flex; align-items: center;
  border-radius: 20px; background: var(--primary);
  color: #fff; font-size: 0.82rem; font-weight: 700;
  transition: opacity 0.15s;
}
.btn-signup:hover { opacity: 0.88; }

/* ── MAIN WRAP ── */
.main-wrap {
  margin-left: var(--sidebar-w);
  margin-top: var(--header-h);
  min-height: calc(100vh - var(--header-h));
  display: flex; flex-direction: column;
  transition: margin-left 0.24s ease;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 220px;
  display: flex; align-items: center;
  overflow: hidden;
  background: rgb(10, 8, 20);
}
.hero__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  z-index: 0;
}
.hero__char {
  position: absolute; right: 0; bottom: 0;
  height: 108%; width: auto;
  z-index: 1; pointer-events: none;
  object-fit: contain; object-position: right bottom;
}
.hero__content {
  position: relative; z-index: 2;
  padding: 32px 36px;
  display: flex; flex-direction: column; gap: 8px;
  max-width: 480px;
}
.hero__tag {
  display: inline-flex; align-items: center;
  padding: 3px 12px; border-radius: 16px;
  background: rgba(255,107,28,0.22);
  border: 1px solid rgba(255,107,28,0.5);
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--primary); width: fit-content;
}
.hero__h1 {
  font-size: clamp(1.3rem, 2.8vw, 2rem);
  font-weight: 900; line-height: 1.1; color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.7);
}
.hero__amount {
  font-size: clamp(1.6rem, 3.8vw, 2.6rem);
  font-weight: 900; color: var(--accent); line-height: 1.05;
  text-shadow: 0 2px 14px rgba(0,0,0,0.6);
}
.hero__spins { font-size: 0.95rem; font-weight: 700; color: var(--primary); }
.hero__btn {
  margin-top: 4px;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0 28px; height: 42px; border-radius: 24px;
  background: var(--primary); color: #fff;
  font-size: 0.9rem; font-weight: 800; width: fit-content;
  box-shadow: 0 4px 16px rgba(255,107,28,0.45);
  transition: opacity 0.15s, transform 0.15s;
}
.hero__btn:hover { opacity: 0.9; transform: translateY(-1px); }

/* ── CONTENT SEARCH BAR ── */
.content-search {
  display: flex; align-items: center;
  margin: 14px 16px 0;
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: 30px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  overflow: hidden;
}
.content-search__icon {
  padding: 0 14px;
  display: flex; align-items: center;
  color: var(--text-muted);
}
.content-search__icon svg { width: 18px; height: 18px; }
.content-search__input {
  flex: 1; height: 44px; border: none; outline: none;
  background: transparent; font-family: var(--font-main);
  font-size: 0.88rem; color: var(--text-primary);
}
.content-search__input::placeholder { color: var(--text-muted); }
.content-search__sep { width: 1px; height: 24px; background: var(--border); flex-shrink: 0; }
.content-search__providers {
  display: flex; align-items: center; gap: 6px;
  padding: 0 18px; height: 44px; cursor: pointer;
  color: var(--text-secondary); font-size: 0.82rem; font-weight: 600;
  white-space: nowrap; transition: color 0.15s;
}
.content-search__providers:hover { color: var(--primary); }
.content-search__providers svg { width: 14px; height: 14px; }

/* ── GAME CATEGORY TABS ── */
.game-cats {
  display: flex; align-items: center;
  gap: 8px; padding: 12px 16px 14px;
  overflow-x: auto;
}
.game-cats::-webkit-scrollbar { display: none; }
.cats-tab {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 0 16px; height: 36px; border-radius: 20px;
  border: 1.5px solid var(--border); background: var(--bg-card);
  color: var(--text-secondary);
  font-size: 0.8rem; font-weight: 700; white-space: nowrap; cursor: pointer;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.cats-tab:hover { border-color: var(--primary); color: var(--primary); }
.cats-tab.active {
  border-color: var(--primary); background: var(--primary);
  color: #fff; box-shadow: 0 2px 10px rgba(255,107,28,0.32);
}
.cats-tab__icon { width: 20px; height: 20px; object-fit: contain; flex-shrink: 0; }

/* ── CONTENT WRAP ── */
.content-wrap { padding: 0 16px 20px; flex: 1; }

/* ── SECTION HEADER ── */
.section-hd {
  display: flex; align-items: center; justify-content: space-between;
  margin: 18px 0 12px;
}
.section-hd__left { display: flex; align-items: center; gap: 8px; }
.section-hd__icon { width: 22px; height: 22px; color: var(--primary); display: flex; align-items: center; }
.section-hd__icon svg { width: 22px; height: 22px; }
.section-hd__title { font-size: 1rem; font-weight: 800; color: var(--text-primary); }
.section-hd__link {
  font-size: 0.78rem; font-weight: 600; color: var(--primary);
  border: 1.5px solid var(--primary); padding: 4px 14px; border-radius: 14px;
  transition: background 0.15s, color 0.15s;
}
.section-hd__link:hover { background: var(--primary); color: #fff; }

/* ── GAME GRID ── */
.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(128px, 1fr));
  gap: 12px;
}

/* ── GAME THUMB ── */
.game-thumb {
  display: block; border-radius: var(--thumb-radius);
  overflow: hidden; background: var(--bg-card);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.18s, box-shadow 0.18s;
}
.game-thumb:hover { transform: translateY(-3px); box-shadow: 0 6px 18px rgba(0,0,0,0.14); }

.game-thumb__img-wrap {
  position: relative; overflow: hidden;
  border-radius: var(--thumb-radius) var(--thumb-radius) 0 0;
}
.game-thumb__img-wrap img {
  width: 100%; aspect-ratio: 1/1;
  object-fit: cover; display: block;
}
.game-thumb__overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.48);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.18s;
}
.game-thumb:hover .game-thumb__overlay { opacity: 1; }
.game-thumb__play {
  padding: 8px 18px; border-radius: 20px;
  background: var(--primary); color: #fff;
  font-size: 0.75rem; font-weight: 700;
}
.game-thumb__badge {
  position: absolute; top: 7px; left: 7px;
  padding: 2px 8px; border-radius: 7px;
  font-size: 0.6rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em; z-index: 2;
}
.badge-hot     { background: rgb(235, 40, 40);  color: #fff; }
.badge-new     { background: var(--primary);    color: #fff; }
.badge-jackpot { background: var(--accent);     color: #000; }

.game-thumb__info { padding: 7px 9px 9px; }
.game-thumb__name {
  font-size: 0.75rem; font-weight: 700; color: var(--text-primary);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.game-thumb__provider {
  font-size: 0.65rem; color: var(--text-muted);
  margin-top: 2px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* ── PROMO STRIP ── */
.promo-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px; padding: 12px 16px;
}
.promo-card {
  position: relative; border-radius: 14px; overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex; flex-direction: column; justify-content: flex-end;
  min-height: 260px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: box-shadow 0.2s, transform 0.2s;
}
.promo-card:hover { box-shadow: 0 6px 20px rgba(255,107,28,0.18); transform: translateY(-2px); }
.promo-card__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.promo-card__fade {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,8,20,0.90) 30%, rgba(10,8,20,0.06) 100%);
}
.promo-card__tag {
  position: relative; z-index: 2;
  margin: 0 14px 4px;
  display: inline-flex; align-items: center;
  padding: 3px 10px; border-radius: 12px;
  background: rgba(255,107,28,0.22);
  border: 1px solid rgba(255,107,28,0.5);
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--primary); width: fit-content;
}
.promo-card__title {
  position: relative; z-index: 2;
  padding: 0 14px;
  font-size: 1.22rem; font-weight: 900;
  color: var(--accent); line-height: 1.15;
}
.promo-card__sub {
  position: relative; z-index: 2;
  padding: 3px 14px 0;
  font-size: 0.77rem; color: rgba(255,255,255,0.75);
}
.promo-card__btn {
  position: relative; z-index: 2;
  margin: 10px 14px 14px;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0 18px; height: 32px; border-radius: 18px;
  background: var(--primary); color: #fff;
  font-size: 0.78rem; font-weight: 700; width: fit-content;
  transition: opacity 0.15s;
}
.promo-card__btn:hover { opacity: 0.88; }

/* ── SEO CONTENT ── */
.seo-wrap { padding: 24px 16px 16px; }
.seo-content {
  color: var(--text-secondary);
  font-size: 0.85rem; line-height: 1.7; max-width: 900px;
  margin: 0 auto;
}
.seo-content h2 { font-size: 1rem; font-weight: 700; color: var(--text-primary); margin: 18px 0 8px; }
.seo-content h3 { font-size: 0.9rem; font-weight: 600; color: var(--primary); margin: 12px 0 6px; cursor: pointer; user-select: none; }
.seo-content h3::after { content: ' ▸'; font-size: 0.7rem; opacity: 0.6; }
.seo-content h3.faq-open::after { content: ' ▾'; }
.seo-content h3 + p { display: none; }
.seo-content h3.faq-open + p { display: block; }
.seo-content p { margin-bottom: 10px; }
.seo-content table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 0.85rem; }
.seo-content th, .seo-content td { border: 1px solid rgba(0,0,0,0.18); padding: 10px 14px; text-align: left; vertical-align: top; }
.seo-content th { font-weight: 700; color: var(--text-primary); background: rgba(0,0,0,0.05); }
.seo-content tr:nth-child(even) td { background: rgba(0,0,0,0.03); }

/* ── FOOTER ── */
.footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 32px 20px 20px; margin-top: 12px;
}
.footer__top {
  display: grid;
  grid-template-columns: 2fr repeat(5, 1fr);
  gap: 24px; margin-bottom: 24px;
}
.footer__logo-wrap { margin-bottom: 12px; }
.footer__logo-img { height: 34px; width: auto; object-fit: contain; }
.footer__desc { font-size: 0.75rem; color: var(--text-muted); line-height: 1.5; }
.footer__col-title {
  font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--primary); margin-bottom: 10px;
}
.footer__links { display: flex; flex-direction: column; gap: 6px; list-style: none; }
.footer__links a { font-size: 0.78rem; color: var(--text-muted); transition: color 0.15s; }
.footer__links a:hover { color: var(--primary); }
.footer__divider { border: none; border-top: 1px solid var(--border); margin-bottom: 14px; }
.footer__bottom { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.footer__payments { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; justify-content: center; }
.footer__payments-label { font-size: 0.75rem; color: var(--text-muted); }
.footer__pay-icon {
  padding: 4px 10px; border-radius: 6px;
  background: var(--bg-card2); border: 1px solid var(--border);
  font-size: 0.7rem; font-weight: 700; color: var(--text-secondary);
}
.footer__copy { font-size: 0.75rem; color: var(--text-muted); text-align: center; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .sidebar { top: 0; height: 100vh; transform: translateX(-100%); transition: transform 0.24s ease; width: var(--sidebar-open-w); }
  .sidebar.open { transform: translateX(0); }
  .sidebar.open ~ .main-wrap { margin-left: 0; }
  .main-wrap { margin-left: 0 !important; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .hero__char { height: 88%; }
}
@media (max-width: 600px) {
  .game-grid { grid-template-columns: repeat(auto-fill, minmax(108px, 1fr)); gap: 8px; }
  .promo-strip { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .hero { min-height: 190px; }
  .hero__content { padding: 20px 16px; }
  .hero__char { display: none; }
}
