:root {
  --c-bg: #181818;
  --c-header: #111013;
  --c-red: #ff0305;
  --c-blue: #5470fa;
  --c-text: #e8e8ec;
  --c-text-muted: #9a9aab;
  --c-border: #2a2a38;
  --c-card: #1e1e2a;
  --c-card2: #232333;
  --c-gold: #f5c842;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
  --trans: 0.22s ease;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  background: var(--c-bg);
  color: var(--c-text);
  font-family: "Nunito", sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a {
  color: var(--c-blue);
  text-decoration: none;
  transition: color var(--trans);
}
a:hover {
  color: var(--c-red);
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

.x9k2-wrap {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
.x9k2-flex {
  display: flex;
  align-items: center;
}
.x9k2-gap {
  gap: 16px;
}
.x9k2-col {
  flex-direction: column;
}
.x9k2-between {
  justify-content: space-between;
}
.x9k2-center {
  justify-content: center;
  text-align: center;
}
.x9k2-hidden {
  display: none !important;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--c-blue);
  color: #fff;
  padding: 11px 24px;
  border-radius: var(--r-sm);
  font-weight: 700;
  font-size: 0.95rem;
  transition:
    background var(--trans),
    transform var(--trans),
    box-shadow var(--trans);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary:hover {
  background: #3d5ce0;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(84, 112, 250, 0.45);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--c-red);
  color: #fff;
  padding: 11px 24px;
  border-radius: var(--r-sm);
  font-weight: 700;
  font-size: 0.95rem;
  transition:
    background var(--trans),
    transform var(--trans);
  text-decoration: none;
  white-space: nowrap;
}
.btn-secondary:hover {
  background: #cc0204;
  color: #fff;
  transform: translateY(-2px);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 2px solid var(--c-blue);
  color: var(--c-blue);
  padding: 9px 20px;
  border-radius: var(--r-sm);
  font-weight: 700;
  font-size: 0.9rem;
  transition: all var(--trans);
  text-decoration: none;
  white-space: nowrap;
}
.btn-outline:hover {
  background: var(--c-blue);
  color: #fff;
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--c-border);
  color: var(--c-text);
  padding: 8px 18px;
  border-radius: var(--r-sm);
  font-weight: 600;
  font-size: 0.88rem;
  transition: all var(--trans);
}
.btn-ghost:hover {
  border-color: var(--c-blue);
  color: var(--c-blue);
}

.q7r3-header {
  background: var(--c-header);
  position: sticky;
  top: 0;
  z-index: 900;
  border-bottom: 1px solid #1f1f2e;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}
.q7r3-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: 1240px;
  margin: 0 auto;
  gap: 16px;
}
.q7r3-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.q7r3-logo img {
  height: 40px;
  width: auto;
  border-radius: 6px;
}
.q7r3-logo-text {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.3px;
}
.q7r3-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.q7r3-nav a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--c-text-muted);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: var(--r-sm);
  transition: all var(--trans);
}
.q7r3-nav a:hover,
.q7r3-nav a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}
.q7r3-nav svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}
.q7r3-review-count {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--c-text-muted);
  font-size: 0.8rem;
  white-space: nowrap;
}
.q7r3-review-count strong {
  color: var(--c-gold);
}
.q7r3-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.q7r3-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
  border-radius: 6px;
  transition: background var(--trans);
}
.q7r3-burger:hover {
  background: rgba(255, 255, 255, 0.08);
}
.q7r3-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}
.q7r3-burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.q7r3-burger.open span:nth-child(2) {
  opacity: 0;
}
.q7r3-burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.q7r3-mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--c-header);
  border-top: 1px solid #1f1f2e;
  padding: 16px 20px;
  gap: 6px;
}
.q7r3-mobile-nav.open {
  display: flex;
}
.q7r3-mobile-nav a {
  color: var(--c-text-muted);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 10px 12px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all var(--trans);
}
.q7r3-mobile-nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}
.q7r3-mobile-btns-row {
  display: flex;
  gap: 8px;
  margin-bottom: 4px;
}

