@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap");

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

:root {
  --clr-bg: #0e1230;
  --clr-nav: #1a1f3c;
  --clr-gold: #fbc02d;
  --clr-purple: #8e24aa;
  --clr-purple-light: #ab47bc;
  --clr-text: #e8eaf6;
  --clr-text-muted: #9fa8da;
  --clr-border: #2a3170;
  --clr-card: #16213e;
  --clr-card2: #1e2a5e;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
  --transition: 0.25s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Montserrat", sans-serif;
  background: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

body.fixed {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--clr-gold);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: #ffe082;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.25;
  font-weight: 700;
  color: #fff;
}

p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

ul,
ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

li {
  margin-bottom: 0.35rem;
  line-height: 1.6;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
}

table th,
table td {
  text-align: left;
  padding: 0.65rem 1rem;
  border: 1px solid var(--clr-border);
}

table th {
  background: var(--clr-nav);
  color: var(--clr-gold);
  font-weight: 600;
}

table td {
  background: var(--clr-card);
}

table tr:nth-child(even) td {
  background: #1a2550;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-family: "Montserrat", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
  text-align: center;
  white-space: nowrap;
  text-decoration: none;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.btn--gold {
  background: var(--clr-gold);
  color: #1a1f3c;
}

.btn--gold:hover {
  background: #ffe082;
  color: #111;
}

.btn--purple {
  background: var(--clr-purple);
  color: #fff;
}

.btn--purple:hover {
  background: var(--clr-purple-light);
  color: #fff;
}

.btn--outline {
  background: transparent;
  border: 2px solid var(--clr-gold);
  color: var(--clr-gold);
}

.btn--outline:hover {
  background: var(--clr-gold);
  color: #1a1f3c;
}

.btn--sm {
  padding: 7px 14px;
  font-size: 0.8rem;
}

.btn--lg {
  padding: 14px 32px;
  font-size: 1rem;
}

.btn--full {
  width: 100%;
  justify-content: center;
}

.site-header {
  background: var(--clr-nav);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  max-width: 1280px;
  margin: 0 auto;
  gap: 12px;
}

.header-logo img {
  height: 44px;
  width: auto;
}

.header-nav-list {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 4px;
  align-items: center;
}

.header-nav-list a {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--clr-text);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 7px 10px;
  border-radius: 6px;
  transition:
    background var(--transition),
    color var(--transition);
}

.header-nav-list a:hover {
  background: rgba(251, 192, 45, 0.12);
  color: var(--clr-gold);
}

.header-nav-list svg {
  flex-shrink: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.online-count {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  color: var(--clr-text-muted);
  white-space: nowrap;
}

.online-dot {
  width: 8px;
  height: 8px;
  background: #4caf50;
  border-radius: 50%;
  animation: pulse-dot 1.8s infinite;
}

@keyframes pulse-dot {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.5);
  }
  50% {
    box-shadow: 0 0 0 5px rgba(76, 175, 80, 0);
  }
}

.lang-dropdown {
  position: relative;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--clr-border);
  border-radius: 6px;
  padding: 6px 10px;
  cursor: pointer;
  color: var(--clr-text);
  font-size: 0.82rem;
  font-weight: 600;
  transition: background var(--transition);
}

.lang-toggle:hover {
  background: rgba(255, 255, 255, 0.13);
}

.lang-menu {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 6px);
  background: var(--clr-nav);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  min-width: 140px;
  box-shadow: var(--shadow);
  z-index: 200;
}

.lang-menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  color: var(--clr-text);
  font-size: 0.83rem;
  transition: background var(--transition);
}

.lang-menu a:hover {
  background: rgba(251, 192, 45, 0.12);
  color: var(--clr-gold);
}

.lang-dropdown.open .lang-menu {
  display: block;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--clr-nav);
  z-index: 999;
  flex-direction: column;
  padding: 80px 24px 32px;
  overflow-y: auto;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.mobile-menu ul li {
  border-bottom: 1px solid var(--clr-border);
}

.mobile-menu ul li a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--clr-text);
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 0;
  transition: color var(--transition);
}

