:root {
  --c-bg: #1b1f30;
  --c-header: #151928;
  --c-btn-login: #333951;
  --c-btn-reg: #5236f0;
  --c-text: #e8eaf0;
  --c-text-muted: #9ba3c0;
  --c-accent: #5236f0;
  --c-accent2: #7c5cfc;
  --c-gold: #f5c518;
  --c-border: rgba(255, 255, 255, 0.08);
  --c-card: #20253a;
  --c-card2: #1a1e2e;
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: var(--c-accent2);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--c-gold);
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
}

.bsz-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

.bsz-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  border: none;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}

.bsz-btn--login {
  background: var(--c-btn-login);
  color: #fff;
}

.bsz-btn--login:hover {
  background: #424a68;
  color: #fff;
}

.bsz-btn--reg {
  background: var(--c-btn-reg);
  color: #fff;
  box-shadow: 0 4px 20px rgba(82, 54, 240, 0.4);
}

.bsz-btn--reg:hover {
  background: var(--c-accent2);
  color: #fff;
  box-shadow: 0 6px 28px rgba(82, 54, 240, 0.6);
  transform: translateY(-1px);
}

.bsz-btn--gold {
  background: linear-gradient(135deg, #f5c518, #e8a200);
  color: #111;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(245, 197, 24, 0.35);
}

.bsz-btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(245, 197, 24, 0.5);
  color: #111;
}

.bsz-btn--lg {
  padding: 14px 32px;
  font-size: 16px;
  border-radius: var(--radius);
}

.bsz-section {
  padding: 60px 0;
}

.bsz-section-title {
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
}

.bsz-section-sub {
  color: var(--c-text-muted);
  font-size: 15px;
  margin-bottom: 36px;
}

.bsz-section-head {
  margin-bottom: 36px;
}

.bsz-header {
  background: var(--c-header);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--c-border);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.bsz-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 68px;
}

.bsz-header__logo {
  flex-shrink: 0;
}

.bsz-header__logo img {
  height: 42px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(24%) sepia(77%) saturate(3247%)
    hue-rotate(237deg) brightness(91%) contrast(98%);
}

.bsz-header__nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.bsz-header__nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--c-text-muted);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.bsz-header__nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.bsz-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bsz-header__online {
  font-size: 12px;
  color: var(--c-text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.bsz-header__online-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3ddc84;
  display: inline-block;
  animation: bszPulse 1.8s infinite;
}

.bsz-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
}

.bsz-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--transition);
}

.bsz-burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.bsz-burger.active span:nth-child(2) {
  opacity: 0;
}

.bsz-burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.bsz-mob-menu {
  display: none;
  background: var(--c-header);
  border-top: 1px solid var(--c-border);
  padding: 16px 20px 20px;
}

.bsz-mob-menu.open {
  display: block;
}

.bsz-mob-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 14px;
}

.bsz-mob-menu__nav a {
  padding: 10px 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--c-text-muted);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.bsz-mob-menu__nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.bsz-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--c-card2);
}

.bsz-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.bsz-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.bsz-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(21, 25, 40, 0.92) 0%,
    rgba(21, 25, 40, 0.6) 60%,
    rgba(21, 25, 40, 0.1) 100%
  );
}

.bsz-hero__content {
  position: relative;
  z-index: 2;
  max-width: 580px;
  animation: bszFadeUp 0.7s ease;
}

.bsz-hero__label {
  display: inline-block;
  background: rgba(82, 54, 240, 0.25);
  border: 1px solid rgba(82, 54, 240, 0.5);
  color: var(--c-accent2);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 18px;
}

.bsz-hero__title {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #fff;
}

.bsz-hero__title span {
  color: var(--c-gold);
}

.bsz-hero__sub {
  font-size: 16px;
  color: var(--c-text-muted);
  margin-bottom: 28px;
  line-height: 1.6;
}

.bsz-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.bsz-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245, 197, 24, 0.12);
  border: 1px solid rgba(245, 197, 24, 0.3);
  color: var(--c-gold);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  margin-top: 20px;
}

.bsz-scroll-table {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  position: relative;
  scrollbar-width: thin;
  scrollbar-color: #5236f0 transparent;
}

.bsz-scroll-table::-webkit-scrollbar {
  height: 8px;
}

.bsz-scroll-table::-webkit-scrollbar-track {
  background: transparent;
}

.bsz-scroll-table::-webkit-scrollbar-thumb {
  background: #5236f0;
  border-radius: 4px;
}

.bsz-scroll-table::-webkit-scrollbar-thumb:hover {
  background: #7c5cfc;
}

.bsz-info-table {
  background: var(--c-card);
  border-radius: var(--radius);
  border: 1px solid var(--c-border);
}