.p4m1-hero {
  position: relative;
  background: linear-gradient(135deg, #0a0a14 0%, #111028 50%, #0d0d1e 100%);
  padding: 60px 20px 70px;
  overflow: hidden;
  min-height: 520px;
}
.p4m1-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("/miban.jpeg");
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}
.p4m1-hero-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  gap: 32px;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}
.p4m1-casino-tile {
  background: linear-gradient(145deg, #1e1e2e, #252540);
  border: 1px solid #3a3a5c;
  border-radius: var(--r-lg);
  padding: 28px;
  flex: 0 0 360px;
  max-width: 360px;
  box-shadow: var(--shadow);
}
.p4m1-casino-logo {
  width: 120px;
  height: 60px;
  object-fit: contain;
  border-radius: 8px;
  margin-bottom: 18px;
  background: #0d0d20;
  padding: 8px;
}
.p4m1-casino-name {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}
.p4m1-stars-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.p4m1-stars {
  display: flex;
  gap: 2px;
}
.p4m1-star {
  font-size: 1.2rem;
  color: #333;
}
.p4m1-star.filled {
  color: var(--c-gold);
}
.p4m1-star.half {
  position: relative;
  color: #333;
}
.p4m1-star.half::before {
  content: "★";
  position: absolute;
  left: 0;
  color: var(--c-gold);
  width: 50%;
  overflow: hidden;
}
.p4m1-rating-val {
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-gold);
}
.p4m1-bonus-badge {
  background: linear-gradient(135deg, #1a2a50, #1e3060);
  border: 1px solid #3a5090;
  border-radius: var(--r-sm);
  padding: 14px 18px;
  margin-bottom: 18px;
}
.p4m1-bonus-badge .p4m1-bonus-label {
  font-size: 0.75rem;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 4px;
}
.p4m1-bonus-badge .p4m1-bonus-val {
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
}
.p4m1-tile-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.p4m1-tile-btns a {
  width: 100%;
  justify-content: center;
}

.p4m1-ratings-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.p4m1-score-dist {
  background: rgba(30, 30, 50, 0.7);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 22px;
}
.p4m1-score-dist h3 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--c-text-muted);
  margin-bottom: 16px;
}
.p4m1-dist-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.p4m1-dist-label {
  font-size: 0.8rem;
  color: var(--c-text-muted);
  width: 40px;
  flex-shrink: 0;
}
.p4m1-dist-bar-wrap {
  flex: 1;
  height: 8px;
  background: #2a2a3a;
  border-radius: 4px;
  overflow: hidden;
}
.p4m1-dist-bar {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--c-blue), #7090ff);
  transition: width 0.8s ease;
}
.p4m1-dist-count {
  font-size: 0.78rem;
  color: var(--c-text-muted);
  width: 24px;
  text-align: right;
  flex-shrink: 0;
}
.p4m1-aggregate {
  background: rgba(30, 30, 50, 0.7);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 22px;
  text-align: center;
}
.p4m1-aggregate .p4m1-big-score {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--c-gold);
  line-height: 1;
}
.p4m1-aggregate .p4m1-out-of {
  font-size: 0.9rem;
  color: var(--c-text-muted);
  margin-top: 4px;
}
.p4m1-params-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.p4m1-param-tile {
  background: rgba(30, 30, 50, 0.7);
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  padding: 12px 14px;
}
.p4m1-param-tile .p4m1-param-name {
  font-size: 0.75rem;
  color: var(--c-text-muted);
  margin-bottom: 6px;
}
.p4m1-param-tile .p4m1-param-stars {
  display: flex;
  gap: 2px;
  font-size: 0.9rem;
}

.m2n8-section {
  padding: 56px 0;
}
.m2n8-section-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
.m2n8-section-sub {
  font-size: 1rem;
  color: var(--c-text-muted);
  margin-bottom: 36px;
}
.m2n8-divider {
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--c-blue), var(--c-red));
  border-radius: 3px;
  margin-bottom: 28px;
}

.k5t2-bonuses {
  background: linear-gradient(180deg, #0f0f1e 0%, #181828 100%);
}
.k5t2-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.k5t2-tile {
  background: linear-gradient(145deg, #1e1e30, #22223a);
  border: 1px solid #3a3a5c;
  border-radius: var(--r-md);
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition:
    transform var(--trans),
    border-color var(--trans);
}
.k5t2-tile:hover {
  transform: translateY(-4px);
  border-color: #5470fa66;
}
.k5t2-tile::before {
  content: "";
  position: absolute;
  top: -30px;
  right: -30px;
  width: 100px;
  height: 100px;
  background: radial-gradient(
    circle,
    rgba(84, 112, 250, 0.12),
    transparent 70%
  );
  pointer-events: none;
}
.k5t2-bonus-num {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--c-blue);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.k5t2-bonus-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}
.k5t2-bonus-amount {
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--c-gold);
  margin-bottom: 10px;
}
.k5t2-bonus-desc {
  font-size: 0.85rem;
  color: var(--c-text-muted);
  margin-bottom: 6px;
  line-height: 1.5;
}
.k5t2-wager {
  font-size: 0.78rem;
  color: #7a7a90;
  margin-bottom: 18px;
}
.k5t2-wager strong {
  color: var(--c-text-muted);
}

