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

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

:root {
  --clr-bg: #181819;
  --clr-header: #232323;
  --clr-btn-dark: #181819;
  --clr-btn-orange: #eb880c;
  --clr-btn-orange-h: #d97a0b;
  --clr-text: #e8e8ea;
  --clr-text-muted: #a0a0a8;
  --clr-border: #2e2e32;
  --clr-card: #1e1e21;
  --clr-card2: #222228;
  --clr-gold: #eb880c;
  --clr-plus: #27ae60;
  --clr-minus: #e74c3c;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --font-head: "Montserrat", Arial, sans-serif;
  --font-body: "Inter", Arial, sans-serif;
  --transition: 0.22s ease;
}

html {
  background: var(--clr-bg);
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  background: var(--clr-bg);
  color: var(--clr-text);
  font-size: 15px;
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
}

.bx-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

a {
  color: var(--clr-gold);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: var(--clr-btn-orange-h);
}

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

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-head);
  font-weight: 700;
  color: #f5f5f7;
  line-height: 1.25;
}

h2 {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  margin-bottom: 1rem;
}
h3 {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  margin-bottom: 0.75rem;
}
h4 {
  font-size: 1.05rem;
}

p {
  margin-bottom: 0.9rem;
  color: var(--clr-text);
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 18px;
}
.section-gap {
  padding: 52px 0;
}
.section-gap-sm {
  padding: 32px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  border: none;
  transition:
    background var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
}
.btn:active {
  transform: translateY(0);
}
.btn--dark {
  background: var(--clr-btn-dark);
  color: #f5f5f7;
  border: 1px solid #3a3a40;
}
.btn--dark:hover {
  background: #232328;
  color: #f5f5f7;
}
.btn--orange {
  background: var(--clr-btn-orange);
  color: #fff;
}
.btn--orange:hover {
  background: var(--clr-btn-orange-h);
  color: #fff;
}
.btn--lg {
  padding: 14px 32px;
  font-size: 1rem;
  border-radius: var(--radius-md);
}
.btn--sm {
  padding: 6px 14px;
  font-size: 0.82rem;
}

.section-title {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-family: var(--font-head);
  font-weight: 700;
  color: #f5f5f7;
  margin-bottom: 1.4rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-title::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 1.3em;
  background: var(--clr-gold);
  border-radius: 2px;
  flex-shrink: 0;
}

.card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}

.card2 {
  background: var(--clr-card2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 22px 20px;
}

.bx-header {
  background: var(--clr-header);
  position: sticky;
  top: 0;
  z-index: 900;
  border-bottom: 1px solid #2a2a2e;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
}
.bx-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  height: 64px;
}
.bx-logo img {
  height: 60px;
  width: auto;
  object-fit: contain;
}
.bx-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.bx-nav a {
  color: #c8c8ce;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 6px 11px;
  border-radius: var(--radius-sm);
  transition:
    background var(--transition),
    color var(--transition);
}
.bx-nav a:hover {
  background: #2a2a2e;
  color: #f5f5f7;
}
.bx-header__right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.bx-online {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--clr-text-muted);
  white-space: nowrap;
}
.bx-online__dot {
  width: 8px;
  height: 8px;
  background: var(--clr-plus);
  border-radius: 50%;
  animation: pulse-dot 1.8s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(39, 174, 96, 0.6);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(39, 174, 96, 0);
  }
}
.bx-header__btns {
  display: flex;
  gap: 8px;
  align-items: center;
}
.bx-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.bx-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition:
    transform var(--transition),
    opacity 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-nav {
  display: none;
  flex-direction: column;
  background: var(--clr-header);
  border-top: 1px solid #2a2a2e;
  padding: 14px 18px 18px;
  gap: 8px;
}
.bx-mobile-nav.open {
  display: flex;
}
.bx-mobile-nav a {
  color: #c8c8ce;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--clr-border);
}
.bx-mobile-nav a:hover {
  background: #2a2a2e;
  color: #f5f5f7;
}

