*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --c-bg: #181819;
  --c-header: #232323;
  --c-btn-dark: #181819;
  --c-btn-orange: #eb880c;
  --c-btn-orange-hover: #d4780a;
  --c-text: #f0f0f0;
  --c-text-muted: #a0a0a0;
  --c-border: #2e2e2f;
  --c-card: #242425;
  --c-card-alt: #1e1e1f;
  --c-accent: #eb880c;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: 0.25s ease;
  --font-main: "Montserrat", Inter, Arial, sans-serif;
}
html {
  scroll-behavior: smooth;
  background: var(--c-bg);
}
body {
  font-family: var(--font-main);
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--c-accent);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: var(--c-btn-orange-hover);
}
ul {
  list-style: none;
}

.bx-wrap {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}
.bx-flex {
  display: flex;
  align-items: center;
}
.bx-flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.3px;
}
.bx-btn--dark {
  background: var(--c-btn-dark);
  color: var(--c-text);
  border: 1px solid var(--c-border);
}
.bx-btn--dark:hover {
  border-color: var(--c-accent);
  color: var(--c-accent);
  background: var(--c-btn-dark);
}
.bx-btn--orange {
  background: var(--c-btn-orange);
  color: #fff;
}
.bx-btn--orange:hover {
  background: var(--c-btn-orange-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(235, 136, 12, 0.35);
}
.bx-btn--lg {
  padding: 14px 32px;
  font-size: 16px;
  border-radius: var(--radius-md);
}
.bx-btn--sm {
  padding: 7px 16px;
  font-size: 13px;
}

#bx-header {
  background: var(--c-header);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--c-border);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}
.bx-header-inner {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.bx-logo img {
  height: 58px;
  width: auto;
}
.bx-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.bx-nav a {
  color: var(--c-text-muted);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.bx-nav a:hover {
  color: var(--c-text);
  background: rgba(255, 255, 255, 0.06);
}
.bx-header-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.bx-online {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--c-text-muted);
  margin-right: 8px;
}
.bx-online-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  animation: bxPulse 1.8s infinite;
}
@keyframes bxPulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.3);
  }
}
.bx-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.bx-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: all var(--transition);
}
.bx-burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.bx-burger.active span:nth-child(2) {
  opacity: 0;
}
.bx-burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.bx-mobile-menu {
  display: flex;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--c-header);
  z-index: 999;
  flex-direction: column;
  padding: 24px 20px;
  gap: 8px;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform var(--transition);
  visibility: hidden;
}
.bx-mobile-menu.active {
  transform: translateX(0);
  visibility: visible;
}
.bx-mobile-menu a {
  color: var(--c-text);
  font-size: 16px;
  font-weight: 500;
  padding: 14px 0;
  border-bottom: 1px solid var(--c-border);
}
.bx-mobile-menu a:hover {
  color: var(--c-accent);
}
.bx-mobile-menu-btns {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.bx-mobile-menu-btns .bx-btn {
  flex: 1;
  justify-content: center;
}

#bx-hero {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0e0e0f;
}
.bx-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("/bban.jpeg");
  background-size: cover;
  background-position: center;
  filter: brightness(0.45);
  transform: scale(1.03);
}
.bx-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(24, 24, 25, 0.9) 0%,
    rgba(235, 136, 12, 0.08) 100%
  );
}
.bx-hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 60px 0;
}
.bx-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(235, 136, 12, 0.18);
  border: 1px solid rgba(235, 136, 12, 0.35);
  color: var(--c-accent);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}
.bx-hero-title {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 16px;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}
.bx-hero-title span {
  color: var(--c-accent);
}
.bx-hero-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 32px;
  line-height: 1.6;
  max-width: 520px;
}
.bx-hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.bx-section {
  padding: 64px 0;
}
.bx-section-title {
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--c-text);
}
.bx-section-sub {
  color: var(--c-text-muted);
  font-size: 15px;
  margin-bottom: 40px;
}
.bx-section-head {
  margin-bottom: 40px;
}

