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

:root {
  --clr-green: #31b04a;
  --clr-green-dark: #279040;
  --clr-red: #f4463d;
  --clr-red-dark: #d63830;
  --clr-white: #ffffff;
  --clr-bg: #ffffff;
  --clr-text: #2d2d2d;
  --clr-text-light: #666;
  --clr-dark: #1a1a2e;
  --clr-dark2: #16213e;
  --clr-dark3: #0f3460;
  --clr-card-bg: #f8f9fc;
  --clr-border: #e4e8f0;
  --clr-gold: #f5c518;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.16);
  --font: "Montserrat", "Open Sans", Arial, sans-serif;
  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--font);
  background: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: var(--clr-green);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: var(--clr-green-dark);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font);
  font-weight: 700;
  line-height: 1.25;
  color: var(--clr-dark);
}

.x7k2m {
  display: none;
}
.p9r3n {
  visibility: hidden;
  height: 0;
  overflow: hidden;
}
.b4v8q {
  position: absolute;
  left: -9999px;
}
.m3t5p {
  opacity: 0;
  pointer-events: none;
  height: 0;
}
.wp-post-image {
  display: inline-block;
}
.entry-title {
  font-size: inherit;
}
.elementor-widget-container {
  display: block;
}
.wp-block-group {
  display: block;
}
.f9z1x {
  width: 1px;
  height: 1px;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
  position: absolute;
}
.k2n8b {
  color: transparent;
  font-size: 0;
  line-height: 0;
}
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute;
  height: 1px;
  width: 1px;
  overflow: hidden;
}
.is-layout-flex {
  display: flex;
}
.elementor-container {
  display: block;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 11px 26px;
  border-radius: 50px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.9rem;
  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: var(--shadow);
  text-decoration: none;
}
.btn:active {
  transform: translateY(0);
}
.btn--green {
  background: var(--clr-green);
  color: #fff;
}
.btn--green:hover {
  background: var(--clr-green-dark);
  color: #fff;
}
.btn--red {
  background: var(--clr-red);
  color: #fff;
}
.btn--red:hover {
  background: var(--clr-red-dark);
  color: #fff;
}
.btn--lg {
  padding: 15px 38px;
  font-size: 1.05rem;
}
.btn--sm {
  padding: 8px 18px;
  font-size: 0.82rem;
}
.btn--outline-white {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}
.btn--outline-white:hover {
  background: #fff;
  color: var(--clr-dark);
}

.section-title {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--clr-dark);
}
.section-subtitle {
  color: var(--clr-text-light);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}
.section-head {
  text-align: center;
  margin-bottom: 2.5rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 12px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.4px;
}
.badge--green {
  background: rgba(49, 176, 74, 0.15);
  color: var(--clr-green);
}
.badge--gold {
  background: rgba(245, 197, 24, 0.15);
  color: #b89000;
}
.badge--red {
  background: rgba(244, 70, 61, 0.15);
  color: var(--clr-red);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--clr-dark);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}
.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px 0;
}
.header-logo {
  display: flex;
  align-items: center;
}
.header-logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
}
.header-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.header-nav a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 6px;
  transition:
    background var(--transition),
    color var(--transition);
  text-decoration: none;
}
.header-nav a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.header-online {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  white-space: nowrap;
}
.header-online-dot {
  width: 8px;
  height: 8px;
  background: var(--clr-green);
  border-radius: 50%;
  animation: pulse-dot 1.8s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(49, 176, 74, 0.6);
  }
  50% {
    box-shadow: 0 0 0 5px rgba(49, 176, 74, 0);
  }
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  outline: none;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition:
    transform var(--transition),
    opacity var(--transition);
}
.burger.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger.is-active span:nth-child(2) {
  opacity: 0;
}
.burger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  background: var(--clr-dark2);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}
.mobile-nav.is-open {
  display: block;
  max-height: 500px;
}
.mobile-nav-inner {
  padding: 16px 20px;
  display: grid;
  gap: 8px;
}
.mobile-nav a {
  display: block;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 10px 14px;
  border-radius: 8px;
  transition: background var(--transition);
  text-decoration: none;
}
.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.hero {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  background: var(--clr-dark) url("/boaban.webp") center/cover no-repeat;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 52, 96, 0.92) 0%,
    rgba(26, 26, 46, 0.85) 60%,
    rgba(244, 70, 61, 0.2) 100%
  );
}
.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--clr-bg));
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding: 80px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(49, 176, 74, 0.2);
  border: 1px solid rgba(49, 176, 74, 0.4);
  color: #7ee89a;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}
