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

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --c-header: #954d27;
  --c-header-dark: #7a3d1e;
  --c-btn-red: #762f2d;
  --c-btn-red-hover: #5e2422;
  --c-btn-green: #00b862;
  --c-btn-green-hover: #009950;
  --c-bg: #d99340;
  --c-bg-light: #e8a855;
  --c-bg-dark: #c07e30;
  --c-card: #fff8ee;
  --c-card-border: #e8b86d;
  --c-text: #2b1a0a;
  --c-text-light: #5a3a1a;
  --c-text-inv: #fff8ee;
  --c-gold: #f5c542;
  --c-gold-light: #fde882;
  --c-star: #f5c542;
  --c-rank1: #ffd700;
  --c-rank2: #c0c0c0;
  --c-rank3: #cd7f32;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow: 0 4px 24px rgba(43, 26, 10, 0.18);
  --shadow-card: 0 2px 16px rgba(149, 77, 39, 0.14);
  --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: "Nunito", sans-serif;
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.6;
  min-height: 100vh;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Baloo 2", sans-serif;
  line-height: 1.25;
  color: var(--c-text);
}
a {
  color: var(--c-btn-red);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: var(--c-btn-red-hover);
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul {
  list-style: none;
}

.xq7k2-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
.box {
  width: 100%;
}

.wp-content-area {
  display: none;
}
.wp-block-separator {
  display: none;
}
.elementor-hidden {
  visibility: hidden;
  height: 0;
  overflow: hidden;
}
.site-id-f7x9q {
  font-size: 0;
  color: transparent;
}

header.site-header {
  background: var(--c-header);
  box-shadow: 0 2px 12px rgba(43, 26, 10, 0.25);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 16px;
  height: 68px;
  max-width: 1200px;
  margin: 0 auto;
}
.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.header-logo img {
  height: 44px;
  width: auto;
  border-radius: 6px;
}
.header-logo-text {
  font-family: "Baloo 2", sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--c-text-inv);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  white-space: nowrap;
}
.header-logo-text span {
  color: var(--c-gold);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.header-nav a {
  color: var(--c-text-inv);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition:
    background var(--transition),
    color var(--transition);
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}
.header-nav a:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--c-gold);
}
.header-nav a svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.header-online {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  color: var(--c-text-inv);
  background: rgba(0, 0, 0, 0.2);
  padding: 4px 9px;
  border-radius: 20px;
  font-weight: 600;
}
.header-online-dot {
  width: 7px;
  height: 7px;
  background: var(--c-btn-green);
  border-radius: 50%;
  animation: pulse-dot 1.8s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.3);
  }
}

.lang-dropdown {
  position: relative;
}
.lang-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--c-text-inv);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 5px 9px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--transition);
  font-family: inherit;
}
.lang-btn:hover {
  background: rgba(255, 255, 255, 0.22);
}
.lang-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  min-width: 140px;
  z-index: 200;
  border: 1px solid var(--c-card-border);
  overflow: hidden;
}
.lang-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--c-text);
  transition: background var(--transition);
}
.lang-dropdown-menu a:hover {
  background: var(--c-bg);
}
.lang-dropdown.open .lang-dropdown-menu {
  display: block;
  animation: fadeInDown 0.18s ease;
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-family: "Baloo 2", sans-serif;
  font-weight: 700;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  border: none;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.btn-sm {
  font-size: 0.82rem;
  padding: 6px 14px;
}
.btn-md {
  font-size: 0.92rem;
  padding: 8px 18px;
}
.btn-lg {
  font-size: 1.05rem;
  padding: 12px 28px;
  border-radius: var(--radius-md);
}
.btn-xl {
  font-size: 1.18rem;
  padding: 15px 36px;
  border-radius: var(--radius-md);
}
.btn-red {
  background: var(--c-btn-red);
  color: #fff;
}
.btn-red:hover {
  background: var(--c-btn-red-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(118, 47, 45, 0.4);
}
.btn-green {
  background: var(--c-btn-green);
  color: #fff;
}
.btn-green:hover {
  background: var(--c-btn-green-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 184, 98, 0.35);
}
.btn-gold {
  background: var(--c-gold);
  color: var(--c-text);
}
.btn-gold:hover {
  background: var(--c-gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(245, 197, 66, 0.4);
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--c-text-inv);
  color: var(--c-text-inv);
}
.btn-outline:hover {
  background: var(--c-text-inv);
  color: var(--c-header);
}
.btn-outline-red {
  background: transparent;
  border: 2px solid var(--c-btn-red);
  color: var(--c-btn-red);
}
.btn-outline-red:hover {
  background: var(--c-btn-red);
  color: #fff;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-text-inv);
  border-radius: 2px;
  transition: all var(--transition);
}
.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);
}