.bsz-info-table table {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
}

.bsz-info-table td {
  padding: 13px 18px;
  font-size: 14px;
  border-bottom: 1px solid var(--c-border);
  vertical-align: top;
}

.bsz-info-table td:first-child {
  color: var(--c-text-muted);
  font-weight: 500;
  white-space: nowrap;
  width: 40%;
  background: rgba(255, 255, 255, 0.02);
}

.bsz-info-table td:last-child {
  color: var(--c-text);
  font-weight: 600;
}

.bsz-info-table tr:last-child td {
  border-bottom: none;
}

.bsz-info-table tr:hover td {
  background: rgba(82, 54, 240, 0.05);
}

.bsz-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.bsz-badge--green {
  background: rgba(61, 220, 132, 0.15);
  color: #3ddc84;
}

.bsz-badge--blue {
  background: rgba(82, 54, 240, 0.15);
  color: var(--c-accent2);
}

.bsz-badge--gold {
  background: rgba(245, 197, 24, 0.15);
  color: var(--c-gold);
}

.bsz-pros__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.bsz-pros__item {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 220px;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 22px 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: all var(--transition);
}

.bsz-pros__item:hover {
  border-color: rgba(82, 54, 240, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(82, 54, 240, 0.12);
}

.bsz-pros__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  background: rgba(82, 54, 240, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.bsz-pros__title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
}

.bsz-pros__text {
  font-size: 13px;
  color: var(--c-text-muted);
  line-height: 1.55;
}

.bsz-mirrors__date {
  font-size: 13px;
  color: var(--c-text-muted);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.bsz-mirrors__date-dot {
  width: 7px;
  height: 7px;
  background: #3ddc84;
  border-radius: 50%;
  display: inline-block;
  animation: bszPulse 1.8s infinite;
}

.bsz-mirrors__table {
  background: var(--c-card);
  border-radius: var(--radius);
  border: 1px solid var(--c-border);
}

.bsz-mirrors__table table {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
}

.bsz-mirrors__table th {
  padding: 12px 18px;
  font-size: 13px;
  color: var(--c-text-muted);
  text-align: left;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--c-border);
}

.bsz-mirrors__table td {
  padding: 13px 18px;
  font-size: 14px;
  border-bottom: 1px solid var(--c-border);
  vertical-align: middle;
}

.bsz-mirrors__table tr:last-child td {
  border-bottom: none;
}

.bsz-mirrors__table tr:hover td {
  background: rgba(82, 54, 240, 0.04);
}

.bsz-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  color: #3ddc84;
}

.bsz-status::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #3ddc84;
  border-radius: 50%;
  display: inline-block;
  animation: bszPulse 1.8s infinite;
}

