:root {
  --clr-bg: #05060a;
  --clr-bg2: #0d0f17;
  --clr-bg3: #12141e;
  --clr-btn-dark: #181a20;
  --clr-btn-red: #e92139;
  --clr-btn-red-hover: #c41830;
  --clr-text: #e8eaf0;
  --clr-text-muted: #8b8fa8;
  --clr-text-light: #ffffff;
  --clr-border: #1e2130;
  --clr-border-bright: #2a2d3e;
  --clr-accent: #e92139;
  --clr-star: #e92139;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.6);
  --font-head: "Montserrat", Arial, Helvetica, sans-serif;
  --font-body: "Roboto", Arial, Helvetica, sans-serif;
  --transition: 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--clr-bg);
}

body.bx9a1-body {
  font-family: var(--font-body);
  background-color: var(--clr-bg);
  color: var(--clr-text);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.ux9a1-hidden-rule {
  display: none;
  font-size: 0px;
}
.ux9a1-dummy-wrap {
  visibility: hidden;
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.ux9a1-ghost-el::after {
  content: "";
  display: table;
  clear: both;
}
.ux9a1-noop {
  opacity: 0;
  pointer-events: none;
}
.ux9a1-reserved {
  z-index: -9999;
}

.bx9a1-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #05060a;
  border-bottom: 1px solid var(--clr-border);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.6);
}

.hd9k2-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 16px;
  flex-wrap: nowrap;
}

.hd9k2-logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.hd9k2-logo-img {
  width: 140px;
  height: auto;
  border-radius: 4px;
  object-fit: contain;
}

.hd9k2-nav-block {
  align-items: center;
}
.hd9k2-nav-list {
  list-style: none;
  display: flex;
  gap: 4px;
  margin: 0;
  padding: 0;
}
.hd9k2-nav-link {
  color: var(--clr-text-muted);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition:
    color var(--transition),
    background var(--transition);
  white-space: nowrap;
}
.hd9k2-nav-link:hover {
  color: var(--clr-text-light);
  background: var(--clr-bg3);
}

.hd9k2-actions-block {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.hd9k2-online-count {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--clr-text-muted);
  white-space: nowrap;
}
.hd9k2-online-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse-dot 2s infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
  }
  50% {
    box-shadow: 0 0 0 5px rgba(34, 197, 94, 0);
  }
}

.hd9k2-btn-login {
  background: var(--clr-btn-dark);
  color: var(--clr-text-light) !important;
  border: 1px solid var(--clr-border-bright);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  transition:
    background var(--transition),
    border-color var(--transition);
  white-space: nowrap;
}
.hd9k2-btn-login:hover {
  background: #23263a;
  border-color: #e92139;
}

.hd9k2-btn-reg {
  background: var(--clr-btn-red);
  color: #fff !important;
  border: 1px solid transparent;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: var(--radius-sm);
  transition:
    background var(--transition),
    transform 0.15s;
  white-space: nowrap;
}
.hd9k2-btn-reg:hover {
  background: var(--clr-btn-red-hover);
  transform: translateY(-1px);
}

/* Burger */
.hd9k2-burger {
  background: none;
  border: 1px solid var(--clr-border-bright);
  border-radius: var(--radius-sm);
  padding: 6px 8px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: border-color var(--transition);
}
.hd9k2-burger:hover {
  border-color: var(--clr-btn-red);
}
.hd9k2-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition:
    transform 0.3s,
    opacity 0.3s;
}
.hd9k2-burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}
.hd9k2-burger.active span:nth-child(2) {
  opacity: 0;
}
.hd9k2-burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

.hd9k2-mobile-menu {
  background: var(--clr-bg2);
  border-top: 1px solid var(--clr-border);
  padding: 16px;
  display: none;
}
.hd9k2-mobile-menu.active {
  display: block;
}
.hd9k2-mobile-nav {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}
.hd9k2-mobile-nav li {
  border-bottom: 1px solid var(--clr-border);
}
.hd9k2-mobile-nav .hd9k2-nav-link {
  display: block;
  padding: 12px 8px;
  font-size: 14px;
}
.hd9k2-mobile-online {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--clr-text-muted);
  padding-top: 8px;
}