.hero-slider {
  position: relative;
  overflow: hidden;
}
.hero-slide {
  display: none;
  position: relative;
}
.hero-slide.active {
  display: block;
  animation: fadeSlide 0.5s ease;
}
@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: scale(1.02);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.hero-slide-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}
.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(43, 26, 10, 0.78) 0%,
    rgba(43, 26, 10, 0.35) 60%,
    transparent 100%
  );
  display: flex;
  align-items: center;
}
.hero-slide-content {
  padding: 0 40px;
  max-width: 580px;
}
.hero-slide-content h2 {
  font-size: 2.4rem;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  margin-bottom: 14px;
  line-height: 1.2;
}
.hero-slide-content p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
  margin-bottom: 24px;
  line-height: 1.55;
}
.hero-slide-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
}
.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  border: none;
  transition: background var(--transition);
}
.hero-dot.active {
  background: var(--c-gold);
}
.hero-prev,
.hero-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.35);
  border: none;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  z-index: 5;
}
.hero-prev {
  left: 12px;
}
.hero-next {
  right: 12px;
}
.hero-prev:hover,
.hero-next:hover {
  background: rgba(0, 0, 0, 0.6);
}

.section-title {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--c-text);
  margin-bottom: 6px;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--c-text-light);
  margin-bottom: 28px;
  line-height: 1.5;
}

.casinos-section {
  padding: 48px 0 32px;
}
.casino-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.casino-card {
  background: var(--c-card);
  border: 2px solid var(--c-card-border);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  box-shadow: var(--shadow-card);
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 16px 20px;
  align-items: center;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  position: relative;
}
.casino-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(149, 77, 39, 0.22);
}
.casino-card.rank-1 {
  border-color: var(--c-rank1);
  border-width: 3px;
}
.casino-card.rank-2 {
  border-color: var(--c-rank2);
  border-width: 2.5px;
}
.casino-card.rank-3 {
  border-color: var(--c-rank3);
  border-width: 2.5px;
}
.casino-rank {
  position: absolute;
  top: -1px;
  left: -1px;
  background: var(--c-header);
  color: #fff;
  font-family: "Baloo 2", sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
  padding: 3px 9px;
  border-radius: var(--radius-lg) 0 var(--radius-sm) 0;
}
.casino-card.rank-1 .casino-rank {
  background: var(--c-rank1);
  color: var(--c-text);
}
.casino-card.rank-2 .casino-rank {
  background: #888;
  color: #fff;
}
.casino-card.rank-3 .casino-rank {
  background: var(--c-rank3);
  color: #fff;
}
.casino-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.casino-logo-wrap img {
  width: 72px;
  height: 52px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  border: 1px solid var(--c-card-border);
  background: #fff;
  padding: 4px;
}
.casino-info-main {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.casino-name-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.casino-name {
  font-family: "Baloo 2", sans-serif;
  font-weight: 800;
  font-size: 1.12rem;
  color: var(--c-text);
}
.casino-flag {
  font-size: 1.1rem;
}
.casino-available {
  font-size: 0.75rem;
  color: var(--c-btn-green);
  font-weight: 700;
  background: rgba(0, 184, 98, 0.1);
  padding: 2px 7px;
  border-radius: 10px;
}
.casino-rating {
  display: flex;
  align-items: center;
  gap: 5px;
}
.casino-rating-score {
  font-family: "Baloo 2", sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--c-btn-red);
}
.casino-stars {
  color: var(--c-star);
  font-size: 0.9rem;
  display: flex;
  gap: 1px;
}
.casino-bonus {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--c-btn-green);
  background: rgba(0, 184, 98, 0.08);
  padding: 3px 9px;
  border-radius: 8px;
  width: fit-content;
}
.casino-meta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.78rem;
  color: var(--c-text-light);
  margin-top: 2px;
}
.casino-meta-item {
  display: flex;
  align-items: center;
  gap: 4px;
}
.casino-meta-item svg {
  width: 13px;
  height: 13px;
}
.casino-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
  min-width: 130px;
}
.casino-actions .btn {
  width: 100%;
  text-align: center;
  justify-content: center;
}

