@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');
:root {
  --brand: #8b5cf6;
  --accent: #8b5cf6;
  --bg: #0b0e14;
  --text: #e0e0e0;
  --muted: #888;
  --nav-bg: #111720;
  --card-bg: #0f1318;
  --section-bg: #0f1318;
  --border: #1e2530;
  --footer-bg: #0b0e14;
  --footer-text: #444444;
  --footer-link: #888888;
  --login-c: #a8a8a8;
  --register-c: #6b0039;
  --cta-bg: #ffb800;
  --cta-text: #000000;
  --radius: 8px;
  --neu-shadow-out: 4px 4px 10px rgba(0,0,0,0.5), -2px -2px 8px rgba(255,255,255,0.03);
  --neu-shadow-in: inset 3px 3px 8px rgba(0,0,0,0.6), inset -2px -2px 6px rgba(255,255,255,0.03);
  --font-body: 'Inter', sans-serif;
  --font-heading: 'inherit', sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background-color: var(--bg);
  background-image: repeating-linear-gradient(45deg, rgba(139,92,246,0.03) 0px, rgba(139,92,246,0.03) 1px, transparent 1px, transparent 12px), repeating-linear-gradient(-45deg, rgba(139,92,246,0.02) 0px, rgba(139,92,246,0.02) 1px, transparent 1px, transparent 12px);
  color: var(--text);
  line-height: 1.7;
  padding-top: 60px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand); text-decoration: none; }
