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

:root {
  --clr-header: #fe87d7;
  --clr-header-dark: #f06dc0;
  --clr-bg: #07a3fe;
  --clr-bg-dark: #0592e5;
  --clr-btn-demo: #73d245;
  --clr-btn-demo-hover: #62b83c;
  --clr-btn-money: #ff8603;
  --clr-btn-money-hover: #e57600;
  --clr-white: #ffffff;
  --clr-dark: #1a1a2e;
  --clr-text: #ffffff;
  --clr-text-dark: #1a1a2e;
  --clr-card-bg: rgba(255, 255, 255, 0.12);
  --clr-card-border: rgba(255, 255, 255, 0.22);
  --clr-section-bg: rgba(0, 0, 0, 0.08);
  --clr-footer: #fe87d7;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.12);
  --transition: 0.25s ease;
}

html {
  scroll-behavior: smooth;
  background: var(--clr-bg);
}

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--clr-text);
  background: var(--clr-bg);
  min-height: 100vh;
}

.row-fx {
  display: flex;
  align-items: center;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  opacity: 0.85;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 50px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  outline: none;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}
.btn:active {
  transform: translateY(0);
}
.btn--demo {
  background: var(--clr-btn-demo);
  color: #fff;
}
.btn--demo:hover {
  background: var(--clr-btn-demo-hover);
}
.btn--money {
  background: var(--clr-btn-money);
  color: #fff;
}
.btn--money:hover {
  background: var(--clr-btn-money-hover);
}
.btn--lg {
  padding: 14px 32px;
  font-size: 17px;
}