.bsz-tournaments__grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.bsz-tournament-card {
  flex: 1 1 calc(33.333% - 20px);
  min-width: 260px;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.bsz-tournament-card:hover {
  border-color: rgba(82, 54, 240, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(82, 54, 240, 0.15);
}

.bsz-tournament-card__top {
  background: linear-gradient(
    135deg,
    rgba(82, 54, 240, 0.3),
    rgba(28, 34, 56, 0.8)
  );
  padding: 22px 20px;
  position: relative;
}

.bsz-tournament-card__tag {
  display: inline-block;
  background: var(--c-accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.bsz-tournament-card__name {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.bsz-tournament-card__desc {
  font-size: 13px;
  color: var(--c-text-muted);
  line-height: 1.5;
}

.bsz-tournament-card__body {
  padding: 18px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bsz-tournament-card__prize {
  font-size: 24px;
  font-weight: 800;
  color: var(--c-gold);
}

.bsz-tournament-card__prize-label {
  font-size: 12px;
  color: var(--c-text-muted);
  font-weight: 500;
}

.bsz-tournament-card__timer-label {
  font-size: 12px;
  color: var(--c-text-muted);
  margin-bottom: 4px;
}

.bsz-timer {
  display: flex;
  gap: 6px;
}

.bsz-timer__unit {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--c-border);
  border-radius: 6px;
  padding: 6px 10px;
  text-align: center;
  min-width: 44px;
}

.bsz-timer__val {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  display: block;
}

.bsz-timer__sep {
  font-size: 18px;
  color: var(--c-text-muted);
  align-self: center;
}

.bsz-timer__lbl {
  font-size: 10px;
  color: var(--c-text-muted);
}

.bsz-slot {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 36px 30px;
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}

.bsz-slot__title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.bsz-slot__sub {
  font-size: 14px;
  color: var(--c-text-muted);
  margin-bottom: 28px;
}

.bsz-slot__reels {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 28px;
}

.bsz-reel {
  width: 80px;
  height: 100px;
  background: var(--c-card2);
  border: 2px solid var(--c-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
  overflow: hidden;
  position: relative;
}

.bsz-reel.spin {
  animation: bszReelSpin 0.6s linear infinite;
}

.bsz-slot__result {
  min-height: 48px;
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 600;
}

.bsz-slot__result--win {
  color: #3ddc84;
}

.bsz-slot__result--lose {
  color: #ff6b6b;
}

.bsz-slot__controls {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.bsz-review {
  background: var(--c-card2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 36px 32px;
}

.bsz-review__author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--c-border);
}

.bsz-review__author-img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--c-accent);
}

.bsz-review__author-name {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.bsz-review__author-role {
  font-size: 13px;
  color: var(--c-text-muted);
}

.bsz-review__author-link {
  font-size: 13px;
  color: var(--c-accent2);
}

.bsz-review__content {
  font-size: 15px;
  line-height: 1.75;
  color: var(--c-text);
}

.bsz-review__content h2 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 28px 0 12px;
}

.bsz-review__content h3 {
  font-size: 18px;
  font-weight: 700;
  color: #dde0f0;
  margin: 22px 0 10px;
}

.bsz-review__content p {
  margin-bottom: 14px;
}

.bsz-review__content ul,
.bsz-review__content ol {
  padding-left: 22px;
  margin-bottom: 14px;
}

.bsz-review__content ul {
  list-style: disc;
}

.bsz-review__content ol {
  list-style: decimal;
}

.bsz-review__content li {
  margin-bottom: 6px;
  padding-left: 4px;
}

.bsz-review__content table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0;
  background: var(--c-card);
}

.bsz-review__content th,
.bsz-review__content td {
  padding: 11px 16px;
  text-align: left;
  border: 1px solid var(--c-border);
  font-size: 14px;
}

.bsz-review__content th {
  background: rgba(82, 54, 240, 0.15);
  color: #fff;
  font-weight: 600;
}

.bsz-review__content a {
  color: var(--c-accent2);
}

.bsz-review__content blockquote {
  border-left: 3px solid var(--c-accent);
  padding-left: 16px;
  color: var(--c-text-muted);
  font-style: italic;
  margin: 14px 0;
}

.bsz-reviews__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 36px;
}

.bsz-review-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 240px;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 20px;
  transition: all var(--transition);
}

.bsz-review-card:hover {
  border-color: rgba(82, 54, 240, 0.35);
  transform: translateY(-2px);
}

.bsz-review-card__top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.bsz-review-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--c-border);
}

.bsz-review-card__name {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.bsz-review-card__stars {
  color: var(--c-gold);
  font-size: 14px;
  display: flex;
  gap: 2px;
}

.bsz-review-card__text {
  font-size: 13px;
  color: var(--c-text-muted);
  line-height: 1.6;
}

.bsz-review-form {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 28px;
}

.bsz-review-form__title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.bsz-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bsz-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bsz-form__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--c-text-muted);
}

.bsz-form__input,
.bsz-form__textarea {
  background: var(--c-card2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-size: 14px;
  color: var(--c-text);
  font-family: inherit;
  transition: border-color var(--transition);
  outline: none;
  width: 100%;
}

.bsz-form__input:focus,
.bsz-form__textarea:focus {
  border-color: var(--c-accent);
}

.bsz-form__textarea {
  resize: vertical;
  min-height: 100px;
}

.bsz-form__success {
  display: none;
  background: rgba(61, 220, 132, 0.1);
  border: 1px solid rgba(61, 220, 132, 0.3);
  color: #3ddc84;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
}

.bsz-footer {
  background: var(--c-header);
  border-top: 1px solid var(--c-border);
  padding: 40px 0 24px;
}

.bsz-footer__top {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--c-border);
}

.bsz-footer__logo img {
  height: 38px;
  margin-bottom: 14px;
  filter: brightness(0) saturate(100%) invert(24%) sepia(77%) saturate(3247%)
    hue-rotate(237deg) brightness(91%) contrast(98%);
}

.bsz-footer__desc {
  font-size: 13px;
  color: var(--c-text-muted);
  max-width: 280px;
  line-height: 1.6;
}

.bsz-footer__col {
  flex: 1;
  min-width: 160px;
}

.bsz-footer__col-title {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 12px;
}

.bsz-footer__col a {
  display: block;
  font-size: 13px;
  color: var(--c-text-muted);
  margin-bottom: 7px;
  transition: color var(--transition);
}

.bsz-footer__col a:hover {
  color: var(--c-accent2);
}

.bsz-footer__payments {
  margin-bottom: 20px;
}