.bx9a1-hero-section {
  position: relative;
  overflow: hidden;
}
.bx9a1-hero-bg {
  background-image: url("/starda-hero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
}
.bx9a1-hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(5, 6, 10, 0.92) 0%,
    rgba(5, 6, 10, 0.7) 50%,
    rgba(233, 33, 57, 0.12) 100%
  );
  z-index: 1;
}
.bx9a1-hero-bg .container {
  position: relative;
  z-index: 2;
}

.bx9a1-hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 60px 0;
}

.bx9a1-hero-text {
  flex: 1;
  max-width: 580px;
}
.bx9a1-hero-subtitle {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--clr-btn-red);
  margin-bottom: 12px;
}
.bx9a1-hero-title {
  font-family: var(--font-head);
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 800;
  color: var(--clr-text-light);
  line-height: 1.1;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}
.bx9a1-hero-bonus {
  font-size: clamp(16px, 2.5vw, 22px);
  color: var(--clr-text);
  margin-bottom: 12px;
  line-height: 1.4;
}
.bx9a1-hero-bonus strong {
  color: var(--clr-btn-red);
}
.bx9a1-hero-desc {
  color: var(--clr-text-muted);
  font-size: 15px;
  margin-bottom: 28px;
  line-height: 1.6;
}
.bx9a1-hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.bx9a1-hero-image {
  flex-shrink: 0;
}
.bx9a1-hero-img {
  width: 460px;
  max-width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}

/* ===== BUTTONS ===== */
.btn.bx9a1-btn-reg {
  background: var(--clr-btn-red);
  color: #fff !important;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  padding: 12px 28px;
  border-radius: var(--radius-md);
  border: none;
  transition:
    background var(--transition),
    transform 0.15s,
    box-shadow 0.15s;
}
.btn.bx9a1-btn-reg:hover {
  background: var(--clr-btn-red-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(233, 33, 57, 0.4);
}
@keyframes bx9a1-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(233, 33, 57, 0.5);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(233, 33, 57, 0);
  }
}
.bx9a1-btn-pulse {
  animation: bx9a1-pulse 2.5s infinite;
}

.btn.bx9a1-btn-login {
  background: var(--clr-btn-dark);
  color: var(--clr-text) !important;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--clr-border-bright);
  transition:
    background var(--transition),
    border-color var(--transition);
}
.btn.bx9a1-btn-login:hover {
  background: #1e2130;
  border-color: var(--clr-btn-red);
}

.btn.bx9a1-btn-play {
  background: var(--clr-btn-red);
  color: #fff !important;
  font-weight: 700;
  font-family: var(--font-head);
  font-size: 13px;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  border: none;
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 0.2s,
    transform 0.2s,
    background var(--transition);
}
.btn.bx9a1-btn-play:hover {
  background: var(--clr-btn-red-hover);
}
.btn.bx9a1-btn-submit {
  background: var(--clr-btn-red);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  padding: 12px 32px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition:
    background var(--transition),
    transform 0.15s;
}
.btn.bx9a1-btn-submit:hover {
  background: var(--clr-btn-red-hover);
  transform: translateY(-1px);
}

