:root {
  --clr-header: #fe87d7;
  --clr-header-dark: #fd6cc8;
  --clr-btn-green: #73d245;
  --clr-btn-green-h: #5db834;
  --clr-btn-orange: #ff8603;
  --clr-btn-orange-h: #e07500;
  --clr-bg: #07a3fe;
  --clr-bg-dark: #0591e2;
  --clr-white: #ffffff;
  --clr-text-dark: #0a1628;
  --clr-text-light: #ffffff;
  --clr-card-bg: #ffffff;
  --clr-card-border: rgba(255, 255, 255, 0.3);
  --clr-footer-bg: #fe87d7;
  --clr-accent: #ffe436;
  --clr-overlay: rgba(7, 60, 110, 0.72);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.13);
  --shadow-card: 0 2px 16px rgba(0, 0, 0, 0.1);
  --transition: 0.22s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: var(--clr-bg);
  color: var(--clr-text-dark);
  line-height: 1.55;
  min-height: 100vh;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 16px;
}

.bx-9f2a {
  display: block;
}
.bx-hidden-a7 {
  display: none;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.header-wrap {
  background: var(--clr-header);
  box-shadow: 0 2px 12px rgba(253, 108, 200, 0.22);
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 16px;
  max-width: 1180px;
  margin: 0 auto;
}
.header-logo img {
  height: 48px;
  width: auto;
  display: block;
}
.header-logo {
  flex-shrink: 0;
}
.header-nav-list {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}
.header-nav-list a {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--clr-text-dark);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition:
    background var(--transition),
    color var(--transition);
}
.header-nav-list a:hover {
  background: rgba(255, 255, 255, 0.35);
}
.header-nav-list .nav-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.header-buttons {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.online-count {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--clr-text-dark);
  background: rgba(255, 255, 255, 0.4);
  border-radius: 20px;
  padding: 4px 10px;
  white-space: nowrap;
}
.online-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2ecc40;
  box-shadow: 0 0 0 2px rgba(46, 204, 64, 0.3);
  animation: pulse-dot 1.5s infinite;
}
@keyframes pulse-dot {
  0%,
  100% {
    box-shadow: 0 0 0 2px rgba(46, 204, 64, 0.3);
  }
  50% {
    box-shadow: 0 0 0 5px rgba(46, 204, 64, 0.1);
  }
}

.lang-switcher {
  position: relative;
}
.lang-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  border-radius: var(--radius-sm);
  padding: 6px 10px;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--clr-text-dark);
  transition: background var(--transition);
}
.lang-btn:hover {
  background: rgba(255, 255, 255, 0.55);
}
.lang-arrow {
  font-size: 0.65rem;
  transition: transform var(--transition);
}
.lang-btn.open .lang-arrow {
  transform: rotate(180deg);
}
.lang-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: var(--clr-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  min-width: 140px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition:
    opacity var(--transition),
    transform var(--transition);
  z-index: 200;
}
.lang-dropdown.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.lang-dropdown a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--clr-text-dark);
  transition: background var(--transition);
}
.lang-dropdown a:hover {
  background: #f3e6f8;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 7px;
  transition: background var(--transition);
}
.burger span {
  display: block;
  height: 2px;
  background: var(--clr-text-dark);
  border-radius: 2px;
  transition:
    transform var(--transition),
    opacity 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);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--clr-header);
  z-index: 999;
  flex-direction: column;
  padding: 80px 24px 24px;
  overflow-y: auto;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--clr-text-dark);
  border-radius: var(--radius-md);
  transition: background var(--transition);
}
.mobile-menu-nav a:hover {
  background: rgba(255, 255, 255, 0.35);
}
.mobile-menu-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  border-radius: var(--radius-sm);
  width: 36px;
  height: 36px;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--clr-text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: inherit;
  font-weight: 700;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition:
    background var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn:active {
  transform: scale(0.97);
}
.btn--green {
  background: var(--clr-btn-green);
  color: #0a1628;
}
.btn--green:hover {
  background: var(--clr-btn-green-h);
  box-shadow: 0 4px 14px rgba(115, 210, 69, 0.45);
}
.btn--orange {
  background: var(--clr-btn-orange);
  color: #fff;
}
.btn--orange:hover {
  background: var(--clr-btn-orange-h);
  box-shadow: 0 4px 14px rgba(255, 134, 3, 0.45);
}
.btn--sm {
  padding: 7px 14px;
  font-size: 0.82rem;
}
.btn--md {
  padding: 9px 18px;
  font-size: 0.9rem;
}
.btn--lg {
  padding: 13px 28px;
  font-size: 1.05rem;
}
.btn--xl {
  padding: 16px 36px;
  font-size: 1.15rem;
  border-radius: var(--radius-md);
}
.btn-pulse {
  animation: btn-glow 2s infinite;
}
@keyframes btn-glow {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 134, 3, 0.4);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(255, 134, 3, 0);
  }
}

