:root {
  --clr-bg: #15021a;
  --clr-header: #1e0226;
  --clr-pink: #f532b3;
  --clr-teal: #21d1b4;
  --clr-text: #e8d5f0;
  --clr-text-muted: #9b7db0;
  --clr-border: #3a1547;
  --clr-card: #1f062b;
  --clr-card-hover: #2a0a3a;
  --ff-sans: "Montserrat", "Open Sans", Arial, Helvetica, sans-serif;
  --ff-body: "Roboto", "Open Sans", Arial, sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.28s ease;
}

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

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

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--clr-pink);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: var(--clr-teal);
}

.x9k2m {
  display: none;
  visibility: hidden;
}
.wp-block-cover {
  position: relative;
}
.entry-content {
  position: relative;
}
.elementor-widget-wrap {
  display: flex;
  flex-wrap: wrap;
}
.wp-post-image {
  max-width: 100%;
}

.c-wrap {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.sec-pad {
  padding: 64px 0;
}
.sec-pad-sm {
  padding: 40px 0;
}

.sec-title {
  font-family: var(--ff-sans);
  font-size: clamp(22px, 3.5vw, 36px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 32px;
  text-align: center;
  text-balance: balance;
}

.sec-title span {
  color: var(--clr-pink);
}
.sec-title .t2 {
  color: var(--clr-teal);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-family: var(--ff-sans);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    filter var(--transition);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.12);
}
.btn:active {
  transform: translateY(0);
}

.btn-pink {
  background: var(--clr-pink);
  color: #fff;
  box-shadow: 0 0 18px rgba(245, 50, 179, 0.45);
}

.btn-teal {
  background: var(--clr-teal);
  color: #0d1f1e;
  box-shadow: 0 0 18px rgba(33, 209, 180, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--clr-teal);
  border: 2px solid var(--clr-teal);
}

.btn-outline:hover {
  background: var(--clr-teal);
  color: #0d1f1e;
}

.hdr {
  position: sticky;
  top: 0;
  z-index: 9000;
  background: var(--clr-header);
  border-bottom: 1px solid var(--clr-border);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.hdr-inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 16px;
  height: 70px;
}

.hdr-logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.hdr-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: nowrap;
  list-style: none;
}

.hdr-nav a {
  color: var(--clr-text);
  font-family: var(--ff-sans);
  font-size: 14px;
  font-weight: 500;
  padding: 7px 12px;
  border-radius: 6px;
  transition:
    background var(--transition),
    color var(--transition);
}

.hdr-nav a:hover {
  background: rgba(245, 50, 179, 0.15);
  color: var(--clr-pink);
}

.hdr-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hdr-actions .btn {
  padding: 9px 20px;
  font-size: 14px;
}

.online-count {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--clr-text-muted);
  white-space: nowrap;
}

.online-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clr-teal);
  animation: pulse-dot 2s infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(33, 209, 180, 0.7);
  }
  50% {
    box-shadow: 0 0 0 5px rgba(33, 209, 180, 0);
  }
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition:
    transform var(--transition),
    opacity var(--transition);
}

.burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger.is-open span:nth-child(2) {
  opacity: 0;
}
.burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

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

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

.mob-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mob-nav a {
  display: block;
  color: var(--clr-text);
  font-family: var(--ff-sans);
  font-size: 15px;
  font-weight: 500;
  padding: 12px 20px;
  border-radius: 8px;
  transition:
    background var(--transition),
    color var(--transition);
}

.mob-nav a:hover {
  background: rgba(245, 50, 179, 0.12);
  color: var(--clr-pink);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("/BA.webp");
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(21, 2, 26, 0.92) 0%,
    rgba(21, 2, 26, 0.65) 60%,
    rgba(21, 2, 26, 0.3) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 620px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 50, 179, 0.18);
  border: 1px solid rgba(245, 50, 179, 0.4);
  border-radius: 50px;
  padding: 5px 16px;
  font-size: 13px;
  color: var(--clr-pink);
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--ff-sans);
  font-size: clamp(28px, 5vw, 54px);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 20px;
  text-balance: balance;
}