.j8v4-banner {
  background: linear-gradient(135deg, #1a1a3a 0%, #0f1428 100%);
  border: 1px solid #3a3a60;
  border-radius: var(--r-md);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0 20px;
}
.j8v4-banner-text {
  font-size: 1.05rem;
  color: var(--c-text);
  max-width: 480px;
}
.j8v4-banner-text strong {
  color: #fff;
  display: block;
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.r3q6-reviews-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.r3q6-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 24px;
  position: relative;
  transition: border-color var(--trans);
}
.r3q6-card:hover {
  border-color: #3a3a5c;
}
.r3q6-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.r3q6-author-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.r3q6-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--c-border);
  background: #2a2a3a;
  flex-shrink: 0;
}
.r3q6-author-info .r3q6-nickname {
  font-weight: 700;
  color: #fff;
  font-size: 0.95rem;
}
.r3q6-author-info .r3q6-country {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  color: var(--c-text-muted);
  margin-top: 2px;
}
.r3q6-flag {
  width: 16px;
  height: 12px;
  object-fit: cover;
  border-radius: 2px;
}
.r3q6-date {
  font-size: 0.78rem;
  color: var(--c-text-muted);
}
.r3q6-rating-block {
  text-align: right;
}
.r3q6-stars {
  display: flex;
  gap: 2px;
  justify-content: flex-end;
  font-size: 1rem;
  margin-bottom: 4px;
}
.r3q6-star-f {
  color: var(--c-gold);
}
.r3q6-star-e {
  color: #333;
}
.r3q6-rating-toggle {
  font-size: 0.75rem;
  color: var(--c-blue);
  cursor: pointer;
  text-decoration: underline;
  border: none;
  background: none;
  padding: 0;
}
.r3q6-rating-toggle:hover {
  color: var(--c-red);
}
.r3q6-params-detail {
  background: #15151e;
  border-radius: var(--r-sm);
  padding: 12px 16px;
  margin-top: 10px;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.r3q6-params-detail.open {
  display: grid;
}
.r3q6-param-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
}
.r3q6-param-row span:first-child {
  color: var(--c-text-muted);
}
.r3q6-param-stars {
  display: flex;
  gap: 1px;
  font-size: 0.75rem;
}
.r3q6-review-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.r3q6-body {
  font-size: 0.9rem;
  color: var(--c-text);
  line-height: 1.7;
}
.r3q6-body-short {
  display: block;
}
.r3q6-body-full {
  display: none;
}
.r3q6-expand-btn {
  display: inline-block;
  color: var(--c-blue);
  font-size: 0.82rem;
  cursor: pointer;
  margin-top: 6px;
  border: none;
  background: none;
  padding: 0;
  font-family: inherit;
}
.r3q6-expand-btn:hover {
  color: var(--c-red);
}
.r3q6-pros-cons {
  display: flex;
  gap: 16px;
  margin: 16px 0;
  flex-wrap: wrap;
}
.r3q6-pros,
.r3q6-cons {
  flex: 1;
  min-width: 160px;
  background: #131320;
  border-radius: var(--r-sm);
  padding: 12px 14px;
}
.r3q6-pros h5,
.r3q6-cons h5 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.r3q6-pros h5 {
  color: #4caf7d;
}
.r3q6-cons h5 {
  color: var(--c-red);
}
.r3q6-pros li,
.r3q6-cons li {
  font-size: 0.82rem;
  color: var(--c-text-muted);
  margin-bottom: 4px;
  padding-left: 14px;
  position: relative;
}
.r3q6-pros li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4caf7d;
  font-size: 0.75rem;
}
.r3q6-cons li::before {
  content: "✗";
  position: absolute;
  left: 0;
  color: var(--c-red);
  font-size: 0.75rem;
}
.r3q6-media {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.r3q6-media-thumb {
  width: 80px;
  height: 56px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--c-border);
  cursor: pointer;
  transition: opacity var(--trans);
}
.r3q6-media-thumb:hover {
  opacity: 0.8;
}
.r3q6-source-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--c-text-muted);
  margin-bottom: 12px;
}
.r3q6-source-badge a {
  color: var(--c-blue);
  font-weight: 600;
}
.r3q6-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--c-border);
  flex-wrap: wrap;
  gap: 10px;
}
.r3q6-votes {
  display: flex;
  align-items: center;
  gap: 10px;
}
.r3q6-vote-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.83rem;
  color: var(--c-text-muted);
  padding: 6px 12px;
  border-radius: var(--r-sm);
  border: 1px solid var(--c-border);
  transition: all var(--trans);
}
.r3q6-vote-btn:hover {
  border-color: var(--c-blue);
  color: var(--c-blue);
}
.r3q6-vote-btn.liked {
  border-color: #4caf7d;
  color: #4caf7d;
}
.r3q6-vote-btn.disliked {
  border-color: var(--c-red);
  color: var(--c-red);
}
.r3q6-reply-toggle {
  font-size: 0.82rem;
  color: var(--c-blue);
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: color var(--trans);
}
.r3q6-reply-toggle:hover {
  color: var(--c-red);
}
.r3q6-reply-form {
  margin-top: 14px;
  display: none;
  flex-direction: column;
  gap: 10px;
}
.r3q6-reply-form.open {
  display: flex;
}
.r3q6-reply-form textarea {
  background: #131320;
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  color: var(--c-text);
  padding: 12px;
  font-size: 0.88rem;
  font-family: inherit;
  resize: vertical;
  min-height: 80px;
  transition: border-color var(--trans);
}
.r3q6-reply-form textarea:focus {
  outline: none;
  border-color: var(--c-blue);
}
.r3q6-reply-actions {
  display: flex;
  gap: 8px;
}