.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #07a3fe;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("/okban.avif");
  background-size: cover;
  background-position: center;
  filter: brightness(0.72);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(7, 30, 80, 0.78) 0%,
    rgba(7, 163, 254, 0.28) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 60px 0;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--clr-btn-orange);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
  border-radius: 20px;
  padding: 4px 12px;
  margin-bottom: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero-title {
  font-size: clamp(1.9rem, 5vw, 3.2rem);
  font-weight: 900;
  color: var(--clr-white);
  line-height: 1.18;
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.32);
}
.hero-title span {
  color: var(--clr-accent);
}
.hero-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 28px;
  line-height: 1.6;
  max-width: 520px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  margin-top: 24px;
  color: var(--clr-white);
  font-size: 0.88rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.breadcrumbs-wrap {
  padding: 14px 0 8px;
}
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.75);
}
.breadcrumbs a {
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--transition);
}
.breadcrumbs a:hover {
  color: #fff;
}
.breadcrumbs-sep {
  opacity: 0.5;
}
.breadcrumbs-current {
  color: #fff;
  font-weight: 600;
}

.section {
  padding: 36px 0;
}
.section-title {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--clr-white);
  margin-bottom: 6px;
}
.section-sub {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 22px;
}

.box-card {
  background: rgba(255, 255, 255, 0.96);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 26px 24px;
  margin-bottom: 22px;
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.box-glass {
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 22px 20px;
  margin-bottom: 20px;
}
.box-dark {
  background: rgba(7, 30, 80, 0.72);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 24px 22px;
  color: var(--clr-white);
}

.jackpot-grid {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.jackpot-card {
  flex: 1 1 240px;
  border-radius: var(--radius-lg);
  padding: 22px 20px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: transform var(--transition);
}
.jackpot-card:hover {
  transform: translateY(-3px);
}
.jackpot-bronze {
  background: linear-gradient(135deg, #cd7f32 0%, #e8a860 100%);
  color: #fff;
}
.jackpot-silver {
  background: linear-gradient(135deg, #8e9eab 0%, #c5d3dc 100%);
  color: #fff;
}
.jackpot-gold {
  background: linear-gradient(135deg, #f7971e 0%, #ffd200 100%);
  color: #3a2000;
}
.jackpot-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.85;
  margin-bottom: 4px;
}
.jackpot-name {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 10px;
}
.jackpot-amount {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.jackpot-winners {
  text-align: left;
  margin-top: 6px;
}
.jackpot-winner-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  padding: 4px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.jackpot-winner-row:last-child {
  border-bottom: none;
}
.jackpot-winner-pos {
  font-weight: 800;
  opacity: 0.75;
  min-width: 18px;
}
.jackpot-winner-name {
  flex: 1;
  font-weight: 600;
}
.jackpot-winner-sum {
  font-weight: 700;
  opacity: 0.9;
}
.jackpot-sparkle {
  position: absolute;
  top: 12px;
  right: 14px;
  font-size: 1.3rem;
  opacity: 0.5;
}

.winners-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
}
.winners-table {
  width: 100%;
  min-width: 420px;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.winners-table thead th {
  background: rgba(7, 30, 80, 0.78);
  color: #fff;
  padding: 11px 14px;
  text-align: left;
  font-weight: 700;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.winners-table thead th:first-child {
  border-radius: var(--radius-sm) 0 0 0;
}
.winners-table thead th:last-child {
  border-radius: 0 var(--radius-sm) 0 0;
  text-align: right;
}
.winners-table tbody tr {
  background: rgba(255, 255, 255, 0.88);
  transition: background var(--transition);
}
.winners-table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.7);
}
.winners-table tbody tr:hover {
  background: rgba(255, 255, 255, 1);
}
.winners-table td {
  padding: 10px 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.winners-table td:last-child {
  text-align: right;
  font-weight: 700;
  color: #0a4a00;
}
.winners-table .rank-gold {
  color: #c8950a;
  font-weight: 800;
}
.winners-table .rank-silver {
  color: #6b7a8b;
  font-weight: 800;
}
.winners-table .rank-bronze {
  color: #8b5e3c;
  font-weight: 800;
}
.winners-table .rank-norm {
  color: var(--clr-text-dark);
  font-weight: 700;
}

.demo-wrap {
  text-align: center;
}
.demo-frame-container {
  position: relative;
  width: 100%;
  padding-bottom: 62%;
  border-radius: var(--radius-lg);
  background: #0a1a40;
  box-shadow: var(--shadow);
}
.demo-frame-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.demo-cta {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.demo-info-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 16px;
}
.demo-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
}

.content-block {
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-card);
}
.content-block h2 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0a1628;
  margin: 22px 0 10px;
}
.content-block h2:first-child {
  margin-top: 0;
}
.content-block h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a2a4a;
  margin: 16px 0 8px;
}
.content-block p {
  margin-bottom: 12px;
  line-height: 1.65;
  color: #1a2a4a;
}
.content-block ul,
.content-block ol {
  margin: 10px 0 14px 22px;
  color: #1a2a4a;
}
.content-block li {
  margin-bottom: 6px;
  line-height: 1.6;
}
.content-block table {
  width: 100%;
  border-collapse: collapse;
  margin: 14px 0;
  overflow-x: auto;
  display: block;
}
.content-block table th {
  background: #0a1a40;
  color: #fff;
  padding: 10px 14px;
  text-align: left;
  font-size: 0.9rem;
}
.content-block table td {
  padding: 9px 14px;
  border: 1px solid #dde3ee;
  font-size: 0.9rem;
}
.content-block table tr:nth-child(even) td {
  background: #f5f7fb;
}
.content-block a {
  color: #0066cc;
  text-decoration: underline;
}
.content-block strong {
  font-weight: 700;
}

.game-info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto;
}
.game-info-table tr:nth-child(even) {
  background: rgba(7, 163, 254, 0.06);
}
.game-info-table td {
  padding: 10px 16px;
  border: 1.5px solid #d0dff0;
  font-size: 0.93rem;
  vertical-align: middle;
}
.game-info-table td:first-child {
  font-weight: 700;
  color: #0a1628;
  width: 46%;
}
.game-info-table td:last-child {
  color: #1a2a4a;
}