.bsz-footer__payments-title,
.bsz-footer__providers-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.bsz-footer__payment-icons,
.bsz-footer__provider-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.bsz-pay-icon,
.bsz-prov-icon {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--c-border);
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--c-text-muted);
}

.bsz-footer__bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.bsz-footer__legal {
  font-size: 12px;
  color: var(--c-text-muted);
  line-height: 1.7;
  max-width: 700px;
}

.bsz-footer__legal a {
  color: var(--c-text-muted);
}

.bsz-footer__copy {
  font-size: 12px;
  color: rgba(155, 163, 192, 0.5);
  margin-top: 4px;
}

.bsz-widget {
  position: fixed;
  bottom: 20px;
  left: 0;
  right: 0;
  z-index: 200;
  pointer-events: none;
  display: flex;
  justify-content: center;
}

.bsz-widget__inner {
  pointer-events: all;
  background: linear-gradient(135deg, #5236f0, #7c5cfc);
  border-radius: var(--radius);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 8px 32px rgba(82, 54, 240, 0.5);
  max-width: 560px;
  width: calc(100% - 32px);
  animation: bszWidgetBounce 3s ease-in-out infinite;
}

.bsz-widget__text {
  flex: 1;
}

.bsz-widget__title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.bsz-widget__sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
}

.bsz-widget__close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 18px;
  cursor: pointer;
  padding: 2px;
  line-height: 1;
  transition: color var(--transition);
}

.bsz-widget__close:hover {
  color: #fff;
}

.bsz-widget a.bsz-btn {
  color: #fff;
}

.bsz-faq {
  background: var(--c-card2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
}

.bsz-faq__item {
  border-bottom: 1px solid var(--c-border);
}

.bsz-faq__item:last-child {
  border-bottom: none;
}

.bsz-faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  transition: background var(--transition);
  gap: 12px;
}

.bsz-faq__q:hover {
  background: rgba(255, 255, 255, 0.03);
}

.bsz-faq__arrow {
  font-size: 12px;
  color: var(--c-text-muted);
  transition: transform var(--transition);
  flex-shrink: 0;
}

.bsz-faq__item.open .bsz-faq__arrow {
  transform: rotate(180deg);
}

.bsz-faq__a {
  display: none;
  padding: 0 22px 18px;
  font-size: 14px;
  color: var(--c-text-muted);
  line-height: 1.65;
}

.bsz-faq__item.open .bsz-faq__a {
  display: block;
}

@keyframes bszPulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

@keyframes bszFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bszReelSpin {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}

@keyframes bszWidgetBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .bsz-pros__item {
    flex: 1 1 calc(50% - 16px);
  }
  .bsz-tournament-card {
    flex: 1 1 calc(50% - 20px);
  }
  .bsz-review-card {
    flex: 1 1 100%;
  }
  .bsz-footer__top {
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .bsz-header__nav {
    display: none;
  }
  .bsz-burger {
    display: flex;
  }
  .bsz-header__inner {
    height: 60px;
  }
  .bsz-hero {
    min-height: 400px;
  }
  .bsz-section {
    padding: 40px 0;
  }
  .bsz-pros__item {
    flex: 1 1 100%;
  }
  .bsz-tournament-card {
    flex: 1 1 100%;
  }
  .bsz-slot {
    padding: 24px 16px;
  }
  .bsz-slot__reels {
    gap: 8px;
  }
  .bsz-reel {
    width: 70px;
    height: 88px;
    font-size: 38px;
  }
  .bsz-footer__top {
    flex-direction: column;
    gap: 20px;
  }
  .bsz-footer__bottom {
    flex-direction: column;
  }
  .bsz-review {
    padding: 24px 18px;
  }
}

@media (max-width: 480px) {
  .bsz-hero__title {
    font-size: 26px;
  }
  .bsz-reel {
    width: 60px;
    height: 76px;
    font-size: 32px;
  }
  .bsz-widget__inner {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}

.wp-block-placeholder {
  display: none;
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

.wp-block-spacer {
  height: 20px;
}

.entry-content .wp-caption {
  display: none;
}

.elementor-hidden {
  display: none !important;
}

.wp-widget-area {
  display: none;
}

.post-thumbnail {
  display: none;
}

.wpcf7-not-valid-tip {
  display: none;
}

.x9k2p4 {
  color: inherit;
}

.m7r3q1 {
  background: transparent;
}

.j8f5v2 {
  border: none;
}

.a4n9s6 {
  padding: 0;
}

.t2b7w9 {
  margin: 0;
}

.r6k1m3 {
  font-size: inherit;
}

.bx2c8p {
  line-height: inherit;
}

.d5n7q4 {
  overflow: hidden;
  width: 0;
  height: 0;
  position: absolute;
  visibility: hidden;
}
