:root {
  --color-header: #fe87d7;
  --color-header-dark: #fd68ca;
  --color-btn-green: #73d245;
  --color-btn-green-hover: #5cb832;
  --color-btn-orange: #ff8603;
  --color-btn-orange-hover: #e07000;
  --color-bg: #07a3fe;
  --color-bg-dark: #0590e0;
  --color-text: #fff;
  --color-text-dark: #0d1b2a;
  --color-card-bg: rgba(255, 255, 255, 0.12);
  --color-card-border: rgba(255, 255, 255, 0.22);
  --color-card-bg-solid: #fff;
  --color-card-text: #0d1b2a;
  --color-accent: #ffe600;
  --color-footer-bg: #fe87d7;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(7, 163, 254, 0.18);
  --shadow-card: 0 2px 16px rgba(0, 0, 0, 0.13);
  --font: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  background: #07a3fe;
}
body {
  font-family: var(--font);
  background: var(--color-bg);
  color: var(--color-text);
  min-height: 100vh;
  line-height: 1.55;
  overflow-x: hidden;
}
a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: #fff;
}
img {
  max-width: 100%;
  display: block;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.22;
  font-weight: 700;
}
.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 18px;
}
.box {
  border-radius: var(--radius);
  padding: 18px 0;
}

.site-header {
  background: var(--color-header);
  box-shadow: 0 2px 18px rgba(254, 135, 215, 0.25);
  position: sticky;
  top: 0;
  z-index: 999;
  width: 100%;
}
.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  max-width: 1240px;
  margin: 0 auto;
}
.header-logo img {
  height: 46px;
  width: auto;
  object-fit: contain;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: center;
}
.header-nav a {
  color: #0d1b2a;
  font-weight: 600;
  font-size: 14px;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 5px;
  transition:
    background 0.18s,
    color 0.18s;
}
.header-nav a:hover {
  background: rgba(0, 0, 0, 0.1);
  color: #0d1b2a;
}
.header-nav a svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.header-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  border: none;
  transition:
    background 0.18s,
    transform 0.14s,
    box-shadow 0.18s;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}
.btn-demo {
  background: var(--color-btn-green);
  color: #fff;
}
.btn-demo:hover {
  background: var(--color-btn-green-hover);
  color: #fff;
}
.btn-play {
  background: var(--color-btn-orange);
  color: #fff;
}
.btn-play:hover {
  background: var(--color-btn-orange-hover);
  color: #fff;
}
.btn-sm {
  padding: 7px 13px;
  font-size: 13px;
}
.online-count {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  color: #0d1b2a;
  white-space: nowrap;
}
.online-dot {
  width: 9px;
  height: 9px;
  background: #73d245;
  border-radius: 50%;
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(115, 210, 69, 0.5);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(115, 210, 69, 0);
  }
}
.lang-dropdown {
  position: relative;
}
.lang-btn {
  background: rgba(0, 0, 0, 0.1);
  border: none;
  border-radius: var(--radius-sm);
  padding: 7px 11px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  color: #0d1b2a;
  transition: background 0.18s;
}
.lang-btn:hover {
  background: rgba(0, 0, 0, 0.18);
}
.lang-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 6px);
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
  min-width: 130px;
  z-index: 100;
  display: none;
  overflow: hidden;
}
.lang-menu.open {
  display: block;
}
.lang-menu a {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 14px;
  color: #0d1b2a;
  font-size: 13px;
  font-weight: 600;
  transition: background 0.15s;
}
.lang-menu a:hover {
  background: #f0f0f0;
}
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: #0d1b2a;
  border-radius: 2px;
  transition:
    transform 0.25s,
    opacity 0.25s;
}
.burger.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.burger.open span:nth-child(2) {
  opacity: 0;
}
.burger.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-header);
  z-index: 998;
  flex-direction: column;
  padding: 80px 24px 30px;
  gap: 12px;
  overflow-y: auto;
}
.mobile-nav.open {
  display: flex;
}
.mobile-nav a {
  color: #0d1b2a;
  font-size: 16px;
  font-weight: 700;
  padding: 13px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 8px;
}
.mobile-nav .mobile-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 18px;
}
.mobile-close {
  position: absolute;
  top: 18px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 28px;
  color: #0d1b2a;
  font-weight: 700;
}