.f6x9-faq {
  background: linear-gradient(180deg, #141420 0%, #181828 100%);
}
.f6x9-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.f6x9-item {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  overflow: hidden;
  transition: border-color var(--trans);
}
.f6x9-item.open {
  border-color: #3a3a5c;
}
.f6x9-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  cursor: pointer;
  gap: 12px;
  transition: background var(--trans);
}
.f6x9-question:hover {
  background: rgba(255, 255, 255, 0.03);
}
.f6x9-question h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}
.f6x9-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border: 2px solid var(--c-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--trans);
}
.f6x9-item.open .f6x9-icon {
  border-color: var(--c-blue);
  background: var(--c-blue);
}
.f6x9-icon::before {
  content: "+";
  color: var(--c-text-muted);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
}
.f6x9-item.open .f6x9-icon::before {
  content: "−";
  color: #fff;
}
.f6x9-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.4s ease;
}
.f6x9-item.open .f6x9-answer {
  max-height: 600px;
}
.f6x9-answer-inner {
  padding: 0 22px 18px;
  font-size: 0.9rem;
  color: var(--c-text-muted);
  line-height: 1.7;
}

.v2p5-video {
  background: #0f0f1e;
}
.v2p5-iframe-wrap {
  position: relative;
  padding-top: 56.25%;
  border-radius: var(--r-md);
  border: 1px solid var(--c-border);
  max-width: 860px;
  margin: 0 auto;
}
.v2p5-iframe-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.c8h3-review-content {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 36px 40px;
  max-width: 860px;
  margin: 0 auto;
}
.c8h3-author-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: #131320;
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  padding: 18px;
  margin-bottom: 28px;
}
.c8h3-author-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.c8h3-author-info .c8h3-author-name {
  font-weight: 800;
  color: #fff;
  margin-bottom: 2px;
  font-size: 1rem;
}
.c8h3-author-info .c8h3-author-bio {
  font-size: 0.82rem;
  color: var(--c-text-muted);
  line-height: 1.5;
  margin-bottom: 6px;
}
.c8h3-author-info a {
  font-size: 0.8rem;
  color: var(--c-blue);
}
.c8h3-content-inner h2 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  margin: 24px 0 10px;
  line-height: 1.3;
}
.c8h3-content-inner h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #e0e0f0;
  margin: 20px 0 8px;
}
.c8h3-content-inner h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #c8c8e0;
  margin: 16px 0 6px;
}
.c8h3-content-inner p {
  margin-bottom: 14px;
  font-size: 0.93rem;
  color: var(--c-text);
  line-height: 1.75;
}
.c8h3-content-inner ul,
.c8h3-content-inner ol {
  margin: 0 0 14px 18px;
  font-size: 0.93rem;
  color: var(--c-text);
  line-height: 1.7;
}
.c8h3-content-inner ul {
  list-style: disc;
}
.c8h3-content-inner ol {
  list-style: decimal;
}
.c8h3-content-inner li {
  margin-bottom: 6px;
}
.c8h3-content-inner table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 18px;
  font-size: 0.88rem;
  border: 1px solid var(--c-border);
}
.c8h3-content-inner th {
  background: #1a1a2e;
  color: #fff;
  padding: 10px 14px;
  text-align: left;
  border: 1px solid var(--c-border);
  font-weight: 700;
}
.c8h3-content-inner td {
  padding: 9px 14px;
  text-align: left;
  border: 1px solid var(--c-border);
  color: var(--c-text);
}
.c8h3-content-inner tr:nth-child(even) td {
  background: #141420;
}
.c8h3-content-inner blockquote {
  border-left: 3px solid var(--c-blue);
  padding: 12px 18px;
  background: #13132a;
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  margin-bottom: 14px;
  color: var(--c-text-muted);
  font-style: italic;
}
.c8h3-content-inner a {
  color: var(--c-blue);
  text-decoration: underline;
}
.c8h3-content-inner strong {
  color: #fff;
}
.c8h3-content-inner em {
  color: var(--c-text-muted);
}
.c8h3-content-inner hr {
  border: none;
  border-top: 1px solid var(--c-border);
  margin: 20px 0;
}