.hero-title .hl {
  color: var(--clr-pink);
}
.hero-title .hl2 {
  color: var(--clr-teal);
}

.hero-sub {
  font-size: 17px;
  color: var(--clr-text);
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-btns .btn {
  padding: 15px 34px;
  font-size: 16px;
}

.sec-divider {
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--clr-pink),
    var(--clr-teal),
    transparent
  );
  border: none;
  margin: 0;
}

.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.info-table {
  width: 100%;
  min-width: 420px;
  border-collapse: collapse;
  font-size: 15px;
}

.info-table tr {
  border-bottom: 1px solid var(--clr-border);
  transition: background var(--transition);
}
.info-table tr:hover {
  background: rgba(245, 50, 179, 0.06);
}

.info-table td {
  padding: 13px 18px;
  vertical-align: top;
  text-align: left;
}

.info-table td:first-child {
  color: var(--clr-text-muted);
  font-weight: 600;
  width: 42%;
  white-space: nowrap;
}

.info-table td:last-child {
  color: var(--clr-text);
  font-weight: 500;
}

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

.tbl-container {
  background: var(--clr-card);
  border-radius: var(--radius);
  border: 1px solid var(--clr-border);
  overflow: hidden;
}

.advant-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 20px;
}

.advant-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.advant-card:hover {
  transform: translateY(-4px);
  border-color: var(--clr-pink);
  box-shadow: 0 8px 32px rgba(245, 50, 179, 0.18);
}

.advant-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(245, 50, 179, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 24px;
}

.advant-icon.t {
  background: rgba(33, 209, 180, 0.15);
}

.advant-title {
  font-family: var(--ff-sans);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.advant-text {
  font-size: 14px;
  color: var(--clr-text-muted);
  line-height: 1.6;
}

.mirror-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.mirror-live {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--clr-teal);
  font-weight: 600;
}

.mirror-live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--clr-teal);
  animation: pulse-dot 1.5s infinite;
}

.mirror-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 15px;
}

.mirror-table thead tr {
  background: rgba(33, 209, 180, 0.1);
}
.mirror-table thead th {
  text-align: left;
  padding: 13px 18px;
  font-family: var(--ff-sans);
  font-size: 13px;
  font-weight: 700;
  color: var(--clr-teal);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 2px solid var(--clr-teal);
}

.mirror-table tbody tr {
  border-bottom: 1px solid var(--clr-border);
  transition: background var(--transition);
}
.mirror-table tbody tr:hover {
  background: rgba(245, 50, 179, 0.07);
}
.mirror-table tbody td {
  padding: 13px 18px;
  text-align: left;
}
.mirror-table tbody td:last-child {
  text-align: right;
}

.mirror-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: #2af5b3;
  font-weight: 600;
}

.mirror-status::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2af5b3;
  animation: pulse-dot 2s infinite;
}

.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--clr-border);
}

.video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.bonus-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.bonus-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 36px rgba(33, 209, 180, 0.18);
}

.bonus-card-head {
  padding: 24px;
  background: linear-gradient(
    135deg,
    rgba(245, 50, 179, 0.2) 0%,
    rgba(33, 209, 180, 0.15) 100%
  );
  border-bottom: 1px solid var(--clr-border);
  text-align: center;
}

.bonus-tag {
  display: inline-block;
  background: rgba(33, 209, 180, 0.2);
  color: var(--clr-teal);
  border-radius: 50px;
  padding: 3px 14px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.bonus-amount {
  font-family: var(--ff-sans);
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}

.bonus-amount span {
  color: var(--clr-pink);
}

.bonus-card-body {
  padding: 20px 24px;
  flex: 1;
}

.bonus-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bonus-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: var(--clr-text);
}

.bonus-list li::before {
  content: "";
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  background: var(--clr-teal);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8l3.5 3.5L13 5' stroke='%230d1f1e' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
}

.bonus-card-foot {
  padding: 16px 24px 24px;
}
.bonus-card-foot .btn {
  width: 100%;
  justify-content: center;
}

.slot-machine {
  background: var(--clr-card);
  border: 2px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 40px 32px;
  max-width: 540px;
  margin: 0 auto;
  text-align: center;
}

