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

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: "Inter", sans-serif;
  background: #dedede;
  color: #222;
  line-height: 1.7;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #1e9a08;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: #167306;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.3;
  font-weight: 700;
}
ul,
ol {
  list-style: none;
}
button {
  cursor: pointer;
  border: none;
  font-family: inherit;
}
input,
textarea,
select {
  font-family: inherit;
}

.xk92mb {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 18px;
}
.rv4j1p {
  width: 100%;
}
.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.site-main {
  flex: 1;
}

.bz7t3n {
  background: #242424;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}
.hdr-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 0 18px;
  height: 68px;
  max-width: 1180px;
  margin: 0 auto;
}
.hdr-logo a {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hdr-logo img {
  height: 44px;
  width: auto;
  border-radius: 6px;
}
.hdr-logo span {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.hdr-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  justify-content: center;
}
.hdr-nav a {
  color: #ccc;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 7px 12px;
  border-radius: 6px;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.hdr-nav a:hover,
.hdr-nav a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.09);
}
.hdr-nav svg {
  flex-shrink: 0;
}
.hdr-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.hdr-reviews-count {
  color: #aaa;
  font-size: 0.78rem;
  text-align: center;
  line-height: 1.2;
  white-space: nowrap;
}
.hdr-reviews-count strong {
  display: block;
  color: #d78f23;
  font-size: 1rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: all 0.2s;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  text-decoration: none;
}
.btn-primary {
  background: #d78f23;
  color: #fff;
}
.btn-primary:hover {
  background: #c27d18;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(215, 143, 35, 0.4);
}
.btn-secondary {
  background: #1e9a08;
  color: #fff;
}
.btn-secondary:hover {
  background: #187006;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(30, 154, 8, 0.35);
}
.btn-outline {
  background: transparent;
  color: #ccc;
  border: 1.5px solid #555;
}
.btn-outline:hover {
  border-color: #fff;
  color: #fff;
}
.btn-sm {
  padding: 7px 13px;
  font-size: 0.82rem;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 6px;
  border-radius: 5px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}
.burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.mobile-actions {
  display: none;
  align-items: center;
  gap: 7px;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: #242424;
  z-index: 99;
  padding: 16px 18px 24px;
  border-top: 1px solid #333;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}
.mobile-nav.open {
  display: block;
}
.mobile-nav a {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #ccc;
  padding: 11px 0;
  border-bottom: 1px solid #333;
  font-size: 0.92rem;
  font-weight: 500;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover {
  color: #fff;
}

.qw8r2s {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("/playban.webp");
  background-size: cover;
  background-position: center;
  filter: brightness(0.55);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(18, 18, 18, 0.75) 0%,
    rgba(30, 45, 20, 0.5) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 48px 18px;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 40px;
  align-items: center;
}
.hero-text h1 {
  color: #fff;
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 14px;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
.hero-text p {
  color: #e0e0e0;
  font-size: 1.05rem;
  margin-bottom: 26px;
  max-width: 540px;
  line-height: 1.7;
}
.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.casino-tile {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(4px);
}
.casino-tile img {
  width: 120px;
  height: auto;
  margin: 0 auto 12px;
  border-radius: 8px;
}
.casino-tile-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #242424;
  margin-bottom: 8px;
}
.casino-rating-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 10px;
}
.casino-rating-display .score {
  font-size: 2rem;
  font-weight: 800;
  color: #d78f23;
}
.stars-row {
  display: flex;
  gap: 3px;
}
.stars-row .star {
  color: #d78f23;
  font-size: 1.2rem;
}
.stars-row .star.empty {
  color: #ccc;
}
.tile-votes {
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 16px;
}
.tile-cta {
  display: block;
  width: 100%;
  text-align: center;
}

.section {
  padding: 56px 0;
}
.section-alt {
  background: #d4d4d4;
}
.section-title {
  font-size: 1.65rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: #1a1a1a;
}
.section-sub {
  color: #555;
  margin-bottom: 32px;
  font-size: 0.97rem;
}
.section-header {
  margin-bottom: 32px;
}

.lm5x9k {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  margin: 0 0 8px;
}
.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.pros-col,
.cons-col {
  border-radius: 12px;
  padding: 24px;
}
.pros-col {
  background: #f0fef0;
  border: 1.5px solid #b6e6b0;
}
.cons-col {
  background: #fff5f5;
  border: 1.5px solid #f5c0c0;
}
.pros-col h3 {
  color: #1a7e10;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.cons-col h3 {
  color: #c0392b;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.pros-col li,
.cons-col li {
  font-size: 0.92rem;
  color: #333;
  padding: 7px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}
.pros-col li:last-child,
.cons-col li:last-child {
  border-bottom: none;
}
.pros-col li::before {
  content: "✓";
  color: #1e9a08;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.cons-col li::before {
  content: "✗";
  color: #e74c3c;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.tp3n7v {
  background: linear-gradient(135deg, #d78f23 0%, #e8a535 100%);
  border-radius: 16px;
  padding: 28px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 4px 20px rgba(215, 143, 35, 0.35);
  margin-bottom: 40px;
}
.lrb-text h3 {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.lrb-text p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
}
.btn-light {
  background: #fff;
  color: #d78f23;
  font-weight: 700;
}
.btn-light:hover {
  background: #fffcf5;
  color: #c27d18;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.wc6a4d {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.review-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.08);
  border: 1.5px solid #eee;
  transition: box-shadow 0.2s;
}
.review-card:hover {
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.13);
}
.rc-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.rc-author {
  display: flex;
  align-items: center;
  gap: 13px;
}
.rc-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid #eee;
  flex-shrink: 0;
}
.rc-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.rc-name {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
}
.rc-country {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  color: #666;
}
.rc-country img {
  width: 18px;
  height: auto;
  border-radius: 2px;
}
.rc-date {
  font-size: 0.78rem;
  color: #999;
}
.rc-rating-block {
  text-align: right;
  flex-shrink: 0;
}
.rc-score-row {
  display: flex;
  align-items: center;
  gap: 7px;
  justify-content: flex-end;
  margin-bottom: 4px;
}
.rc-score {
  font-size: 1.5rem;
  font-weight: 800;
  color: #d78f23;
}
.rc-stars {
  display: flex;
  gap: 2px;
}
.rc-stars .s {
  font-size: 1rem;
  color: #d78f23;
}
.rc-stars .s.e {
  color: #ddd;
}
.rc-rating-btn {
  font-size: 0.75rem;
  color: #1e9a08;
  background: none;
  border: none;
  text-decoration: underline;
  cursor: pointer;
  padding: 2px 0;
  font-family: inherit;
}
.rc-rating-details {
  display: none;
  background: #f9f9f9;
  border-radius: 10px;
  padding: 14px;
  margin-top: 10px;
  margin-bottom: 12px;
  border: 1px solid #eee;
}
.rc-rating-details.open {
  display: block;
}
.rd-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  padding: 4px 0;
}
.rd-label {
  color: #555;
}
.rd-val {
  font-weight: 600;
  color: #d78f23;
}
.rc-source {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: #888;
  margin-bottom: 12px;
  padding: 6px 10px;
  background: #f5f5f5;
  border-radius: 7px;
  width: fit-content;
}
.rc-source a {
  color: #1e9a08;
  text-decoration: underline;
}
.rc-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
}
.rc-body {
  position: relative;
  margin-bottom: 14px;
}
.rc-text {
  font-size: 0.93rem;
  color: #444;
  line-height: 1.75;
}
.rc-text.collapsed p::after {
  content: "";
  display: block;
}
input.rc-toggle {
  display: none;
}
.rc-text-wrap {
  overflow: hidden;
  max-height: 78px;
  transition: max-height 0.4s ease;
}
input.rc-toggle:checked ~ .rc-text-wrap {
  max-height: none;
}
.rc-expand-label {
  font-size: 0.82rem;
  color: #1e9a08;
  cursor: pointer;
  text-decoration: underline;
  display: inline-block;
  margin-top: 4px;
  font-weight: 500;
}
input.rc-toggle:checked ~ .rc-expand-label::before {
  content: "Show less";
}
.rc-expand-label::before {
  content: "Read full review";
}
.rc-pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}
.rc-pros,
.rc-cons {
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 0.85rem;
}
.rc-pros {
  background: #f0fef0;
  border: 1px solid #c3efc3;
}
.rc-cons {
  background: #fff5f5;
  border: 1px solid #f5c8c8;
}
.rc-pros h5,
.rc-cons h5 {
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 7px;
}
.rc-pros h5 {
  color: #1a7e10;
}
.rc-cons h5 {
  color: #c0392b;
}
.rc-pros li,
.rc-cons li {
  padding: 3px 0;
  display: flex;
  align-items: flex-start;
  gap: 5px;
  line-height: 1.45;
  color: #333;
}
.rc-pros li::before {
  content: "✓";
  color: #1e9a08;
  font-weight: 700;
  flex-shrink: 0;
}
.rc-cons li::before {
  content: "✗";
  color: #e74c3c;
  font-weight: 700;
  flex-shrink: 0;
}
.rc-media {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.rc-media img {
  width: 90px;
  height: 68px;
  object-fit: cover;
  border-radius: 7px;
  border: 1.5px solid #eee;
  cursor: pointer;
  transition: transform 0.2s;
}
.rc-media img:hover {
  transform: scale(1.05);
}
.rc-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid #f0f0f0;
  flex-wrap: wrap;
  gap: 10px;
}
.rc-votes {
  display: flex;
  gap: 10px;
}
.vote-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 14px;
  border-radius: 8px;
  font-size: 0.83rem;
  font-weight: 600;
  background: #f5f5f5;
  color: #555;
  border: 1.5px solid #e0e0e0;
  transition: all 0.2s;
}
.vote-btn:hover {
  border-color: #1e9a08;
  color: #1e9a08;
}
.vote-btn.dislike-btn:hover {
  border-color: #e74c3c;
  color: #e74c3c;
}
.vote-btn.voted-like {
  background: #f0fef0;
  border-color: #1e9a08;
  color: #1e9a08;
}
.vote-btn.voted-dislike {
  background: #fff5f5;
  border-color: #e74c3c;
  color: #e74c3c;
}
.reply-toggle-btn {
  padding: 7px 14px;
  border-radius: 8px;
  font-size: 0.83rem;
  font-weight: 600;
  background: transparent;
  border: 1.5px solid #d78f23;
  color: #d78f23;
  transition: all 0.2s;
}
.reply-toggle-btn:hover {
  background: #d78f23;
  color: #fff;
}
.rc-reply-form {
  display: none;
  margin-top: 16px;
  padding: 16px;
  background: #f9f9f9;
  border-radius: 10px;
  border: 1px solid #eee;
}
.rc-reply-form.open {
  display: block;
}
.rc-reply-form textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  font-size: 0.88rem;
  color: #333;
  resize: vertical;
  min-height: 80px;
  transition: border 0.2s;
  line-height: 1.6;
}
.rc-reply-form textarea:focus {
  outline: none;
  border-color: #1e9a08;
}
.rf-actions {
  display: flex;
  gap: 9px;
  margin-top: 10px;
}
.btn-cancel {
  background: #f0f0f0;
  color: #666;
  padding: 8px 14px;
  border-radius: 7px;
  font-size: 0.83rem;
  font-weight: 600;
  border: 1.5px solid #ddd;
  transition: all 0.2s;
}
.btn-cancel:hover {
  background: #e0e0e0;
}