#bx-advantages {
  background: var(--c-card-alt);
}
.bx-adv-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.bx-adv-card {
  flex: 1 1 220px;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.bx-adv-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--c-accent);
  opacity: 0;
  transition: opacity var(--transition);
}
.bx-adv-card:hover {
  border-color: rgba(235, 136, 12, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.3);
}
.bx-adv-card:hover::before {
  opacity: 1;
}
.bx-adv-icon {
  font-size: 32px;
  margin-bottom: 14px;
  line-height: 1;
}
.bx-adv-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--c-text);
}
.bx-adv-desc {
  font-size: 14px;
  color: var(--c-text-muted);
  line-height: 1.55;
}

#bx-jackpots {
  background: var(--c-bg);
  text-align: center;
}
.bx-jp-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.bx-jp-card {
  flex: 1 1 200px;
  max-width: 260px;
  background: linear-gradient(145deg, #242425, #1a1a1b);
  border: 1px solid rgba(235, 136, 12, 0.2);
  border-radius: var(--radius-lg);
  padding: 30px 20px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}
.bx-jp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(235, 136, 12, 0.15);
  border-color: rgba(235, 136, 12, 0.5);
}
.bx-jp-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at top,
    rgba(235, 136, 12, 0.07) 0%,
    transparent 70%
  );
}
.bx-jp-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--c-text-muted);
  margin-bottom: 10px;
  font-weight: 600;
}
.bx-jp-amount {
  font-size: 28px;
  font-weight: 900;
  color: var(--c-accent);
  line-height: 1.2;
  font-variant-numeric: tabular-nums;
}
.bx-jp-currency {
  font-size: 14px;
  color: var(--c-text-muted);
  margin-top: 6px;
}

#bx-app {
  background: var(--c-card-alt);
}
.bx-app-inner {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.bx-app-info {
  flex: 1 1 320px;
}
.bx-app-desc {
  color: var(--c-text-muted);
  font-size: 15px;
  margin-bottom: 28px;
  line-height: 1.6;
}
.bx-app-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}
.bx-app-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 12px 20px;
  color: var(--c-text);
  transition: all var(--transition);
  font-size: 13px;
  font-weight: 600;
}
.bx-app-btn:hover {
  border-color: var(--c-accent);
  color: var(--c-accent);
  background: rgba(235, 136, 12, 0.06);
  transform: translateY(-2px);
}
.bx-app-btn svg {
  flex-shrink: 0;
}
.bx-app-table-wrap {
  flex: 1 1 340px;
  overflow-x: auto;
}
.bx-app-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  background: var(--c-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--c-border);
}
.bx-app-table th {
  background: rgba(235, 136, 12, 0.12);
  color: var(--c-accent);
  font-weight: 700;
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid var(--c-border);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.bx-app-table td {
  padding: 13px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--c-text);
  vertical-align: top;
}
.bx-app-table td:first-child {
  color: var(--c-text-muted);
  width: 45%;
}
.bx-app-table tr:last-child td {
  border-bottom: none;
}
.bx-app-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

#bx-video {
  background: var(--c-bg);
  text-align: center;
}
.bx-video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-border);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
  max-width: 900px;
  margin: 0 auto;
  z-index: 2;
}
.bx-video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  pointer-events: auto;
  z-index: 3;
}