.slot-title {
  font-family: var(--ff-sans);
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.slot-sub {
  font-size: 14px;
  color: var(--clr-text-muted);
  margin-bottom: 28px;
}

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

.slot-reel {
  width: 90px;
  height: 90px;
  background: #0e0116;
  border: 2px solid var(--clr-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  overflow: hidden;
  position: relative;
}

.slot-reel.spinning {
  animation: reel-spin 0.1s steps(1) infinite;
}

@keyframes reel-spin {
  0% {
    filter: blur(2px) brightness(1.4);
  }
  50% {
    filter: blur(0px) brightness(0.8);
  }
  100% {
    filter: blur(2px) brightness(1.4);
  }
}

.slot-btn {
  font-size: 17px;
  padding: 15px 44px;
  margin-bottom: 20px;
}

.slot-result {
  min-height: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: fadeIn 0.4s ease;
}

.slot-win-text {
  font-family: var(--ff-sans);
  font-size: 18px;
  font-weight: 700;
  color: var(--clr-teal);
}

.slot-lose-text {
  font-size: 16px;
  color: var(--clr-text-muted);
}

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

@keyframes winFlash {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(33, 209, 180, 0);
  }
  50% {
    box-shadow: 0 0 30px 6px rgba(33, 209, 180, 0.6);
  }
}

.slot-reel.win {
  animation: winFlash 0.7s 2;
}

.review-content {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 40px 48px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--clr-border);
}

.review-author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-pink), var(--clr-teal));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.review-author-info {
  flex: 1;
}
.review-author-name {
  font-family: var(--ff-sans);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}
.review-author-meta {
  font-size: 13px;
  color: var(--clr-text-muted);
}
.review-author-link {
  color: var(--clr-teal);
}
.review-author-link:hover {
  color: var(--clr-pink);
}

.review-body {
  font-size: 15px;
  color: var(--clr-text);
  line-height: 1.8;
}
.review-body h2 {
  font-family: var(--ff-sans);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin: 28px 0 12px;
}
.review-body h3 {
  font-family: var(--ff-sans);
  font-size: 17px;
  font-weight: 700;
  color: var(--clr-teal);
  margin: 22px 0 10px;
}
.review-body p {
  margin-bottom: 16px;
}
.review-body ul,
.review-body ol {
  margin: 0 0 16px 22px;
}
.review-body li {
  margin-bottom: 6px;
}
.review-body strong {
  color: var(--clr-pink);
}
.review-body em {
  color: var(--clr-teal);
}
.review-body a {
  color: var(--clr-teal);
  text-decoration: underline;
}
.review-body a:hover {
  color: var(--clr-pink);
}
.review-body blockquote {
  border-left: 4px solid var(--clr-pink);
  padding: 12px 20px;
  margin: 20px 0;
  background: rgba(245, 50, 179, 0.07);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--clr-text-muted);
}
.review-body table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}
.review-body table th {
  background: rgba(33, 209, 180, 0.1);
  color: var(--clr-teal);
  text-align: left;
  padding: 10px 14px;
  border: 1px solid var(--clr-border);
}
.review-body table td {
  padding: 10px 14px;
  border: 1px solid var(--clr-border);
  vertical-align: top;
}
.review-body table tr:hover {
  background: rgba(245, 50, 179, 0.04);
}
.review-body img {
  border-radius: var(--radius-sm);
  margin: 16px 0;
}

.user-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.urev-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color var(--transition);
}

.urev-card:hover {
  border-color: var(--clr-pink);
}

.urev-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.urev-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-pink), var(--clr-teal));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.urev-name {
  font-family: var(--ff-sans);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}
.urev-stars {
  display: flex;
  gap: 2px;
}
.urev-stars svg {
  width: 15px;
  height: 15px;
  fill: #f5c518;
}
.urev-text {
  font-size: 14px;
  color: var(--clr-text-muted);
  line-height: 1.6;
}

.review-form {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 32px;
}

.form-title {
  font-family: var(--ff-sans);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.f-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.f-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--clr-text-muted);
}

.f-field input,
.f-field textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  color: var(--clr-text);
  font-family: var(--ff-body);
  font-size: 15px;
  padding: 12px 16px;
  outline: none;
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
  resize: none;
}