.rf-block {
  background: #fff;
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.08);
  max-width: 700px;
}
.form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #333;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #ddd;
  border-radius: 9px;
  font-size: 0.92rem;
  color: #222;
  background: #fafafa;
  transition: border 0.2s;
  line-height: 1.6;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #1e9a08;
  background: #fff;
}
.form-group textarea {
  min-height: 120px;
  resize: vertical;
}
.star-rating-input {
  display: flex;
  flex-direction: row-reverse;
  gap: 4px;
  font-size: 1.8rem;
}
.star-rating-input input {
  display: none;
}
.star-rating-input label {
  color: #ddd;
  cursor: pointer;
  transition: color 0.2s;
}
.star-rating-input input:checked ~ label,
.star-rating-input label:hover,
.star-rating-input label:hover ~ label {
  color: #d78f23;
}

.nh1e8f {
  margin-top: 40px;
}
.faq-item {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 10px;
  border: 1.5px solid #eee;
  overflow: hidden;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  cursor: pointer;
  user-select: none;
  gap: 12px;
}
.faq-question h3 {
  font-size: 0.97rem;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.45;
}
.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  font-size: 1rem;
  color: #555;
}
.faq-item.open .faq-icon {
  background: #1e9a08;
  color: #fff;
  transform: rotate(45deg);
}
.faq-answer {
  display: none;
  padding: 0 22px 18px;
  font-size: 0.92rem;
  color: #444;
  line-height: 1.75;
}
.faq-item.open .faq-answer {
  display: block;
}
.faq-answer p {
  margin-bottom: 8px;
}
.faq-answer p:last-child {
  margin-bottom: 0;
}
.faq-answer a {
  color: #1e9a08;
  text-decoration: underline;
}