.hero-slider {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  width: 100%;
  max-height: 520px;
}
.hero-slides {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-slide {
  min-width: 100%;
  position: relative;
  max-height: 520px;
  overflow: hidden;
}
.hero-slide img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(7, 20, 60, 0.72) 0%,
    rgba(7, 20, 60, 0.18) 100%
  );
  display: flex;
  align-items: center;
  padding: 0 60px;
}
.hero-content {
  max-width: 540px;
}
.hero-content h2 {
  font-size: clamp(22px, 4vw, 42px);
  font-weight: 800;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.38);
  line-height: 1.18;
  margin-bottom: 14px;
  text-balance: balance;
}
.hero-content p {
  font-size: clamp(14px, 1.8vw, 18px);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 22px;
  line-height: 1.5;
}
.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-arrows {
  display: none;
}
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.22);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s;
  color: #fff;
  z-index: 3;
}
.hero-arrow:hover {
  background: rgba(255, 255, 255, 0.48);
}
#heroPrev {
  left: 14px;
}
#heroNext {
  right: 14px;
}
.hero-dots {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 3;
}
.hero-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition:
    background 0.18s,
    transform 0.18s;
}
.hero-dot.active {
  background: #fff;
  transform: scale(1.25);
}

.main-content {
  padding: 28px 0 40px;
}
.page-h1 {
  font-size: clamp(22px, 3.5vw, 34px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 22px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.22);
  line-height: 1.2;
  text-wrap: balance;
}
.section-title {
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}
.section-subtitle {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 24px;
  line-height: 1.5;
}

.casino-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.casino-card {
  background: var(--color-card-bg-solid);
  border-radius: var(--radius);
  padding: 18px 20px;
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 14px 20px;
  align-items: start;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  color: var(--color-card-text);
}
.casino-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.16);
}
.casino-card.top3 {
  border: 2.5px solid var(--color-btn-orange);
}
.casino-card.top1 {
  border-color: #ffd700;
}
.casino-card-num {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--color-btn-orange);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  border-radius: 5px;
  padding: 2px 7px;
  line-height: 1.4;
}
.casino-card.top1 .casino-card-num {
  background: #ffd700;
  color: #0d1b2a;
}
.casino-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  border: 1px solid #eee;
  padding: 4px;
  background: #f9f9f9;
}
.casino-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding-top: 14px;
}
.casino-country {
  font-size: 11px;
  display: flex;
  align-items: center;
  gap: 3px;
  color: #555;
}
.casino-info h3 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 4px;
  color: #0d1b2a;
}
.casino-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 6px;
}
.casino-stars {
  color: #ffd700;
  font-size: 14px;
}
.casino-rating-num {
  font-weight: 700;
  font-size: 14px;
  color: #0d1b2a;
}
.casino-bonus {
  background: linear-gradient(90deg, #ff8603, #ffb340);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 5px 12px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
  display: inline-block;
}
.casino-desc {
  font-size: 13px;
  color: #555;
  line-height: 1.5;
  margin-bottom: 8px;
}
.casino-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
}
.casino-meta-item {
  background: #f0f4ff;
  border-radius: 5px;
  padding: 3px 9px;
  font-size: 11px;
  color: #333;
  font-weight: 600;
}
.casino-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 140px;
  align-items: stretch;
}
.casino-actions .btn {
  justify-content: center;
  font-size: 13px;
  padding: 9px 14px;
}
.btn-review {
  background: transparent;
  border: 2px solid var(--color-btn-green);
  color: var(--color-btn-green);
  font-weight: 700;
}
.btn-review:hover {
  background: var(--color-btn-green);
  color: #fff;
}
.load-more-wrap {
  text-align: center;
  margin-top: 22px;
}
.btn-load-more {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.4);
  padding: 11px 32px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition:
    background 0.18s,
    border-color 0.18s;
}
.btn-load-more:hover {
  background: rgba(255, 255, 255, 0.32);
}