.f-field input:focus,
.f-field textarea:focus {
  border-color: var(--clr-teal);
  box-shadow: 0 0 0 3px rgba(33, 209, 180, 0.15);
}

.f-field textarea {
  min-height: 110px;
}

.form-success {
  display: none;
  background: rgba(33, 209, 180, 0.1);
  border: 1px solid rgba(33, 209, 180, 0.4);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  color: var(--clr-teal);
  font-weight: 600;
  font-size: 15px;
  text-align: center;
  margin-top: 16px;
  animation: fadeIn 0.4s ease;
}

.footer {
  background: var(--clr-header);
  border-top: 2px solid var(--clr-border);
  padding: 48px 0 24px;
}

.footer-top {
  display: grid;
  grid-template-columns: 200px 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
  margin-bottom: 12px;
}
.footer-desc {
  font-size: 13px;
  color: var(--clr-text-muted);
  line-height: 1.7;
}

.footer-col-title {
  font-family: var(--ff-sans);
  font-size: 13px;
  font-weight: 700;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav a {
  font-size: 14px;
  color: var(--clr-text);
  transition: color var(--transition);
}
.footer-nav a:hover {
  color: var(--clr-teal);
}

.footer-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.footer-logo-badge {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 7px 16px;
  font-size: 12px;
  font-weight: 700;
  color: var(--clr-text-muted);
  font-family: var(--ff-sans);
  transition:
    background var(--transition),
    color var(--transition);
}

.footer-logo-badge:hover {
  background: rgba(33, 209, 180, 0.12);
  color: var(--clr-teal);
}

.footer-divider {
  border: none;
  border-top: 1px solid var(--clr-border);
  margin: 24px 0;
}

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

.copyright {
  font-size: 13px;
  color: var(--clr-text-muted);
  line-height: 1.7;
}
.legal {
  font-size: 12px;
  color: #6a4d7a;
  line-height: 1.6;
  max-width: 700px;
}

.widget-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: linear-gradient(90deg, var(--clr-header) 0%, #280534 100%);
  border-top: 2px solid var(--clr-teal);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 -4px 30px rgba(33, 209, 180, 0.2);
  animation: slideUp 0.5s 0.8s both;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.widget-text {
  font-size: 14px;
  color: var(--clr-text);
  flex: 1;
}

.widget-text strong {
  color: #fff;
  font-family: var(--ff-sans);
}
.widget-close {
  background: none;
  border: none;
  color: var(--clr-text-muted);
  font-size: 20px;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
  flex-shrink: 0;
  transition: color var(--transition);
}

.widget-close:hover {
  color: #fff;
}
.widget-bar.hidden {
  display: none;
}

.section-bg-alt {
  background: rgba(255, 255, 255, 0.018);
}

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

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

.tag-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245, 50, 179, 0.12);
  border: 1px solid rgba(245, 50, 179, 0.3);
  border-radius: 50px;
  padding: 4px 16px;
  font-size: 12px;
  font-weight: 700;
  color: var(--clr-pink);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 12px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item.open {
  border-color: var(--clr-pink);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 22px;
  cursor: pointer;
  font-family: var(--ff-sans);
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  user-select: none;
  transition: background var(--transition);
}

.faq-q:hover {
  background: rgba(245, 50, 179, 0.06);
}

.faq-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--clr-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    transform var(--transition),
    background var(--transition);
}

.faq-icon svg {
  width: 10px;
  height: 10px;
  fill: var(--clr-pink);
  transition: transform var(--transition);
}