.load-more-wrap {
  text-align: center;
  margin-top: 24px;
}

.game-info-section {
  padding: 40px 0;
}
.game-info-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}
.game-info-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--c-card);
  min-width: 560px;
}
.game-info-table caption {
  font-family: "Baloo 2", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-text);
  padding: 14px 20px;
  background: var(--c-header);
  color: var(--c-text-inv);
  text-align: left;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  caption-side: top;
}
.game-info-table tr {
  border-bottom: 1px solid var(--c-card-border);
}
.game-info-table tr:last-child {
  border-bottom: none;
}
.game-info-table tr:nth-child(even) {
  background: rgba(217, 147, 64, 0.08);
}
.game-info-table th {
  width: 42%;
  padding: 13px 20px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--c-text-light);
  text-align: left;
}
.game-info-table td {
  padding: 13px 20px;
  font-size: 0.92rem;
  color: var(--c-text);
  font-weight: 600;
}

.advantages-section {
  padding: 40px 0;
}
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
}
.advantage-card {
  background: var(--c-card);
  border: 2px solid var(--c-card-border);
  border-radius: var(--radius-md);
  padding: 22px 18px;
  text-align: center;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}
.advantage-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.advantage-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--c-header), var(--c-bg-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.advantage-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--c-gold);
}
.advantage-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 7px;
}
.advantage-card p {
  font-size: 0.85rem;
  color: var(--c-text-light);
  line-height: 1.5;
}

.demo-section {
  padding: 40px 0;
}
.demo-wrap {
  background: var(--c-card);
  border: 2px solid var(--c-card-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}
.demo-header {
  background: var(--c-header);
  padding: 16px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.demo-header h2 {
  color: var(--c-text-inv);
  font-size: 1.2rem;
  margin: 0;
}
.demo-iframe-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: #111;
}
.demo-iframe-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.reviews-section {
  padding: 40px 0;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
  margin-bottom: 32px;
}
.review-card {
  background: var(--c-card);
  border: 2px solid var(--c-card-border);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition);
}
.review-card:hover {
  transform: translateY(-3px);
}
.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.review-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-header), var(--c-bg-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Baloo 2", sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--c-text-inv);
  flex-shrink: 0;
}
.review-meta {
  flex: 1;
}
.review-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--c-text);
}
.review-stars {
  color: var(--c-star);
  font-size: 0.95rem;
  display: flex;
  gap: 2px;
  margin-top: 2px;
}
.review-stars svg {
  width: 15px;
  height: 15px;
}
.review-text {
  font-size: 0.88rem;
  color: var(--c-text-light);
  line-height: 1.6;
}

.review-form-wrap {
  background: var(--c-card);
  border: 2px solid var(--c-card-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
  max-width: 540px;
}
.review-form-wrap h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--c-text);
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-group label {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--c-text-light);
}
.form-group input,
.form-group textarea {
  background: #fff;
  border: 2px solid var(--c-card-border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-family: "Nunito", sans-serif;
  font-size: 0.92rem;
  color: var(--c-text);
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--c-header);
  box-shadow: 0 0 0 3px rgba(149, 77, 39, 0.12);
}
.form-success {
  display: none;
  background: rgba(0, 184, 98, 0.1);
  border: 2px solid var(--c-btn-green);
  color: var(--c-btn-green);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-weight: 700;
  font-size: 0.92rem;
  text-align: center;
}
.form-success.show {
  display: block;
  animation: fadeInDown 0.3s ease;
}

.faq-section {
  padding: 40px 0;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: var(--c-card);
  border: 2px solid var(--c-card-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: "Baloo 2", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--c-text);
  text-align: left;
  transition: background var(--transition);
  gap: 12px;
}
.faq-question:hover {
  background: rgba(217, 147, 64, 0.1);
}
.faq-icon {
  width: 22px;
  height: 22px;
  background: var(--c-header);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-icon svg {
  width: 12px;
  height: 12px;
  fill: #fff;
}
.faq-item.open .faq-icon {
  transform: rotate(180deg);
  background: var(--c-btn-green);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.25s ease;
  padding: 0 20px;
}
.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 20px 16px;
}
.faq-answer p {
  font-size: 0.92rem;
  color: var(--c-text-light);
  line-height: 1.6;
}