#bx-slot {
  background: var(--c-card-alt);
  text-align: center;
}
.bx-slot-machine {
  background: linear-gradient(145deg, #1c1c1d, #252526);
  border: 2px solid rgba(235, 136, 12, 0.25);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  max-width: 480px;
  margin: 0 auto;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}
.bx-slot-reels {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 24px;
}
.bx-slot-reel {
  width: 90px;
  height: 110px;
  background: var(--c-bg);
  border: 2px solid var(--c-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  overflow: hidden;
  position: relative;
}
.bx-slot-reel.spinning {
  animation: bxSpin 0.1s linear infinite;
}
@keyframes bxSpin {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0);
  }
}
.bx-slot-win {
  margin-bottom: 20px;
  min-height: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.bx-slot-win-text {
  font-size: 22px;
  font-weight: 800;
  color: var(--c-accent);
  animation: bxFadeIn 0.4s ease;
}
.bx-slot-win-sub {
  color: var(--c-text-muted);
  font-size: 15px;
}
@keyframes bxFadeIn {
  from {
    opacity: 0;
    transform: scale(0.85);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

#bx-review {
  background: var(--c-bg);
}
.bx-review-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 18px 22px;
}
.bx-author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(235, 136, 12, 0.15);
  border: 2px solid var(--c-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--c-accent);
  font-size: 18px;
  flex-shrink: 0;
}
.bx-author-name {
  font-weight: 700;
  font-size: 16px;
  color: var(--c-text);
}
.bx-author-role {
  font-size: 13px;
  color: var(--c-text-muted);
  margin-top: 2px;
}
.bx-author-link {
  font-size: 12px;
  color: var(--c-accent);
  text-decoration: none;
  display: inline-block;
  margin-top: 3px;
}
.bx-content-block {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  line-height: 1.75;
  font-size: 15.5px;
  color: var(--c-text);
}
.bx-content-block h1,
.bx-content-block h2,
.bx-content-block h3,
.bx-content-block h4,
.bx-content-block h5,
.bx-content-block h6 {
  color: var(--c-text);
  font-weight: 800;
  margin: 24px 0 12px;
  line-height: 1.3;
}
.bx-content-block h1 {
  font-size: clamp(20px, 3vw, 28px);
}
.bx-content-block h2 {
  font-size: clamp(18px, 2.5vw, 24px);
}
.bx-content-block h3 {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--c-accent);
}
.bx-content-block p {
  margin-bottom: 14px;
}
.bx-content-block ul,
.bx-content-block ol {
  margin: 12px 0 16px 22px;
  display: block;
}
.bx-content-block ul {
  list-style: disc;
}
.bx-content-block ol {
  list-style: decimal;
}
.bx-content-block li {
  margin-bottom: 6px;
  color: var(--c-text);
}
.bx-content-block a {
  color: var(--c-accent);
  text-decoration: underline;
}
.bx-content-block strong,
.bx-content-block b {
  font-weight: 700;
  color: var(--c-text);
}
.bx-content-block em,
.bx-content-block i {
  font-style: italic;
}
.bx-content-block table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  overflow-x: auto;
  display: block;
}
.bx-content-block table th {
  background: rgba(235, 136, 12, 0.12);
  color: var(--c-accent);
  padding: 12px 14px;
  text-align: left;
  border: 1px solid var(--c-border);
  font-weight: 700;
}
.bx-content-block table td {
  padding: 11px 14px;
  border: 1px solid var(--c-border);
  color: var(--c-text);
  text-align: left;
}
.bx-content-block table tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.03);
}
.bx-content-block blockquote {
  border-left: 3px solid var(--c-accent);
  padding-left: 18px;
  margin: 16px 0;
  color: var(--c-text-muted);
  font-style: italic;
}
.bx-content-block code {
  background: rgba(235, 136, 12, 0.12);
  padding: 2px 7px;
  border-radius: 4px;
  font-size: 13px;
  color: var(--c-accent);
}
.bx-content-block hr {
  border: none;
  border-top: 1px solid var(--c-border);
  margin: 24px 0;
}

#bx-testimonials {
  background: var(--c-card-alt);
}
.bx-testi-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 48px;
}
.bx-testi-card {
  flex: 1 1 260px;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: all var(--transition);
}
.bx-testi-card:hover {
  border-color: rgba(235, 136, 12, 0.3);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
}
.bx-testi-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.bx-testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: rgba(235, 136, 12, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--c-accent);
  font-size: 16px;
}
.bx-testi-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--c-text);
}
.bx-testi-date {
  font-size: 12px;
  color: var(--c-text-muted);
}
.bx-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 12px;
}
.bx-stars svg {
  fill: var(--c-accent);
  color: var(--c-accent);
}
.bx-testi-text {
  font-size: 14px;
  color: var(--c-text-muted);
  line-height: 1.6;
}
.bx-review-form {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  max-width: 600px;
}
.bx-review-form h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--c-text);
}
.bx-form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 18px;
}
.bx-form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.bx-form-input {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--c-text);
  font-family: var(--font-main);
  font-size: 15px;
  transition: border-color var(--transition);
  outline: none;
}
.bx-form-input:focus {
  border-color: var(--c-accent);
  box-shadow: 0 0 0 3px rgba(235, 136, 12, 0.12);
}
.bx-form-input::placeholder {
  color: rgba(160, 160, 160, 0.5);
}
textarea.bx-form-input {
  resize: vertical;
  min-height: 110px;
}
.bx-form-success {
  display: none;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: #22c55e;
  font-size: 15px;
  font-weight: 600;
  margin-top: 12px;
}