.game-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0 -4px;
}
.game-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  color: var(--color-card-text);
  min-width: 380px;
}
.game-table th,
.game-table td {
  padding: 11px 16px;
  text-align: left;
  border-bottom: 1.5px solid #e9ecf2;
  font-size: 14px;
}
.game-table th {
  background: #f0f4ff;
  font-weight: 700;
  color: #333;
  width: 42%;
}
.game-table tr:last-child td,
.game-table tr:last-child th {
  border-bottom: none;
}
.game-table tr:hover td,
.game-table tr:hover th {
  background: #f7f9ff;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.advantage-card {
  background: rgba(255, 255, 255, 0.15);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius);
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition:
    background 0.18s,
    transform 0.18s;
}
.advantage-card:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
}
.advantage-icon {
  width: 44px;
  height: 44px;
  background: var(--color-btn-orange);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.advantage-icon svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}
.advantage-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}
.advantage-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}

.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.pros-card,
.cons-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-card);
  color: #0d1b2a;
}
.pros-card h3 {
  color: #73d245;
  margin-bottom: 14px;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.cons-card h3 {
  color: #e03e3e;
  margin-bottom: 14px;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.pros-cons-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.pros-cons-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  line-height: 1.5;
  color: #333;
}
.pros-cons-list li::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
}
.pros-card .pros-cons-list li::before {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='12' fill='%2373d245'/%3E%3Cpath d='M7 12l4 4 6-7' stroke='white' stroke-width='2.2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center/cover;
}
.cons-card .pros-cons-list li::before {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='12' fill='%23e03e3e'/%3E%3Cpath d='M8 8l8 8M16 8l-8 8' stroke='white' stroke-width='2.2' stroke-linecap='round'/%3E%3C/svg%3E")
    center/cover;
}

.demo-block {
  background: rgba(0, 0, 0, 0.25);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}
.demo-inner {
  position: relative;
  padding-top: 56.25%;
}
.demo-inner iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.demo-actions {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  background: rgba(0, 0, 0, 0.18);
}
.demo-info {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}

/* REVIEWS */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}
.review-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-card);
  color: #0d1b2a;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.review-top {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid var(--color-btn-green);
  flex-shrink: 0;
  background: #f0f4ff;
  display: block;
}
.review-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.review-name {
  font-weight: 700;
  font-size: 15px;
  color: #0d1b2a;
}
.review-date {
  font-size: 12px;
  color: #888;
}
.review-stars {
  display: flex;
  gap: 3px;
}
.review-stars svg {
  width: 16px;
  height: 16px;
  fill: #ffd700;
}
.review-text {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}
.review-form-wrap {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-card);
  color: #0d1b2a;
  max-width: 560px;
}
.review-form-wrap h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 18px;
  color: #0d1b2a;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 14px;
}
.form-field label {
  font-size: 13px;
  font-weight: 600;
  color: #333;
}
.form-field input,
.form-field textarea {
  border: 1.5px solid #d0d7e2;
  border-radius: var(--radius-sm);
  padding: 10px 13px;
  font-size: 14px;
  font-family: var(--font);
  color: #0d1b2a;
  background: #f8f9fb;
  transition:
    border-color 0.18s,
    box-shadow 0.18s;
  outline: none;
  resize: vertical;
}
.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--color-bg);
  box-shadow: 0 0 0 3px rgba(7, 163, 254, 0.15);
}
.form-field textarea {
  min-height: 90px;
}
.form-success {
  display: none;
  background: #e7f9ed;
  border: 1.5px solid #73d245;
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-size: 14px;
  font-weight: 600;
  color: #2d7a2d;
  margin-top: 10px;
}
.form-success.show {
  display: block;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  color: #0d1b2a;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 700;
  color: #0d1b2a;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  transition: background 0.15s;
  font-family: var(--font);
}
.faq-question:hover {
  background: #f5f8ff;
}
.faq-question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.25s;
  fill: #666;
}
.faq-item.open .faq-question svg {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    padding 0.25s;
}
.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 20px 16px;
}
.faq-answer p {
  font-size: 14px;
  color: #444;
  line-height: 1.65;
}