.casino-grid {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.casino-card {
  flex: 1 1 260px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}
.casino-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.14);
}
.casino-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
}
.casino-card-logo {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-md);
  background: #f3f4f6;
  object-fit: contain;
  border: 1px solid #e0e6f0;
  padding: 4px;
}
.casino-card-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0a1628;
}
.casino-card-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #f7971e;
}
.casino-card-bonus {
  background: linear-gradient(90deg, #ffe436, #ffd000);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  font-size: 0.92rem;
  font-weight: 700;
  color: #3a2000;
  text-align: center;
}
.casino-card-tags {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}
.casino-card-tag {
  background: #f0f4ff;
  color: #1a2a6a;
  font-size: 0.78rem;
  font-weight: 600;
  border-radius: 12px;
  padding: 3px 9px;
}
.casino-card-btn {
  display: block;
  text-align: center;
  background: var(--clr-btn-orange);
  color: #fff;
  font-weight: 700;
  border-radius: var(--radius-sm);
  padding: 10px;
  transition: background var(--transition);
}
.casino-card-btn:hover {
  background: var(--clr-btn-orange-h);
}

.pros-cons-grid {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.pros-box,
.cons-box {
  flex: 1 1 240px;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-card);
}
.pros-box {
  border-top: 4px solid #73d245;
}
.cons-box {
  border-top: 4px solid #ff3b30;
}
.pros-cons-title {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.pros-cons-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.pros-cons-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.93rem;
  line-height: 1.5;
  color: #1a2a4a;
}
.pros-cons-list li::before {
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 0.95rem;
}
.pros-box .pros-cons-list li::before {
  content: "✓";
  color: #73d245;
  font-weight: 700;
}
.cons-box .pros-cons-list li::before {
  content: "✗";
  color: #ff3b30;
  font-weight: 700;
}

.author-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  box-shadow: var(--shadow-card);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.author-photo {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--clr-header);
  flex-shrink: 0;
  background: #e8d0f0;
}
.author-body {
  flex: 1;
  min-width: 200px;
}
.author-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: #0a1628;
  margin-bottom: 4px;
}
.author-role {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--clr-btn-green-h);
  margin-bottom: 8px;
}
.author-bio {
  font-size: 0.93rem;
  color: #2a3a5a;
  line-height: 1.6;
  margin-bottom: 12px;
}
.author-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.author-social-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  background: #0a66c2;
  border-radius: var(--radius-sm);
  padding: 6px 13px;
  transition: background var(--transition);
}
.author-social-link:hover {
  background: #084f95;
}
.author-updated {
  font-size: 0.8rem;
  color: #6b7a8b;
  margin-top: 8px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 18px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  color: #0a1628;
  text-align: left;
  gap: 12px;
  transition: background var(--transition);
}
.faq-q:hover {
  background: #f9f3ff;
}
.faq-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--clr-btn-orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
  transition:
    transform var(--transition),
    background var(--transition);
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--clr-btn-green);
}
.faq-a {
  display: none;
  padding: 0 18px 15px;
  font-size: 0.94rem;
  color: #2a3a5a;
  line-height: 1.65;
}
.faq-item.open .faq-a {
  display: block;
}