.bx-hero {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
}
.bx-hero__bg {
  position: absolute;
  inset: 0;
  background: url("/Xban.jpeg") center/cover no-repeat;
  z-index: 0;
}
.bx-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(24, 24, 25, 0.95) 0%,
    rgba(24, 24, 25, 0.7) 55%,
    rgba(24, 24, 25, 0.2) 100%
  );
  z-index: 1;
}
.bx-hero__content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 60px 0;
}
.bx-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(235, 136, 12, 0.15);
  border: 1px solid rgba(235, 136, 12, 0.35);
  border-radius: 40px;
  padding: 5px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--clr-gold);
  font-family: var(--font-head);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.bx-hero__title {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 14px;
  color: #fff;
}
.bx-hero__title span {
  color: var(--clr-gold);
}
.bx-hero__subtitle {
  font-size: 1.05rem;
  color: #c8c8ce;
  margin-bottom: 28px;
  line-height: 1.6;
}
.bx-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.bx-hero__bonus {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  font-size: 0.82rem;
  color: var(--clr-text-muted);
}
.bx-hero__bonus-icon {
  width: 36px;
  height: 36px;
  background: rgba(235, 136, 12, 0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

/* ── BREADCRUMBS ── */
.bx-breadcrumbs {
  padding: 12px 0;
}
.bx-breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: center;
  list-style: none;
  font-size: 0.82rem;
  color: var(--clr-text-muted);
}
.bx-breadcrumbs__list li + li::before {
  content: "/";
  margin-right: 4px;
  color: #444;
}
.bx-breadcrumbs__list a {
  color: var(--clr-text-muted);
}
.bx-breadcrumbs__list a:hover {
  color: var(--clr-gold);
}
.bx-breadcrumbs__list .current {
  color: var(--clr-gold);
}

/* ── TABLE COMMON ── */
.tbl-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-md);
}
.bx-table {
  width: 100%;
  min-width: 480px;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.bx-table th,
.bx-table td {
  text-align: left;
  padding: 12px 16px;
  border: 1px solid var(--clr-border);
}
.bx-table th {
  background: #232328;
  color: var(--clr-gold);
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.bx-table tr:nth-child(even) td {
  background: #1c1c1f;
}
.bx-table tr:hover td {
  background: #22222a;
  transition: background 0.15s;
}
.bx-table td:first-child {
  color: var(--clr-text-muted);
  font-weight: 500;
  white-space: nowrap;
  font-size: 0.85rem;
}
.bx-table td:last-child {
  color: var(--clr-text);
}

/* ── INFO TABLE ── */
.bx-info-section {
  background: var(--clr-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border);
  padding: 28px;
}

/* ── MIRRORS SECTION ── */
.bx-mirrors__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 0.85rem;
  color: var(--clr-text-muted);
}
.bx-mirrors__live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--clr-plus);
}
.bx-mirrors__live::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--clr-plus);
  border-radius: 50%;
  display: inline-block;
  animation: pulse-dot 1.8s ease-in-out infinite;
}
.bx-table .mirror-link {
  color: var(--clr-gold);
  font-weight: 600;
  text-decoration: none;
}
.bx-table .mirror-link:hover {
  text-decoration: underline;
}
.bx-badge {
  display: inline-block;
  padding: 2px 9px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  font-family: var(--font-head);
}
.bx-badge--green {
  background: rgba(39, 174, 96, 0.18);
  color: var(--clr-plus);
}
.bx-badge--gray {
  background: rgba(160, 160, 168, 0.12);
  color: var(--clr-text-muted);
}

