/* Dark theme, responsive */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/Inter-Regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/Inter-SemiBold.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/Inter-Bold.woff2') format('woff2');
}
:root {
  --font-main: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --bg: #0d0d12;
  --bg-card: #16161d;
  --bg-elevated: #1c1c26;
  --text: #e8e8ed;
  --text-muted: #9898a6;
  --accent: #e94560;
  --accent-hover: #ff6b7a;
  --accent-soft: rgba(233, 69, 96, 0.15);
  --gold: #f0b429;
  --border: #2a2a35;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --transition: 0.25s ease;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-hover); }
ul, ol { padding-left: 1.25rem; }
p { margin: 0 0 1rem; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header — sticky */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 13, 18, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: var(--shadow); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 24px;
}
.logo img { height: 36px; width: auto; }

.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 8px;
}
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  color: var(--text);
  border-radius: var(--radius-sm);
  font-weight: 500;
  transition: background var(--transition), color var(--transition), transform 0.2s ease;
}
.nav-link img { width: 20px; height: 20px; opacity: 0.85; }
.nav-link:hover {
  background: var(--accent-soft);
  color: var(--accent);
  transform: translateY(-1px);
}
.nav-link:hover img { opacity: 1; }

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  cursor: pointer;
  transition: background var(--transition);
}
.burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: transform var(--transition), opacity var(--transition);
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Rating section — intro with h1, image + text */
.rating-section .container { padding-top: 1rem; }
.rating-h1 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 1.5rem;
  color: #fff;
  text-align: center;
  letter-spacing: -0.02em;
}
.rating-intro-card {
  display: block;
  margin-bottom: 2rem;
  padding: 28px 28px;
  background: linear-gradient(145deg, var(--bg-card) 0%, var(--bg-elevated) 100%);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.03) inset;
  animation: rating-intro-enter 0.5s ease-out both;
}
@keyframes rating-intro-enter {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.rating-intro-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.04) inset;
}
.rating-intro {
  display: flex;
  gap: 32px;
  align-items: stretch;
  margin: 0;
  padding: 0;
}
.rating-intro-visual {
  flex-shrink: 0;
  width: 320px;
  display: flex;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.rating-intro-img {
  width: 100%;
  flex: 1;
  min-height: 0;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.rating-intro-visual:hover .rating-intro-img { transform: scale(1.02); }
.rating-intro-text {
  flex: 1;
  min-width: 0;
}
.rating-intro-text p {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.rating-intro-text p:last-child { margin-bottom: 0; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform 0.2s ease;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover,
.attention-btn:hover {
  background: var(--accent-hover);
  color: #fff;
  transform: translateY(-2px);
}
.btn-sm { padding: 8px 14px; font-size: 0.9rem; }
.btn-play { background: var(--accent); color: #fff; }
.btn-play:hover { background: var(--accent-hover); color: #fff; }
.btn-review {
  background: var(--bg-elevated);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-review:hover { background: var(--border); color: #fff; }

/* Rating section */
.rating-section {
  padding: 40px 0 40px;
}
.section-title {
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  font-weight: 700;
  margin: 0 0 1.5rem;
  color: #fff;
}
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
}
.rating-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 900px;
}
.rating-table th,
.rating-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.rating-table th {
  background: var(--bg-elevated);
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}
.th-cell {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  line-height: 1;
  vertical-align: middle;
}
.th-icon {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.th-icon img {
  width: 18px;
  height: 18px;
  display: block;
  object-fit: contain;
}
.rating-table tbody tr {
  transition: background var(--transition);
}
.rating-table tbody tr:hover { background: rgba(255,255,255,0.03); }
.rating-table tbody tr:last-child td { border-bottom: none; }

.td-casino {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}
.casino-logo { max-width: 100px; max-height: 55px; width: auto; height: auto; object-fit: contain; display: block; border-radius: 15px; }
.td-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.td-actions .btn { white-space: nowrap; }
.td-actions .btn img { width: 16px; height: 16px; }

/* Stars & rating score */
.rating-cell {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
  transition: transform 0.2s ease;
}
.rating-score {
  font-weight: 700;
  font-size: 1rem;
  color: var(--gold);
  background: rgba(240, 180, 41, 0.12);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  min-width: 42px;
  text-align: center;
}
.stars:hover { transform: scale(1.1); }

/* Content */
.content-section {
  padding: 40px 0 60px;
}
.content-section .section-title { margin-top: 2rem; clear: left; }
.content-section .section-title:first-child { margin-top: 0; clear: none; }
.section-title-icon {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.section-title-icon-img {
  width: 1.2em;
  height: 1.2em;
  flex-shrink: 0;
  opacity: 0.9;
}
.security-factor-cell {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.security-factor-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  opacity: 0.9;
}
/* Content banner — desktop: float left 30%, text wraps; mobile: full width block */
.content-banner {
  position: relative;
  float: left;
  width: 30%;
  min-width: 200px;
  margin: 0 1.5rem 1rem 0;
  border-radius: var(--radius);
  overflow: hidden;
  /* shape-outside for smoother text wrap - removed for W3C validator compatibility */
}
.content-banner .content-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  vertical-align: middle;
}
.content-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  margin: 1rem 0 1.5rem;
  object-fit: cover;
  max-height: 320px;
}
.content-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.content-table th,
.content-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  background: var(--bg-card);
}
.content-table th {
  background: var(--bg-elevated);
  font-weight: 600;
  color: var(--text);
}
.content-table tr:last-child td { border-bottom: none; }
.content-table-wrap {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 1.5rem 0;
}
.content-table-wrap .content-table { margin: 0; }
.content-table-providers { min-width: 480px; }
.content-table-licenses { min-width: 400px; }
.content-table-slots { min-width: 400px; }

/* Bonus cards */
.bonus-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 2rem 0;
  clear: both;
}
.bonus-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
  background: linear-gradient(145deg, var(--bg-card) 0%, var(--bg-elevated) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  animation: bonus-card-enter 0.5s ease-out both;
}
.bonus-card:nth-child(1) { animation-delay: 0.05s; }
.bonus-card:nth-child(2) { animation-delay: 0.1s; }
.bonus-card:nth-child(3) { animation-delay: 0.15s; }
.bonus-card:nth-child(4) { animation-delay: 0.2s; }
.bonus-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 24px rgba(233,69,96,0.15);
  border-color: rgba(233,69,96,0.3);
}
.bonus-card-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
  line-height: 1.3;
}
.bonus-card-icon {
  width: 1.25em;
  height: 1.25em;
  flex-shrink: 0;
  opacity: 0.9;
  vertical-align: middle;
  transition: opacity var(--transition);
}
.bonus-card:hover .bonus-card-icon { opacity: 1; }
.bonus-card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}
@keyframes bonus-card-enter {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Platform cards (same style as bonus-cards) */
.platform-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 2rem 0;
  clear: both;
}
.platform-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
  background: linear-gradient(145deg, var(--bg-card) 0%, var(--bg-elevated) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  animation: bonus-card-enter 0.5s ease-out both;
}
.platform-card:nth-child(1) { animation-delay: 0.05s; }
.platform-card:nth-child(2) { animation-delay: 0.1s; }
.platform-card:nth-child(3) { animation-delay: 0.15s; }
.platform-card:nth-child(4) { animation-delay: 0.2s; }
.platform-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 24px rgba(233,69,96,0.15);
  border-color: rgba(233,69,96,0.3);
}
.platform-card-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
  line-height: 1.3;
}
.platform-card-icon {
  width: 1.25em;
  height: 1.25em;
  flex-shrink: 0;
  opacity: 0.9;
  vertical-align: middle;
  transition: opacity var(--transition);
}
.platform-card:hover .platform-card-icon { opacity: 1; }
.platform-card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

