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

:root {
  --clr-bg: #323234;
  --clr-bg2: #28282a;
  --clr-bg3: #1e1e20;
  --clr-hdr: #000000;
  --clr-teal: #00fbc8;
  --clr-red: #ff2e09;
  --clr-text: #e8e8ea;
  --clr-text-muted: #a0a0a6;
  --clr-border: #3e3e42;
  --clr-card: #2a2a2d;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --ff: "PT Sans", sans-serif;
}

html {
  scroll-behavior: smooth;
  background: var(--clr-bg);
}
body {
  font-family: var(--ff);
  background: var(--clr-bg);
  color: var(--clr-text);
  font-size: 15px;
  line-height: 1.65;
  overflow-x: hidden;
}
a {
  color: var(--clr-teal);
  text-decoration: none;
  transition: opacity 0.2s;
}
a:hover {
  opacity: 0.8;
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hdr9x2 {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--clr-hdr);
  border-bottom: 1px solid #1a1a1a;
  padding: 10px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}
.hdr9x2-inner {
  min-height: 54px;
}
.hdr9x2-logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  border-radius: var(--radius-sm);
}
.hdr9x2-nav-link {
  color: #ccc;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.hdr9x2-nav-link:hover {
  color: var(--clr-teal);
  opacity: 1;
}
.hdr9x2-online {
  font-size: 12px;
  color: var(--clr-text-muted);
  margin-right: 6px;
}
.hdr9x2-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  display: inline-block;
  animation: pulse-dot 1.5s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
  }
  50% {
    box-shadow: 0 0 0 5px rgba(34, 197, 94, 0);
  }
}
.hdr9x2-online-count {
  color: #22c55e;
  font-weight: 700;
}

.btn-hdr-login {
  background: transparent;
  border: 1.5px solid var(--clr-teal);
  color: var(--clr-teal);
  font-weight: 700;
  font-size: 13px;
  padding: 6px 16px;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
  font-family: var(--ff);
}
.btn-hdr-login:hover {
  background: var(--clr-teal);
  color: #000;
}
.btn-hdr-reg {
  background: var(--clr-red);
  border: 1.5px solid var(--clr-red);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  padding: 6px 16px;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
  font-family: var(--ff);
}
.btn-hdr-reg:hover {
  background: #e02200;
  border-color: #e02200;
  color: #fff;
}

.hdr9x2-burger {
  background: none;
  border: 1.5px solid #444;
  border-radius: var(--radius-sm);
  width: 38px;
  height: 38px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.hdr9x2-burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: #ccc;
  border-radius: 2px;
  transition: all 0.3s;
}
.hdr9x2-burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hdr9x2-burger.active span:nth-child(2) {
  opacity: 0;
}
.hdr9x2-burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hdr9x2-mobile-menu {
  display: none;
  background: #111;
  border-top: 1px solid #222;
  padding: 16px 20px;
  flex-direction: column;
  gap: 4px;
}
.hdr9x2-mobile-menu.open {
  display: flex;
}
.hdr9x2-mob-link {
  display: block;
  padding: 10px 8px;
  color: #ccc;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  border-bottom: 1px solid #222;
  transition: color 0.2s;
}
.hdr9x2-mob-link:hover {
  color: var(--clr-teal);
}
.hdr9x2-mobile-online {
  font-size: 13px;
  color: var(--clr-text-muted);
}

.b9r2-hero-section {
  position: relative;
  overflow: hidden;
}
.b9r2-hero-bg {
  background: var(--clr-hdr) url("/gBan.png") center/cover no-repeat;
  min-height: 520px;
  display: flex;
  align-items: center;
  position: relative;
}
.b9r2-hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(0, 0, 0, 0.45) 60%,
    transparent 100%
  );
}
.b9r2-hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  padding: 60px 0;
}
.b9r2-hero-badge {
  display: inline-block;
  background: var(--clr-teal);
  color: #000;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.b9r2-hero-h1 {
  font-size: clamp(26px, 5vw, 46px);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}