/* ── PROS CONS ── */
.bx-proscons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.bx-proscons__col {
  background: var(--clr-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border);
  padding: 24px 22px;
}
.bx-proscons__col--plus {
  border-top: 3px solid var(--clr-plus);
}
.bx-proscons__col--minus {
  border-top: 3px solid var(--clr-minus);
}
.bx-proscons__title {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.bx-proscons__title--plus {
  color: var(--clr-plus);
}
.bx-proscons__title--minus {
  color: var(--clr-minus);
}
.bx-proscons__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.bx-proscons__list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--clr-text);
}
.bx-proscons__list li::before {
  content: "";
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-size: 10px 10px;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 2px;
}
.bx-proscons__col--plus .bx-proscons__list li::before {
  background-color: rgba(39, 174, 96, 0.18);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'%3E%3Cpath d='M1 5l3 3 5-6' stroke='%2327ae60' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.bx-proscons__col--minus .bx-proscons__list li::before {
  background-color: rgba(231, 76, 60, 0.12);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'%3E%3Cpath d='M2 2l6 6M8 2L2 8' stroke='%23e74c3c' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
}

.bx-video {
  background: var(--clr-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border);
  padding: 28px;
}
.bx-video__frame {
  position: relative;
  padding-bottom: 56.25%;
  border-radius: var(--radius-md);
  background: #0d0d0e;
}
.bx-video__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: var(--radius-md);
}

.bx-wheel-section {
  background: var(--clr-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border);
  padding: 32px 28px;
  text-align: center;
}
.bx-wheel__subtitle {
  color: var(--clr-text-muted);
  font-size: 0.9rem;
  margin-bottom: 24px;
}
.bx-wheel__canvas-wrap {
  position: relative;
  width: 280px;
  height: 280px;
  margin: 0 auto 24px;
}
#bx-wheel-canvas {
  border-radius: 50%;
  box-shadow:
    0 0 0 4px var(--clr-border),
    0 0 30px rgba(235, 136, 12, 0.2);
}
.bx-wheel__needle {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 22px solid var(--clr-gold);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}
.bx-wheel__btn {
  margin: 0 auto;
  min-width: 180px;
}
.bx-wheel__result {
  margin-top: 22px;
  padding: 20px 24px;
  background: rgba(235, 136, 12, 0.1);
  border: 1px solid rgba(235, 136, 12, 0.3);
  border-radius: var(--radius-md);
  display: none;
}
.bx-wheel__result.show {
  display: block;
  animation: fade-in 0.4s ease;
}
.bx-wheel__result-title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-gold);
  margin-bottom: 8px;
}
.bx-wheel__result p {
  font-size: 0.92rem;
  margin-bottom: 14px;
}
.bx-wheel__result--lose {
  background: rgba(231, 76, 60, 0.08);
  border-color: rgba(231, 76, 60, 0.25);
}
.bx-wheel__result--lose .bx-wheel__result-title {
  color: var(--clr-minus);
}

/* ── CONTENT BLOCK ── */
.bx-review-section {
  background: var(--clr-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border);
  padding: 32px 30px;
}
.bx-review-section h1 {
  font-size: clamp(1.5rem, 4vw, 2.1rem);
  margin-bottom: 1.2rem;
}
.bx-content {
  font-size: 0.93rem;
  line-height: 1.72;
}
.bx-content h2 {
  font-size: 1.4rem;
  margin: 1.8rem 0 0.9rem;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--clr-border);
}
.bx-content h3 {
  font-size: 1.15rem;
  margin: 1.4rem 0 0.7rem;
}
.bx-content h4 {
  font-size: 1rem;
  margin: 1.1rem 0 0.5rem;
  color: var(--clr-gold);
}
.bx-content p {
  margin-bottom: 0.9rem;
}
.bx-content ul,
.bx-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.bx-content li {
  margin-bottom: 0.4rem;
}
.bx-content a {
  color: var(--clr-gold);
  text-decoration: underline;
}
.bx-content a:hover {
  color: var(--clr-btn-orange-h);
}
.bx-content strong,
.bx-content b {
  font-weight: 700;
  color: #f0f0f2;
}
.bx-content em,
.bx-content i {
  font-style: italic;
  color: #c8c8ce;
}
.bx-content blockquote {
  border-left: 3px solid var(--clr-gold);
  padding: 10px 16px;
  margin: 1rem 0;
  background: rgba(235, 136, 12, 0.06);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--clr-text-muted);
}
.bx-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  font-size: 0.88rem;
  overflow-x: auto;
  display: block;
}
.bx-content table th,
.bx-content table td {
  text-align: left;
  padding: 10px 14px;
  border: 1px solid var(--clr-border);
}
.bx-content table th {
  background: #232328;
  color: var(--clr-gold);
  font-weight: 600;
}
.bx-content table tr:nth-child(even) td {
  background: #1c1c1f;
}
.bx-content img {
  border-radius: var(--radius-sm);
  margin: 1rem 0;
}
.bx-content code {
  background: #232328;
  border: 1px solid var(--clr-border);
  border-radius: 4px;
  padding: 2px 6px;
  font-size: 0.85em;
  color: #e8a04a;
}
.bx-content pre {
  background: #232328;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 16px;
  overflow-x: auto;
  margin-bottom: 1rem;
}
.bx-content pre code {
  background: none;
  border: none;
  padding: 0;
}
.bx-content hr {
  border: none;
  border-top: 1px solid var(--clr-border);
  margin: 1.5rem 0;
}