/* Slot category cards */
.slot-category-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 2rem 0;
  clear: both;
}
.slot-category-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
  background: linear-gradient(145deg, var(--bg-card) 0%, var(--bg-elevated) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  animation: bonus-card-enter 0.5s ease-out both;
}
.slot-category-card:nth-child(1) { animation-delay: 0.05s; }
.slot-category-card:nth-child(2) { animation-delay: 0.1s; }
.slot-category-card:nth-child(3) { animation-delay: 0.15s; }
.slot-category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 24px rgba(233,69,96,0.15);
  border-color: rgba(233,69,96,0.3);
}
.slot-category-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
  line-height: 1.3;
}
.slot-category-icon {
  width: 1.25em;
  height: 1.25em;
  flex-shrink: 0;
  opacity: 0.9;
  vertical-align: middle;
  transition: opacity var(--transition);
}
.slot-category-card:hover .slot-category-icon { opacity: 1; }
.slot-category-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Popular slots table */
.slot-name-cell {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}
.slot-row-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  opacity: 0.9;
}
.content-table-popular-slots-table { min-width: 880px; }

/* License cards */
.license-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 2rem 0;
}
.license-card {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 24px;
  background: linear-gradient(145deg, var(--bg-card) 0%, var(--bg-elevated) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  transition: transform var(--transition), box-shadow var(--transition);
}
.license-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.license-card-logo {
  flex-shrink: 0;
  width: 160px;
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius-sm);
}
.license-card-logo img {
  max-width: 100%;
  height: auto;
  max-height: 90px;
  object-fit: contain;
  border-radius: 5px;
  padding: 2px;
  background: linear-gradient(var(--bg-elevated), var(--bg-elevated)) padding-box,
              linear-gradient(135deg, var(--accent), #00d4ff, var(--gold)) border-box;
  background-clip: padding-box, border-box;
  background-origin: padding-box, border-box;
  border: 2px solid transparent;
  box-sizing: border-box;
}
.license-card-text {
  flex: 1;
  min-width: 0;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.65;
  margin: 0;
}
.license-card-text strong { color: #fff; }

.license-cell {
  display: flex;
  align-items: center;
}
.license-logo {
  max-width: 100px;
  height: 28px;
  width: auto;
  object-fit: contain;
}
.provider-cell {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}
.provider-logo {
  max-width: 80px;
  max-height: 32px;
  width: auto;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
}

/* Attention blocks */
.attention-block {
  margin: 2rem 0;
  padding: 24px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--bg-elevated) 0%, var(--bg-card) 100%);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.attention-block:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.attention-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}