/* ===== SECTION COMMON ===== */
.bx9a1-main-content {
  padding-top: 16px;
  padding-bottom: 60px;
}
.bx9a1-section {
  margin: 0 0 56px;
  animation: fadeInUp 0.5s ease both;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.bx9a1-section-title {
  font-family: var(--font-head);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  color: var(--clr-text-light);
  margin-bottom: 28px;
  position: relative;
  padding-bottom: 12px;
}
.bx9a1-section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48px;
  height: 3px;
  background: var(--clr-btn-red);
  border-radius: 2px;
}
/* ===== CASINO INFO TABLE ===== */
.bx9a1-table-wrap {
  margin-top: 8px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-sm);
}
table.bx9a1-info-table,
.bx9a1-info-table {
  width: 100%;
  border-collapse: separate !important;
  border-spacing: 0 !important;
  margin: 0 !important;
  background: var(--clr-bg2) !important;
  color: var(--clr-text) !important;
  --bs-table-bg: transparent;
  --bs-table-color: var(--clr-text);
  --bs-table-striped-bg: transparent;
  --bs-table-striped-color: var(--clr-text);
  --bs-table-hover-bg: transparent;
  --bs-table-hover-color: var(--clr-text);
  --bs-table-border-color: var(--clr-border);
}
.bx9a1-info-table thead tr th {
  background: linear-gradient(
    90deg,
    var(--clr-btn-red) 0%,
    var(--clr-btn-red-hover) 100%
  ) !important;
  color: #fff !important;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  padding: 16px 22px !important;
  text-align: left;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border: none !important;
}
.bx9a1-info-table tbody tr {
  background-color: var(--clr-bg2) !important;
  transition: background var(--transition);
}
.bx9a1-info-table tbody tr:nth-child(even) {
  background-color: var(--clr-bg3) !important;
}
.bx9a1-info-table tbody tr:hover {
  background-color: rgba(233, 33, 57, 0.08) !important;
}
.bx9a1-info-table tbody tr td {
  padding: 14px 22px !important;
  border-top: none !important;
  border-bottom: 1px solid var(--clr-border) !important;
  color: var(--clr-text) !important;
  background-color: transparent !important;
  font-size: 14px;
  line-height: 1.55;
  text-align: left;
  vertical-align: middle;
  box-shadow: none !important;
}
.bx9a1-info-table tbody tr:last-child td {
  border-bottom: none !important;
}
.bx9a1-info-table tbody tr td:first-child {
  position: relative;
  font-weight: 600;
  color: var(--clr-text-light) !important;
  font-family: var(--font-head);
  font-size: 13px;
  width: 32%;
  padding-left: 26px !important;
  letter-spacing: 0.3px;
}
.bx9a1-info-table tbody tr td:first-child::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 16px;
  background: var(--clr-btn-red);
  border-radius: 2px;
  opacity: 0;
  transition: opacity var(--transition);
}
.bx9a1-info-table tbody tr:hover td:first-child::before {
  opacity: 1;
}

@media (max-width: 576px) {
  .bx9a1-info-table thead tr th,
  .bx9a1-info-table tbody tr td {
    padding: 12px 14px !important;
    font-size: 13px;
  }
  .bx9a1-info-table tbody tr td:first-child {
    white-space: normal;
    padding-left: 20px !important;
  }
  .bx9a1-info-table tbody tr td:first-child::before {
    left: 10px;
  }
}
/* ===== ADVANTAGES ===== */
.bx9a1-adv-card {
  background: var(--clr-bg2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  height: 100%;
  transition:
    border-color var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
}
.bx9a1-adv-card:hover {
  border-color: var(--clr-btn-red);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(233, 33, 57, 0.15);
}
.bx9a1-adv-icon {
  width: 56px;
  height: 56px;
  background: rgba(233, 33, 57, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--clr-btn-red);
}
.bx9a1-adv-title {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--clr-text-light);
  margin-bottom: 10px;
}
.bx9a1-adv-text {
  font-size: 14px;
  color: var(--clr-text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ===== TOURNAMENTS ===== */
.bx9a1-tournaments-slider-wrap {
  position: relative;
  overflow: hidden;
}
.bx9a1-tournaments-track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s ease;
}
.bx9a1-tournament-card {
  background: var(--clr-bg2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  flex: 0 0 calc(33.333% - 14px);
  min-width: 280px;
  position: relative;
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
}
.bx9a1-tournament-card:hover {
  border-color: var(--clr-btn-red);
  box-shadow: 0 8px 30px rgba(233, 33, 57, 0.12);
}
.bx9a1-tourn-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--clr-btn-red);
  color: #fff;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 1px;
}
.bx9a1-badge-blue {
  background: #1d6ae3;
}
.bx9a1-badge-green {
  background: #16a34a;
}