/* ── AUTHOR ── */
.bx-author {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 20px;
  align-items: start;
}
.bx-author__photo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--clr-gold);
  flex-shrink: 0;
}
.bx-author__name {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: #f5f5f7;
  margin-bottom: 4px;
}
.bx-author__role {
  font-size: 0.8rem;
  color: var(--clr-gold);
  margin-bottom: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.bx-author__bio {
  font-size: 0.86rem;
  color: var(--clr-text-muted);
  line-height: 1.55;
  margin-bottom: 12px;
}
.bx-author__links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.bx-author__links a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  background: #232328;
  border: 1px solid var(--clr-border);
  border-radius: 20px;
  font-size: 0.8rem;
  color: var(--clr-text-muted);
  transition: all var(--transition);
}
.bx-author__links a:hover {
  border-color: var(--clr-gold);
  color: var(--clr-gold);
}

/* ── FAQ ── */
.bx-faq {
  background: var(--clr-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border);
  padding: 28px;
}
.bx-faq__item {
  border-bottom: 1px solid var(--clr-border);
  overflow: hidden;
}
.bx-faq__item:last-child {
  border-bottom: none;
}
.bx-faq__question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  color: #f5f5f7;
  font-family: var(--font-head);
  font-size: 0.93rem;
  font-weight: 600;
  cursor: pointer;
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: color var(--transition);
}
.bx-faq__question:hover {
  color: var(--clr-gold);
}
.bx-faq__icon {
  width: 22px;
  height: 22px;
  background: rgba(235, 136, 12, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    transform var(--transition),
    background var(--transition);
}
.bx-faq__icon svg {
  transition: transform var(--transition);
}
.bx-faq__item.open .bx-faq__icon {
  background: var(--clr-gold);
}
.bx-faq__item.open .bx-faq__icon svg {
  transform: rotate(180deg);
}
.bx-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.35s ease;
  font-size: 0.88rem;
  color: var(--clr-text-muted);
  line-height: 1.65;
}
.bx-faq__item.open .bx-faq__answer {
  max-height: 400px;
  padding-bottom: 16px;
}