.mobile-menu ul li a:hover {
  color: var(--clr-gold);
}

.mobile-menu-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-close {
  position: absolute;
  top: 18px;
  right: 20px;
  background: none;
  border: none;
  color: var(--clr-text);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
}

.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0b0e28;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("/gban.png");
  background-size: cover;
  background-position: center top;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(10, 12, 40, 0.92) 40%,
    rgba(10, 12, 40, 0.4) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 60px 20px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(251, 192, 45, 0.15);
  border: 1px solid rgba(251, 192, 45, 0.4);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--clr-gold);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}

.hero h1 {
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 900;
  color: #fff;
  max-width: 620px;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
}

.hero p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 500px;
  margin-bottom: 28px;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 24px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-stat strong {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--clr-gold);
}

.hero-stat span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.breadcrumbs {
  background: rgba(26, 31, 60, 0.6);
  border-bottom: 1px solid var(--clr-border);
  padding: 10px 0;
}

.breadcrumbs ol {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
}

.breadcrumbs li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--clr-text-muted);
}

.breadcrumbs li a {
  color: var(--clr-text-muted);
  transition: color var(--transition);
}

.breadcrumbs li a:hover {
  color: var(--clr-gold);
}

.breadcrumbs li:not(:last-child)::after {
  content: "›";
  color: var(--clr-border);
}

.breadcrumbs li:last-child {
  color: var(--clr-gold);
}

.section {
  padding: 56px 0;
}

.section-title {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 800;
  margin-bottom: 8px;
  color: #fff;
}

.section-sub {
  color: var(--clr-text-muted);
  margin-bottom: 32px;
  font-size: 0.9rem;
  line-height: 1.6;
}

.section-head {
  margin-bottom: 32px;
}

.section-title-icon {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.toc-box {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 40px;
}

.toc-box h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 4px 16px;
}

.toc-list li a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--clr-text-muted);
  font-size: 0.85rem;
  padding: 5px 0;
  transition: color var(--transition);
}

.toc-list li a:hover {
  color: var(--clr-gold);
}

.toc-list li a svg {
  flex-shrink: 0;
  color: var(--clr-gold);
  opacity: 0.7;
}

.casino-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.casino-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: flex-start;
  position: relative;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.casino-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.casino-card--top1 {
  border-color: #fbc02d;
  background: linear-gradient(135deg, #1e2a5e 0%, #16213e 100%);
}

.casino-card--top2 {
  border-color: #9e9e9e;
  background: linear-gradient(135deg, #1a2048 0%, #141a38 100%);
}

.casino-card--top3 {
  border-color: #cd7f32;
  background: linear-gradient(135deg, #1c2040 0%, #131932 100%);
}

.casino-rank {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--clr-text-muted);
  min-width: 28px;
  text-align: center;
  align-self: center;
}

.casino-rank--1 {
  color: #fbc02d;
}

.casino-rank--2 {
  color: #bdbdbd;
}

.casino-rank--3 {
  color: #cd7f32;
}

.casino-logo {
  width: 80px;
  height: 60px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  background: #fff;
  padding: 6px;
  flex-shrink: 0;
  align-self: center;
}

.casino-info {
  flex: 1;
  min-width: 200px;
}

.casino-name-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}

.casino-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
}

.casino-flag {
  width: 22px;
  height: 16px;
  border-radius: 2px;
  object-fit: cover;
}

.casino-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.casino-stars {
  display: flex;
  gap: 2px;
}

.casino-stars svg {
  color: var(--clr-gold);
}

.casino-score {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--clr-gold);
}

.casino-bonus {
  background: rgba(142, 36, 170, 0.2);
  border: 1px solid rgba(142, 36, 170, 0.4);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  display: inline-block;
  color: #ce93d8;
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 10px;
}