.hero-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
}
.hero-title span {
  color: var(--clr-gold);
}
.hero-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  margin-bottom: 28px;
  line-height: 1.7;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 32px;
}
.hero-stat {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  padding: 14px;
  text-align: center;
}
.hero-stat-val {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--clr-gold);
  display: block;
}
.hero-stat-lbl {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 2px;
}
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}
.hero-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  padding: 20px 24px;
  color: #fff;
  width: 100%;
  max-width: 340px;
  animation: float-y 3s ease-in-out infinite;
}
.hero-card:nth-child(2) {
  animation-delay: 0.8s;
}
@keyframes float-y {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.hero-card-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 6px;
}
.hero-card-val {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--clr-gold);
}
.hero-card-sub {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
}

.jackpots {
  padding: 70px 0 60px;
  background: linear-gradient(180deg, #f8f9fc 0%, #fff 100%);
}
.jackpots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.jackpot-card {
  background: linear-gradient(
    135deg,
    var(--clr-dark3) 0%,
    var(--clr-dark2) 100%
  );
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  box-shadow: var(--shadow);
}
.jackpot-card::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 130px;
  height: 130px;
  background: rgba(245, 197, 24, 0.08);
  border-radius: 50%;
}
.jackpot-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.jackpot-card-icon {
  font-size: 2.2rem;
  margin-bottom: 10px;
}
.jackpot-card-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.jackpot-card-amount {
  font-size: 2rem;
  font-weight: 800;
  color: var(--clr-gold);
  font-variant-numeric: tabular-nums;
}
.jackpot-card-sub {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 6px;
}
.jackpot-card:nth-child(2) {
  background: linear-gradient(135deg, #6b21a8 0%, #4c1d95 100%);
}
.jackpot-card:nth-child(3) {
  background: linear-gradient(135deg, #b45309 0%, #92400e 100%);
}

.tournaments {
  padding: 70px 0;
}
.tournaments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.tournament-card {
  background: var(--clr-card-bg);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  box-shadow: var(--shadow);
}
.tournament-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.tournament-card-top {
  background: linear-gradient(135deg, var(--clr-dark3), var(--clr-dark));
  padding: 20px;
  position: relative;
  overflow: hidden;
}
.tournament-card-top::before {
  content: "";
  position: absolute;
  top: -30px;
  left: -30px;
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}
.tournament-card-num {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.07);
  line-height: 1;
}
.tournament-card-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.tournament-card-desc {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
}
.tournament-card-body {
  padding: 18px 20px;
}
.tournament-timer {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  justify-content: center;
}
.timer-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--clr-dark);
  border-radius: 6px;
  padding: 8px 12px;
  min-width: 52px;
}
.timer-val {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.timer-lbl {
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 3px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.tournament-prize {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-top: 1px solid var(--clr-border);
}
.tournament-prize-lbl {
  font-size: 0.82rem;
  color: var(--clr-text-light);
}
.tournament-prize-val {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-green);
}
.tournament-card-footer {
  padding: 0 20px 20px;
}

.video-section {
  padding: 70px 0;
  background: var(--clr-dark);
}
.video-section .section-title {
  color: #fff;
}
.video-section .section-subtitle {
  color: rgba(255, 255, 255, 0.6);
}
.video-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 60px rgba(0, 0, 0, 0.5);
  background: #000;
  aspect-ratio: 16/9;
  max-width: 860px;
  margin: 0 auto;
}
.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.bonuses {
  padding: 70px 0;
}
.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.bonus-card {
  background: var(--clr-card-bg);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  box-shadow: var(--shadow);
}
.bonus-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--clr-green), #2196f3);
}
.bonus-card:nth-child(2)::after {
  background: linear-gradient(90deg, var(--clr-gold), var(--clr-red));
}
.bonus-card:nth-child(3)::after {
  background: linear-gradient(90deg, #9c27b0, #f44336);
}
.bonus-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.bonus-card-icon {
  font-size: 2.5rem;
  margin-bottom: 14px;
}
.bonus-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--clr-dark);
  margin-bottom: 8px;
}
.bonus-card-amount {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--clr-green);
  margin-bottom: 8px;
}
.bonus-card:nth-child(2) .bonus-card-amount {
  color: var(--clr-red);
}
.bonus-card:nth-child(3) .bonus-card-amount {
  color: #9c27b0;
}
.bonus-card-desc {
  font-size: 0.85rem;
  color: var(--clr-text-light);
  margin-bottom: 20px;
  line-height: 1.55;
}
.bonus-card-terms {
  font-size: 0.75rem;
  color: var(--clr-text-light);
  border-top: 1px solid var(--clr-border);
  padding-top: 12px;
}