.attention-logo-wrap {
  position: relative;
  flex-shrink: 0;
  width: 195px;
  border-radius: 15px;
  overflow: hidden;
}
.attention-logo {
  width: 100%;
  height: auto;
  aspect-ratio: 400 / 266;
  object-fit: cover;
  display: block;
  border-radius: 15px;
}
.attention-rating {
  position: absolute;
  right: 10px;
  bottom: 8px;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 8px;
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 600;
}
.attention-stars-single { display: none; }
.attention-stars-full { display: inline; }
@media (max-width: 768px) {
  .attention-logo-wrap {
    width: 100%;
    order: -1;
  }
  .attention-logo { aspect-ratio: 400 / 266; object-fit: cover; }
}
@media (min-width: 769px) {
  .attention-stars-full { display: none; }
  .attention-stars-single { display: inline; }
}
.attention-text {
  flex: 1;
  min-width: 200px;
  color: var(--text);
}
.attention-text strong { color: #fff; }
.attention-btn {
  flex-shrink: 0;
  white-space: nowrap;
}

/* FAQ */
.faq-section {
  padding: 60px 0;
  background: var(--bg-card);
}
.faq-title { text-align: center; }
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
  margin-left: -20px;
  margin-right: -20px;
  padding-left: 20px;
  padding-right: 20px;
}
.faq-item:hover,
.faq-item[aria-expanded="true"] {
  background: rgba(233, 69, 96, 0.08);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--accent); }