#bx-footer {
  background: var(--c-header);
  border-top: 1px solid var(--c-border);
  padding: 52px 0 28px;
}
.bx-footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}
.bx-footer-brand {
  flex: 1 1 240px;
}
.bx-footer-logo img {
  height: 34px;
  margin-bottom: 14px;
}
.bx-footer-tagline {
  font-size: 13px;
  color: var(--c-text-muted);
  line-height: 1.6;
  max-width: 260px;
}
.bx-footer-col {
  flex: 1 1 160px;
}
.bx-footer-col-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--c-text-muted);
  margin-bottom: 14px;
}
.bx-footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.bx-footer-col ul a {
  font-size: 14px;
  color: var(--c-text-muted);
  transition: color var(--transition);
}
.bx-footer-col ul a:hover {
  color: var(--c-accent);
}
.bx-footer-payments {
  margin-bottom: 28px;
}
.bx-footer-payments-title,
.bx-footer-providers-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--c-text-muted);
  margin-bottom: 14px;
}
.bx-footer-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.bx-payment-badge,
.bx-provider-badge {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--c-text-muted);
  transition: all var(--transition);
}
.bx-payment-badge:hover,
.bx-provider-badge:hover {
  border-color: var(--c-accent);
  color: var(--c-accent);
}
.bx-footer-divider {
  border: none;
  border-top: 1px solid var(--c-border);
  margin-bottom: 22px;
}
.bx-footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}
.bx-footer-copy {
  font-size: 13px;
  color: var(--c-text-muted);
}
.bx-footer-legal {
  font-size: 12px;
  color: rgba(160, 160, 160, 0.6);
  line-height: 1.5;
  max-width: 700px;
}

#bx-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  background: linear-gradient(90deg, #1c1c1d, var(--c-header));
  border-top: 2px solid var(--c-accent);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.4);
}
.bx-widget-text {
  font-size: 14px;
  color: var(--c-text);
  font-weight: 600;
}
.bx-widget-text span {
  color: var(--c-accent);
  font-weight: 800;
}
.bx-widget-close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--c-text-muted);
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  padding: 4px;
  transition: color var(--transition);
}
.bx-widget-close:hover {
  color: var(--c-text);
}

.bx-fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}
.bx-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.wp-block-gallery,
.wp-caption,
.wp-image-1,
.entry-content,
.post-meta,
.site-info,
.widget-area {
  display: none;
}

@media (max-width: 900px) {
  .bx-nav {
    display: none;
  }
  .bx-header-right .bx-btn {
    display: none;
  }
  .bx-burger {
    display: flex;
  }
  .bx-hero-content {
    padding: 40px 0;
  }
  .bx-app-inner {
    flex-direction: column;
  }
  .bx-content-block {
    padding: 24px 18px;
  }
  .bx-review-form {
    padding: 24px 18px;
  }
}
@media (max-width: 600px) {
  .bx-section {
    padding: 44px 0;
  }
  .bx-hero-btns {
    flex-direction: column;
    align-items: flex-start;
  }
  .bx-slot-reels {
    gap: 8px;
  }
  .bx-slot-reel {
    width: 75px;
    height: 90px;
    font-size: 36px;
  }
  .bx-footer-top {
    flex-direction: column;
    gap: 28px;
  }
  #bx-widget {
    padding: 10px 40px 10px 16px;
  }
}

.bx-hero-bg,
.bx-hero-overlay {
  pointer-events: none;
}
#bx-video {
  position: relative;
  z-index: 2;
}

#bx-video .bx-wrap,
.bx-video-wrap {
  position: relative;
  z-index: 5;
}
.bx-video-wrap iframe {
  pointer-events: auto !important;
  touch-action: auto;
}
@media (max-width: 900px) {
  #bx-widget {
    z-index: 3;
  }
}