.author-section {
  padding: 40px 0;
}
.author-card {
  background: var(--c-card);
  border: 2px solid var(--c-card-border);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.author-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-header), var(--c-bg-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Baloo 2", sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--c-text-inv);
  flex-shrink: 0;
  border: 3px solid var(--c-gold);
}
.author-info {
  flex: 1;
}
.author-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--c-header);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.author-name {
  font-family: "Baloo 2", sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--c-text);
  margin-bottom: 6px;
}
.author-bio {
  font-size: 0.88rem;
  color: var(--c-text-light);
  line-height: 1.6;
  margin-bottom: 10px;
}
.author-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--c-btn-red);
}
.author-link:hover {
  color: var(--c-btn-red-hover);
}

.pros-cons-section {
  padding: 28px 0;
}
.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.pros-block,
.cons-block {
  background: var(--c-card);
  border-radius: var(--radius-md);
  padding: 20px 18px;
  border: 2px solid var(--c-card-border);
}
.pros-block {
  border-top: 4px solid var(--c-btn-green);
}
.cons-block {
  border-top: 4px solid var(--c-btn-red);
}
.pros-cons-title {
  font-family: "Baloo 2", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pros-block .pros-cons-title {
  color: var(--c-btn-green);
}
.cons-block .pros-cons-title {
  color: var(--c-btn-red);
}
.pros-cons-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--c-text-light);
  line-height: 1.5;
  margin-bottom: 8px;
}
.pros-cons-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}
.pros-block .pros-cons-list li::before {
  background: var(--c-btn-green);
}
.cons-block .pros-cons-list li::before {
  background: var(--c-btn-red);
}

.content-review {
  background: var(--c-card);
  border: 2px solid var(--c-card-border);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  box-shadow: var(--shadow-card);
  margin-bottom: 24px;
}
.content-review h2 {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--c-text);
  margin: 24px 0 12px;
}
.content-review h2:first-child {
  margin-top: 0;
}
.content-review h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--c-header);
  margin: 20px 0 10px;
}
.content-review p {
  font-size: 0.95rem;
  color: var(--c-text-light);
  line-height: 1.7;
  margin-bottom: 14px;
}
.content-review ul,
.content-review ol {
  margin: 0 0 14px 0;
  padding-left: 18px;
}
.content-review ul {
  list-style: disc;
}
.content-review ol {
  list-style: decimal;
}
.content-review li {
  font-size: 0.92rem;
  color: var(--c-text-light);
  line-height: 1.65;
  margin-bottom: 6px;
}
.content-review table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 16px;
  font-size: 0.88rem;
}
.content-review table th {
  background: var(--c-header);
  color: var(--c-text-inv);
  padding: 10px 14px;
  text-align: left;
  font-weight: 700;
}
.content-review table td {
  padding: 9px 14px;
  border-bottom: 1px solid var(--c-card-border);
  color: var(--c-text);
}
.content-review table tr:nth-child(even) td {
  background: rgba(217, 147, 64, 0.07);
}
.content-review a {
  color: var(--c-btn-red);
  font-weight: 600;
}
.content-review strong,
.content-review b {
  color: var(--c-text);
  font-weight: 700;
}

footer.site-footer {
  background: var(--c-header);
  color: var(--c-text-inv);
  padding: 40px 0 0;
  margin-top: auto;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 32px;
}
.footer-brand {
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.footer-logo img {
  height: 38px;
  width: auto;
  border-radius: 5px;
}
.footer-logo-text {
  font-family: "Baloo 2", sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--c-text-inv);
}
.footer-logo-text span {
  color: var(--c-gold);
}
.footer-desc {
  font-size: 0.84rem;
  color: rgba(255, 248, 238, 0.7);
  line-height: 1.6;
  margin-bottom: 14px;
}
.footer-col-title {
  font-family: "Baloo 2", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--c-gold);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.footer-links a {
  color: rgba(255, 248, 238, 0.8);
  font-size: 0.88rem;
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 5px;
}
.footer-links a:hover {
  color: var(--c-gold);
}
.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-badge {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  padding: 5px 10px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--c-text-inv);
  display: flex;
  align-items: center;
  gap: 5px;
}
.footer-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 10px;
}
.footer-payment-badge {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 5px;
  padding: 4px 9px;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255, 248, 238, 0.85);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 18px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 248, 238, 0.6);
  line-height: 1.6;
}
.footer-bottom a {
  color: rgba(255, 248, 238, 0.75);
}
.footer-bottom a:hover {
  color: var(--c-gold);
}

