:root {
  --brand: #8b5cf6;
  --accent: #8b5cf6;
  --bg: #454545;
  --text: #e0e0e0;
  --muted: #888;
  --nav-bg: #1f2328;
  --card-bg: #242d38;
  --section-bg: #0f1318;
  --border: #1c2635;
  --footer-bg: #0b0e14;
  --footer-text: #737373;
  --footer-link: #bfbaba;
  --login-c: #ffa21f;
  --register-c: #ffa21f;
  --cta-bg: #ffa21f;
  --cta-text: #000000;
  --radius: 8px;
  --font-heading: inherit;
}
@font-face {
  font-family: 'Inter';
  src: url('https://fonts.gstatic.com/s/inter/v13/UcCO3FwrK3iLTeHuS_nVMrNCgx70_0.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
body {
  background: repeating-radial-gradient(circle at 1px 1px, rgba(255,255,255,0.05) 1px, transparent 0) 0 0 / 20px 20px, var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding-top: 60px;
  line-height: 1.6;
  overflow-x: hidden;
}
[data-svelte-target] {
  max-width: 1200px;
  margin: 0 auto;
}
.x-pen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  z-index: 1000;
  background: var(--nav-bg);
  will-change: transform;
  contain: layout style;
  display: flex;
  align-items: center;
  padding: 6px 14px;
  box-sizing: border-box;
  font-size: 14px;
  max-width: 100%;
}
.om-palette {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
}
.om-palette img {
  height: 36px;
  width: auto;
  max-height: 36px;
  object-fit: contain;
  display: block;
  margin-right: 12px;
}
.top-menu-links {
  display: flex;
  margin-left: auto;
  gap: 20px;
}
.top-menu-links a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}
.top-menu-links a:hover {
  color: var(--brand);
}
.top-nav-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 16px;
}
.member-login {
  display: inline-block;
  border: 2px solid var(--login-c);
  color: var(--login-c);
  background: transparent;
  border-radius: var(--radius);
  text-decoration: none;
  cursor: pointer;
  padding: 7px 18px;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease;
}
.member-login:hover {
  background: var(--login-c);
  color: #000;
}
.join-now {
  display: inline-block;
  background: var(--register-c);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  padding: 7px 18px;
  font-size: 14px;
  transition: background 0.2s ease;
}
.join-now:hover {
  background: #ffb347;
}
.toggle-btn {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
}
.flyout-nav {
  display: none;
}
.pusher-hero {
  width: 100%;
  max-width: 100%;
  padding: 80px 5%;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  min-height: 300px;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}