.b9r2-hero-sub {
  font-size: 16px;
  color: #ccc;
  margin-bottom: 28px;
  line-height: 1.6;
}
.btn-reg-lg {
  background: var(--clr-red);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 13px 28px;
  border-radius: var(--radius-md);
  border: none;
  font-family: var(--ff);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  box-shadow: 0 4px 18px rgba(255, 46, 9, 0.35);
}
.btn-reg-lg:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 46, 9, 0.5);
}
.btn-demo-lg {
  background: transparent;
  border: 2px solid var(--clr-teal);
  color: var(--clr-teal);
  font-weight: 700;
  font-size: 15px;
  padding: 12px 28px;
  border-radius: var(--radius-md);
  font-family: var(--ff);
  transition: all 0.2s;
}
.btn-demo-lg:hover {
  background: var(--clr-teal);
  color: #000;
}

.b9r2-hero-stats {
  padding-top: 8px;
}
.b9r2-stat-item {
  display: flex;
  flex-direction: column;
}
.b9r2-stat-num {
  font-size: 22px;
  font-weight: 700;
  color: var(--clr-teal);
  line-height: 1;
}
.b9r2-stat-label {
  font-size: 11px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.b9r2-main {
  padding: 0 0 60px;
}

.b9r2-section-title {
  text-align: center;
  margin-bottom: 32px;
}
.b9r2-section-title h2 {
  font-size: clamp(20px, 3.5vw, 30px);
  font-weight: 700;
  color: #fff;
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
}
.b9r2-section-title h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--clr-teal);
  border-radius: 2px;
}
.b9r2-section-sub {
  color: var(--clr-text-muted);
  margin-top: 10px;
  font-size: 14px;
}