.casino-pros {
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.casino-pros li {
  font-size: 0.82rem;
  color: var(--clr-text-muted);
  display: flex;
  align-items: flex-start;
  gap: 5px;
  line-height: 1.5;
}

.casino-pros li::before {
  content: "✓";
  color: #4caf50;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.casino-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--clr-text-muted);
}

.casino-meta span {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  padding: 3px 8px;
  white-space: nowrap;
}

.casino-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
  min-width: 140px;
  align-self: center;
}

.casino-badge-top {
  position: absolute;
  top: -10px;
  left: 24px;
  background: var(--clr-gold);
  color: #1a1f3c;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.load-more-wrap {
  text-align: center;
  margin-top: 24px;
}

.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.screenshot-item {
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  border: 2px solid var(--clr-border);
  transition: border-color var(--transition);
  aspect-ratio: 2/1;
}

.screenshot-item:hover {
  border-color: var(--clr-gold);
}

.screenshot-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.screenshot-item:hover img {
  transform: scale(1.04);
}

.screenshot-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10, 12, 40, 0.9);
  color: var(--clr-text);
  font-size: 0.78rem;
  padding: 7px 12px;
  font-weight: 600;
  z-index: 2;
}

.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.bonus-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.bonus-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.bonus-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bonus-casino-logo {
  width: 60px;
  height: 44px;
  object-fit: contain;
  background: #fff;
  border-radius: 6px;
  padding: 4px;
  flex-shrink: 0;
}

.bonus-casino-name {
  font-weight: 700;
  color: #fff;
  font-size: 0.95rem;
}

.bonus-tag {
  font-size: 0.72rem;
  color: var(--clr-purple-light);
  background: rgba(142, 36, 170, 0.15);
  border-radius: 4px;
  padding: 2px 7px;
  font-weight: 600;
}

.bonus-amount {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--clr-gold);
}

.bonus-desc {
  font-size: 0.83rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
}

.bonus-terms {
  font-size: 0.73rem;
  color: #6c7ab8;
  line-height: 1.5;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.review-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform var(--transition);
}

.review-card:hover {
  transform: translateY(-2px);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--clr-card2);
  border: 2px solid var(--clr-border);
  flex-shrink: 0;
}

.review-meta {
  flex: 1;
  min-width: 0;
}

.review-name {
  font-weight: 700;
  color: #fff;
  font-size: 0.92rem;
}

.review-date {
  font-size: 0.75rem;
  color: var(--clr-text-muted);
}

.review-stars {
  display: flex;
  gap: 2px;
}

.review-stars svg {
  color: var(--clr-gold);
}

.review-text {
  font-size: 0.87rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
}

.review-form {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 28px 32px;
  max-width: 600px;
  width: 100%;
}

.review-form h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--clr-text-muted);
}

.form-group input,
.form-group textarea {
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  color: var(--clr-text);
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  transition: border-color var(--transition);
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--clr-gold);
}

.form-group textarea {
  min-height: 110px;
  resize: vertical;
}

.form-success {
  display: none;
  background: rgba(76, 175, 80, 0.15);
  border: 1px solid rgba(76, 175, 80, 0.4);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: #81c784;
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 12px;
}

.form-success.show {
  display: block;
}

.author-box {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 24px 28px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-top: 48px;
}

.author-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--clr-gold);
  flex-shrink: 0;
  background: var(--clr-card2);
}

.author-info {
  flex: 1;
  min-width: 0;
}

.author-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--clr-text-muted);
  font-weight: 700;
  margin-bottom: 4px;
}

.author-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}

.author-bio {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
  margin-bottom: 8px;
}

.author-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--clr-gold);
  word-break: break-word;
}

.author-link:hover {
  color: #ffe082;
}

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

.faq-item {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 0.93rem;
  font-weight: 600;
  padding: 16px 20px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background var(--transition);
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.04);
}

.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(251, 192, 45, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.25s ease,
    background 0.25s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
  background: rgba(251, 192, 45, 0.3);
}

.faq-answer {
  display: none;
  padding: 0 20px 16px;
  color: var(--clr-text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  display: block;
}

.game-info-table {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  overflow-x: auto;
  margin-bottom: 0;
  -webkit-overflow-scrolling: touch;
}

.game-info-table table {
  margin: 0;
  min-width: 100%;
}

.game-info-table table th {
  background: var(--clr-nav);
}

.game-info-table table td:first-child {
  color: var(--clr-text-muted);
  font-weight: 600;
  width: 50%;
}

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0;
}