/* ── FOOTER ── */
.bx-footer {
  background: var(--clr-header);
  border-top: 1px solid #2a2a2e;
  margin-top: auto;
  padding: 48px 0 24px;
}
.bx-footer__top {
  display: grid;
  grid-template-columns: 220px 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--clr-border);
}
.bx-footer__logo-area .bx-logo img {
  height: 60px;
}
.bx-footer__tagline {
  font-size: 0.82rem;
  color: var(--clr-text-muted);
  margin-top: 10px;
  line-height: 1.55;
}
.bx-footer__col-title {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--clr-gold);
  margin-bottom: 14px;
}
.bx-footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.bx-footer__links a {
  font-size: 0.84rem;
  color: var(--clr-text-muted);
}
.bx-footer__links a:hover {
  color: var(--clr-gold);
}
.bx-footer__providers {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}
.bx-footer__provider-tag {
  background: #2a2a2e;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 5px 12px;
  font-size: 0.78rem;
  color: var(--clr-text-muted);
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 0.3px;
}
.bx-footer__payments {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.bx-footer__payment-tag {
  background: #2a2a2e;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 5px 12px;
  font-size: 0.78rem;
  color: var(--clr-text-muted);
  font-family: var(--font-head);
  font-weight: 600;
}
.bx-footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
  font-size: 0.78rem;
  color: #55555e;
}
.bx-footer__bottom a {
  color: #55555e;
}
.bx-footer__bottom a:hover {
  color: var(--clr-text-muted);
}
.bx-footer__legal {
  font-size: 0.75rem;
  color: #44444c;
  line-height: 1.55;
  text-align: center;
  max-width: 880px;
  margin: 6px auto 0;
}

/* ── STICKY WIDGET ── */
.bx-sticky-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 800;
  background: #191919;
  border-top: 2px solid var(--clr-gold);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.5);
}
.bx-sticky-widget__text {
  display: flex;
  flex-direction: column;
}
.bx-sticky-widget__bonus {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--clr-gold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.bx-sticky-widget__desc {
  font-size: 0.82rem;
  color: var(--clr-text);
}
.bx-sticky-widget__close {
  background: none;
  border: none;
  color: var(--clr-text-muted);
  font-size: 1.3rem;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
  flex-shrink: 0;
  transition: color var(--transition);
}
.bx-sticky-widget__close:hover {
  color: #f5f5f7;
}

/* ── ANIMATIONS ── */
@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slide-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.anim-fade {
  animation: fade-in 0.5s ease both;
}
.anim-slide {
  animation: slide-up 0.6s ease both;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}
[data-reveal].revealed {
  opacity: 1;
  transform: none;
}

/* ── DIVIDER ── */
.bx-sep {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--clr-border),
    transparent
  );
  margin: 0;
}

.wpx-entry-content,
.elementor-widget-wrap,
.entry-title {
  display: none;
}
.wp-block-image,
.has-text-align-center {
}
.woocommerce-page .bx_unused_el {
  pointer-events: none;
  width: 0;
  height: 0;
  overflow: hidden;
  position: absolute;
}
._bxr19f3 {
  font-variant: normal;
}
._bxc2a8e {
  animation-delay: 0.1s;
}
._bx77d1f {
  letter-spacing: normal;
}

@media (max-width: 1024px) {
  .bx-footer__top {
    grid-template-columns: 1fr 1fr;
  }
  .bx-footer__logo-area {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .bx-header__inner {
    grid-template-columns: auto 1fr auto;
  }
  .bx-nav {
    display: none;
  }
  .bx-burger {
    display: flex;
  }
  .bx-online {
    display: none;
  }
  .bx-hero {
    min-height: 320px;
  }
  .bx-hero__content {
    padding: 40px 0;
  }
  .bx-proscons {
    grid-template-columns: 1fr;
  }
  .bx-author {
    grid-template-columns: 70px 1fr;
  }
  .bx-author__photo {
    width: 70px;
    height: 70px;
  }
  .bx-footer__top {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .bx-sticky-widget {
    flex-wrap: wrap;
    gap: 8px;
  }
  .section-gap {
    padding: 36px 0;
  }
  .bx-review-section {
    padding: 22px 16px;
  }
  .bx-wheel-section {
    padding: 24px 16px;
  }
  .bx-video {
    padding: 20px 16px;
  }
}

@media (max-width: 480px) {
  .bx-hero__actions {
    flex-direction: column;
  }
  .bx-hero__actions .btn {
    width: 100%;
    justify-content: center;
  }
  .btn--lg {
    padding: 12px 24px;
    font-size: 0.93rem;
  }
  .bx-author {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
  .bx-author__links {
    justify-content: center;
  }
}

body {
  padding-bottom: 70px;
}