/* --- PROS/CONS --- */
.b9r2-pros-cons-wrap {
  padding: 60px 0 40px;
}
.b9r2-pros-block,
.b9r2-cons-block {
  background: var(--clr-card);
  border-radius: var(--radius-lg);
  padding: 28px;
  height: 100%;
  border: 1px solid var(--clr-border);
}
.b9r2-pros-block {
  border-top: 3px solid var(--clr-teal);
}
.b9r2-cons-block {
  border-top: 3px solid var(--clr-red);
}
.b9r2-pros-header,
.b9r2-cons-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}
.b9r2-pros-list,
.b9r2-cons-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.b9r2-pros-list li,
.b9r2-cons-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--clr-text);
  line-height: 1.5;
}
.b9r2-pros-list li svg,
.b9r2-cons-list li svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.b9r2-jackpots-wrap {
  padding: 40px 0;
}
.b9r2-jackpot-card {
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
  transition: transform 0.25s;
}
.b9r2-jackpot-card:hover {
  transform: translateY(-4px);
}
.b9r2-jk-gold {
  background: linear-gradient(135deg, #1a1400 0%, #2d2000 100%);
  border-color: #c9a227;
}
.b9r2-jk-silver {
  background: linear-gradient(135deg, #141416 0%, #222226 100%);
  border-color: #8e9499;
}
.b9r2-jk-bronze {
  background: linear-gradient(135deg, #1a0f00 0%, #291800 100%);
  border-color: #b8722a;
}
.b9r2-jk-mini {
  background: linear-gradient(135deg, #001a14 0%, #00291f 100%);
  border-color: var(--clr-teal);
}
.b9r2-jk-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #aaa;
  margin-bottom: 8px;
}
.b9r2-jk-amount {
  font-size: clamp(18px, 3vw, 26px);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
}
.b9r2-jk-gold .b9r2-jk-amount {
  color: #f5c842;
}
.b9r2-jk-silver .b9r2-jk-amount {
  color: #c0c8d0;
}
.b9r2-jk-bronze .b9r2-jk-amount {
  color: #e8924a;
}
.b9r2-jk-mini .b9r2-jk-amount {
  color: var(--clr-teal);
}
.b9r2-jk-update {
  font-size: 11px;
  color: #666;
  margin-top: 6px;
}

.b9r2-bonuses-wrap {
  padding: 40px 0;
}
.b9r2-bonus-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition:
    transform 0.25s,
    border-color 0.25s;
}
.b9r2-bonus-card:hover {
  transform: translateY(-4px);
  border-color: var(--clr-teal);
}
.b9r2-bonus-icon {
  margin-bottom: 12px;
}
.b9r2-bonus-tag {
  display: inline-block;
  background: rgba(0, 251, 200, 0.12);
  color: var(--clr-teal);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
}
.b9r2-bonus-title {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.b9r2-bonus-amount {
  font-size: 28px;
  font-weight: 700;
  color: var(--clr-teal);
  margin-bottom: 10px;
}
.b9r2-bonus-desc {
  font-size: 13px;
  color: var(--clr-text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}
.btn-bonus-get {
  background: var(--clr-red);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 24px;
  border-radius: var(--radius-md);
  border: none;
  font-family: var(--ff);
  transition: all 0.2s;
  display: inline-block;
}
.btn-bonus-get:hover {
  background: #e02200;
  color: #fff;
  transform: translateY(-1px);
}

.b9r2-games-wrap {
  padding: 40px 0;
}
.b9r2-game-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--clr-card);
  transition: transform 0.25s;
}
.b9r2-game-card:hover {
  transform: translateY(-4px);
}
.b9r2-game-img-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}
.b9r2-game-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.b9r2-game-card:hover .b9r2-game-img {
  transform: scale(1.06);
}
.b9r2-game-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s;
}
.b9r2-game-card:hover .b9r2-game-overlay {
  opacity: 1;
}
.btn-game-play {
  background: var(--clr-teal);
  color: #000;
  font-weight: 700;
  font-size: 13px;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  border: none;
  font-family: var(--ff);
  transition: transform 0.2s;
}
.btn-game-play:hover {
  transform: scale(1.05);
  color: #000;
}
.b9r2-game-info {
  padding: 10px 12px;
}
.b9r2-game-name {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.b9r2-game-provider {
  font-size: 11px;
  color: var(--clr-text-muted);
}
.btn-see-all {
  background: transparent;
  border: 2px solid var(--clr-teal);
  color: var(--clr-teal);
  font-weight: 700;
  font-size: 14px;
  padding: 11px 28px;
  border-radius: var(--radius-md);
  font-family: var(--ff);
  transition: all 0.2s;
  display: inline-block;
}
.btn-see-all:hover {
  background: var(--clr-teal);
  color: #000;
}

.b9r2-demo-wrap {
  padding: 40px 0;
}
.b9r2-demo-block {
  background: var(--clr-card);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--clr-border);
}
.b9r2-iframe-wrap {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #000;
  aspect-ratio: 16/9;
}
.b9r2-game-iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  border: none;
}
.b9r2-demo-sidebar {
  background: var(--clr-bg3);
  border-radius: var(--radius-md);
  padding: 24px;
  height: 100%;
}
.b9r2-demo-side-title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}
.b9r2-demo-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.b9r2-demo-features li {
  font-size: 14px;
  color: var(--clr-text-muted);
  border-bottom: 1px solid var(--clr-border);
  padding-bottom: 8px;
}
.b9r2-demo-features li strong {
  color: var(--clr-teal);
}
.b9r2-demo-cta-text {
  font-size: 14px;
  color: #aaa;
  margin-bottom: 12px;
}
.btn-reg-demo {
  background: var(--clr-red);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  border: none;
  font-family: var(--ff);
  transition: all 0.2s;
}
.btn-reg-demo:hover {
  background: #e02200;
  color: #fff;
}