.ht-gp {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  z-index: 1000;
  background: var(--nav-bg);
  display: flex;
  align-items: center;
  padding: 6px 14px;
  font-size: 14px;
  will-change: transform;
  contain: layout style;
}
.cote-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  z-index: 1;
}
.cote-brand img {
  height: 32px;
  width: auto;
  max-height: 32px;
  object-fit: contain;
  display: block;
}
.cote-brand span {
  font-size: 18px;
  font-weight: 800;
  color: var(--brand);
  letter-spacing: -0.5px;
}
.is-menu-links {
  display: flex;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  gap: 20px;
  align-items: center;
  list-style: none;
}
.is-menu-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
  white-space: nowrap;
}
.is-menu-links a:hover { color: var(--brand); }
.has-nav-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}
.btn-signin {
  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-family: var(--font-body);
  transition: color 0.2s, border-color 0.2s;
}
.btn-signin:hover { color: #fff; border-color: #fff; }
.register-link {
  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;
  font-family: var(--font-body);
  transition: opacity 0.2s;
}
.register-link:hover { opacity: 0.85; }
.btn-menu {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  gap: 5px;
  padding: 4px;
}
.btn-menu span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--muted);
  border-radius: 2px;
}
.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  height: 100vh;
  z-index: 2000;
  transform: translateX(100%);
  transition: transform 0.3s;
  background: var(--nav-bg);
  padding: 24px;
}
.mobile-nav.is-expanded { transform: translateX(0); }
.joget-hero {
  position: relative;
  width: 100%;
  max-width: 100%;
  padding: 80px 5%;
  min-height: 420px;
  overflow: hidden;
  background: radial-gradient(ellipse at 60% 40%, rgba(139,92,246,0.22) 0%, rgba(11,14,20,0) 65%), linear-gradient(135deg, #0b0e14 0%, #111720 50%, #0b0e14 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.joget-hero::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139,92,246,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.joget-hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 60px;
  background: linear-gradient(to bottom right, transparent 49%, var(--bg) 50%);
  pointer-events: none;
}
.joget-hero:not([data-layout="split"]) {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.joget-hero:not([data-layout="split"]) .western-sm {
  text-align: center;
  margin: 0 auto;
}
.joget-hero:not([data-layout="split"]) .is-subtitle {
  text-align: center;
  margin: 12px auto 24px;
}
.joget-hero[data-layout="split"] {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  text-align: left;
}
.joget-hero[data-layout="split"] .has-hero-text { flex: 1; }
.joget-hero[data-layout="split"] .has-hero-image {
  flex: 0 0 45%;
  max-width: 45%;
}
.joget-hero[data-layout="split"] .western-sm { text-align: left; margin: 0; }
.joget-hero[data-layout="split"] .is-subtitle { text-align: left; margin: 12px 0 24px; }
.href-sm {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: var(--neu-shadow-out);
}
.western-sm {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 800;
  color: #fff;
  max-width: 720px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.is-subtitle {
  color: var(--muted);
  font-size: 17px;
  max-width: 600px;
  margin: 12px 0 24px;
  line-height: 1.6;
}
.is-disabled-cta {
  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;
  font-family: var(--font-body);
  margin-top: 16px;
  transition: transform 0.2s, opacity 0.2s;
  box-shadow: 0 4px 20px rgba(255,184,0,0.3);
  will-change: transform;
}
.is-disabled-cta:hover { transform: translateY(-2px); opacity: 0.92; }
.cta-alt {
  display: inline-block;
  background: transparent;
  color: var(--cta-bg);
  border: 2px solid var(--cta-bg);
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  padding: 11px 28px;
  font-size: 15px;
  font-family: var(--font-body);
  margin-top: 12px;
  transition: transform 0.2s, opacity 0.2s;
  will-change: transform;
}
.cta-alt:hover { transform: translateY(-2px); opacity: 0.85; }
.relaxed-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
}
.main-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 36px 5% 60px;
}
.main-wrap h1 {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.25;
}
.main-wrap h2, .js-heading {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin: 36px 0 16px;
  padding-left: 16px;
  position: relative;
}
.main-wrap h2::before, .js-heading::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 70%;
  background: linear-gradient(180deg, var(--brand), rgba(139,92,246,0.3));
  border-radius: 4px;
}
.main-wrap h3 {
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  margin: 24px 0 12px;
}
.main-wrap p {
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 16px;
}
.main-wrap a { color: var(--brand); transition: color 0.2s; }
.main-wrap a:hover { color: #a78bfa; }
.main-wrap strong, .main-wrap b { color: #fff; font-weight: 700; }
.main-wrap ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.main-wrap ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  color: var(--text);
  line-height: 1.7;
}
.main-wrap ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 6px rgba(139,92,246,0.5);
}
.main-wrap ol {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  counter-reset: ol-counter;
}
.main-wrap ol li {
  position: relative;
  padding-left: 36px;
  margin-bottom: 12px;
  color: var(--text);
  line-height: 1.7;
  counter-increment: ol-counter;
}
.main-wrap ol li::before {
  content: counter(ol-counter);
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  background: var(--brand);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 8px rgba(139,92,246,0.4);
}
.main-wrap blockquote {
  position: relative;
  margin: 28px 0;
  padding: 24px 28px 24px 48px;
  background: linear-gradient(135deg, rgba(139,92,246,0.08), rgba(139,92,246,0.03));
  border-left: 4px solid var(--brand);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--text);
  font-style: italic;
  font-size: 16px;
  line-height: 1.75;
}
.main-wrap blockquote::before {
  content: '\201C';
  position: absolute;
  left: 12px;
  top: 8px;
  font-size: 52px;
  color: var(--brand);
  opacity: 0.5;
  font-style: normal;
  line-height: 1;
}
.main-wrap hr {
  border: 0;
  margin: 36px 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand), transparent);
  opacity: 0.4;
}
.main-wrap figure { margin: 18px 0; }
.main-wrap figcaption {
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  margin-top: 8px;
}
.main-wrap table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  border-radius: var(--radius);
  overflow: hidden;
}
.main-wrap thead th {
  background: linear-gradient(135deg, rgba(139,92,246,0.3), rgba(139,92,246,0.15));
  color: #fff;
  font-weight: 700;
  padding: 14px 16px;
  text-align: left;
  font-size: 14px;
  letter-spacing: 0.3px;
}
.main-wrap tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.main-wrap tbody tr:nth-child(even) { background: rgba(255,255,255,0.02); }
.main-wrap tbody tr:hover { background: rgba(139,92,246,0.06); }
.main-wrap tbody td {
  padding: 12px 16px;
  color: var(--text);
  font-size: 14px;
  vertical-align: middle;
}
.href {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 20px 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.href dt, .href dd {
  padding: 12px 16px;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
}
.href dt {
  background: rgba(139,92,246,0.08);
  color: var(--muted);
  font-weight: 600;
}
.href dd {
  background: rgba(255,255,255,0.02);
  color: var(--text);
}
.href dt:last-of-type, .href dd:last-of-type { border-bottom: 0; }
.is-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 14px;
}
.is-grid > * { min-width: 0; max-width: 100%; overflow: hidden; }
.game-item {
  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;
  will-change: transform;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: var(--neu-shadow-out);
}
.game-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  border-color: var(--brand);
}
.game-item a { display: block; text-decoration: none; }
.game-item img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1;
  object-fit: cover;
  max-width: 100%;
}
.game-item figcaption {
  padding: 8px 12px;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.game-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 150px));
  justify-content: center;
  gap: 12px;
  margin: 20px 0;
}
.main-wrap .game-item {
  max-width: 150px;
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
}
.main-wrap .game-item img {
  width: 100%;
  height: auto;
  max-height: 190px;
  object-fit: cover;
  display: block;
}
.main-wrap .game-item figcaption {
  padding: 8px;
  font-size: 12px;
  color: #fff;
}
.ui-toc {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin: 0 0 32px;
  position: relative;
  box-shadow: var(--neu-shadow-out);
}
.ui-toc::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), rgba(139,92,246,0.3));
  border-radius: var(--radius) var(--radius) 0 0;
}
.has-toc-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.has-toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.has-toc-list li { margin: 0; padding: 0; }
.has-toc-list li::before { display: none; }
.has-toc-list a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-size: 14px;
  padding: 6px 10px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  text-decoration: none;
}
.has-toc-list a::before {
  content: '›';
  color: var(--brand);
  font-size: 16px;
  font-weight: 700;
}
.has-toc-list a:hover {
  color: var(--brand);
  background: rgba(139,92,246,0.07);
}
.el-game-thumb {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  margin: 0 0 32px;
  box-shadow: var(--neu-shadow-out);
}
.cote-first {
  position: relative;
  background: linear-gradient(135deg, rgba(139,92,246,0.07), rgba(11,14,20,0.9));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  margin: 0 0 32px;
  overflow: hidden;
}
.cote-first::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139,92,246,0.12), transparent 70%);
  pointer-events: none;
}
.el-bonuses {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  margin: 0 0 32px;
  box-shadow: var(--neu-shadow-out);
}
.western-lg {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  margin: 0 0 32px;
  box-shadow: var(--neu-shadow-out);
}
.ui-rtp {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  margin: 0 0 32px;
  box-shadow: var(--neu-shadow-out);
}
.ui-clone {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  margin: 0 0 32px;
  box-shadow: var(--neu-shadow-out);
}
.js-pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 0 0 32px;
}
.js-pros {
  background: linear-gradient(135deg, rgba(16,185,129,0.1), rgba(16,185,129,0.04));
  border: 1px solid rgba(16,185,129,0.25);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--neu-shadow-out);
}
.js-pros h3, .js-pros .js-heading {
  color: #10b981;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  padding-left: 0;
}
.js-pros h3::before, .js-pros .js-heading::before { display: none; }
.js-pros ul li::before {
  content: '✓';
  background: none;
  box-shadow: none;
  width: auto;
  height: auto;
  border-radius: 0;
  top: 2px;
  color: #10b981;
  font-weight: 700;
  font-size: 13px;
}
.is-cons {
  background: linear-gradient(135deg, rgba(239,68,68,0.1), rgba(239,68,68,0.04));
  border: 1px solid rgba(239,68,68,0.25);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--neu-shadow-out);
}
.is-cons h3, .is-cons .js-heading {
  color: #ef4444;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  padding-left: 0;
}
.is-cons h3::before, .is-cons .js-heading::before { display: none; }
.is-cons ul li::before {
  content: '✕';
  background: none;
  box-shadow: none;
  width: auto;
  height: auto;
  border-radius: 0;
  top: 2px;
  color: #ef4444;
  font-weight: 700;
  font-size: 13px;
}
.western {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  margin: 0 0 32px;
  box-shadow: var(--neu-shadow-out);
}
.el-analysis {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  margin: 0 0 32px;
  box-shadow: var(--neu-shadow-out);
}
.game-thumb-faq {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  margin: 0 0 32px;
  box-shadow: var(--neu-shadow-out);
}
.acc-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
  background: rgba(255,255,255,0.02);
  transition: border-color 0.2s;
}
.acc-item:hover { border-color: rgba(139,92,246,0.3); }
.ui-question {
  cursor: pointer;
  background: var(--card-bg);
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  transition: background 0.2s;
}
.ui-question::after {
  content: '+';
  font-size: 20px;
  color: var(--brand);
  font-weight: 300;
  line-height: 1;
  flex-shrink: 0;
}
.ui-question:hover { background: rgba(139,92,246,0.07); }
.slash-answer {
  padding: 16px 20px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.7;
  border-top: 1px solid var(--border);
}
.js-joget {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
}
.js-joget thead th {
  background: linear-gradient(135deg, rgba(139,92,246,0.3), rgba(139,92,246,0.15));
  color: #fff;
  font-weight: 700;
  padding: 14px 16px;
  text-align: left;
  font-size: 14px;
}
.js-joget tbody tr { border-bottom: 1px solid var(--border); }
.js-joget tbody tr:nth-child(even) { background: rgba(255,255,255,0.02); }
.js-joget tbody tr:hover { background: rgba(139,92,246,0.06); }
.js-joget tbody td {
  padding: 12px 16px;
  color: var(--text);
  font-size: 14px;
}
.el-rtp-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
}
.el-rtp-table thead th {
  background: linear-gradient(135deg, rgba(139,92,246,0.3), rgba(139,92,246,0.15));
  color: #fff;
  font-weight: 700;
  padding: 14px 16px;
  text-align: left;
  font-size: 14px;
}
.el-rtp-table tbody tr {
@media(max-width:768px){.is-menu-links{display:none!important}.cote-brand img{height:32px!important;max-height:32px!important}}
.cote-footer{background:#0b0e14;color:#444444;padding:40px 5% 28px;text-align:center;border-top:1px solid #1e2530;margin-top:40px}.cote-footer a{color:#888888;text-decoration:none;margin:0 8px;line-height:2;transition:color .2s}.cote-footer a:hover{color:#8b5cf6}.js-copyright{opacity:.7;font-size:13px;margin-top:12px}
.is-disabled-md,.small-nav{display:flex;flex-wrap:wrap;justify-content:center;gap:10px 18px;margin:12px 0}.is-disabled-md a,.small-nav a{margin:0}
.game-list{display:grid!important;grid-template-columns:repeat(auto-fill,minmax(100px,140px))!important;justify-content:center;gap:16px;margin:24px 0}.game-list[data-columns="2"]{grid-template-columns:repeat(2,minmax(0,140px))!important}.game-list[data-columns="3"]{grid-template-columns:repeat(3,minmax(0,140px))!important}.game-list[data-columns="4"]{grid-template-columns:repeat(4,minmax(0,140px))!important}.game-list[data-columns="5"]{grid-template-columns:repeat(5,minmax(0,130px))!important}.game-item{max-width:140px!important;margin:0!important;text-align:center;overflow:hidden;border-radius:6px}.game-item img{width:100%!important;height:auto!important;max-width:140px!important;max-height:185px!important;object-fit:cover;display:block;margin:0!important;border-radius:0}.main-wrap .game-list>*{max-width:140px!important;margin:0!important;text-align:center;overflow:hidden;border-radius:6px}.main-wrap .game-list>* img{width:100%!important;height:auto!important;max-width:140px!important;max-height:185px!important;object-fit:cover;display:block;margin:0!important;border-radius:0}.main-wrap .game-list>* a{display:block;text-decoration:none;color:inherit}.game-list>*{max-width:140px!important;margin:0!important;text-align:center;overflow:hidden;border-radius:6px}.game-list>* img{width:100%!important;height:auto!important;max-width:140px!important;max-height:185px!important;object-fit:cover;display:block;margin:0!important;border-radius:0}.game-list>* a{display:block;text-decoration:none;color:inherit}
.games-grid,.game-list{display:grid!important;grid-template-columns:repeat(auto-fill,minmax(100px,140px))!important;justify-content:center;gap:16px;margin:24px 0}.games-grid>*,.game-list>*{max-width:140px!important;margin:0!important;text-align:center;overflow:hidden;border-radius:6px}.games-grid>* img,.game-list>* img{width:100%!important;height:auto!important;max-width:140px!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){.has-nav-buttons{margin-left:auto!important}}
body{overflow-x:hidden;width:100%;max-width:100%}.ht-gp{max-width:100vw;overflow:hidden}
/* Content widgets */
.bd-stat-highlight{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:4px;margin:1em 0;border-left:3px solid var(--brand);}
.bd-pull-quote{padding:20px 24px;background:transparent;border:none;border-radius:8px;margin:1em 0;}
.bd-compare-box{padding:12px 16px;background:rgba(0,0,0,0.02);border:2px solid var(--brand);border-radius:2px;margin:1em 0;border-left:3px solid var(--brand);}
.bd-side-note{padding:16px 20px;background:rgba(255,255,255,0.03);border:3px solid rgba(var(--brand-rgb,100,100,100),0.3);border-radius:12px;margin:1em 0;}
.bd-alert-box{padding:10px 14px;background:rgba(var(--brand-rgb,100,100,100),0.05);border:2px solid var(--brand);border-radius:0;margin:1em 0;border-left:3px solid var(--brand);}

.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}