.pros-box,
.cons-box {
  background: var(--clr-card);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
}

.pros-box {
  border-left: 3px solid #4caf50;
}

.cons-box {
  border-left: 3px solid #ef5350;
}

.pros-box h4,
.cons-box h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pros-box h4 {
  color: #81c784;
}

.cons-box h4 {
  color: #ef9a9a;
}

.pros-box ul,
.cons-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pros-box ul li,
.cons-box ul li {
  font-size: 0.83rem;
  color: var(--clr-text-muted);
  display: flex;
  align-items: flex-start;
  gap: 6px;
  line-height: 1.6;
}

.pros-box ul li::before {
  content: "✓";
  color: #4caf50;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.cons-box ul li::before {
  content: "✗";
  color: #ef5350;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.content-body h2 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  margin: 2rem 0 0.75rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid var(--clr-border);
}

.content-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-gold);
  margin: 1.5rem 0 0.5rem;
}

.content-body h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #e8eaf6;
  margin: 1rem 0 0.4rem;
}

.content-body p {
  color: var(--clr-text-muted);
  line-height: 1.75;
  margin-bottom: 0.85rem;
}

.content-body ul,
.content-body ol {
  color: var(--clr-text-muted);
  padding-left: 1.5rem;
  margin-bottom: 0.85rem;
}

.content-body li {
  margin-bottom: 0.35rem;
  line-height: 1.65;
}

.content-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  display: block;
  overflow-x: auto;
}

.content-body table th,
.content-body table td {
  padding: 0.6rem 1rem;
  border: 1px solid var(--clr-border);
  text-align: left;
}

.content-body table th {
  background: var(--clr-nav);
  color: var(--clr-gold);
  font-weight: 700;
}

.content-body table td {
  background: var(--clr-card);
  color: var(--clr-text-muted);
}

.content-body a {
  color: var(--clr-gold);
}

.content-body a:hover {
  color: #ffe082;
}

.content-body strong,
.content-body b {
  color: #fff;
  font-weight: 700;
}

.content-body blockquote {
  border-left: 3px solid var(--clr-gold);
  padding: 0.75rem 1rem;
  background: rgba(251, 192, 45, 0.06);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 1rem 0;
  color: var(--clr-text-muted);
  font-style: italic;
}

.content-body img {
  border-radius: var(--radius-sm);
  max-width: 100%;
  height: auto;
  margin: 1rem 0;
}

.site-footer {
  background: var(--clr-nav);
  border-top: 1px solid var(--clr-border);
  margin-top: auto;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 20px 24px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-logo img {
  height: 40px;
  width: auto;
}

.footer-logo p {
  font-size: 0.8rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
}

.footer-links h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--clr-gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px 16px;
}

.footer-links-grid a {
  color: var(--clr-text-muted);
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color var(--transition);
  padding: 3px 0;
}

.footer-links-grid a:hover {
  color: var(--clr-gold);
}

.footer-trust h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--clr-gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.trust-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.trust-logo {
  height: 32px;
  width: auto;
  object-fit: contain;
  filter: brightness(0.7) grayscale(0.3);
  transition: filter var(--transition);
}

.trust-logo:hover {
  filter: brightness(1) grayscale(0);
}

.footer-payments {
  margin-bottom: 28px;
}

.footer-payments h4 {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.payment-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.payment-logo {
  height: 26px;
  width: auto;
  object-fit: contain;
  background: #fff;
  border-radius: 4px;
  padding: 3px 7px;
  filter: grayscale(0.1);
  transition: filter var(--transition);
}

.payment-logo:hover {
  filter: grayscale(0);
}

.footer-bottom {
  border-top: 1px solid var(--clr-border);
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright {
  font-size: 0.76rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
}

.footer-legal {
  font-size: 0.73rem;
  color: var(--clr-text-muted);
  max-width: 640px;
  line-height: 1.5;
  margin-top: 8px;
}

.footer-provider {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--clr-text-muted);
  font-size: 0.78rem;
}

.footer-provider img {
  height: 28px;
  width: auto;
  object-fit: contain;
  filter: brightness(0.8);
}

.sticky-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--clr-nav);
  border-top: 2px solid var(--clr-purple);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.5);
}