.b9r2-wheel-wrap {
  padding: 40px 0;
}
.b9r2-wheel-container {
  background: var(--clr-card);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  border: 1px solid var(--clr-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.b9r2-wheel-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.b9r2-wheel-wrap-inner {
  position: relative;
}
#wheelCanvas {
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(0, 251, 200, 0.2);
  display: block;
  max-width: 100%;
}
.b9r2-wheel-pointer {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 28px;
  color: var(--clr-teal);
  filter: drop-shadow(0 0 6px var(--clr-teal));
}
.btn-spin {
  background: var(--clr-teal);
  color: #000;
  font-weight: 700;
  font-size: 16px;
  padding: 13px 40px;
  border-radius: var(--radius-md);
  border: none;
  font-family: var(--ff);
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(0, 251, 200, 0.3);
}
.btn-spin:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 251, 200, 0.45);
}
.btn-spin:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}
.b9r2-wheel-result {
  text-align: center;
  animation: fadeIn 0.4s ease;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.b9r2-wheel-win {
  font-size: 20px;
  font-weight: 700;
  color: var(--clr-teal);
  margin-bottom: 16px;
  line-height: 1.4;
}
.btn-reg-win {
  background: var(--clr-red);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 12px 28px;
  border-radius: var(--radius-md);
  border: none;
  font-family: var(--ff);
  transition: all 0.2s;
  display: inline-block;
}
.btn-reg-win:hover {
  background: #e02200;
  color: #fff;
  transform: translateY(-2px);
}

.b9r2-review-wrap {
  padding: 40px 0;
}
.b9r2-review-author-bar {
  background: var(--clr-card);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  border: 1px solid var(--clr-border);
}
.b9r2-author-avatar {
  width: 52px;
  height: 52px;
  background: var(--clr-teal);
  color: #000;
  font-weight: 700;
  font-size: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.b9r2-author-name {
  font-weight: 700;
  color: #fff;
  font-size: 15px;
}
.b9r2-author-role {
  font-size: 12px;
  color: var(--clr-text-muted);
}
.b9r2-author-linkedin {
  font-size: 12px;
  color: var(--clr-teal);
  text-decoration: none;
}
.b9r2-author-linkedin:hover {
  text-decoration: underline;
}

.b9r2-content-block {
  background: var(--clr-card);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--clr-border);
  line-height: 1.75;
}
.b9r2-content-block h1,
.b9r2-content-block h2,
.b9r2-content-block h3,
.b9r2-content-block h4,
.b9r2-content-block h5,
.b9r2-content-block h6 {
  color: #fff;
  font-weight: 700;
  margin: 24px 0 12px;
  line-height: 1.3;
}
.b9r2-content-block h2 {
  font-size: clamp(18px, 3vw, 24px);
  border-left: 3px solid var(--clr-teal);
  padding-left: 14px;
}
.b9r2-content-block h3 {
  font-size: clamp(16px, 2.5vw, 20px);
}
.b9r2-content-block p {
  margin-bottom: 16px;
  color: var(--clr-text);
}
.b9r2-content-block a {
  color: var(--clr-teal);
}
.b9r2-content-block ul,
.b9r2-content-block ol {
  padding-left: 22px;
  margin-bottom: 16px;
}
.b9r2-content-block li {
  margin-bottom: 6px;
  color: var(--clr-text);
}
.b9r2-content-block table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px auto;
  font-size: 14px;
  overflow-x: auto;
  display: block;
}
.b9r2-content-block table th,
.b9r2-content-block table td {
  border: 1px solid var(--clr-border);
  padding: 10px 14px;
  text-align: left;
}
.b9r2-content-block table th {
  background: var(--clr-bg3);
  color: var(--clr-teal);
  font-weight: 700;
}
.b9r2-content-block table tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.03);
}
.b9r2-content-block blockquote {
  border-left: 3px solid var(--clr-teal);
  padding: 12px 18px;
  background: rgba(0, 251, 200, 0.05);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 18px 0;
  color: #ccc;
  font-style: italic;
}
.b9r2-content-block strong {
  color: #fff;
}
.b9r2-content-block img {
  max-width: 100%;
  border-radius: var(--radius-sm);
  margin: 16px auto;
}