.reviews-grid {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.review-card {
  flex: 1 1 260px;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 20px 18px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.review-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-header), var(--clr-btn-orange));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.review-author-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: #0a1628;
}
.review-date {
  font-size: 0.78rem;
  color: #8a9ab0;
}
.review-stars {
  color: #f7971e;
  font-size: 1rem;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.review-text {
  font-size: 0.91rem;
  color: #2a3a5a;
  line-height: 1.62;
}

.sticky-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: linear-gradient(90deg, var(--clr-header) 0%, #fd6cc8 100%);
  box-shadow: 0 -3px 18px rgba(253, 108, 200, 0.35);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}
.sticky-widget-text {
  font-size: 0.92rem;
  font-weight: 700;
  color: #0a1628;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sticky-widget-bonus {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.35);
  border-radius: var(--radius-sm);
  padding: 4px 10px;
  font-weight: 800;
}
.sticky-widget-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.widget-close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.3rem;
  color: #0a1628;
  opacity: 0.5;
  padding: 0 4px;
  line-height: 1;
}
.widget-close:hover {
  opacity: 0.9;
}
body.widget-closed .sticky-widget {
  display: none;
}
body {
  padding-bottom: 62px;
}

.footer-wrap {
  background: var(--clr-footer-bg);
  margin-top: auto;
  padding: 32px 0 18px;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 24px;
}
.footer-col {
  min-width: 160px;
}
.footer-logo img {
  height: 44px;
  width: auto;
  margin-bottom: 12px;
}
.footer-tagline {
  font-size: 0.84rem;
  color: #0a1628;
  opacity: 0.75;
  max-width: 230px;
  line-height: 1.5;
}
.footer-heading {
  font-size: 0.88rem;
  font-weight: 800;
  color: #0a1628;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.footer-links a {
  font-size: 0.88rem;
  color: #0a1628;
  opacity: 0.8;
  transition: opacity var(--transition);
}
.footer-links a:hover {
  opacity: 1;
  text-decoration: underline;
}
.footer-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.payment-badge {
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 5px 10px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #0a1628;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.footer-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.trust-badge {
  background: rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-sm);
  padding: 5px 10px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #0a1628;
  border: 1px solid rgba(0, 0, 0, 0.08);
}
.footer-divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.12);
  margin: 18px 0;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-copy {
  font-size: 0.82rem;
  color: #0a1628;
  opacity: 0.7;
  line-height: 1.5;
}
.footer-age {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #0a1628;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  flex-shrink: 0;
}
.footer-provider {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
}
.footer-provider img {
  height: 28px;
  width: auto;
  opacity: 0.75;
  filter: grayscale(30%);
}
.footer-legal-text {
  font-size: 0.78rem;
  color: #0a1628;
  opacity: 0.62;
  line-height: 1.55;
  margin-top: 12px;
  max-width: 900px;
}