/* AUTHOR BLOCK */
.author-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 22px 24px;
  box-shadow: var(--shadow-card);
  color: #0d1b2a;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.author-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-header), var(--color-bg));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
  border: 3px solid var(--color-btn-orange);
}
.author-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.author-info strong {
  font-size: 17px;
  color: #0d1b2a;
}
.author-role {
  font-size: 13px;
  color: #888;
  font-weight: 600;
}
.author-bio {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}
.author-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: var(--color-bg);
  font-weight: 600;
  margin-top: 4px;
}
.author-link:hover {
  color: var(--color-bg-dark);
}

/* CONTENT AREA */
.content-text {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 28px;
  box-shadow: var(--shadow-card);
  color: #0d1b2a;
  font-size: 15px;
  line-height: 1.7;
}
.content-text h2 {
  font-size: 22px;
  font-weight: 800;
  margin: 22px 0 10px;
  color: #0d1b2a;
}
.content-text h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 18px 0 8px;
  color: #0d1b2a;
}
.content-text p {
  margin-bottom: 12px;
}
.content-text ul,
.content-text ol {
  padding-left: 22px;
  margin-bottom: 12px;
}
.content-text li {
  margin-bottom: 6px;
  line-height: 1.6;
}
.content-text table {
  width: 100%;
  border-collapse: collapse;
  margin: 14px 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);
}
.content-text table th,
.content-text table td {
  padding: 9px 13px;
  border: 1.5px solid #e0e4f0;
  text-align: left;
  font-size: 13.5px;
}
.content-text table th {
  background: #f0f4ff;
  font-weight: 700;
}
.content-text a {
  color: var(--color-bg);
  font-weight: 600;
}
.content-text a:hover {
  color: var(--color-bg-dark);
}
.content-text strong {
  font-weight: 700;
  color: #0d1b2a;
}
.content-text blockquote {
  border-left: 4px solid var(--color-btn-orange);
  padding: 10px 16px;
  background: #fff8f0;
  color: #555;
  margin: 14px 0;
  border-radius: 0 8px 8px 0;
  font-style: italic;
}
.content-placeholder {
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bbb;
  font-style: italic;
  font-size: 15px;
}

/* FOOTER */
.site-footer {
  background: var(--color-footer-bg);
  padding: 32px 0 18px;
  margin-top: auto;
}
.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 18px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 28px;
  margin-bottom: 24px;
  align-items: start;
}
.footer-logo img {
  height: 44px;
  object-fit: contain;
}
.footer-logo p {
  font-size: 12px;
  color: #0d1b2a;
  margin-top: 6px;
  line-height: 1.5;
  max-width: 220px;
}
.footer-links h4 {
  font-size: 14px;
  font-weight: 800;
  color: #0d1b2a;
  margin-bottom: 10px;
}
.footer-links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
}
.footer-links-grid a {
  color: #0d1b2a;
  font-size: 13px;
  font-weight: 600;
  transition: opacity 0.18s;
}
.footer-links-grid a:hover {
  opacity: 0.7;
}
.footer-trust h4 {
  font-size: 14px;
  font-weight: 800;
  color: #0d1b2a;
  margin-bottom: 10px;
}
.footer-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.footer-logos img {
  height: 30px;
  object-fit: contain;
  border-radius: 5px;
  background: #fff;
  padding: 3px 7px;
}
.footer-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 16px;
}
.footer-payments img {
  height: 28px;
  object-fit: contain;
  border-radius: 5px;
  background: #fff;
  padding: 3px 7px;
}
.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
}
.footer-bottom p {
  font-size: 12px;
  color: #0d1b2a;
  line-height: 1.6;
  max-width: 820px;
}
.footer-bottom .copyright {
  font-weight: 700;
}
.footer-age {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2.5px solid #0d1b2a;
  font-size: 11px;
  font-weight: 800;
  color: #0d1b2a;
  margin-bottom: 4px;
}