.hdr {
  background: var(--clr-header);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(254, 135, 215, 0.35);
}
.hdr-box {
  padding: 10px 0;
}
.hdr-inner {
  gap: 16px;
  flex-wrap: wrap;
}
.hdr-logo img {
  height: 48px;
  width: auto;
  border-radius: var(--radius-sm);
}
.hdr-logo {
  display: flex;
  align-items: center;
}
.hdr-nav-wrap {
  flex: 1;
}
.hdr-nav {
  list-style: none;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.hdr-nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 14px;
  border-radius: 50px;
  color: var(--clr-text-dark);
  font-weight: 600;
  font-size: 14px;
  transition:
    background var(--transition),
    color var(--transition);
}
.hdr-nav-link:hover {
  background: rgba(0, 0, 0, 0.12);
  color: var(--clr-text-dark);
}
.hdr-nav-link svg {
  flex-shrink: 0;
}
.hdr-right-wrap {
  gap: 12px;
  margin-left: auto;
}
.hdr-online-count {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--clr-text-dark);
  background: rgba(255, 255, 255, 0.3);
  padding: 5px 12px;
  border-radius: 50px;
}
.hdr-online-dot {
  width: 8px;
  height: 8px;
  background: #2ecc71;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.3);
  }
}
.hdr-lang-wrap {
  position: relative;
}
.hdr-lang-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 12px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  color: var(--clr-text-dark);
  transition: background var(--transition);
}
.hdr-lang-btn:hover {
  background: rgba(255, 255, 255, 0.5);
}
.hdr-lang-list {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  list-style: none;
  min-width: 160px;
  overflow: hidden;
  display: none;
  z-index: 100;
}
.hdr-lang-wrap.open .hdr-lang-list {
  display: block;
  animation: fadeDown 0.2s ease;
}
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hdr-lang-item {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  color: var(--clr-text-dark);
  transition: background var(--transition);
}
.hdr-lang-item:hover,
.hdr-lang-item.active {
  background: rgba(254, 135, 215, 0.15);
}
.hdr-btns {
  display: flex;
  gap: 8px;
}
.hdr-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hdr-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-text-dark);
  border-radius: 2px;
  transition:
    transform var(--transition),
    opacity var(--transition);
}
.hdr-burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hdr-burger.active span:nth-child(2) {
  opacity: 0;
}
.hdr-burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.hdr-mobile-menu {
  display: none;
  background: var(--clr-header-dark);
  padding: 12px 16px;
}
.hdr-mobile-menu.open {
  display: block;
  animation: fadeDown 0.2s ease;
}
.hdr-nav-mobile {
  list-style: none;
}
.hdr-nav-mobile li a {
  display: block;
  padding: 12px 16px;
  font-weight: 600;
  color: var(--clr-text-dark);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.hero-block {
  width: 100%;
  position: relative;
}
.hero-bg {
  min-height: 520px;
  background-size: cover;
  background-position: center top;
  position: relative;
  display: flex;
  align-items: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(7, 163, 254, 0.72) 0%,
    rgba(254, 135, 215, 0.55) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 24px;
  text-align: center;
}
.hero-badge {
  display: inline-block;
  background: var(--clr-btn-money);
  color: #fff;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 18px;
  animation: fadeDown 0.5s ease;
}
.hero-title {
  font-size: clamp(32px, 6vw, 64px);
  font-weight: 900;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
  margin-bottom: 16px;
  line-height: 1.15;
}
.hero-subtitle {
  font-size: clamp(16px, 2.5vw, 20px);
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 32px;
  line-height: 1.55;
}
.hero-btns {
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-stats {
  gap: 0;
  justify-content: center;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.hero-stat {
  flex: 1;
  min-width: 100px;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}
.hero-stat:last-child {
  border-right: none;
}
.hero-stat-val {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
}
.hero-stat-lbl {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 2px;
}

.section-wrap {
  padding: 60px 0;
}
.section-hd {
  text-align: center;
  margin-bottom: 36px;
}
.section-title {
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 800;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.15);
  margin-bottom: 10px;
}
.section-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
}

.casino-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.casino-card {
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid var(--clr-card-border);
  border-radius: var(--radius);
  padding: 20px 24px;
  backdrop-filter: blur(8px);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.casino-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.casino-card.top3 {
  border-color: var(--clr-btn-money);
  background: rgba(255, 134, 3, 0.12);
}
.casino-card.top1 {
  border-color: #ffd700;
  background: rgba(255, 215, 0, 0.1);
}
.casino-num {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--clr-btn-money);
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  padding: 4px 12px;
  border-radius: 0 0 var(--radius-sm) 0;
}
.casino-card.top1 .casino-num {
  background: #ffd700;
  color: #1a1a2e;
}
.casino-inner {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: flex-start;
}
.casino-logo-col {
  flex-shrink: 0;
}
.casino-logo {
  width: 90px;
  height: 60px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.9);
  padding: 6px;
}
.casino-logo-placeholder {
  width: 90px;
  height: 60px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
  color: var(--clr-text-dark);
  text-align: center;
  padding: 4px;
}
.casino-info {
  flex: 1;
  min-width: 200px;
}
.casino-name-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.casino-name {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
}
.casino-country {
  font-size: 18px;
}
.casino-rating {
  background: var(--clr-btn-demo);
  color: #fff;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
}
.casino-bonus {
  font-size: 16px;
  font-weight: 700;
  color: var(--clr-btn-money);
  margin-bottom: 10px;
}
.casino-features {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.casino-feature {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  padding: 4px 12px;
  font-size: 13px;
  color: #fff;
}
.casino-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 12px;
}
.casino-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}
.casino-providers {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 14px;
}
.casino-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.casino-pagination {
  justify-content: center;
  padding: 24px 0 0;
}

.section-info {
  background: rgba(0, 0, 0, 0.07);
}
.game-info-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.game-info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  overflow: hidden;
  min-width: 400px;
}
.game-info-table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.game-info-table tbody tr:last-child {
  border-bottom: none;
}
.game-info-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.07);
}
.game-info-table td {
  padding: 13px 20px;
  font-size: 15px;
  color: #fff;
  text-align: left;
  vertical-align: middle;
}
.git-label {
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  width: 240px;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.section-features {
  background: rgba(255, 255, 255, 0.05);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  backdrop-filter: blur(6px);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.feature-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--clr-btn-demo);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: #fff;
}
.feature-title {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.feature-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
}

.section-demo {
  background: rgba(0, 0, 0, 0.08);
}
.demo-wrap {
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.demo-frame-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
}
.demo-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.demo-actions {
  justify-content: center;
  gap: 16px;
  padding: 20px;
  flex-wrap: wrap;
}