.jg4r5b {
}
.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.screenshot-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  position: relative;
  aspect-ratio: 16/9;
}
.screenshot-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.screenshot-item:hover img {
  transform: scale(1.05);
}
.screenshot-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: #fff;
  font-size: 0.8rem;
  padding: 20px 12px 10px;
  font-weight: 500;
}
.screenshots-slider {
  display: none;
}

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 999;
  align-items: center;
  justify-content: center;
}
.lightbox.open {
  display: flex;
}
.lb-img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 10px;
}
.lb-close {
  position: absolute;
  top: 20px;
  right: 24px;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  background: none;
  border: none;
}

.content-review-block {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.08);
  line-height: 1.85;
}
.content-review-block h2 {
  font-size: 1.55rem;
  font-weight: 800;
  color: #1a1a1a;
  margin: 28px 0 12px;
}
.content-review-block h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #242424;
  margin: 22px 0 10px;
}
.content-review-block h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #333;
  margin: 18px 0 8px;
}
.content-review-block p {
  color: #444;
  font-size: 0.95rem;
  margin-bottom: 14px;
}
.content-review-block ul,
.content-review-block ol {
  margin: 0 0 14px 18px;
  color: #444;
  font-size: 0.95rem;
}
.content-review-block ul {
  list-style: disc;
}
.content-review-block ol {
  list-style: decimal;
}
.content-review-block li {
  padding: 4px 0;
  line-height: 1.65;
}
.content-review-block table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 0.9rem;
}
.content-review-block table th,
.content-review-block table td {
  text-align: left;
  padding: 10px 14px;
  border: 1.5px solid #ddd;
}
.content-review-block table th {
  background: #242424;
  color: #fff;
  font-weight: 600;
}
.content-review-block table tr:nth-child(even) {
  background: #f7f7f7;
}
.content-review-block a {
  color: #1e9a08;
  text-decoration: underline;
}
.content-review-block a:hover {
  color: #167306;
}
.content-review-block blockquote {
  border-left: 4px solid #d78f23;
  padding: 12px 20px;
  background: #fffcf5;
  border-radius: 0 8px 8px 0;
  margin: 16px 0;
  font-style: italic;
  color: #555;
}
.content-review-block strong {
  color: #222;
  font-weight: 700;
}
.content-review-block em {
  font-style: italic;
}