.faq-item.open .faq-icon {
  background: var(--clr-pink);
}
.faq-item.open .faq-icon svg {
  fill: #fff;
  transform: rotate(180deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding var(--transition);
  font-size: 14px;
  color: var(--clr-text-muted);
  line-height: 1.7;
}

.faq-item.open .faq-a {
  max-height: 400px;
  padding: 0 22px 18px;
}

.wp-content-hidden {
  display: none;
  height: 0;
  overflow: hidden;
}
.elementor-section {
  position: relative;
}
.wp-block-separator {
  border: none;
  height: 1px;
  background: var(--clr-border);
}
.screen-reader-text {
  position: absolute;
  left: -9999px;
}
.wp-caption {
  text-align: center;
}
.aligncenter {
  display: block;
  margin: 0 auto;
}
.alignleft {
  float: left;
  margin-right: 1em;
}
.alignright {
  float: right;
  margin-left: 1em;
}
.wp-block-image {
  margin-bottom: 1rem;
}
.has-text-align-center {
  text-align: center;
}
.is-style-outline .wp-block-button__link {
  background: transparent;
}
.entry-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.wp-block-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

@media (max-width: 1024px) {
  .bonuses-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .hdr-inner {
    grid-template-columns: auto 1fr auto;
  }
  .hdr-nav {
    display: none;
  }
  .burger {
    display: flex;
  }

  .hdr-actions .btn-pink {
    padding: 8px 16px;
    font-size: 13px;
  }
  .hdr-actions .btn-teal {
    padding: 8px 16px;
    font-size: 13px;
  }

  .hero {
    min-height: 420px;
  }
  .hero-inner {
    max-width: 100%;
  }
  .hero-bg::after {
    background: linear-gradient(
      180deg,
      rgba(21, 2, 26, 0.55) 0%,
      rgba(21, 2, 26, 0.95) 100%
    );
  }

  .bonuses-grid {
    grid-template-columns: 1fr;
  }
  .bonuses-slider {
    overflow-x: auto;
    display: flex;
    gap: 16px;
    padding-bottom: 12px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .bonuses-slider .bonus-card {
    min-width: 280px;
    scroll-snap-align: start;
    flex-shrink: 0;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }

  .slot-reel {
    width: 72px;
    height: 72px;
    font-size: 36px;
  }

  .review-content {
    padding: 24px 20px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .widget-bar {
    flex-wrap: wrap;
  }
  .widget-text {
    font-size: 13px;
  }

  .sec-pad {
    padding: 44px 0;
  }
}

@media (max-width: 480px) {
  .online-count {
    display: none;
  }
  .slot-reels {
    gap: 8px;
  }
  .slot-reel {
    width: 64px;
    height: 64px;
    font-size: 30px;
  }
  .hero-btns {
    flex-direction: column;
  }
  .hero-btns .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .tbl-container {
    overflow: visible;
  }
  .table-wrap {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius);
    border: 1px solid var(--clr-border);
    background: var(--clr-card);
  }
  .table-wrap .info-table,
  .table-wrap .mirror-table {
    margin: 0;
  }
}

@media (max-width: 768px) {
  .hdr-inner {
    grid-template-columns: auto 1fr auto;
    gap: 10px;
  }
  .hdr-nav {
    display: none;
  }
  .hdr-actions {
    grid-column: auto;
    gap: 8px;
  }
  .hdr-actions .btn-pink {
    display: none;
  }
  .hdr-actions .btn-teal {
    padding: 8px 16px;
    font-size: 13px;
  }
  .burger {
    display: flex;
  }
}

@media (max-width: 420px) {
  .hdr-inner {
    gap: 8px;
  }
  .hdr-logo img {
    height: 36px;
  }
  .hdr-actions .btn-teal {
    padding: 7px 12px;
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  .tbl-container {
    overflow: visible;
  }
  .table-wrap {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius);
    border: 1px solid var(--clr-border);
    background: var(--clr-card);
  }
  .table-wrap .info-table,
  .table-wrap .mirror-table {
    margin: 0;
  }
}

@media (max-width: 768px) {
  .hdr-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    height: 70px;
  }
  .hdr-logo {
    flex-shrink: 0;
  }
  .hdr-nav {
    display: none;
  }
  .hdr-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
  }
  .hdr-actions .btn-pink {
    display: none;
  }
  .hdr-actions .btn-teal {
    padding: 9px 18px;
    font-size: 13px;
  }
  .burger {
    display: flex;
    flex-shrink: 0;
  }
}

@media (max-width: 420px) {
  .hdr-inner {
    gap: 8px;
  }
  .hdr-logo img {
    height: 36px;
  }
  .hdr-actions .btn-teal {
    padding: 8px 14px;
    font-size: 12px;
  }
}