.section-content-review {
  background: rgba(255, 255, 255, 0.05);
}
.review-author-block {
  gap: 16px;
  margin-bottom: 28px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  padding: 18px 22px;
}
.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--clr-btn-demo);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}
.author-name {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}
.author-role {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  margin: 3px 0 6px;
}
.author-link {
  font-size: 13px;
  color: var(--clr-btn-demo);
  font-weight: 600;
}
.content-block-review {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.95);
}
.content-block-review h2 {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin: 28px 0 12px;
}
.content-block-review h3 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin: 22px 0 10px;
}
.content-block-review p {
  margin-bottom: 16px;
}
.content-block-review ul,
.content-block-review ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
.content-block-review li {
  margin-bottom: 6px;
}
.content-block-review table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  overflow: hidden;
}
.content-block-review table td,
.content-block-review table th {
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  text-align: left;
}
.content-block-review table th {
  background: rgba(255, 255, 255, 0.12);
  font-weight: 700;
}
.content-block-review a {
  color: var(--clr-btn-demo);
  text-decoration: underline;
}
.content-block-review strong {
  color: #fff;
  font-weight: 700;
}

.proscons-wrap {
  gap: 20px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.pros-block,
.cons-block {
  flex: 1;
  min-width: 260px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  padding: 24px;
}
.pros-block {
  border-left: 4px solid var(--clr-btn-demo);
}
.cons-block {
  border-left: 4px solid #ff4d4d;
}
.pros-title,
.cons-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}
.pros-title {
  color: var(--clr-btn-demo);
}
.cons-title {
  color: #ff7070;
}
.pros-list,
.cons-list {
  list-style: none;
}
.pros-list li,
.cons-list li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
}
.pros-list li::before {
  content: "✓ ";
  color: var(--clr-btn-demo);
  font-weight: 700;
}
.cons-list li::before {
  content: "✗ ";
  color: #ff7070;
  font-weight: 700;
}

.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.review-card {
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  padding: 22px;
}
.review-header {
  gap: 14px;
  margin-bottom: 12px;
}
.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--clr-header);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  color: var(--clr-text-dark);
  flex-shrink: 0;
}
.review-name {
  font-weight: 700;
  font-size: 16px;
  color: #fff;
}
.review-stars {
  color: #ffd700;
  font-size: 16px;
  margin: 2px 0;
}
.review-date {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}
.review-text {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.65;
}

.section-faq {
  background: rgba(0, 0, 0, 0.07);
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  text-align: left;
  gap: 12px;
  transition: background var(--transition);
}
.faq-question:hover {
  background: rgba(255, 255, 255, 0.07);
}
.faq-icon {
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}
.faq-answer {
  padding: 0 22px 18px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.65;
}

.footer-wrap {
  background: var(--clr-footer);
  padding: 48px 0 0;
  margin-top: auto;
}
.footer-top {
  gap: 32px;
  flex-wrap: wrap;
  align-items: flex-start;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
.footer-logo-col {
  max-width: 240px;
}
.footer-logo img {
  margin-bottom: 12px;
  border-radius: var(--radius-sm);
}
.footer-desc {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.65);
  line-height: 1.6;
}
.footer-nav-col {
  min-width: 140px;
}
.footer-nav-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--clr-text-dark);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-nav-list {
  list-style: none;
}
.footer-nav-list li {
  margin-bottom: 8px;
}
.footer-nav-list a {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.7);
  transition: color var(--transition);
}
.footer-nav-list a:hover {
  color: var(--clr-text-dark);
}
.footer-trust-col {
  min-width: 200px;
}
.footer-trust-badges {
  gap: 8px;
  flex-wrap: wrap;
}
.trust-badge {
  background: rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--clr-text-dark);
}
.footer-payments {
  padding: 20px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.payments-img {
  max-height: 48px;
  width: auto;
  margin-top: 10px;
  border-radius: var(--radius-sm);
}
.footer-provider {
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  flex-wrap: wrap;
}
.footer-provider img {
  border-radius: var(--radius-sm);
}
.footer-bottom {
  padding: 20px 0;
}
.footer-legal {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.6;
  margin-bottom: 8px;
}
.footer-legal a {
  color: rgba(0, 0, 0, 0.7);
  text-decoration: underline;
}
.footer-copy {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.55);
}