/* STICKY WIDGET */
.sticky-widget {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 997;
  background: linear-gradient(90deg, var(--color-btn-orange), #ffb340);
  border-radius: 40px;
  box-shadow: 0 4px 22px rgba(255, 134, 3, 0.45);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px 12px 18px;
  animation: slideUp 0.5s ease 0.8s both;
}
@keyframes slideUp {
  from {
    transform: translateX(-50%) translateY(80px);
    opacity: 0;
  }
  to {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
}
.sticky-widget a {
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
}
.sticky-widget a:hover {
  color: #fff;
}
.sticky-widget-bonus {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  border-left: 1.5px solid rgba(255, 255, 255, 0.35);
  padding-left: 12px;
}
.sticky-close {
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.7);
  font-size: 20px;
  line-height: 1;
  padding: 0 0 0 8px;
  transition: color 0.18s;
}
.sticky-close:hover {
  color: #fff;
}

/* SECTION BLOCKS */
.section-block {
  margin-bottom: 36px;
  animation: fadeInUp 0.45s ease both;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.section-block:nth-child(1) {
  animation-delay: 0.05s;
}
.section-block:nth-child(2) {
  animation-delay: 0.12s;
}
.section-block:nth-child(3) {
  animation-delay: 0.19s;
}
.section-block:nth-child(4) {
  animation-delay: 0.26s;
}
.section-block:nth-child(5) {
  animation-delay: 0.33s;
}
.section-block:nth-child(6) {
  animation-delay: 0.4s;
}
.section-block:nth-child(7) {
  animation-delay: 0.47s;
}

/* BREADCRUMB */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  padding: 10px 0 6px;
  font-size: 13px;
}
.breadcrumb a,
.breadcrumb span {
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 4px;
}
.breadcrumb a:hover {
  color: #fff;
}
.breadcrumb .sep {
  color: rgba(255, 255, 255, 0.4);
}
.breadcrumb .current {
  color: #fff;
  font-weight: 600;
}

/* TECHNICAL PAGES */
.technical-content {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 36px;
  box-shadow: var(--shadow-card);
  color: #0d1b2a;
  line-height: 1.72;
  font-size: 15px;
}
.technical-content h2 {
  font-size: 22px;
  font-weight: 800;
  margin: 24px 0 10px;
  color: #0d1b2a;
}
.technical-content h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 18px 0 8px;
  color: #333;
}
.technical-content p {
  margin-bottom: 13px;
}
.technical-content ul,
.technical-content ol {
  padding-left: 22px;
  margin-bottom: 13px;
}
.technical-content li {
  margin-bottom: 7px;
  line-height: 1.6;
}
.technical-content a {
  color: var(--color-bg);
  font-weight: 600;
}

.wp-block-group {
  display: block;
}
.aligncenter {
  margin: 0 auto;
  display: block;
}
.size-full {
  max-width: 100%;
}
.wp-caption {
  max-width: 100%;
  text-align: center;
}
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}
#wpadminbar {
  display: none !important;
}
.entry-meta,
.entry-footer {
  display: none;
}
.post-thumbnail {
  display: none;
}

.xk7b2a9 {
  display: none;
  opacity: 0;
  position: absolute;
  pointer-events: none;
}
.mq3px71 {
  color: transparent;
  font-size: 0;
}
.rj9wn5c {
  visibility: hidden;
  width: 0;
  height: 0;
  overflow: hidden;
}
[data-sbk="noop"] {
  display: none !important;
}

@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .footer-trust {
    grid-column: 1/-1;
  }
  .pros-cons-grid {
    grid-template-columns: 1fr;
  }
  .header-nav {
    display: none;
  }
  .burger {
    display: flex;
  }
  .hero-overlay {
    padding: 0 28px;
  }
  .casino-card {
    grid-template-columns: 56px 1fr;
    grid-template-rows: auto auto;
  }
  .casino-actions {
    flex-direction: row;
    justify-content: flex-start;
    grid-column: 1/-1;
  }
  .author-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
@media (max-width: 600px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
  .header-inner {
    grid-template-columns: auto auto;
  }
  .header-right {
    gap: 5px;
  }
  .btn {
    padding: 8px 12px;
    font-size: 13px;
  }
  .hero-slide img {
    height: 280px;
  }
  .hero-content {
    max-width: 100%;
  }
  .hero-overlay {
    padding: 0 16px;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .advantages-grid {
    grid-template-columns: 1fr 1fr;
  }
  .sticky-widget {
    width: calc(100% - 24px);
    border-radius: 14px;
    justify-content: space-between;
  }
  .casino-card {
    grid-template-columns: 1fr;
    padding: 16px;
  }
  .casino-logo-wrap {
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }
  .casino-actions {
    flex-direction: column;
  }
}
@media (max-width: 400px) {
  .advantages-grid {
    grid-template-columns: 1fr;
  }
  .hero-btns {
    flex-direction: column;
  }
}

.content-text {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-card);
  color: #0d1b2a;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.content-text h2 {
  font-size: 22px;
  font-weight: 800;
  margin: 28px 0 14px;
  color: #0d1b2a;
  line-height: 1.3;
}