.b9r2-faq-wrap {
  padding: 40px 0;
}
.b9r2-faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.b9r2-faq-item {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.b9r2-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 22px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  gap: 12px;
  user-select: none;
  transition: background 0.2s;
}
.b9r2-faq-q:hover {
  background: rgba(0, 251, 200, 0.05);
}
.b9r2-faq-q.open {
  color: var(--clr-teal);
}
.b9r2-faq-icon {
  font-size: 22px;
  font-weight: 400;
  color: var(--clr-teal);
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.b9r2-faq-q.open .b9r2-faq-icon {
  transform: rotate(45deg);
}
.b9r2-faq-a {
  display: none;
  padding: 0 22px 18px;
  font-size: 14px;
  color: var(--clr-text-muted);
  line-height: 1.7;
  border-top: 1px solid var(--clr-border);
}
.b9r2-faq-a.open {
  display: block;
}

.b9r2-reviews-wrap {
  padding: 40px 0;
}
.b9r2-review-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  height: 100%;
  transition: border-color 0.25s;
}
.b9r2-review-card:hover {
  border-color: var(--clr-teal);
}
.b9r2-rev-avatar {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--clr-border);
}
.b9r2-rev-name {
  font-weight: 700;
  color: #fff;
  font-size: 14px;
}
.b9r2-rev-stars {
  display: flex;
  gap: 2px;
  margin-top: 3px;
}
.b9r2-rev-text {
  font-size: 14px;
  color: var(--clr-text-muted);
  line-height: 1.7;
  margin-top: 14px;
}

.b9r2-review-form-wrap {
  background: var(--clr-card);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--clr-border);
  max-width: 600px;
}
.b9r2-form-title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
}
.b9r2-rev-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.b9r2-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.b9r2-form-label {
  font-size: 13px;
  font-weight: 700;
  color: #ccc;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.b9r2-form-input,
.b9r2-form-textarea {
  background: var(--clr-bg3);
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  color: var(--clr-text);
  font-family: var(--ff);
  font-size: 14px;
  transition: border-color 0.2s;
  width: 100%;
}
.b9r2-form-input:focus,
.b9r2-form-textarea:focus {
  outline: none;
  border-color: var(--clr-teal);
}
.b9r2-form-textarea {
  resize: vertical;
  min-height: 110px;
}
.btn-submit-review {
  background: var(--clr-teal);
  color: #000;
  font-weight: 700;
  font-size: 15px;
  padding: 12px 28px;
  border-radius: var(--radius-md);
  border: none;
  font-family: var(--ff);
  cursor: pointer;
  align-self: flex-start;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.btn-submit-review:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 251, 200, 0.3);
}
.b9r2-form-success {
  background: rgba(0, 251, 200, 0.08);
  border: 1px solid rgba(0, 251, 200, 0.3);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 14px;
  color: var(--clr-teal);
  display: flex;
  align-items: center;
  gap: 8px;
}

.ftr7k1 {
  background: var(--clr-hdr);
  border-top: 1px solid #1a1a1a;
  padding: 50px 0 30px;
}
.ftr7k1-logo {
  height: 36px;
  width: auto;
  object-fit: contain;
  border-radius: var(--radius-sm);
}
.ftr7k1-lic {
  font-size: 11px;
  color: #666;
  line-height: 1.5;
}
.ftr7k1-col-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #888;
  margin-bottom: 12px;
}
.ftr7k1-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ftr7k1-link {
  font-size: 13px;
  color: #888;
  transition: color 0.2s;
}
.ftr7k1-link:hover {
  color: var(--clr-teal);
}
.ftr7k1-payments,
.ftr7k1-providers {
}
.ftr7k1-pay-badge {
  background: #1a1a1c;
  border: 1px solid #333;
  border-radius: var(--radius-sm);
  padding: 4px 10px;
  font-size: 11px;
  color: #aaa;
  font-weight: 700;
}
.ftr7k1-prov-badge {
  background: rgba(0, 251, 200, 0.06);
  border: 1px solid rgba(0, 251, 200, 0.15);
  border-radius: var(--radius-sm);
  padding: 4px 10px;
  font-size: 11px;
  color: var(--clr-teal);
  font-weight: 700;
}
.ftr7k1-desc-sm {
  font-size: 12px;
  color: #777;
  line-height: 1.6;
}
.btn-ftr-partner {
  background: transparent;
  border: 1.5px solid var(--clr-teal);
  color: var(--clr-teal);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-family: var(--ff);
  transition: all 0.2s;
  display: inline-block;
}
.btn-ftr-partner:hover {
  background: var(--clr-teal);
  color: #000;
}
.ftr7k1-divider {
  border-color: #1e1e1e;
  margin: 30px 0 20px;
}
.ftr7k1-legal {
  font-size: 11px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 12px;
}
.ftr7k1-copyright {
  font-size: 12px;
  color: #444;
}
.ftr7k1-support-title {
  font-size: 12px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0;
}