.demo {
  padding: 70px 0;
  background: var(--clr-dark2);
}
.demo .section-title {
  color: #fff;
}
.demo .section-subtitle {
  color: rgba(255, 255, 255, 0.6);
}
.demo-wrap {
  position: relative;
  border-radius: var(--radius);
  box-shadow: 0 10px 60px rgba(0, 0, 0, 0.5);
  background: #000;
  max-width: 900px;
  margin: 0 auto;
  min-height: 500px;
}
.demo-wrap iframe {
  width: 100%;
  min-height: 500px;
  border: none;
  display: block;
}
.demo-note {
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
  margin-top: 14px;
}

.review {
  padding: 70px 0;
}
.review-inner {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
}
.review-main {
  min-width: 0;
}
.review-h1 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--clr-dark);
  margin-bottom: 16px;
}
.review-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--clr-border);
  flex-wrap: wrap;
}
.author-ava {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-green), #2196f3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.author-info-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--clr-dark);
}
.author-info-role {
  font-size: 0.78rem;
  color: var(--clr-text-light);
}
.review-date {
  font-size: 0.82rem;
  color: var(--clr-text-light);
  margin-left: auto;
}
.review-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(
    135deg,
    rgba(49, 176, 74, 0.07),
    rgba(33, 150, 243, 0.07)
  );
  border: 1px solid rgba(49, 176, 74, 0.2);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  margin-bottom: 24px;
}
.review-rating-stars {
  font-size: 1.2rem;
  color: var(--clr-gold);
}
.review-rating-val {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--clr-dark);
}
.review-rating-lbl {
  font-size: 0.82rem;
  color: var(--clr-text-light);
}

.content-body {
  font-size: 0.97rem;
  line-height: 1.85;
  color: var(--clr-text);
}
.content-body h1,
.content-body h2,
.content-body h3,
.content-body h4,
.content-body h5,
.content-body h6 {
  margin: 1.8em 0 0.8em;
  color: var(--clr-dark);
}
.content-body h2 {
  font-size: 1.45rem;
}
.content-body h3 {
  font-size: 1.2rem;
}
.content-body p {
  margin-bottom: 1em;
}
.content-body ul,
.content-body ol {
  padding-left: 1.6em;
  margin-bottom: 1em;
}
.content-body li {
  margin-bottom: 0.4em;
}
.content-body strong {
  font-weight: 700;
  color: var(--clr-dark);
}
.content-body a {
  color: var(--clr-green);
}
.content-body blockquote {
  border-left: 4px solid var(--clr-green);
  padding: 14px 18px;
  background: rgba(49, 176, 74, 0.05);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 1.2em 0;
  font-style: italic;
  color: var(--clr-text-light);
}
.content-body table {
  width: auto;
  margin: 1.2em auto;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.content-body table th,
.content-body table td {
  border: 1px solid var(--clr-border);
  padding: 10px 16px;
  text-align: left;
}
.content-body table th {
  background: var(--clr-dark);
  color: #fff;
  font-weight: 600;
}
.content-body table tr:nth-child(even) td {
  background: var(--clr-card-bg);
}
.content-body img {
  border-radius: var(--radius-sm);
  margin: 1em 0;
}

.review-aside {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.aside-card {
  background: var(--clr-card-bg);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}
.aside-card-title {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--clr-dark);
}
.aside-list {
  display: grid;
  gap: 8px;
  list-style: none;
}
.aside-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  padding: 6px 0;
  border-bottom: 1px solid var(--clr-border);
  gap: 8px;
}
.aside-list li:last-child {
  border-bottom: none;
}
.aside-list-key {
  color: var(--clr-text-light);
  flex-shrink: 0;
}
.aside-list-val {
  font-weight: 600;
  color: var(--clr-dark);
  text-align: right;
}
.pros-cons {
  display: grid;
  gap: 6px;
}
.pros-item,
.cons-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.85rem;
  line-height: 1.4;
}
.pros-item::before {
  content: "\2713";
  color: var(--clr-green);
  font-weight: 700;
  flex-shrink: 0;
}
.cons-item::before {
  content: "\2717";
  color: var(--clr-red);
  font-weight: 700;
  flex-shrink: 0;
}