.bx9a1-tourn-title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--clr-text-light);
  margin-bottom: 12px;
  padding-right: 60px;
}
.bx9a1-tourn-desc {
  font-size: 14px;
  color: var(--clr-text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
.bx9a1-tourn-prize {
  font-size: 15px;
  color: var(--clr-text);
  margin-bottom: 12px;
}
.bx9a1-tourn-prize strong {
  color: var(--clr-btn-red);
  font-size: 18px;
}
.bx9a1-tourn-timer {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--clr-text-muted);
}
.bx9a1-timer-display {
  color: var(--clr-text);
  font-weight: 600;
  font-family: monospace;
}

.bx9a1-slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.bx9a1-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clr-border-bright);
  border: none;
  cursor: pointer;
  transition:
    background var(--transition),
    transform var(--transition);
  padding: 0;
}
.bx9a1-dot.active {
  background: var(--clr-btn-red);
  transform: scale(1.3);
}

/* ===== GAMES ===== */
.bx9a1-games-slider-wrap {
  position: relative;
  overflow: hidden;
}
.bx9a1-games-track {
  display: flex;
  gap: 16px;
  transition: transform 0.4s ease;
}
.bx9a1-game-card {
  flex: 0 0 calc(16.666% - 14px);
  min-width: 160px;
}
.bx9a1-game-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  aspect-ratio: 1;
  background: var(--clr-bg3);
  margin-bottom: 10px;
  cursor: pointer;
}
.bx9a1-game-img-wrap:hover .bx9a1-game-overlay {
  opacity: 1;
}
.bx9a1-game-img-wrap:hover .btn.bx9a1-btn-play {
  opacity: 1;
  transform: translateY(0);
}
.bx9a1-game-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.bx9a1-game-img-wrap:hover .bx9a1-game-img {
  transform: scale(1.06);
}
.bx9a1-game-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 6, 10, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s;
}
.bx9a1-game-name {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--clr-text-light);
  margin: 0 0 4px;
  line-height: 1.3;
}
.bx9a1-game-provider {
  font-size: 11px;
  color: var(--clr-text-muted);
}
.bx9a1-games-nav {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 16px;
}
.bx9a1-games-prev,
.bx9a1-games-next {
  background: var(--clr-bg3);
  border: 1px solid var(--clr-border-bright);
  color: var(--clr-text);
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background var(--transition),
    border-color var(--transition);
  line-height: 1;
}
.bx9a1-games-prev:hover,
.bx9a1-games-next:hover {
  background: var(--clr-btn-red);
  border-color: var(--clr-btn-red);
}