.author-block {
  background: #fff;
  border-radius: 14px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
  border: 1.5px solid #eee;
  margin-top: 28px;
}
.author-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #d78f23;
  flex-shrink: 0;
}
.author-info h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 3px;
}
.author-info .author-title {
  font-size: 0.82rem;
  color: #888;
  margin-bottom: 6px;
}
.author-info p {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.6;
}
.author-info a {
  color: #1e9a08;
  font-size: 0.82rem;
  margin-right: 10px;
}

.sources-block {
  background: #fff;
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
}
.sources-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
  margin-top: 16px;
}
.source-item {
  padding: 12px 16px;
  border: 1.5px solid #e8e8e8;
  border-radius: 9px;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 9px;
  transition: border 0.2s;
  background: #fafafa;
}
.source-item:hover {
  border-color: #1e9a08;
}
.source-item .si-icon {
  font-size: 1.1rem;
}
.source-item a {
  color: #1e9a08;
  font-weight: 500;
}
.source-item span {
  color: #777;
  font-size: 0.78rem;
  display: block;
}

.dk2v9c {
  background: #242424;
  color: #bbb;
  padding: 52px 0 0;
  margin-top: 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 220px 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 36px;
  border-bottom: 1px solid #333;
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 18px;
  padding-right: 18px;
}
.ft-brand .ft-logo {
  margin-bottom: 14px;
}
.ft-logo img {
  height: 44px;
  border-radius: 7px;
}
.ft-brand p {
  font-size: 0.82rem;
  color: #888;
  line-height: 1.7;
  margin-bottom: 14px;
}
.ft-brand .ft-email {
  font-size: 0.85rem;
  color: #bbb;
  display: flex;
  align-items: center;
  gap: 6px;
}
.ft-brand .ft-email a {
  color: #1e9a08;
}
.ft-col h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}
.ft-col ul li {
  margin-bottom: 6px;
}
.ft-col ul li a {
  font-size: 0.85rem;
  color: #888;
  transition: color 0.2s;
}
.ft-col ul li a:hover {
  color: #fff;
}
.ft-payments {
  margin-top: 16px;
}
.ft-payments h5 {
  font-size: 0.82rem;
  color: #777;
  font-weight: 600;
  margin-bottom: 9px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.payment-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.payment-logo {
  background: #333;
  border-radius: 5px;
  padding: 5px 9px;
  font-size: 0.75rem;
  color: #bbb;
  font-weight: 600;
  white-space: nowrap;
  border: 1px solid #444;
}
.footer-mid {
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid #333;
}
.trust-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.trust-badge {
  background: #2e2e2e;
  border-radius: 7px;
  padding: 6px 12px;
  font-size: 0.75rem;
  color: #aaa;
  border: 1px solid #3a3a3a;
  display: flex;
  align-items: center;
  gap: 5px;
}
.social-links {
  display: flex;
  gap: 10px;
  margin-left: auto;
}
.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  transition: all 0.2s;
  border: 1px solid #444;
}
.social-link:hover {
  background: #1e9a08;
  color: #fff;
  border-color: #1e9a08;
}
.footer-bottom {
  max-width: 1180px;
  margin: 0 auto;
  padding: 22px 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}