.b9r2-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #0a0a0b;
  border-top: 2px solid var(--clr-red);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s;
}
.b9r2-widget.hidden {
  transform: translateY(100%);
}
.b9r2-widget-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  flex-wrap: wrap;
}
.b9r2-widget-bonus {
  font-size: 17px;
  font-weight: 700;
  color: var(--clr-teal);
}
.b9r2-widget-sub {
  font-size: 12px;
  color: #888;
}
.btn-widget-reg {
  background: var(--clr-red);
  color: #fff !important;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: var(--radius-md);
  border: none;
  font-family: var(--ff);
  transition: all 0.2s;
  text-decoration: none !important;
  white-space: nowrap;
  display: inline-block;
}
.btn-widget-reg:hover {
  background: #e02200;
  transform: translateY(-1px);
}
.b9r2-widget-close {
  background: none;
  border: none;
  color: #555;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
  transition: color 0.2s;
  flex-shrink: 0;
}
.b9r2-widget-close:hover {
  color: #aaa;
}

.x8f2-placeholder {
  display: none;
  width: 0;
  height: 0;
  overflow: hidden;
}
.wp-block-separator {
  border: none;
  height: 2px;
  background: var(--clr-border);
  margin: 20px 0;
}
.entry-meta {
  font-size: 12px;
  color: #666;
}
.wp-caption {
  text-align: center;
  font-size: 12px;
  color: #777;
}
.screen-reader-text {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.elementor-widget-wrap {
  display: flex;
  flex-wrap: wrap;
}
.post-type-page .entry-content {
  line-height: 1.7;
}
.site-branding {
  display: flex;
  align-items: center;
}
.widget-area {
  padding: 20px;
}
.navigation-top {
  border-bottom: 1px solid #eee;
}
.z9q1-hidden {
  visibility: hidden;
}
.p4w7-dummy {
  opacity: 0;
  pointer-events: none;
}
.mq3r-unused {
  color: transparent;
  font-size: 0;
}

@media (max-width: 991px) {
  .b9r2-hero-bg {
    min-height: 400px;
  }
  .b9r2-hero-content {
    padding: 50px 0;
  }
}
@media (max-width: 767px) {
  .b9r2-hero-bg {
    min-height: 340px;
    background-position: right center;
  }
  .b9r2-hero-bg::before {
    background: rgba(0, 0, 0, 0.8);
  }
  .b9r2-content-block {
    padding: 22px;
  }
  .b9r2-review-form-wrap {
    padding: 22px;
  }
  .b9r2-bonus-card {
    padding: 22px 16px;
  }
  .b9r2-demo-block {
    padding: 18px;
  }
  .b9r2-wheel-container {
    padding: 24px 16px;
  }
  .ftr7k1 {
    padding: 36px 0 20px;
  }
  #wheelCanvas {
    width: 280px;
    height: 280px;
  }
  .b9r2-widget {
    padding: 10px 14px;
  }
  .b9r2-widget-bonus {
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  .b9r2-stat-item {
    min-width: 80px;
  }
  .ftr7k1-top {
    text-align: center;
  }
  .ftr7k1-nav-list {
    align-items: center;
  }
}