/* ===== SLOT MACHINE ===== */
.bx9a1-slot-machine-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.bx9a1-slot-machine {
  background: var(--clr-bg2);
  border: 2px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  text-align: center;
  min-width: 320px;
  max-width: 480px;
  width: 100%;
  box-shadow: var(--shadow-md);
}
.bx9a1-slot-title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--clr-text-light);
  margin-bottom: 24px;
}
.bx9a1-slot-reels {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}
.bx9a1-reel {
  width: 80px;
  height: 90px;
  background: var(--clr-bg);
  border: 2px solid var(--clr-border-bright);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: border-color var(--transition);
}
.bx9a1-reel.spinning {
  border-color: var(--clr-btn-red);
  animation: reel-shake 0.1s ease infinite alternate;
}
@keyframes reel-shake {
  from {
    transform: translateY(-2px);
  }
  to {
    transform: translateY(2px);
  }
}
.bx9a1-reel-symbol {
  font-size: 36px;
  line-height: 1;
  display: block;
  color: var(--clr-text-light);
  transition: transform 0.15s;
  user-select: none;
}
.btn.bx9a1-btn-spin {
  background: var(--clr-btn-red);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  padding: 12px 32px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  transition:
    background var(--transition),
    transform 0.15s;
  width: 100%;
  justify-content: center;
}
.btn.bx9a1-btn-spin:hover {
  background: var(--clr-btn-red-hover);
  transform: translateY(-2px);
}
.btn.bx9a1-btn-spin:disabled {
  background: #555;
  cursor: not-allowed;
  transform: none;
}
.bx9a1-slot-result {
  margin: 16px 0 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--clr-text-muted);
  min-height: 22px;
}
.bx9a1-slot-win-block {
  background: linear-gradient(135deg, var(--clr-bg2), #1a0d12);
  border: 2px solid var(--clr-btn-red);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  text-align: center;
  max-width: 480px;
  width: 100%;
  animation: fadeInUp 0.4s ease;
}
.bx9a1-slot-win-text {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  color: var(--clr-text-light);
  margin-bottom: 8px;
  line-height: 1.4;
}

/* ===== CONTENT BLOCK ===== */
.bx9a1-content-block {
  background: var(--clr-bg2);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  border: 1px solid var(--clr-border);
}
.bx9a1-content-inner h1,
.bx9a1-content-inner h2,
.bx9a1-content-inner h3,
.bx9a1-content-inner h4 {
  font-family: var(--font-head);
  color: var(--clr-text-light);
  margin: 28px 0 14px;
  line-height: 1.3;
}
.bx9a1-content-inner h1 {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 800;
}
.bx9a1-content-inner h2 {
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 700;
}
.bx9a1-content-inner h3 {
  font-size: 18px;
  font-weight: 700;
}
.bx9a1-content-inner p {
  color: var(--clr-text);
  line-height: 1.7;
  margin-bottom: 16px;
  font-size: 15px;
}
.bx9a1-content-inner ul,
.bx9a1-content-inner ol {
  color: var(--clr-text);
  padding-left: 24px;
  margin-bottom: 16px;
  line-height: 1.7;
  font-size: 15px;
}
.bx9a1-content-inner li {
  margin-bottom: 6px;
}
.bx9a1-content-inner ul li::marker {
  color: var(--clr-btn-red);
}
.bx9a1-content-inner strong {
  color: var(--clr-text-light);
}
.bx9a1-content-inner a {
  color: var(--clr-btn-red);
  text-decoration: underline;
}
.bx9a1-content-inner table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--clr-border);
}
.bx9a1-content-inner th {
  background: var(--clr-btn-red);
  color: #fff;
  padding: 12px 16px;
  text-align: left;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
}
.bx9a1-content-inner td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--clr-border);
  color: var(--clr-text);
  font-size: 14px;
  text-align: left;
  background: var(--clr-bg2);
}
.bx9a1-content-inner tr:nth-child(even) td {
  background: var(--clr-bg3);
}

/* ===== REVIEWS ===== */
.bx9a1-review-card {
  background: var(--clr-bg2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 24px;
  height: 100%;
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
}
.bx9a1-review-card:hover {
  border-color: var(--clr-btn-red);
  box-shadow: 0 4px 20px rgba(233, 33, 57, 0.1);
}
.bx9a1-review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.bx9a1-review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--clr-border-bright);
  flex-shrink: 0;
}
.bx9a1-review-name {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--clr-text-light);
  display: block;
  margin-bottom: 4px;
}
.bx9a1-stars {
  display: flex;
  gap: 2px;
}
.bx9a1-review-text {
  font-size: 14px;
  color: var(--clr-text-muted);
  line-height: 1.65;
  margin: 0;
}

/* Review form */
.bx9a1-review-form-wrap {
  background: var(--clr-bg2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-top: 32px;
}
.bx9a1-form-title {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--clr-text-light);
  margin-bottom: 24px;
}
.bx9a1-form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--clr-text-muted);
  font-family: var(--font-head);
  margin-bottom: 6px;
  display: block;
  letter-spacing: 0.3px;
}
.bx9a1-form-input {
  background: var(--clr-bg3) !important;
  border: 1px solid var(--clr-border-bright) !important;
  color: var(--clr-text) !important;
  border-radius: var(--radius-sm) !important;
  padding: 10px 14px !important;
  font-size: 14px !important;
  transition: border-color var(--transition) !important;
  width: 100%;
}
.bx9a1-form-input:focus {
  border-color: var(--clr-btn-red) !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(233, 33, 57, 0.15) !important;
}
.bx9a1-form-input::placeholder {
  color: var(--clr-text-muted) !important;
}
.bx9a1-form-success {
  background: rgba(22, 163, 74, 0.12);
  border: 1px solid rgba(22, 163, 74, 0.4);
  border-radius: var(--radius-sm);
  color: #4ade80;
  font-size: 14px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}