.faq {
  padding: 70px 0;
  background: var(--clr-card-bg);
}
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition);
}
.faq-item:hover {
  box-shadow: var(--shadow-lg);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--clr-dark);
  text-align: left;
  gap: 16px;
  transition: background var(--transition);
}
.faq-question:hover {
  background: rgba(0, 0, 0, 0.02);
}
.faq-question[aria-expanded="true"] {
  color: var(--clr-green);
  background: rgba(49, 176, 74, 0.04);
}
.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--clr-card-bg);
  border: 1.5px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-text-light);
  transition:
    transform var(--transition),
    background var(--transition),
    color var(--transition);
}
.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  background: var(--clr-green);
  border-color: var(--clr-green);
  color: #fff;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-answer.is-open {
  max-height: 600px;
}
.faq-answer-inner {
  padding: 0 22px 20px;
  font-size: 0.92rem;
  color: var(--clr-text-light);
  line-height: 1.7;
}

.site-footer {
  background: var(--clr-dark);
  padding: 52px 0 0;
  margin-top: auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 250px 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-logo {
  margin-bottom: 14px;
}
.footer-logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}
.footer-tagline {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
  margin-bottom: 18px;
}
.footer-col-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.footer-links {
  display: grid;
  gap: 8px;
  list-style: none;
}
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition);
}
.footer-links a:hover {
  color: var(--clr-green);
}
.footer-payments {
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-payments-title {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.footer-logos-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.footer-logo-pill {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
}
.footer-bottom {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
}
.footer-legal {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  max-width: 600px;
  line-height: 1.5;
}
.footer-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}
.footer-stars {
  color: var(--clr-gold);
}

.cta-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  background: linear-gradient(
    90deg,
    var(--clr-dark2) 0%,
    var(--clr-dark3) 100%
  );
  border-top: 2px solid var(--clr-red);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.4);
  transition: transform var(--transition);
}
.cta-widget.is-hidden {
  transform: translateY(110%);
}
.widget-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.88rem;
  line-height: 1.4;
}
.widget-text strong {
  color: #fff;
  font-weight: 700;
  display: block;
  font-size: 1rem;
}
.widget-bonus {
  color: var(--clr-gold);
  font-weight: 700;
  font-size: 0.9rem;
}
.widget-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.widget-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  font-size: 1.2rem;
  padding: 4px 8px;
  line-height: 1;
  transition: color var(--transition);
}
.widget-close:hover {
  color: rgba(255, 255, 255, 0.8);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.94);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.c7x3k,
.n2r8t,
.w5p1q,
.e4b6m,
.h8j2s,
.u3k7n {
  display: none;
}
.yoast-seo-metabox-content {
  display: none;
}

@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    display: none;
  }
  .review-inner {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .section-title {
    font-size: 1.4rem;
  }
  .hero-title {
    font-size: 2rem;
  }
  .header-nav {
    display: none;
  }
  .burger {
    display: flex;
  }
  .jackpots-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .tournaments-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 14px;
    padding-bottom: 12px;
    scrollbar-width: none;
  }
  .tournaments-grid::-webkit-scrollbar {
    display: none;
  }
  .tournament-card {
    flex: 0 0 82vw;
    max-width: 320px;
    scroll-snap-align: start;
  }
  .bonuses-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 14px;
    padding-bottom: 12px;
    scrollbar-width: none;
  }
  .bonuses-grid::-webkit-scrollbar {
    display: none;
  }
  .bonus-card {
    flex: 0 0 82vw;
    max-width: 300px;
    scroll-snap-align: start;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .cta-widget {
    flex-wrap: wrap;
  }
  .widget-actions {
    width: 100%;
    justify-content: center;
  }
  .review-inner {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .hero-stats {
    grid-template-columns: 1fr 1fr;
  }
  .hero-stats .hero-stat:last-child {
    grid-column: 1/-1;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .header-actions .btn--outline-white {
    display: none;
  }
}