.content-text h2:first-child {
  margin-top: 0;
}

.content-text h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 22px 0 10px;
  color: #1a2a4a;
  line-height: 1.35;
}

.content-text h4 {
  font-size: 16px;
  font-weight: 700;
  margin: 18px 0 8px;
  color: #2a3a5a;
}

.content-text p {
  margin-bottom: 14px;
  color: #333;
}

.content-text ul,
.content-text ol {
  padding-left: 24px;
  margin: 12px 0 16px;
}

.content-text li {
  margin-bottom: 8px;
  line-height: 1.65;
  color: #444;
}

.content-text table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);
}

.content-text table th,
.content-text table td {
  padding: 11px 14px;
  border: 1.5px solid #e0e4f0;
  text-align: left;
  font-size: 14px;
}

.content-text table th {
  background: #f0f4ff;
  font-weight: 700;
  color: #0d1b2a;
}

.content-text table tr:hover {
  background: #f8f9ff;
}

.content-text a {
  color: var(--color-bg);
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.18s;
}

.content-text a:hover {
  color: var(--color-bg-dark);
}

.content-text strong,
.content-text b {
  font-weight: 700;
  color: #0d1b2a;
}

.content-text em,
.content-text i {
  font-style: italic;
}

.content-text blockquote {
  border-left: 4px solid var(--color-btn-orange);
  padding: 12px 18px;
  background: #fff8f0;
  color: #555;
  margin: 16px 0;
  border-radius: 0 8px 8px 0;
  font-style: italic;
}

.content-text img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 16px 0;
}

.content-text code {
  background: #f5f7fa;
  color: #e03e3e;
  padding: 2px 6px;
  border-radius: 4px;
  font-family: "Courier New", monospace;
  font-size: 13px;
}

.content-text pre {
  background: #f5f7fa;
  border: 1px solid #e0e4f0;
  border-radius: 8px;
  padding: 14px;
  overflow-x: auto;
  margin: 16px 0;
}

.content-text pre code {
  background: none;
  padding: 0;
  color: #0d1b2a;
}

.content-text hr {
  border: none;
  border-top: 2px solid #e0e4f0;
  margin: 24px 0;
}

.content-placeholder {
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bbb;
  font-style: italic;
  font-size: 15px;
  background: #f8f9fb;
  border-radius: 8px;
}

@media (max-width: 900px) {
  .content-text {
    padding: 24px 20px;
  }

  .content-text h2 {
    font-size: 20px;
    margin: 24px 0 12px;
  }

  .content-text h3 {
    font-size: 17px;
    margin: 20px 0 9px;
  }

  .content-text h4 {
    font-size: 15px;
    margin: 16px 0 7px;
  }

  .content-text table {
    font-size: 13px;
  }

  .content-text table th,
  .content-text table td {
    padding: 9px 11px;
  }
}

@media (max-width: 600px) {
  .content-text {
    padding: 20px 16px;
    font-size: 14px;
  }

  .content-text h2 {
    font-size: 18px;
    margin: 20px 0 10px;
  }

  .content-text h3 {
    font-size: 16px;
    margin: 18px 0 8px;
  }

  .content-text h4 {
    font-size: 14px;
    margin: 14px 0 6px;
  }

  .content-text ul,
  .content-text ol {
    padding-left: 20px;
  }

  .content-text table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    font-size: 12px;
  }

  .content-text table th,
  .content-text table td {
    padding: 8px 10px;
    white-space: nowrap;
  }

  .content-text blockquote {
    padding: 10px 14px;
    margin: 14px 0;
  }

  .content-text pre {
    padding: 12px;
    font-size: 12px;
  }
}