/* ===== AUTHOR ===== */
.bx9a1-author-card {
  background: var(--clr-bg2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  align-items: flex-start;
  gap: 28px;
}
.bx9a1-author-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--clr-btn-red);
  flex-shrink: 0;
}
.bx9a1-author-name {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  color: var(--clr-text-light);
  margin-bottom: 4px;
}
.bx9a1-author-title {
  font-size: 13px;
  color: var(--clr-btn-red);
  font-weight: 600;
  font-family: var(--font-head);
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.bx9a1-author-bio {
  font-size: 14px;
  color: var(--clr-text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}
.bx9a1-author-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.bx9a1-author-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--clr-bg3);
  border: 1px solid var(--clr-border-bright);
  color: var(--clr-text) !important;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  transition:
    border-color var(--transition),
    background var(--transition);
  text-decoration: none !important;
}
.bx9a1-author-link:hover {
  border-color: var(--clr-btn-red);
  background: #1a0d12;
  color: var(--clr-text-light) !important;
}

/* ===== FAQ ===== */
.bx9a1-faq-item {
  background: var(--clr-bg2) !important;
  border: 1px solid var(--clr-border) !important;
  border-radius: var(--radius-md) !important;
  margin-bottom: 8px !important;
  overflow: hidden;
}
.bx9a1-faq-btn {
  background: var(--clr-bg2) !important;
  color: var(--clr-text-light) !important;
  font-family: var(--font-head) !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  padding: 18px 22px !important;
  border: none !important;
  box-shadow: none !important;
}
.bx9a1-faq-btn:not(.collapsed) {
  color: var(--clr-btn-red) !important;
  background: rgba(233, 33, 57, 0.06) !important;
}
.bx9a1-faq-btn::after {
  filter: invert(1);
}
.bx9a1-faq-body {
  background: var(--clr-bg2) !important;
  color: var(--clr-text-muted);
  font-size: 14px;
  line-height: 1.7;
  padding: 16px 22px 20px !important;
}