.pusher-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(255, 162, 31, 0.1) 0%, transparent 50%);
  pointer-events: none;
}
.pusher-hero:not([data-layout="split"]) {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.pusher-hero[data-layout="split"] {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.pusher-hero .hero-text-col {
  flex: 1;
  z-index: 1;
}
.pusher-hero .hero-img-col {
  flex: 0 0 45%;
  max-width: 45%;
}
.pusher-hero .global-hero-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.pusher-hero .uk-preserve-hero {
  width: 100%;
  height: auto;
  border-radius: 12px;
}
.is-focused-title {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  margin: 0;
  line-height: 1.2;
  position: relative;
  max-width: 700px;
}
.is-focused-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), var(--cta-bg));
  border-radius: 2px;
}
.core-subtitle {
  color: var(--muted);
  font-size: 18px;
  max-width: 600px;
  margin: 12px auto 24px;
  line-height: 1.6;
}
#heroCta {
  margin-top: 16px;
  position: relative;
  z-index: 1;
}
.pusher-hero[data-layout="split"] .is-focused-title {
  text-align: left;
  margin: 0 0 12px 0;
}
.pusher-hero[data-layout="split"] .core-subtitle {
  text-align: left;
  margin: 12px 0 24px 0;
}
.pusher-hero[data-layout="split"] #heroCta {
  text-align: left;
}
@media (max-width: 768px) {
  .pusher-hero {
    padding: 60px 5%;
    flex-direction: column !important;
    text-align: center;
  }
  .pusher-hero .hero-img-col {
    max-width: 100%;
    flex: 0 0 100%;
    margin-top: 30px;
  }
  .pusher-hero[data-layout="split"] .is-focused-title,
  .pusher-hero[data-layout="split"] .core-subtitle {
    text-align: center;
  }
  .pusher-hero[data-layout="split"] #heroCta {
    text-align: center;
  }
  .is-focused-title {
    font-size: 32px;
  }
}
.reading-area {
  padding: 48px 5%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.reading-area::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand), transparent);
  opacity: 0.3;
}
.reading-area h1 {
  font-size: 32px;
  color: #fff;
  font-weight: 800;
  margin: 0 0 24px 0;
  line-height: 1.3;
}
.reading-area h2 {
  font-size: 26px;
  color: #fff;
  font-weight: 700;
  margin: 32px 0 16px 0;
  position: relative;
  padding-bottom: 8px;
}
.reading-area h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--cta-bg));
  border-radius: 2px;
}
.reading-area h3 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
  margin: 28px 0 12px 0;
}
.reading-area p {
  color: var(--text);
  line-height: 1.8;
  margin: 0 0 16px 0;
}
.reading-area a {
  color: var(--brand);
  text-decoration: none;
  transition: color 0.2s ease;
}
.reading-area a:hover {
  color: var(--cta-bg);
}
.reading-area strong,
.reading-area b {
  color: #fff;
  font-weight: 700;
}
.reading-area ul,
.reading-area ol {
  margin: 0 0 20px 0;
  padding-left: 24px;
}
.reading-area ul {
  list-style: none;
}
.reading-area ul li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 8px;
  color: var(--text);
}
.reading-area ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: var(--brand);
  border-radius: 50%;
}
.reading-area ol {
  list-style: none;
  counter-reset: li;
}
.reading-area ol li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 8px;
  color: var(--text);
  counter-increment: li;
}
.reading-area ol li::before {
  content: counter(li);
  position: absolute;
  left: 0;
  top: 0;
  background: var(--brand);
  color: #fff;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
}
.reading-area blockquote {
  background: rgba(139, 92, 246, 0.1);
  border-left: 4px solid var(--brand);
  padding: 20px 24px;
  margin: 20px 0;
  border-radius: 0 8px 8px 0;
  position: relative;
}
.reading-area blockquote::after {
  content: '"';
  position: absolute;
  bottom: -12px;
  right: 16px;
  font-size: 48px;
  color: rgba(139, 92, 246, 0.3);
  line-height: 1;
}
.reading-area hr {
  border: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.3), transparent);
  margin: 32px 0;
}
.reading-area figure {
  margin: 24px 0;
  text-align: center;
}
.reading-area figcaption {
  font-size: 13px;
  color: var(--muted);
  margin-top: 8px;
}
.reading-area table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.reading-area th {
  background: rgba(139, 92, 246, 0.2);
  color: #fff;
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  border-bottom: 1px solid var(--border);
}
.reading-area td {
  padding: 12px 16px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.reading-area tr:last-child td {
  border-bottom: 0;
}
.reading-area tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.02);
}
.reading-area tr:hover td {
  background: rgba(139, 92, 246, 0.05);
}
@media (max-width: 768px) {
  .reading-area table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}