.sticky-widget-text {
  font-size: 0.82rem;
  color: var(--clr-text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.sticky-widget-text strong {
  color: #fff;
  font-size: 0.88rem;
}

.sticky-widget-bonus {
  background: rgba(142, 36, 170, 0.2);
  border: 1px solid rgba(142, 36, 170, 0.4);
  border-radius: 4px;
  padding: 3px 10px;
  color: #ce93d8;
  font-weight: 700;
  font-size: 0.82rem;
  white-space: nowrap;
}

.sticky-widget-close {
  background: none;
  border: none;
  color: var(--clr-text-muted);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  transition: color var(--transition);
  flex-shrink: 0;
}

.sticky-widget-close:hover {
  color: #fff;
}

.slider-container {
  position: relative;
  overflow: hidden;
}

.slider-track {
  display: flex;
  gap: 16px;
  transition: transform 0.35s ease;
}

.slider-nav {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 14px;
}

.slider-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  color: var(--clr-text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background var(--transition),
    color var(--transition);
}

.slider-btn:hover {
  background: var(--clr-gold);
  color: #1a1f3c;
  border-color: var(--clr-gold);
}

.slider-dots {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 12px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clr-border);
  cursor: pointer;
  transition: background var(--transition);
}

.slider-dot.active {
  background: var(--clr-gold);
}

.badge-new {
  background: linear-gradient(135deg, #e53935, #c62828);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  vertical-align: middle;
  margin-left: 4px;
}

.badge-hot {
  background: linear-gradient(135deg, var(--clr-gold), #e65100);
  color: #1a1f3c;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  vertical-align: middle;
  margin-left: 4px;
}

.badge-exc {
  background: linear-gradient(135deg, #1565c0, #0d47a1);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  vertical-align: middle;
  margin-left: 4px;
}

.spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(251, 192, 45, 0.3);
  border-top-color: var(--clr-gold);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.technical-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 48px 20px;
}

.technical-content h2 {
  color: #fff;
  font-size: 1.3rem;
  margin: 2rem 0 0.75rem;
  border-bottom: 1px solid var(--clr-border);
  padding-bottom: 0.4rem;
}

.technical-content h3 {
  color: var(--clr-gold);
  font-size: 1rem;
  margin: 1.25rem 0 0.5rem;
}

.technical-content p,
.technical-content li {
  color: var(--clr-text-muted);
  line-height: 1.75;
  font-size: 0.9rem;
}

.technical-content ul,
.technical-content ol {
  padding-left: 1.5rem;
  margin-bottom: 0.85rem;
}

.technical-content li {
  margin-bottom: 0.3rem;
}

.technical-content a {
  color: var(--clr-gold);
}

.demo-wrapper-lv8k3m2p {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.demo-description-mx7k9p4t {
  font-size: 18px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
}

.demo-iframe-container-nz5k2m8p {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: linear-gradient(145deg, #2d1b5e 0%, #3e2875 100%);
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.demo-iframe-qx7k4m9p {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.demo-overlay-px2k8m5t {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.7);
  padding: 30px;
}

.btn-demo-play-kz9m3p7x {
  display: inline-block;
  padding: 16px 40px;
  background: var(--clr-gold);
  color: #1a1f3c;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  border-radius: 10px;
  margin-top: 20px;
  transition: all 0.3s ease;
}

.btn-demo-play-kz9m3p7x:hover {
  background: #ffe092;
  transform: scale(1.05);
  color: #1a1f3c;
}

.d-none {
  display: none;
}

.text-center {
  text-align: center;
}

.mt1 {
  margin-top: 8px;
}

.mt2 {
  margin-top: 16px;
}

.mt3 {
  margin-top: 24px;
}

.mt4 {
  margin-top: 32px;
}

.mb1 {
  margin-bottom: 8px;
}

.mb2 {
  margin-bottom: 16px;
}

.mb3 {
  margin-bottom: 24px;
}

.divider {
  height: 1px;
  background: var(--clr-border);
  margin: 40px 0;
}

.xk9p2 {
  display: none;
}

.m7rz1 {
  visibility: hidden;
  height: 0;
  overflow: hidden;
}

.fixed-widget-bottom-zx9k4m2p {
  pointer-events: none;
}

.fixed-widget-bottom-zx9k4m2p * {
  pointer-events: auto;
}

/* Tablet 1024px */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-trust {
    grid-column: 1/-1;
  }

  .bonuses-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .screenshots-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile 768px - ТУТ ОСНОВНА АДАПТАЦІЯ */
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  .header-inner {
    padding: 10px 16px;
  }

  .header-nav-list,
  .online-count,
  .lang-dropdown {
    display: none;
  }

  .burger {
    display: flex;
  }

  .hero-content {
    padding: 32px 16px;
  }

  .breadcrumbs .container {
    padding: 0 16px;
  }

  .section {
    padding: 28px 0;
  }

  .toc-box {
    padding: 14px 16px;
  }

  .toc-list {
    grid-template-columns: 1fr;
  }

  .casino-card {
    padding: 11px 14px;
    flex-direction: column;
  }

  .casino-actions {
    width: 100%;
    align-items: stretch;
  }

  /* СКРИНШОТИ - ГОЛОВНЕ ВИПРАВЛЕННЯ */
  .screenshots-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .screenshot-item {
    width: 100%;
    aspect-ratio: 16/9;
  }

  /* БОНУСИ */
  .bonuses-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .bonus-card {
    padding: 14px 16px;
  }

  /* ВІДГУКИ */
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .review-card {
    padding: 14px 16px;
  }

  .review-form {
    padding: 16px;
  }

  /* ПЛЮСИ/МІНУСИ */
  .pros-cons {
    grid-template-columns: 1fr;
  }

  .pros-box,
  .cons-box {
    padding: 13px 14px;
  }

  /* АВТОР */
  .author-box {
    padding: 14px 16px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* FAQ */
  .faq-question {
    padding: 10px 12px;
  }

  .faq-answer {
    padding: 0 12px 10px;
  }

  /* ФУТЕР */
  .footer-inner {
    padding: 28px 16px 16px;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-links-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Extra small 480px */
@media (max-width: 480px) {
  .container {
    padding: 0 14px;
  }

  .header-inner {
    padding: 9px 14px;
  }

  .hero-content {
    padding: 28px 14px;
  }

  .hero-btns {
    flex-direction: column;
    width: 100%;
  }

  .hero-btns .btn {
    width: 100%;
  }

  .breadcrumbs .container {
    padding: 0 14px;
  }

  .toc-box {
    padding: 12px 14px;
  }

  .casino-card {
    padding: 10px 12px;
  }

  .bonus-card {
    padding: 12px 14px;
  }

  .review-card {
    padding: 12px 14px;
  }

  .review-form {
    padding: 14px;
  }

  .pros-box,
  .cons-box {
    padding: 12px 13px;
  }

  .author-box {
    padding: 12px 14px;
  }

  .faq-question {
    padding: 9px 11px;
  }

  .faq-answer {
    padding: 0 11px 9px;
  }

  .footer-inner {
    padding: 24px 14px 14px;
  }

  .footer-links-grid {
    grid-template-columns: 1fr;
  }
}

/* Demo fullscreen */
@media (max-width: 767px) {
  .demo-section-zx9k4m7p {
    min-height: 100svh;
    padding: 0;
  }

  .demo-section-zx9k4m7p > .container-fluid.vh8p3k1x {
    padding: 16px 14px 18px;
    min-height: 100svh;
  }

  .demo-wrapper-lv8k3m2p {
    flex: 1;
    display: flex;
    flex-direction: column;
  }
}
/* =========================================
   MOBILE FIX — HEADER + HERO + GLOBAL
========================================= */

@media (max-width: 768px) {
  /* HEADER */
  .site-header {
    position: sticky;
    top: 0;
    backdrop-filter: blur(10px);
  }

  .header-inner {
    min-height: 64px;
    padding: 10px 14px;
    gap: 10px;
  }

  .header-logo img {
    height: 36px;
    width: auto;
  }

  .header-actions {
    gap: 6px;
    margin-left: auto;
  }

  .header-actions .btn {
    display: none;
  }

  .burger {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    align-items: center;
    justify-content: center;
  }

  .burger span {
    width: 20px;
  }

  /* MOBILE MENU */
  .mobile-menu {
    padding: 74px 18px 24px;
    background: linear-gradient(180deg, #11162f 0%, #0e1230 100%);
  }

  .mobile-menu ul li a {
    font-size: 0.95rem;
    padding: 16px 0;
  }

  .mobile-menu-actions {
    margin-top: auto;
    padding-top: 24px;
  }

  /* HERO */
  .hero {
    min-height: auto;
    padding: 0;
  }

  .hero-bg {
    background-position: center;
    transform: scale(1.05);
  }

  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(10, 12, 40, 0.65) 0%,
      rgba(10, 12, 40, 0.88) 55%,
      rgba(10, 12, 40, 0.98) 100%
    );
  }

  .hero-content {
    padding: 36px 16px 42px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-badge {
    font-size: 0.72rem;
    padding: 5px 12px;
    margin-bottom: 14px;
  }

  .hero h1 {
    font-size: 2rem;
    line-height: 1.15;
    max-width: 100%;
    margin-bottom: 14px;
  }

  .hero p {
    font-size: 0.92rem;
    line-height: 1.65;
    max-width: 100%;
    margin-bottom: 22px;
    color: rgba(255, 255, 255, 0.82);
  }

  .hero-btns {
    width: 100%;
    gap: 10px;
    flex-direction: column;
  }

  .hero-btns .btn {
    width: 100%;
    justify-content: center;
    min-height: 52px;
    font-size: 0.95rem;
    border-radius: 12px;
  }

  .hero-stats {
    width: 100%;
    margin-top: 24px;
    gap: 10px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-stat {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 14px 10px;
    align-items: center;
    text-align: center;
    min-height: 84px;
    justify-content: center;
  }

  .hero-stat strong {
    font-size: 1.05rem;
  }

  .hero-stat span {
    font-size: 0.68rem;
    margin-top: 4px;
  }

  /* GLOBAL SPACING */
  .section {
    padding: 40px 0;
  }

  .section-head {
    margin-bottom: 22px;
  }

  .section-title {
    font-size: 1.45rem;
    line-height: 1.25;
  }

  .section-sub {
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 0;
  }

  /* CARDS */
  .casino-card,
  .bonus-card,
  .review-card,
  .toc-box,
  .author-box,
  .review-form {
    border-radius: 16px;
  }

  /* TABLES */
  .game-info-table {
    border-radius: 14px;
  }

  .game-info-table table {
    min-width: 620px;
  }

  /* BUTTONS */
  .btn {
    min-height: 46px;
  }
}

/* =========================================
   EXTRA SMALL DEVICES
========================================= */

@media (max-width: 480px) {
  .hero-content {
    padding: 28px 14px 36px;
  }

  .hero h1 {
    font-size: 1.72rem;
  }

  .hero p {
    font-size: 0.88rem;
  }

  .hero-stats {
    grid-template-columns: 1fr 1fr;
  }

  .hero-stat {
    padding: 12px 8px;
  }

  .section-title {
    font-size: 1.28rem;
  }

  .mobile-menu {
    padding-left: 16px;
    padding-right: 16px;
  }
}
/* FIX MOBILE WIDTH / HEADER / HERO */
@media (max-width: 768px) {
  html,
  body {
    width: 100%;
    overflow-x: hidden;
  }

  .wrapper,
  .site-header,
  .hero,
  .breadcrumbs,
  main,
  .content,
  .box,
  .text {
    width: 100%;
    max-width: none;
  }

  .container,
  .hero-content,
  .header-inner,
  .footer-inner {
    width: 100%;
    max-width: none;
    padding-left: 14px;
    padding-right: 14px;
  }

  .content.box {
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
  }

  .site-header {
    width: 100%;
  }

  .header-inner {
    min-height: 56px;
    background: var(--clr-nav);
  }

  .header-logo img {
    height: 30px;
  }

  .header-actions .btn,
  .header-nav-list,
  .lang-dropdown {
    display: none;
  }

  .burger {
    display: flex;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    align-items: center;
    justify-content: center;
  }

  .hero {
    min-height: auto;
    width: 100%;
  }

  .hero-content {
    padding-top: 28px;
    padding-bottom: 30px;
    text-align: center;
    align-items: center;
  }

  .hero-bg {
    background-position: center top;
  }

  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(10, 12, 40, 0.55) 0%,
      rgba(10, 12, 40, 0.9) 55%,
      rgba(10, 12, 40, 1) 100%
    );
  }

  .hero h1 {
    font-size: 1.7rem;
    line-height: 1.15;
    max-width: 100%;
  }

  .hero p {
    font-size: 0.86rem;
    line-height: 1.55;
    max-width: 100%;
    margin-bottom: 18px;
  }

  .hero-btns {
    width: 100%;
    flex-direction: column;
    gap: 8px;
  }

  .hero-btns .btn {
    width: 100%;
    justify-content: center;
    min-height: 44px;
    padding: 10px 14px;
  }

  .hero-stats {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-top: 18px;
  }

  .hero-stat {
    align-items: center;
    text-align: center;
    padding: 10px 8px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  .hero-stat strong {
    font-size: 0.95rem;
  }

  .hero-stat span {
    font-size: 0.62rem;
  }

  .breadcrumbs {
    padding: 8px 0;
  }

  .breadcrumbs ol {
    font-size: 0.68rem;
    gap: 4px;
  }

  .section {
    padding: 30px 0;
  }

  #toc.section {
    padding-top: 24px !important;
  }

  .toc-box {
    margin: 0;
    padding: 16px;
    border-radius: 12px;
  }
}
@media (max-width: 768px) {
  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 5000;
    display: none;
    flex-direction: column;
    width: 100%;
    max-width: none;
    min-height: 100dvh;
    padding: 76px 18px 24px;
    background: var(--clr-nav);
    overflow-y: auto;
  }

  .mobile-menu.open {
    display: flex;
  }

  .mobile-close {
    z-index: 5001;
  }

  .burger {
    position: relative;
    z-index: 5002;
  }

  body.fixed {
    overflow: hidden;
  }
}
/* FIX DEMO BLOCK ON MOBILE */
@media (max-width: 768px) {
  .demo-section-zx9k4m7p {
    display: block;
    min-height: auto;
    padding: 30px 0;
    visibility: visible;
    opacity: 1;
    overflow: visible;
  }

  .demo-section-zx9k4m7p > .container-fluid.vh8p3k1x {
    width: 100%;
    max-width: none;
    min-height: auto;
    padding: 0 14px;
  }

  .demo-wrapper-lv8k3m2p {
    display: block;
    max-width: 100%;
    width: 100%;
  }

  .demo-description-mx7k9p4t {
    font-size: 0.9rem;
    margin-bottom: 16px;
  }

  .demo-iframe-container-nz5k2m8p {
    display: block;
    position: relative;
    width: 100%;
    height: auto;
    min-height: 240px;
    padding-bottom: 56.25%;
    border-radius: 14px;
  }

  .demo-iframe-qx7k4m9p {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
  }

  .demo-px2k8m5t {
    display: block;
    margin-top: 16px;
  }

  .btn-demo-play-kz9m3p7x {
    width: 100%;
    text-align: center;
    padding: 13px 18px;
    font-size: 0.95rem;
  }
}