.faq-question::after {
  content: '';
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-left: 12px;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item[aria-expanded="true"] .faq-question::after { transform: rotate(-135deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer > div {
  padding: 0 0 20px 0;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

/* Footer */
.footer {
  padding: 48px 0 24px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  margin-bottom: 32px;
}
.footer-brand img { margin-bottom: 12px; opacity: 0.95; }
.footer-brand p {
  margin: 0;
  max-width: 360px;
  font-size: 0.95rem;
  color: var(--text-muted);
}
.footer-links {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}
.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  color: var(--text-muted);
  font-weight: 500;
}
.footer-links a:hover { color: var(--accent); }
.footer-bottom { padding-top: 24px; border-top: 1px solid var(--border); }
.copyright {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Scroll up */
.scroll-up {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 50;
  width: 48px;
  height: 48px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition), background var(--transition);
}
.scroll-up.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-up:hover {
  background: var(--accent-hover);
  transform: translateY(-3px);
}
.scroll-up img { width: 24px; height: 24px; }

/* Mobile */
@media (max-width: 992px) {
  .rating-intro { flex-direction: column; align-items: center; gap: 20px; }
  .rating-intro-visual { width: 100%; max-width: 320px; }
  .bonus-cards, .platform-cards { grid-template-columns: repeat(2, 1fr); }
  .slot-category-cards { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { flex-direction: column; gap: 24px; }
}
@media (max-width: 768px) {
  .rating-intro-card {
    margin-left: -20px;
    margin-right: -20px;
    width: calc(100% + 40px);
    padding: 0 20px;
    background: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
  }
  .rating-intro-card:hover { box-shadow: none; }
  .rating-intro-visual { max-width: none; border-radius: var(--radius-sm); box-shadow: none; }
  .rating-intro-text { padding: 0; }
  .bonus-cards, .platform-cards { grid-template-columns: 1fr; gap: 16px; }
  .slot-category-cards { grid-template-columns: 1fr; gap: 16px; }
  .bonus-card, .platform-card, .slot-category-card { padding: 20px; }
  .license-card { flex-direction: column; gap: 16px; padding: 20px; }
  .license-card-logo { width: 100%; min-height: 60px; }
  .content-banner {
    float: none;
    width: 100%;
    min-width: 0;
    margin: 1rem 0 1.5rem;
  }
  .content-table-wrap { margin-left: -4px; margin-right: -4px; padding: 0 4px; }
  .content-table th, .content-table td { padding: 10px 12px; font-size: 0.9rem; }
  .content-table .provider-logo { max-width: 70px; max-height: 28px; }
  /* Content tables (providers, licenses, slots types, popular slots) → mobile cards */
  .content-table-cards-wrap,
  .content-table-popular-slots { overflow: visible; }
  .content-table-providers,
  .content-table-licenses,
  .content-table-slots { display: block; min-width: 0; border: none; }
  .content-table-providers thead,
  .content-table-licenses thead,
  .content-table-slots thead { display: none; }
  .content-table-providers tbody,
  .content-table-licenses tbody,
  .content-table-slots tbody { display: block; }
  .content-table-providers tbody tr,
  .content-table-licenses tbody tr,
  .content-table-slots tbody tr {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 20px;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--bg-elevated) 0%, var(--bg-card) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 2px 12px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .content-table-providers tbody tr:hover,
  .content-table-licenses tbody tr:hover,
  .content-table-slots tbody tr:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  }
  .content-table-providers tbody tr:last-child,
  .content-table-licenses tbody tr:last-child,
  .content-table-slots tbody tr:last-child { margin-bottom: 0; }
  .content-table-providers tbody td,
  .content-table-licenses tbody td,
  .content-table-slots tbody td {
    display: grid;
    grid-template-columns: minmax(100px, auto) 1fr;
    gap: 12px;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 0.95rem;
    background: transparent !important;
    text-align: right;
  }
  .content-table-providers tbody td::before,
  .content-table-licenses tbody td::before,
  .content-table-slots tbody td::before {
    text-align: left;
  }
  .content-table-providers tbody td:last-child,
  .content-table-licenses tbody td:last-child,
  .content-table-slots tbody td:last-child { border-bottom: none; padding-bottom: 0; }
  .content-table-providers tbody td:first-child,
  .content-table-licenses tbody td:first-child,
  .content-table-slots tbody td:first-child {
    padding-top: 0;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-weight: 600;
  }
  .content-table-providers tbody td:first-child .provider-cell,
  .content-table-licenses tbody td:first-child .license-cell {
    justify-content: flex-end;
  }
  .content-table-providers tbody td::before,
  .content-table-licenses tbody td::before,
  .content-table-slots tbody td::before {
    content: attr(data-label);
    font-weight: 600;
    color: var(--text-muted);
    flex-shrink: 0;
    min-width: 100px;
  }
  /* Popular slots table → mobile cards */
  .content-table-popular-slots { overflow: visible; }
  .content-table-popular-slots-table { display: block; min-width: 0; }
  .content-table-popular-slots-table thead { display: none; }
  .content-table-popular-slots-table tbody { display: block; }
  .content-table-popular-slots-table tbody tr {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 20px;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--bg-elevated) 0%, var(--bg-card) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 2px 12px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .content-table-popular-slots-table tbody tr:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  }
  .content-table-popular-slots-table tbody tr:last-child { margin-bottom: 0; }
  .content-table-popular-slots-table tbody td {
    display: grid;
    grid-template-columns: minmax(100px, auto) 1fr;
    gap: 12px;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 0.95rem;
    background: transparent !important;
    text-align: right;
  }
  .content-table-popular-slots-table tbody td::before {
    content: attr(data-label);
    font-weight: 600;
    color: var(--text-muted);
    text-align: left;
  }
  .content-table-popular-slots-table tbody td:last-child { border-bottom: none; padding-bottom: 0; }
  .content-table-popular-slots-table tbody td:first-child {
    padding-top: 0;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-weight: 600;
  }
  .content-table-popular-slots-table tbody td:first-child .slot-name-cell {
    justify-content: flex-end;
  }
  .nav { display: none; }
  .nav.active {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border);
    padding: 16px;
  }
  .nav.active .nav-list {
    flex-direction: column;
    gap: 4px;
  }
  .nav-link { padding: 12px 16px; justify-content: flex-start; }
  .burger { display: flex; }
  /* Rating table → mobile cards */
  .table-wrap {
    overflow: visible;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
  }
  .rating-table {
    display: block;
    min-width: 0;
  }
  .rating-table thead { display: none; }
  .rating-table tbody { display: block; }
  .rating-table tbody tr {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 20px;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--bg-elevated) 0%, var(--bg-card) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 2px 12px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: cardFadeIn 0.5s ease both;
  }
  .rating-table tbody tr:nth-child(1) { animation-delay: 0.05s; }
  .rating-table tbody tr:nth-child(2) { animation-delay: 0.1s; }
  .rating-table tbody tr:nth-child(3) { animation-delay: 0.15s; }
  .rating-table tbody tr:nth-child(4) { animation-delay: 0.2s; }
  .rating-table tbody tr:nth-child(5) { animation-delay: 0.25s; }
  .rating-table tbody tr:nth-child(6) { animation-delay: 0.3s; }
  .rating-table tbody tr:nth-child(7) { animation-delay: 0.35s; }
  .rating-table tbody tr:nth-child(8) { animation-delay: 0.4s; }
  .rating-table tbody tr:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  }
  .rating-table tbody tr:last-child { margin-bottom: 0; }
  .rating-table tbody td {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 0.95rem;
  }
  .rating-table tbody td:last-child { border-bottom: none; padding-bottom: 0; }
  .rating-table tbody td:first-child {
    flex-direction: column;
    align-items: center;
    padding-top: 0;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .rating-table tbody td::before {
    content: attr(data-label);
    font-weight: 600;
    color: var(--text-muted);
    font-size: 0.85rem;
    flex-shrink: 0;
  }
  .rating-table tbody td:first-child::before,
  .rating-table tbody td:last-child::before { display: none; }
  .rating-table tbody td:last-child { justify-content: stretch; padding-top: 16px; }
  .rating-table tbody .td-casino {
    width: 100%;
    justify-content: center;
  }
  .rating-table tbody .casino-logo {
    max-width: 180px;
    max-height: 90px;
    width: auto;
    height: auto;
  }
  .rating-table tbody .rating-cell {
    margin-left: auto;
  }
  .rating-table tbody .td-actions {
    width: 100%;
    justify-content: stretch;
  }
  .rating-table tbody .td-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .attention-inner { flex-direction: column; align-items: stretch; }
  .attention-btn { width: 100%; justify-content: center; }
  .scroll-up { bottom: 16px; right: 16px; width: 44px; height: 44px; }
}

@keyframes cardFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .rating-intro-card {
    margin-left: -16px;
    margin-right: -16px;
    width: calc(100% + 32px);
    padding: 0 16px;
  }
  .rating-intro-text { padding: 0; }
  .rating-section { padding: 24px 0 24px; }
  .rating-h1 { margin-bottom: 1rem; }
  .rating-table tbody tr { padding: 16px; }
  .faq-question { font-size: 0.98rem; }
}

/* 404 page */
.error-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
}
.error-page h1 {
  font-size: 4rem;
  margin: 0 0 0.5rem;
  color: var(--accent);
}
.error-page p {
  margin: 0 0 1.5rem;
  color: var(--text-muted);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .rating-table tbody tr { animation: none !important; }
  .bonus-card, .platform-card, .slot-category-card { animation: none !important; }
}