.tech-content {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  margin-top: 20px;
  margin-bottom: 30px;
  box-shadow: var(--shadow-card);
}
.tech-content h2 {
  font-size: 1.28rem;
  font-weight: 800;
  color: #0a1628;
  margin: 22px 0 10px;
}
.tech-content h2:first-child {
  margin-top: 0;
}
.tech-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a2a4a;
  margin: 16px 0 7px;
}
.tech-content p {
  margin-bottom: 11px;
  line-height: 1.65;
  color: #1a2a4a;
  font-size: 0.97rem;
}
.tech-content ul,
.tech-content ol {
  margin: 10px 0 14px 22px;
  color: #1a2a4a;
}
.tech-content li {
  margin-bottom: 6px;
  line-height: 1.6;
  font-size: 0.96rem;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in-up {
  animation: fadeInUp 0.55s ease both;
}
.fade-in-up-2 {
  animation: fadeInUp 0.55s 0.12s ease both;
}
.fade-in-up-3 {
  animation: fadeInUp 0.55s 0.24s ease both;
}

@keyframes countUp {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.wp-block-separator {
  border: none;
  border-top: 1px solid #e0e6ee;
  margin: 20px 0;
}
.entry-meta {
  display: none;
}
.post-thumbnail {
  display: none;
}
.wp-caption {
  display: none;
}
.elementor-hidden {
  display: none;
}
.wpcf7-hidden {
  display: none;
}
.yoast-seo-markup {
  display: none;
}
[data-elementor-type] {
  font-family: inherit;
}

.bx-xk9p2m {
  border-radius: var(--radius-lg);
}
.bx-a7f3q1 {
  overflow: hidden;
}
.bx-t8r6n4 {
  position: relative;
}
.bx-c2d9w7 {
  display: flex;
  flex-direction: column;
}
.bx-e5l1z8 {
  gap: 16px;
}
.bx-m3v6k0 {
  flex-wrap: wrap;
}
.bx-q4j8p5 {
  align-items: stretch;
}
.ix-9a2b3c {
  font-variant-numeric: tabular-nums;
}

@media (max-width: 900px) {
  .header-nav-list {
    display: none;
  }
  .header-buttons {
    display: none;
  }
  .burger {
    display: flex;
  }
  .jackpot-grid {
    flex-direction: column;
  }
  .casino-grid {
    flex-direction: column;
  }
  .pros-cons-grid {
    flex-direction: column;
  }
  .reviews-grid {
    flex-direction: column;
  }
  .hero {
    min-height: 380px;
  }
  .hero-content {
    padding: 40px 0;
  }
  .footer-inner {
    gap: 18px;
  }
}
@media (max-width: 640px) {
  .section-title {
    font-size: 1.25rem;
  }
  .hero-title {
    font-size: 1.7rem;
  }
  .hero-actions {
    flex-direction: column;
    gap: 10px;
  }
  .box-card {
    padding: 18px 14px;
  }
  .author-card {
    flex-direction: column;
  }
  .sticky-widget {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-bottom {
    flex-direction: column;
  }
  .lang-switcher {
    display: none;
  }
  .online-count {
    display: none;
  }
}
@media (max-width: 400px) {
  .header-inner {
    padding: 8px 10px;
  }
  .btn--lg,
  .btn--xl {
    padding: 11px 20px;
    font-size: 0.97rem;
  }
}