.ft-copyright {
  font-size: 0.78rem;
  color: #666;
  line-height: 1.6;
}
.ft-copyright a {
  color: #888;
}
.ft-legal {
  font-size: 0.75rem;
  color: #555;
  line-height: 1.7;
  flex: 1;
}
.ft-flag {
  margin-left: auto;
  font-size: 1.5rem;
}
.ft-license {
  font-size: 0.78rem;
  color: #666;
  display: flex;
  align-items: center;
  gap: 6px;
}
.ft-license a {
  color: #888;
}
.ft-providers {
  font-size: 0.78rem;
  color: #666;
  margin-top: 4px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
}
.badge-green {
  background: #e7fde5;
  color: #1a7e10;
  border: 1px solid #b6e6b0;
}
.badge-orange {
  background: #fff3e0;
  color: #d78f23;
  border: 1px solid #f5d190;
}
.badge-red {
  background: #fff0f0;
  color: #c0392b;
  border: 1px solid #f5c0c0;
}
.aggregate-rating-bar {
  background: #fff;
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
  text-align: center;
  margin-bottom: 28px;
}
.arb-score {
  font-size: 3.5rem;
  font-weight: 800;
  color: #d78f23;
  line-height: 1;
}
.arb-stars {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin: 8px 0;
  font-size: 1.5rem;
  color: #d78f23;
}
.arb-count {
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 12px;
}
.arb-bars {
  display: flex;
  flex-direction: column;
  gap: 7px;
  text-align: left;
}
.arb-bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: #555;
}
.arb-bar-wrap {
  flex: 1;
  height: 8px;
  background: #eee;
  border-radius: 4px;
  overflow: hidden;
}
.arb-bar-fill {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, #d78f23, #e8a535);
  transition: width 0.6s ease;
}
.arb-bar-label {
  width: 32px;
  text-align: right;
  font-weight: 600;
  color: #d78f23;
}

.page-hero {
  background: linear-gradient(135deg, #242424 0%, #333 100%);
  padding: 52px 18px;
  text-align: center;
}
.page-hero h1 {
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.page-hero p {
  color: #aaa;
  font-size: 1rem;
}

.breadcrumb {
  padding: 12px 0;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.83rem;
  color: #888;
  flex-wrap: wrap;
}
.breadcrumb a {
  color: #1e9a08;
}
.breadcrumb span {
  color: #aaa;
}

.info-content {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.08);
  line-height: 1.85;
}
.info-content h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 24px 0 10px;
}
.info-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #333;
  margin: 18px 0 8px;
}
.info-content p {
  color: #444;
  font-size: 0.95rem;
  margin-bottom: 12px;
}
.info-content ul {
  margin: 0 0 12px 20px;
  list-style: disc;
  color: #444;
  font-size: 0.95rem;
}
.info-content li {
  padding: 3px 0;
  line-height: 1.65;
}
.info-content a {
  color: #1e9a08;
  text-decoration: underline;
}
.info-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 0.9rem;
}
.info-content table th,
.info-content table td {
  text-align: left;
  padding: 10px 14px;
  border: 1.5px solid #ddd;
}
.info-content table th {
  background: #242424;
  color: #fff;
}
.info-content table tr:nth-child(even) {
  background: #f7f7f7;
}

.xhq7z2-unused {
  display: none;
  opacity: 0;
  color: transparent;
}
.rp9m3k-unused::before {
  content: "";
  display: none;
}
.vb4n8j-unused {
  visibility: hidden;
  pointer-events: none;
}
.wm2t5r-unused {
  position: absolute;
  left: -9999px;
  top: -9999px;
}
.lk8q1v-unused {
  text-indent: -9999px;
}