.s9w1-sources {
  background: #131320;
}
.s9w1-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 12px;
}
.s9w1-item {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: border-color var(--trans);
}
.s9w1-item:hover {
  border-color: #3a3a5c;
}
.s9w1-item a {
  font-size: 0.88rem;
  color: var(--c-blue);
  font-weight: 600;
  text-decoration: none;
  word-break: break-all;
}
.s9w1-item a:hover {
  color: #fff;
}
.s9w1-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-blue);
  flex-shrink: 0;
}

.g3k7-footer {
  background: var(--c-header);
  border-top: 1px solid #1f1f2e;
  padding: 48px 0 24px;
}
.g3k7-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 36px;
}
.g3k7-footer-brand .g3k7-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  text-decoration: none;
}
.g3k7-footer-brand .g3k7-logo img {
  height: 38px;
  border-radius: 6px;
}
.g3k7-footer-brand .g3k7-logo-text {
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
}
.g3k7-footer-brand p {
  font-size: 0.83rem;
  color: var(--c-text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}
.g3k7-footer-brand .g3k7-email {
  color: var(--c-blue);
  font-size: 0.83rem;
}
.g3k7-col-title {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #fff;
  margin-bottom: 14px;
}
.g3k7-footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.g3k7-footer-nav a {
  font-size: 0.85rem;
  color: var(--c-text-muted);
  transition: color var(--trans);
}
.g3k7-footer-nav a:hover {
  color: #fff;
}
.g3k7-footer-divider {
  border: none;
  border-top: 1px solid #1f1f2e;
  margin: 28px 0;
}
.g3k7-logos-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 20px;
}
.g3k7-logo-badge {
  height: 26px;
  background: #1a1a28;
  border: 1px solid #2a2a3a;
  border-radius: 6px;
  padding: 3px 10px;
  display: flex;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--c-text-muted);
}
.g3k7-social-row {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}
.g3k7-social-btn {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: #1e1e2e;
  border: 1px solid #2a2a3a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--c-text-muted);
  transition: all var(--trans);
  text-decoration: none;
}
.g3k7-social-btn:hover {
  background: var(--c-blue);
  border-color: var(--c-blue);
  color: #fff;
}
.g3k7-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 20px;
}
.g3k7-trust-badge {
  height: 28px;
  background: #1a1a28;
  border: 1px solid #2a2a3a;
  border-radius: 6px;
  padding: 2px 10px;
  display: flex;
  align-items: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--c-text-muted);
}
.g3k7-legal {
  font-size: 0.75rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 14px;
}
.g3k7-copyright {
  font-size: 0.78rem;
  color: #444;
  text-align: center;
}

.fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

.info-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 20px;
}
.info-content h1 {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 24px;
}
.info-content h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #e0e0f0;
  margin: 28px 0 10px;
}
.info-content p {
  font-size: 0.95rem;
  color: var(--c-text);
  line-height: 1.75;
  margin-bottom: 14px;
}
.info-content ul {
  margin: 0 0 14px 20px;
  list-style: disc;
  font-size: 0.93rem;
  color: var(--c-text);
  line-height: 1.7;
}
.info-content li {
  margin-bottom: 6px;
}
.info-content a {
  color: var(--c-blue);
  text-decoration: underline;
}

.wp-block-paragraph {
  line-height: 1.7;
}
.entry-content {
  display: block;
}
.wp-block-heading {
  font-weight: 700;
}
.elementor-widget-wrap {
  display: flex;
  flex-direction: column;
}
.elementor-section {
  padding: 20px 0;
}
.site-footer {
  display: block;
}
.wp-site-blocks {
  display: block;
}
.screen-reader-text {
  position: absolute;
  left: -999em;
}
.skip-link {
  position: absolute;
  top: -999em;
}
.aligncenter {
  text-align: center;
  display: block;
  margin: 0 auto;
}
.alignleft {
  float: left;
  margin: 0 16px 16px 0;
}
.alignright {
  float: right;
  margin: 0 0 16px 16px;
}

@media (max-width: 1024px) {
  .g3k7-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .p4m1-hero-inner {
    flex-wrap: wrap;
  }
  .p4m1-casino-tile {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .q7r3-nav {
    display: none;
  }
  .q7r3-review-count {
    display: none;
  }
  .q7r3-header-actions .btn-primary,
  .q7r3-header-actions .btn-secondary {
    display: inline-flex;
  }
  .q7r3-burger {
    display: flex;
  }
  .p4m1-hero {
    padding: 40px 16px 50px;
  }
  .p4m1-params-grid {
    grid-template-columns: 1fr;
  }
  .k5t2-grid {
    grid-template-columns: 1fr;
  }
  .j8v4-banner {
    flex-direction: column;
    text-align: center;
    margin: 0 16px;
  }
  .r3q6-card-header {
    flex-direction: column;
  }
  .r3q6-rating-block {
    text-align: left;
  }
  .r3q6-params-detail {
    grid-template-columns: 1fr;
  }
  .g3k7-footer-grid {
    grid-template-columns: 1fr;
  }
  .c8h3-review-content {
    padding: 24px 20px;
  }
  .m2n8-section {
    padding: 40px 0;
  }
  .p4m1-casino-logo {
    width: 100px;
    height: 50px;
  }
  .q7r3-mobile-btns-row {
    flex-direction: column;
  }
}
@media (max-width: 480px) {
  .p4m1-params-grid {
    grid-template-columns: 1fr 1fr;
  }
  .r3q6-pros-cons {
    flex-direction: column;
  }
  .c8h3-content-inner table {
    display: block;
    overflow-x: auto;
  }
}

.info-page .info-content {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 36px 40px;
  max-width: 860px;
  margin: 0 auto;
  box-sizing: border-box;
}

.info-page .info-content h1,
.info-page .info-content h2,
.info-page .info-content h3,
.info-page .info-content h4,
.info-page .info-content strong {
  color: #fff;
}

.info-page .info-content p,
.info-page .info-content li,
.info-page .info-content td {
  color: var(--c-text);
}

.info-page .info-content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 18px;
  font-size: 0.88rem;
  border: 1px solid var(--c-border);
}

.info-page .info-content th {
  background: #1a1a2e;
  color: #fff;
  padding: 10px 14px;
  text-align: left;
  border: 1px solid var(--c-border);
}

.info-page .info-content td {
  padding: 9px 14px;
  text-align: left;
  border: 1px solid var(--c-border);
}

.info-page .info-content tr:nth-child(even) td {
  background: #141420;
}

.info-page .info-content blockquote {
  border-left: 3px solid var(--c-blue);
  padding: 12px 18px;
  background: #13132a;
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  margin-bottom: 14px;
  color: var(--c-text-muted);
}

@media (max-width: 768px) {
  .info-page .info-content {
    width: 100%;
    max-width: 100%;
    padding: 24px 20px;
  }

  .info-page .info-content table {
    display: block;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