.space-mc-md {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 20px 0;
  background: var(--card-bg);
  padding: 20px;
  border-radius: var(--radius);
}
.space-mc-md dt {
  color: #fff;
  font-weight: 600;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.space-mc-md dd {
  color: var(--text);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.space-mc-md dd:last-child {
  border-bottom: 0;
}
@media (max-width: 768px) {
  .space-mc-md {
    grid-template-columns: 1fr;
  }
  .space-mc-md dt,
  .space-mc-md dd {
    padding: 8px 0;
  }
}
.toc-nav {
  background: var(--card-bg);
  padding: 24px;
  border-radius: var(--radius);
  margin-bottom: 32px;
  position: relative;
}
.toc-nav::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--brand), var(--cta-bg));
  border-radius: 0 4px 4px 0;
}
.page-toc-title {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 16px 0;
  padding-left: 12px;
}
.master-toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.master-toc-list li {
  margin-bottom: 8px;
  padding-left: 12px;
}
.master-toc-list a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
  display: block;
  padding: 6px 12px;
  border-radius: 4px;
}
.master-toc-list a:hover {
  color: var(--brand);
  background: rgba(139, 92, 246, 0.1);
}
.app-heading {
  font-size: 24px;
  color: #fff;
  font-weight: 700;
  margin: 32px 0 16px 0;
  position: relative;
  padding-bottom: 8px;
}
.app-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 4px;
  height: 24px;
  background: var(--cta-bg);
  border-radius: 0 4px 4px 0;
}
.core-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 14px;
}
.core-grid > * {
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}
@media (max-width: 768px) {
  .core-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 480px) {
  .core-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
.slot-tile {
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--card-bg);
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  will-change: transform;
}
.slot-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  border-color: var(--brand);
}
.slot-tile img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1;
  object-fit: cover;
  max-width: 100%;
}
.slot-tile figcaption {
  padding: 8px 12px;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.slot-tile a {
  display: block;
  text-decoration: none;
}
.game-browser {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 150px));
  justify-content: center;
  gap: 12px;
  margin: 24px 0;
}
.reading-area .game-browser {
  grid-template-columns: repeat(auto-fill, minmax(110px, 150px));
}
.reading-area .slot-tile {
  max-width: 150px;
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
}
.reading-area .slot-tile img {
  max-height: 190px;
}
.reading-area .slot-tile figcaption {
  padding: 8px;
  font-size: 12px;
  color: #fff;
}
.pros-cons-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 32px 0;
}
@media (max-width: 768px) {
  .pros-cons-section {
    grid-template-columns: 1fr;
  }
}
.good-points {
  background: rgba(0, 255, 0, 0.05);
  border: 1px solid rgba(0, 255, 0, 0.2);
  border-radius: var(--radius);
  padding: 20px;
  position: relative;
}
.good-points::before {
  content: '✓';
  position: absolute;
  top: 16px;
  right: 16px;
  color: #00ff00;
  font-size: 20px;
  font-weight: bold;
}
.disadvantages {
  background: rgba(255, 0, 0, 0.05);
  border: 1px solid rgba(255, 0, 0, 0.2);
  border-radius: var(--radius);
  padding: 20px;
  position: relative;
}
.disadvantages::before {
  content: '✗';
  position: absolute;
  top: 16px;
  right: 16px;
  color: #ff0000;
  font-size: 20px;
  font-weight: bold;
}
.good-points h3,
.disadvantages h3 {
  color: #fff;
  margin: 0 0 16px 0;
  font-size: 18px;
}
.good-points ul,
.disadvantages ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
}
.good-points li,
.disadvantages li {
  padding-left: 24px;
  margin-bottom: 8px;
  position: relative;
  color: var(--text);
}
.good-points li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #00ff00;
  font-weight: bold;
}
.disadvantages li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: #ff0000;
  font-weight: bold;
}
.faq-row {
  background: var(--card-bg);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.app-question {
  padding: 16px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  transition: background 0.2s ease;
}
.app-question:hover {
  background: rgba(139, 92, 246, 0.1);
}
.app-question::after {
  content: '+';
  font-size: 20px;
  transition: transform 0.2s ease;
}
.app-question.open::after {
  content: '-';
}
.page-content {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--text);
  line-height: 1.8;
}
.faq-row.open .page-content {
  padding: 0 20px 20px 20px;
  max-height: 2000px;
}
.primary-author-block {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--card-bg);
  padding: 24px;
  border-radius: var(--radius);
  margin: 32px 0;
  position: relative;
}
.primary-author-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), var(--cta-bg));
  border-radius: 8px 8px 0 0;
}
.site-author-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid var(--brand);
}
.tree-author {
  flex: 1;
}
.master-author-name {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 4px 0;
}
.global-author-role {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}
.octicon-author {
  color: var(--text);
  line-height: 1.6;
  margin-top: 8px;
}
.main-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 24px;
  margin: 32px 0;
}
.x-crop {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  border: 1px solid var(--border);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.x-crop:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}
.main-team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 12px auto;
  border: 3px solid var(--brand);
}
.base-team-avatar-fallback {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--brand);
  margin: 0 auto 12px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 20px;
}
.base-team-avatar-fallback[data-color-idx="0"] { background: #8b5cf6; }
.base-team-avatar-fallback[data-color-idx="1"] { background: #ffa21f; }
.base-team-avatar-fallback[data-color-idx="2"] { background: #00ff00; }
.base-team-avatar-fallback[data-color-idx="3"] { background: #ff0000; }
.base-team-avatar-fallback[data-color-idx="4"] { background: #00a2ff; }
.base-team-avatar-fallback[data-color-idx="5"] { background: #ff00ff; }
.base-team-avatar-fallback[data-color-idx="6"] { background: #ffff00; color: #000; }
.tree-author {
  text-align: center;
}
.page-chart {
  background: var(--card-bg);
  padding: 20px;
  border-radius: var(--radius);
  margin: 24px 0;
}
.top-chart-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.base-chart-label {
  width: 120px;
  color: var(--text);
  font-size: 14px;
  flex-shrink: 0;
}
.background-sm {
  height: 8px;
  background: linear-gradient(90deg, var(--brand), var(--cta-bg));
  border-radius: 4px;
  flex: 1;
  overflow: hidden;
  position: relative;
}
.background-sm::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: calc(var(--v, 0) * 1%);
  background: linear-gradient(90deg, #ffa21f, #ff6b35);
  border-radius: 4px;
  transition: width 0.5s ease;
}
.background-sm span {
  display: block;
  height: 100%;
  width: calc(var(--v, 0) * 1%);
  background: linear-gradient(90deg, #ffa21f, #ff6b35);
  border-radius: 4px;
  transition: width 0.5s ease;
}
.core-chart-value {
  width: 40px;
  color: #fff;
  font-weight: 700;
  text-align: right;
  flex-shrink: 0;
}
.page-chart dl {
  display: grid;
  gap: 12px;
}
.page-chart dt {
  grid-column: 1;
}
.page-chart dd {
  grid-column: 2;
  display: flex;
  align-items: center;
  gap: 12px;
}
.page-chart table {
  width: 100%;
  border-collapse: collapse;
}
.page-chart tr {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 0;
}
.page-chart td {
  flex: 1;
}
.page-chart progress {
  flex: 1;
  height: 8px;
  border-radius: 4px;
  overflow: hidden;
}
.page-chart progress::-webkit-progress-bar {
  background: rgba(139, 92, 246, 0.2);
  border-radius: 4px;
}
.page-chart progress::-webkit-progress-value {
  background: linear-gradient(90deg, #ffa21f, #ff6b35);
  border-radius: 4px;
  transition: width 0.5s ease;
}
.page-chart progress::-moz-progress-bar {
  background: linear-gradient(90deg, #ffa21f, #ff6b35);
  border-radius: 4px;
  transition: width 0.5s ease;
}
.pen {
  width: 100%;
  overflow-x: auto;
  margin: 24px 0;
  background: var(--card-bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.pen table {
  width: 100%;
  border-collapse: collapse;
}
.pen th {
  background: rgba(139, 92, 246, 0.2);
  color: #fff;
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1;
}
.pen td {
  padding: 12px 16px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.pen tr:last-child td {
  border-bottom: 0;
}
.pen tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.02);
}
.pen tr:hover td {
  background: rgba(139, 92, 246, 0.05);
}
.page-rtp-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 24px 0;
}
.page-rtp-table th {
  background: rgba(139, 92, 246, 0.2);
  color: #fff;
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
}
.page-rtp-table td {
  padding: 12px 16px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.replace {
  display: flex;
  align-items: center;
  gap: 12px;
}
.site-rtp-bar {
  height: 8px;
  background: rgba(139, 92, 246, 0.2);
  border-radius: 4px;
  flex: 1;
  overflow: hidden;
  position: relative;
}
.site-rtp-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: calc(var(--v, 0) * 1%);
  background: linear-gradient(90deg, #00ff00, #00a2ff);
  border-radius: 4px;
}
.core-rtp-label {
  width: 120px;
  color: var(--text);
  font-size: 14px;
  flex-shrink: 0;
}
.alien-rtp {
  width: 40px;
  color: #fff;
  font-weight: 700;
  text-align: right;
  flex-shrink: 0;
}
.core-comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 24px 0;
}
.core-comparison-table th {
  background: rgba(139, 92, 246, 0.2);
  color: #fff;
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
}
.core-comparison-table td {
  padding: 12px 16px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.primary-none-speed {
  display: grid;
  grid-template-columns: 120px 1fr 40px;
  gap: 12px;
  background: var(--card-bg);
  padding: 20px;
  border-radius: var(--radius);
  margin: 24px 0;
}
.base-speed-row {
  display: contents;
}
.om-palette-speed {
  grid-column: 1;
  color: var(--text);
  font-size: 14px;
  align-self: center;
}
.main-speed-value {
  grid-column: 3;
  color: #fff;
  font-weight: 700;
  text-align: right;
}
.master-speed-bar {
  grid-column: 2;
  height: 8px;
  background: rgba(139, 92, 246, 0.2);
  border-radius: 4px;
  align-self: center;
  position: relative;
}
.master-speed-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: calc(var(--v, 0) * 1%);
  background: linear-gradient(90deg, var(--brand), var(--cta-bg));
  border-radius: 4px;
}
.main-rtp-chart {
  display: grid;
  grid-template-columns: 120px 1fr 40px;
  gap: 12px;
  background: var(--card-bg);
  padding: 20px;
  border-radius: var(--radius);
  margin: 24px 0;
}
.tree {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 32px 0;
}
.crop {
  display: inline-block;
  background: var(--cta-bg);
  color: var(--cta-text);
  border: none;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
  padding: 14px 36px;
  font-size: 16px;
  transition: background 0.2s ease, transform 0.2s ease;
  will-change: transform;
}
.crop:hover {
  background: #ffb347;
  transform: translateY(-2px);
}
.main-cta-secondary {
  display: inline-block;
  background: transparent;
  color: var(--cta-bg);
  border: 2px solid var(--cta-bg);
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
  padding: 12px 32px;
  font-size: 15px;
  transition: background 0.2s ease, color 0.2s ease;
}
.main-cta-secondary:hover {
  background: var(--cta-bg);
  color: var(--cta-text);
}
.el-frown {
  background: var(--footer-bg);
  padding: 48px 5% 24px 5%;
  margin-top: 48px;
  position: relative;
}
.el-frown::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), var(--cta-bg));
  transform: skewY(-1deg);
}
.alien-lg {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.alien-lg a {
  color: var(--footer-link);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.2s ease;
}
.alien-lg a:hover {
  color: var(--brand);
}
.disclaimer-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.disclaimer-links a {
  color: var(--footer-text);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s ease;
}
.disclaimer-links a:hover {
  color: var(--muted);
}
.core-copyright {
  color: var(--footer-text);
  text-align: center;
  font-size: 13px;
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.app-provider-badges,
.page-payment-badges {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 24px 0;
  flex-wrap: wrap;
}
.app-provider-badges img,
.page-payment-badges img {
  height: 32px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: filter 0.2s ease, opacity 0.2s ease;
}
.app-provider-badges img:hover,
.page-payment-badges img:hover {
  filter: grayscale(0%);
  opacity: 1;
}
.global-geo-selector {
  position: relative;
  display: inline-block;
  margin: 0 auto;
}
.base-geo-current {
  background: var(--card-bg);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}
.base-geo-current::after {
  content: '▼';
  font-size: 12px;
  color: var(--muted);
}
.newnode-grav {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-top: 4px;
  overflow: hidden;
  z-index: 100;
  display: none;
}
.global-geo-selector:hover .newnode-grav {
  display: block;
}
.newnode-grav a {
  display: block;
  padding: 8px 16px;
  color: var(--text);
  text-decoration: none;
  transition: background 0.2s ease;
}
.newnode-grav a:hover {
  background: rgba(139, 92, 246, 0.1);
}
.page-cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--card-bg);
  padding: 16px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 90%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}
.page-cookie-banner a {
  color: var(--brand);
  text-decoration: none;
  font-weight: 600;
}
.yellow-text {
  color: var(--brand);
  text-decoration: none;
}
.yellow-text:hover {
  text-decoration: underline;
}
.global-msg {
  background: rgba(139, 92, 246, 0.1);
  border-left: 4px solid var(--brand);
  padding: 16px 20px;
  margin: 24px 0;
  border-radius: 0 8px 8px 0;
  color: var(--text);
}
.global-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
  box-sizing: border-box;
}
.primary-icon {
  width: 20px;
  height: 20px;
  display: inline-block;
  vertical-align: middle;
}
.core-label {
  display: inline-block;
  background: rgba(139, 92, 246, 0.2);
  color: var(--brand);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-right: 8px;
}
.loading-lg {
  background: var(--card-bg);
  padding: 12px 16px;
  border-radius: 4px;
  font-family: monospace;
  font-size: 13px;
  color: var(--muted);
  overflow-x: auto;
}
.site-responsible-gambling {
  background: rgba(255, 0, 0, 0.05);
  border: 1px solid rgba(255, 0, 0, 0.2);
  border-radius: var(--radius);
  padding: 20px;
  margin: 32px 0;
}
.site-responsible-gambling h2 {
  color: #ff0000;
  margin: 0 0 12px 0;
}
@media (max-width: 768px) {
  .top-menu-links {
    display: none !important;
  }
  .top-nav-buttons {
    margin-left: auto !important;
  }
  .x-pen {
    padding: 6px 12px;
  }
  .om-palette {
    font-size: 16px;
  }
  .is-focused-title {
    font-size: 28px;
  }
  .pusher-hero {
    padding: 60px 5%;
  }
  .reading-area {
    padding: 28px 4%;
  }
  .pros-cons-section {
    grid-template-columns: 1fr;
  }
  .main-team-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
  .page-chart {
    padding: 16px;
  }
  .primary-none-speed,
  .main-rtp-chart {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .base-speed-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .om-palette-speed {
    grid-column: 1;
  }
  .master-speed-bar {
    grid-column: 1;
    height: 6px;
  }
  .main-speed-value {
    grid-column: 1;
    text-align: left;
  }
  .core-rtp-label {
    grid-column: 1;
    width: 100%;
  }
  .site-rtp-bar {
    grid-column: 1;
    width: 100%;
  }
  .alien-rtp {
    grid-column: 1;
    text-align: left;
  }
  .tree {
    flex-direction: column;
  }
  .crop {
    width: 100%;
    text-align: center;
  }
  .el-frown {
    padding: 32px 4% 16px 4%;
  }
  .alien-lg {
    gap: 16px;
  }
}
@media (max-width: 480px) {
  .core-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .game-browser {
    grid-template-columns: repeat(2, 1fr);
  }
  .main-team-grid {
    grid-template-columns: 1fr;
  }
  .space-mc-md {
    grid-template-columns: 1fr;
  }
  .page-cookie-banner {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
}
@media(max-width:768px){.top-menu-links{display:none!important}.om-palette img{height:32px!important;max-height:32px!important}}
.reading-area p{text-align:justify;hyphens:auto;-webkit-hyphens:auto}
.reading-area section p:nth-of-type(4n+2){border-left:2px solid #1c2635;padding-left:16px;opacity:.92}.reading-area section p:nth-of-type(5n+3){background:#0f1318;padding:14px 18px;border:1px solid #1c2635;border-radius:8pxpx}.reading-area section p:nth-of-type(6n+4){padding-bottom:16px;border-bottom:1px solid #1c2635}.reading-area section p:nth-of-type(8n+5){border-top:2px solid #8b5cf6;padding-top:14px;margin-top:20px}
.el-frown{background:#0b0e14;color:#737373;padding:40px 5% 28px;text-align:center;border-top:1px solid #1c2635;margin-top:40px}.el-frown a{color:#bfbaba;text-decoration:none;margin:0 8px;line-height:2;transition:color .2s}.el-frown a:hover{color:#8b5cf6}.core-copyright{opacity:.7;font-size:13px;margin-top:12px}
.game-browser{display:grid!important;grid-template-columns:repeat(auto-fill,minmax(110px,150px))!important;justify-content:center;gap:10px;margin:16px 0}.game-browser[data-columns="2"]{grid-template-columns:repeat(2,minmax(0,150px))!important}.game-browser[data-columns="3"]{grid-template-columns:repeat(3,minmax(0,150px))!important}.game-browser[data-columns="4"]{grid-template-columns:repeat(4,minmax(0,150px))!important}.game-browser[data-columns="5"]{grid-template-columns:repeat(5,minmax(0,140px))!important}.slot-tile{max-width:150px!important;margin:0!important;text-align:center;overflow:hidden;border-radius:10px}.slot-tile img{width:100%!important;height:auto!important;max-width:150px!important;max-height:185px!important;object-fit:cover;display:block;margin:0!important;border-radius:0}.reading-area .game-browser>*{max-width:150px!important;margin:0!important;text-align:center;overflow:hidden;border-radius:10px}.reading-area .game-browser>* img{width:100%!important;height:auto!important;max-width:150px!important;max-height:185px!important;object-fit:cover;display:block;margin:0!important;border-radius:0}.reading-area .game-browser>* a{display:block;text-decoration:none;color:inherit}.game-browser>*{max-width:150px!important;margin:0!important;text-align:center;overflow:hidden;border-radius:10px}.game-browser>* img{width:100%!important;height:auto!important;max-width:150px!important;max-height:185px!important;object-fit:cover;display:block;margin:0!important;border-radius:0}.game-browser>* a{display:block;text-decoration:none;color:inherit}
.games-grid,.game-list{display:grid!important;grid-template-columns:repeat(auto-fill,minmax(110px,150px))!important;justify-content:center;gap:10px;margin:16px 0}.games-grid>*,.game-list>*{max-width:150px!important;margin:0!important;text-align:center;overflow:hidden;border-radius:10px}.games-grid>* img,.game-list>* img{width:100%!important;height:auto!important;max-width:150px!important;max-height:185px!important;object-fit:cover;display:block;margin:0!important;border-radius:0}.games-grid>* a,.game-list>* a{display:block;text-decoration:none;color:inherit}.games-grid figcaption,.game-list figcaption{padding:6px 0;text-align:center;font-size:12px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
@media(max-width:768px){.top-nav-buttons{margin-left:auto!important}}
:root{overflow-x:hidden;max-width:100vw}.x-pen{max-width:100vw;overflow:hidden}
/* Content widgets */
.qek-stat-highlight{padding:16px 20px;background:rgba(255,255,255,0.03);border:none;border-radius:8px;margin:1em 0;}
.qek-side-note{padding:10px 14px;background:rgba(var(--brand-rgb,100,100,100),0.05);border:3px solid rgba(var(--brand-rgb,100,100,100),0.3);border-radius:12px;margin:1em 0;border-left:3px solid var(--brand);}
.qek-expand-detail{padding:20px 24px;background:transparent;border:3px solid rgba(var(--brand-rgb,100,100,100),0.3);border-radius:8px;margin:1em 0;}
.qek-verdict-box{padding:12px 16px;background:rgba(0,0,0,0.02);border:2px solid var(--brand);border-radius:8px;margin:1em 0;border-left:3px solid var(--brand);}
.qek-tip-box{padding:16px 20px;background:rgba(255,255,255,0.03);border:2px solid var(--brand);border-radius:0;margin:1em 0;}

.img-float-left{float:left;margin:0 1em 1em 0}
.img-float-right{float:right;margin:0 0 1em 1em}
.img-center{display:block;margin-left:auto;margin-right:auto}