.wp-block-image,
.wp-block-paragraph,
.entry-content,
.page-content {
  all: unset;
}
.site-header,
.site-footer,
.elementor-section,
.elementor-widget {
  all: unset;
  display: contents;
}
.menu-item a,
.sub-menu {
  all: unset;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.04);
  }
}
.fade-in-up {
  animation: fadeInUp 0.55s ease forwards;
}
.fade-in {
  animation: fadeIn 0.4s ease forwards;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 640px) {
  .screenshots-grid {
    display: none;
  }
  .screenshots-slider {
    display: block;
    overflow-x: auto;
    display: flex;
    gap: 14px;
    padding-bottom: 14px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .screenshots-slider::-webkit-scrollbar {
    height: 5px;
  }
  .screenshots-slider::-webkit-scrollbar-thumb {
    background: #bbb;
    border-radius: 3px;
  }
  .sl-item {
    min-width: 260px;
    border-radius: 12px;
    overflow: hidden;
    scroll-snap-align: start;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
  }
  .sl-item img {
    width: 100%;
    height: 160px;
    object-fit: cover;
  }
}

@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .casino-tile {
    max-width: 340px;
    margin: 0 auto;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .hdr-nav {
    display: none;
  }
  .burger {
    display: flex;
  }
  .mobile-actions {
    display: flex;
  }
  .hdr-actions .btn:not(.btn-sm) {
    display: none;
  }
  .hdr-reviews-count {
    display: none;
  }
  .hero-text h1 {
    font-size: 1.75rem;
  }
  .pros-cons-grid {
    grid-template-columns: 1fr;
  }
  .tp3n7v {
    flex-direction: column;
    text-align: center;
    padding: 22px 24px;
  }
  .rc-pros-cons {
    grid-template-columns: 1fr;
  }
  .screenshots-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .footer-mid {
    flex-direction: column;
    align-items: flex-start;
  }
  .social-links {
    margin-left: 0;
  }
  .section-title {
    font-size: 1.35rem;
  }
  .section {
    padding: 38px 0;
  }
}

@media (max-width: 480px) {
  .hdr-inner {
    grid-template-columns: auto auto auto;
  }
  .hero-btns {
    flex-direction: column;
  }
  .screenshots-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .rf-block {
    padding: 22px 18px;
  }
  .lm5x9k {
    padding: 20px 16px;
  }
  .rc-header {
    flex-direction: column;
  }
  .rc-rating-block {
    text-align: left;
  }
  .rc-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .content-review-block {
    padding: 22px 16px;
  }
  .info-content {
    padding: 24px 18px;
  }
  .info-content table {
    overflow-x: auto;
    display: block;
  }
  .content-review-block table {
    overflow-x: auto;
    display: block;
  }
}


.hdr-logo img,
.ft-logo img,
.hero-card-logo img,
img[src*="playlogo"] {
  filter: brightness(0) invert(1) !important;
}

@media (max-width: 900px) {
  .hdr {
    min-height: 76px !important;
  }

  .hdr-inner {
    height: 76px !important;
    min-height: 76px !important;
    padding: 0 16px !important;
    gap: 10px !important;
  }

  .hdr-logo {
    flex: 0 0 auto !important;
    min-width: 0 !important;
  }

  .hdr-logo a {
    display: flex !important;
    align-items: center !important;
  }

  .hdr-logo img {
    width: auto !important;
    height: 48px !important;
    max-width: 150px !important;
    object-fit: contain !important;
  }

  .hdr-actions {
    margin-left: auto !important;
    gap: 8px !important;
    flex-wrap: nowrap !important;
  }

  .hdr-actions > a.btn-secondary {
    display: none !important;
  }

  .hdr-actions > a.btn-primary:nth-of-type(3) {
    display: none !important;
  }

  .hdr-actions > a.btn-primary:nth-of-type(2) {
    display: inline-flex !important;
    min-height: 42px !important;
    padding: 9px 14px !important;
    font-size: .86rem !important;
  }

  .burger {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    padding: 9px !important;
  }

  .mobile-nav {
    top: 76px !important;
    height: calc(100dvh - 76px) !important;
  }
}

@media (max-width: 430px) {
  .hdr-inner {
    padding: 0 12px !important;
  }

  .hdr-logo img {
    height: 44px !important;
    max-width: 125px !important;
  }

  .hdr-actions > a.btn-primary:nth-of-type(2) {
    padding: 8px 11px !important;
    font-size: .8rem !important;
  }
}

.ft-logo img {
  width: auto !important;
  height: 52px !important;
  max-width: 180px !important;
  object-fit: contain !important;
}