.bonus-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--clr-text-dark);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.25);
  animation: slideUp 0.5s ease 2s both;
}
@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}
.bonus-widget.hidden {
  display: none;
}
.bw-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
  gap: 16px;
  flex-wrap: wrap;
}
.bw-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--clr-btn-money);
}
.bw-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}
.bw-btn {
  margin-left: auto;
  flex-shrink: 0;
}
.bw-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 18px;
  cursor: pointer;
  padding: 4px 8px;
  transition: color var(--transition);
  flex-shrink: 0;
}
.bw-close:hover {
  color: #fff;
}

.technical-content-box {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  padding: 36px 40px;
  margin: 40px 0;
  backdrop-filter: blur(6px);
}
.technical-breadcrumb {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
  display: flex;
  gap: 8px;
  align-items: center;
}
.technical-breadcrumb a {
  color: var(--clr-btn-demo);
}
.technical-h1 {
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 28px;
}
.technical-text {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.92);
}
.technical-text h2 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 28px 0 12px;
}
.technical-text h3 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 20px 0 8px;
}
.technical-text p {
  margin-bottom: 14px;
}
.technical-text ul,
.technical-text ol {
  padding-left: 22px;
  margin-bottom: 14px;
}
.technical-text li {
  margin-bottom: 6px;
}
.technical-text a {
  color: var(--clr-btn-demo);
  text-decoration: underline;
}
.technical-text strong {
  color: #fff;
  font-weight: 700;
}

.wp-block-spacer {
  display: block;
  height: 0;
}
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.elementor-hidden {
  display: none;
}
.wp-post-image {
  max-width: 100%;
}
.entry-content {
  margin: 0;
}
.site-main {
  display: block;
}
.nav-previous,
.nav-next {
  display: none;
}

.main-content {
  flex: 1;
}
.content-box {
  margin: 0;
}

@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hdr-nav-wrap {
    display: none;
  }
  .hdr-burger {
    display: flex;
  }
  .hdr-online-count {
    display: none;
  }
  .hdr-lang-wrap {
    order: -1;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    flex-wrap: wrap;
  }
  .hero-stat {
    min-width: 50%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }
  .hero-stat:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
  }
  .casino-inner {
    flex-direction: column;
  }
  .casino-actions {
    flex-direction: column;
  }
  .casino-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .game-info-table .git-label {
    width: 160px;
  }
  .technical-content-box {
    padding: 22px 16px;
  }
  .proscons-wrap {
    flex-direction: column;
  }
  .bw-inner {
    flex-wrap: wrap;
  }
  .bw-btn {
    width: 100%;
    justify-content: center;
  }
  .footer-top {
    flex-direction: column;
  }
  .hdr-right-wrap {
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .hero-btns {
    flex-direction: column;
  }
  .hero-btns .btn {
    width: 100%;
    justify-content: center;
  }
  .hero-stat {
    min-width: 100%;
    border-right: none;
  }
  .section-wrap {
    padding: 36px 0;
  }
}

@media (max-width: 768px) {
  .hdr-nav-wrap {
    display: none;
  }
  .hdr-burger {
    display: flex;
  }
  .hdr-online-count {
    display: none;
  }
  .hdr-lang-wrap {
    order: -1;
  }
  .hdr-btns {
    display: none;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    flex-wrap: wrap;
  }
  .hero-stat {
    min-width: 50%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }
  .hero-stat:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
  }
  .casino-inner {
    flex-direction: column;
  }
  .casino-actions {
    flex-direction: column;
  }
  .casino-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .game-info-table .git-label {
    width: 160px;
  }
  .technical-content-box {
    padding: 22px 16px;
  }
  .proscons-wrap {
    flex-direction: column;
  }
  .bw-inner {
    flex-wrap: wrap;
  }
  .bw-btn {
    width: 100%;
    justify-content: center;
  }
  .footer-top {
    flex-direction: column;
  }
  .hdr-right-wrap {
    flex-wrap: wrap;
  }
}