/* ===== FOOTER ===== */
.bx9a1-footer {
  background: #05060a;
  border-top: 1px solid var(--clr-border);
  padding-top: 8px;
}
.ft7x3-wrap {
  padding: 48px 0 24px;
}
.ft7x3-top {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.ft7x3-logo-col {
  flex: 0 0 220px;
}
.ft7x3-logo {
  margin-bottom: 14px;
  border-radius: 4px;
}
.ft7x3-desc {
  font-size: 13px;
  color: var(--clr-text-muted);
  line-height: 1.6;
}
.ft7x3-nav-col,
.ft7x3-contact-col {
  flex: 1;
  min-width: 160px;
}
.ft7x3-nav-title {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  color: var(--clr-text-light);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.ft7x3-nav-list,
.ft7x3-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ft7x3-nav-list a,
.ft7x3-contact-list a {
  font-size: 13px;
  color: var(--clr-text-muted) !important;
  text-decoration: none;
  transition: color var(--transition);
}
.ft7x3-nav-list a:hover,
.ft7x3-contact-list a:hover {
  color: var(--clr-text-light) !important;
}
.ft7x3-contact-list li {
  font-size: 13px;
  color: var(--clr-text-muted);
}

.ft7x3-payments,
.ft7x3-providers {
  margin-bottom: 24px;
}
.ft7x3-section-label {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  color: var(--clr-text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.ft7x3-payment-logos,
.ft7x3-provider-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ft7x3-pay-badge {
  background: var(--clr-bg3);
  border: 1px solid var(--clr-border);
  color: var(--clr-text-muted);
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font-head);
  padding: 5px 10px;
  border-radius: 20px;
}
.ft7x3-prov-badge {
  background: var(--clr-bg2);
  border: 1px solid var(--clr-border);
  color: var(--clr-text-muted);
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 20px;
}

.ft7x3-bottom {
  border-top: 1px solid var(--clr-border);
  padding-top: 20px;
}
.ft7x3-copyright {
  font-size: 13px;
  color: var(--clr-text-muted);
  margin-bottom: 8px;
}
.ft7x3-legal {
  font-size: 12px;
  color: #555870;
  line-height: 1.6;
  margin-bottom: 6px;
}
.ft7x3-license {
  font-size: 12px;
  color: #555870;
}

.bx9a1-widget-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: linear-gradient(90deg, #0d0f17 0%, #1a0d12 100%);
  border-top: 2px solid var(--clr-btn-red);
  padding: 12px 16px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}
.bx9a1-widget-bar.hidden {
  transform: translateY(100%);
}
.bx9a1-widget-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: nowrap;
}
.bx9a1-widget-text {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  flex: 1;
  min-width: 0;
}
.bx9a1-widget-bonus {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 800;
  color: var(--clr-text-light);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bx9a1-widget-desc {
  font-size: 13px;
  color: var(--clr-text-muted);
}
.bx9a1-widget-btn {
  background: var(--clr-btn-red);
  color: #fff !important;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: var(--radius-md);
  text-decoration: none !important;
  display: inline-block;
  transition:
    background var(--transition),
    transform 0.15s;
  white-space: nowrap;
  flex-shrink: 0;
}
.bx9a1-widget-btn:hover {
  background: var(--clr-btn-red-hover);
  transform: scale(1.03);
}
.bx9a1-widget-close {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--clr-border-bright);
  color: var(--clr-text-muted);
  border-radius: 50%;
  width: 28px;
  height: 28px;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    color var(--transition),
    border-color var(--transition),
    background var(--transition);
  flex-shrink: 0;
}
.bx9a1-widget-close:hover {
  color: var(--clr-text-light);
  border-color: var(--clr-btn-red);
  background: rgba(233, 33, 57, 0.15);
}

body.bx9a1-body {
  padding-bottom: 76px;
}

@media (max-width: 576px) {
  .bx9a1-widget-bar {
    padding: 10px 12px 10px 14px;
  }
  .bx9a1-widget-inner {
    gap: 10px;
    justify-content: space-between;
  }
  .bx9a1-widget-text {
    flex: 1;
    min-width: 0;
    justify-content: flex-start;
  }
  .bx9a1-widget-bonus {
    font-size: 12px;
  }
  .bx9a1-widget-desc {
    display: none;
  }
  .bx9a1-widget-btn {
    font-size: 12px;
    padding: 8px 14px;
  }
  body.bx9a1-body {
    padding-bottom: 64px;
  }
}
/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .bx9a1-tournament-card {
    flex: 0 0 calc(50% - 10px);
  }
  .bx9a1-game-card {
    flex: 0 0 calc(25% - 12px);
  }
}

@media (max-width: 992px) {
  .bx9a1-hero-content {
    flex-direction: column;
    text-align: center;
    padding: 40px 0;
  }
  .bx9a1-hero-btns {
    justify-content: center;
  }
  .bx9a1-hero-image {
    display: none;
  }
  .bx9a1-tournament-card {
    flex: 0 0 calc(100% - 0px);
    min-width: unset;
  }
  .bx9a1-game-card {
    flex: 0 0 calc(33.333% - 11px);
  }
}

@media (max-width: 768px) {
  .bx9a1-game-card {
    flex: 0 0 calc(50% - 8px);
    min-width: 0;
  }
  .bx9a1-author-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px;
  }
  .bx9a1-author-links {
    justify-content: center;
  }
  .bx9a1-content-block {
    padding: 24px 20px;
  }
  .bx9a1-review-form-wrap {
    padding: 24px 20px;
  }
  .ft7x3-top {
    flex-direction: column;
    gap: 24px;
  }
  .ft7x3-logo-col {
    flex: unset;
  }
  .bx9a1-slot-machine {
    min-width: unset;
    padding: 24px 20px;
  }
  .bx9a1-reel {
    width: 70px;
    height: 80px;
  }
  .bx9a1-reel-symbol {
    font-size: 30px;
  }
}

@media (max-width: 576px) {
  .hd9k2-wrap {
    padding: 8px 12px;
  }
  .hd9k2-logo-img {
    width: 110px;
  }
  .bx9a1-hero-bg {
    min-height: 400px;
  }
  .bx9a1-hero-content {
    padding: 32px 0;
  }
  .bx9a1-game-card {
    flex: 0 0 calc(50% - 8px);
    min-width: 0;
  }
  .bx9a1-widget-inner {
    gap: 10px;
  }
  .bx9a1-widget-desc {
    display: none;
  }
  .bx9a1-info-table tbody td:first-child {
    white-space: normal;
  }
}