@media (max-width: 400px) {
  .content-text {
    padding: 18px 14px;
  }

  .content-text h2 {
    font-size: 17px;
  }

  .content-text h3 {
    font-size: 15px;
  }
}
.content-text {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-card);
  color: #0d1b2a;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
}

.content-text h2 {
  font-size: 22px;
  font-weight: 800;
  margin: 28px 0 14px;
  color: #0d1b2a;
  line-height: 1.3;
}

.content-text h2:first-child {
  margin-top: 0;
}

.content-text h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 22px 0 10px;
  color: #1a2a4a;
  line-height: 1.35;
}

.content-text h4 {
  font-size: 16px;
  font-weight: 700;
  margin: 18px 0 8px;
  color: #2a3a5a;
}

.content-text p {
  margin-bottom: 14px;
  color: #333;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.content-text ul,
.content-text ol {
  padding-left: 24px;
  margin: 12px 0 16px;
}

.content-text li {
  margin-bottom: 8px;
  line-height: 1.65;
  color: #444;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.content-text table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.content-text table th,
.content-text table td {
  padding: 11px 14px;
  border: 1.5px solid #e0e4f0;
  text-align: left;
  font-size: 14px;
  white-space: normal;
}

.content-text table th {
  background: #f0f4ff;
  font-weight: 700;
  color: #0d1b2a;
}

.content-text table tr:hover {
  background: #f8f9ff;
}

.content-text a {
  color: var(--color-bg);
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.18s;
  word-break: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.content-text a:hover {
  color: var(--color-bg-dark);
}

.content-text strong,
.content-text b {
  font-weight: 700;
  color: #0d1b2a;
}

.content-text em,
.content-text i {
  font-style: italic;
}

.content-text blockquote {
  border-left: 4px solid var(--color-btn-orange);
  padding: 12px 18px;
  background: #fff8f0;
  color: #555;
  margin: 16px 0;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.content-text img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 16px 0;
}

.content-text code {
  background: #f5f7fa;
  color: #e03e3e;
  padding: 2px 6px;
  border-radius: 4px;
  font-family: "Courier New", monospace;
  font-size: 13px;
  word-break: break-all;
}

.content-text pre {
  background: #f5f7fa;
  border: 1px solid #e0e4f0;
  border-radius: 8px;
  padding: 14px;
  overflow-x: auto;
  margin: 16px 0;
  -webkit-overflow-scrolling: touch;
}

.content-text pre code {
  background: none;
  padding: 0;
  color: #0d1b2a;
  word-break: normal;
}

.content-text hr {
  border: none;
  border-top: 2px solid #e0e4f0;
  margin: 24px 0;
}

.content-placeholder {
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bbb;
  font-style: italic;
  font-size: 15px;
  background: #f8f9fb;
  border-radius: 8px;
}

@media (max-width: 900px) {
  .content-text {
    padding: 24px 20px;
  }

  .content-text h2 {
    font-size: 20px;
    margin: 24px 0 12px;
  }

  .content-text h3 {
    font-size: 17px;
    margin: 20px 0 9px;
  }

  .content-text h4 {
    font-size: 15px;
    margin: 16px 0 7px;
  }

  .content-text table {
    font-size: 13px;
  }

  .content-text table th,
  .content-text table td {
    padding: 9px 11px;
  }
}

@media (max-width: 600px) {
  .content-text {
    padding: 20px 16px;
    font-size: 14px;
  }

  .content-text h2 {
    font-size: 18px;
    margin: 20px 0 10px;
  }

  .content-text h3 {
    font-size: 16px;
    margin: 18px 0 8px;
  }

  .content-text h4 {
    font-size: 14px;
    margin: 14px 0 6px;
  }

  .content-text ul,
  .content-text ol {
    padding-left: 20px;
  }

  .content-text table th,
  .content-text table td {
    padding: 8px 10px;
    font-size: 12px;
  }

  .content-text blockquote {
    padding: 10px 14px;
    margin: 14px 0;
  }

  .content-text pre {
    padding: 12px;
    font-size: 12px;
  }

  .content-text a {
    word-break: break-all;
  }
}

@media (max-width: 400px) {
  .content-text {
    padding: 18px 14px;
  }

  .content-text h2 {
    font-size: 17px;
  }

  .content-text h3 {
    font-size: 15px;
  }
}