.widget-bonus {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(90deg, var(--c-header) 0%, var(--c-bg-dark) 100%);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  z-index: 999;
  box-shadow: 0 -3px 16px rgba(43, 26, 10, 0.3);
}
.widget-bonus-text {
  color: var(--c-text-inv);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.widget-bonus-text strong {
  color: var(--c-gold);
  font-size: 1rem;
}
.widget-bonus-close {
  background: none;
  border: none;
  color: rgba(255, 248, 238, 0.6);
  cursor: pointer;
  font-size: 1.2rem;
  padding: 4px 8px;
  transition: color var(--transition);
  flex-shrink: 0;
}
.widget-bonus-close:hover {
  color: var(--c-text-inv);
}

body.has-widget {
  padding-bottom: 56px;
}

.section-box {
  background: var(--c-card);
  border: 2px solid var(--c-card-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  margin: 0 0 24px;
  box-shadow: var(--shadow-card);
}
.section-spacing {
  padding: 36px 0;
}
.mt-sm {
  margin-top: 16px;
}
.mt-md {
  margin-top: 28px;
}
.text-center {
  text-align: center;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 9px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
}
.badge-green {
  background: rgba(0, 184, 98, 0.12);
  color: var(--c-btn-green);
}
.badge-red {
  background: rgba(118, 47, 45, 0.12);
  color: var(--c-btn-red);
}
.badge-gold {
  background: rgba(245, 197, 66, 0.18);
  color: #8a6800;
}

.technical-content {
  background: var(--c-card);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  border: 2px solid var(--c-card-border);
}
.technical-content h2 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--c-header);
  margin: 24px 0 10px;
}
.technical-content h2:first-child {
  margin-top: 0;
}
.technical-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-text);
  margin: 18px 0 8px;
}
.technical-content p {
  font-size: 0.93rem;
  color: var(--c-text-light);
  line-height: 1.7;
  margin-bottom: 12px;
}
.technical-content ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 12px;
}
.technical-content li {
  font-size: 0.92rem;
  color: var(--c-text-light);
  line-height: 1.65;
  margin-bottom: 5px;
}

@media (max-width: 1024px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .casino-card {
    grid-template-columns: 70px 1fr;
  }
  .casino-actions {
    grid-column: 1 / -1;
    flex-direction: row;
    flex-wrap: wrap;
    min-width: auto;
  }
}
@media (max-width: 768px) {
  .header-nav {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--c-header-dark);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 16px 20px;
    gap: 4px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    z-index: 999;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
  }
  .header-nav.open {
    display: flex;
    animation: slideDown 0.22s ease;
  }
  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .header-nav a {
    padding: 10px 14px;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
  }
  .burger {
    display: flex;
  }
  .header-inner {
    height: 60px;
  }
  .hero-slide-img {
    height: 300px;
  }
  .hero-slide-content {
    padding: 0 20px;
  }
  .hero-slide-content h2 {
    font-size: 1.5rem;
  }
  .hero-slide-content p {
    font-size: 0.9rem;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .pros-cons-grid {
    grid-template-columns: 1fr;
  }
  .casino-card {
    grid-template-columns: 1fr;
  }
  .casino-logo-wrap {
    width: 80px;
  }
  .casino-actions {
    flex-direction: row;
    min-width: auto;
    width: 100%;
  }
  .section-title {
    font-size: 1.5rem;
  }
  .author-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .widget-bonus {
    flex-wrap: wrap;
    padding: 8px 14px;
  }
}
@media (max-width: 480px) {
  .hero-slide-btns {
    flex-direction: column;
  }
  .hero-slide-btns .btn {
    width: 100%;
  }
  .advantages-grid {
    grid-template-columns: 1fr 1fr;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .demo-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

.xr9z-hidden-wp {
  display: none !important;
}
.wp-caption {
  display: none;
}
.alignnone {
  display: none;
}
.wp-image-placeholder {
  visibility: hidden;
}
.b4r-uid-3f8a2 {
  overflow: hidden;
  height: 0;
}
.entry-footer-meta {
  display: none;
}
#wpadminbar {
  display: none;
}
.nav-previous,
.nav-next {
  display: none;
}
