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

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: "Inter", "Roboto", Arial, sans-serif;
  background: #0d131c;
  color: #e8eaf0;
  line-height: 1.6;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #e8eaf0;
  text-decoration: none;
}
ul {
  list-style: none;
}

:root {
  --clr-bg: #0d131c;
  --clr-header: #0d131c;
  --clr-card: #131c28;
  --clr-card2: #0f1a24;
  --clr-border: #1e2d40;
  --clr-btn-dark: #19212c;
  --clr-btn-red: #ff3939;
  --clr-accent: #ff3939;
  --clr-accent2: #ff6b6b;
  --clr-text: #e8eaf0;
  --clr-text-muted: #8a9ab5;
  --clr-gold: #f5c842;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
}

.b7x2k {
  display: none;
}
.wp-block-group {
  display: block;
}
.wp-content-area {
  display: none;
}
.elementor-widget-container {
  display: block;
}

.xw3r-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
.xw3r-flex {
  display: flex;
  align-items: center;
}
.xw3r-flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.xw3r-gap8 {
  gap: 8px;
}
.xw3r-gap16 {
  gap: 16px;
}
.xw3r-gap24 {
  gap: 24px;
}

.q9mz-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--clr-header);
  border-bottom: 1px solid var(--clr-border);
  padding: 0;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}
.q9mz-header-inner {
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.q9mz-logo img {
  height: 44px;
  width: auto;
  border-radius: 6px;
}
.q9mz-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.q9mz-nav a {
  padding: 7px 13px;
  border-radius: 7px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--clr-text-muted);
  transition:
    color 0.2s,
    background 0.2s;
}
.q9mz-nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}
.q9mz-header-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.q9mz-online {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--clr-text-muted);
  white-space: nowrap;
}
.q9mz-online-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22d45a;
  box-shadow: 0 0 6px #22d45a;
  animation: blink-dot 2s infinite;
}
@keyframes blink-dot {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}
.q9mz-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  border: none;
  background: transparent;
}
.q9mz-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #e8eaf0;
  border-radius: 2px;
  transition: all 0.3s;
}
.q9mz-burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.q9mz-burger.active span:nth-child(2) {
  opacity: 0;
}
.q9mz-burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.q9mz-mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--clr-card);
  border-top: 1px solid var(--clr-border);
  padding: 16px 20px;
  gap: 8px;
}
.q9mz-mobile-nav.open {
  display: flex;
}
.q9mz-mobile-nav a {
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.95rem;
  color: var(--clr-text);
  transition: background 0.2s;
}
.q9mz-mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.07);
}
.q9mz-mobile-nav .pf72-btns {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.pf72-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 20px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition:
    transform 0.15s,
    box-shadow 0.15s,
    filter 0.2s;
  white-space: nowrap;
  text-decoration: none;
}
.pf72-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}
.pf72-btn:active {
  transform: translateY(0);
}
.pf72-btn-dark {
  background: var(--clr-btn-dark);
  color: #e8eaf0;
  border: 1px solid var(--clr-border);
}
.pf72-btn-dark:hover {
  border-color: #2d4460;
  background: #1f2d3e;
}
.pf72-btn-red {
  background: var(--clr-btn-red);
  color: #fff;
  box-shadow: 0 4px 16px rgba(255, 57, 57, 0.3);
}
.pf72-btn-red:hover {
  filter: brightness(1.1);
  box-shadow: 0 6px 24px rgba(255, 57, 57, 0.45);
}
.pf72-btn-lg {
  padding: 13px 32px;
  font-size: 1rem;
  border-radius: 10px;
}
.pf72-btn-sm {
  padding: 7px 14px;
  font-size: 0.82rem;
}

.m5vx-hero {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
  background: #060d15;
}
.m5vx-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("/bitzban.png");
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}
.m5vx-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13, 19, 28, 0.95) 0%,
    rgba(13, 19, 28, 0.55) 60%,
    rgba(13, 19, 28, 0.2) 100%
  );
}
.m5vx-hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
}
.m5vx-hero-content h1 {
  font-size: clamp(1.8rem, 4vw, 2.9rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}
.m5vx-hero-content h1 span {
  color: var(--clr-accent);
}
.m5vx-hero-content p {
  font-size: 1.05rem;
  color: #b0bdd0;
  margin-bottom: 28px;
  max-width: 480px;
  line-height: 1.7;
}
.m5vx-hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.m5vx-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 57, 57, 0.15);
  border: 1px solid rgba(255, 57, 57, 0.3);
  color: var(--clr-accent2);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 18px;
}
.m5vx-badge svg {
  width: 14px;
  height: 14px;
}

.n4qp-section {
  padding: 60px 0;
}
.n4qp-section-title {
  font-size: 1.55rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.n4qp-section-sub {
  font-size: 0.92rem;
  color: var(--clr-text-muted);
  margin-bottom: 32px;
}
.n4qp-title-row {
  margin-bottom: 32px;
}

.r8kz-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border);
  background: var(--clr-card);
}
.r8kz-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 540px;
}
.r8kz-table th,
.r8kz-table td {
  text-align: left;
  padding: 13px 18px;
  border-bottom: 1px solid var(--clr-border);
  font-size: 0.92rem;
  line-height: 1.5;
}
.r8kz-table th {
  background: #0f1929;
  color: var(--clr-text-muted);
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.r8kz-table td:first-child {
  color: var(--clr-text-muted);
  width: 42%;
  font-weight: 500;
}
.r8kz-table td:last-child {
  color: #fff;
  font-weight: 500;
}
.r8kz-table tr:last-child td {
  border-bottom: none;
}
.r8kz-table tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.025);
}
.r8kz-table tr:hover td {
  background: rgba(255, 255, 255, 0.04);
  transition: background 0.15s;
}
.r8kz-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(34, 212, 90, 0.12);
  color: #22d45a;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
}
.r8kz-badge-gold {
  background: rgba(245, 200, 66, 0.12);
  color: var(--clr-gold);
}

.v6nt-winners {
  background: var(--clr-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border);
  overflow: hidden;
}
.v6nt-winner-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  border-bottom: 1px solid rgba(30, 45, 64, 0.6);
  transition: background 0.2s;
}
.v6nt-winner-item:last-child {
  border-bottom: none;
}
.v6nt-winner-item:hover {
  background: rgba(255, 255, 255, 0.03);
}
.v6nt-pos {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.78rem;
  flex-shrink: 0;
}
.v6nt-pos-1 {
  background: linear-gradient(135deg, #f5c842, #e6a800);
  color: #0d131c;
}
.v6nt-pos-2 {
  background: linear-gradient(135deg, #c0c8d8, #8a96a8);
  color: #0d131c;
}
.v6nt-pos-3 {
  background: linear-gradient(135deg, #cd7f32, #a05a20);
  color: #fff;
}
.v6nt-pos-rest {
  background: var(--clr-btn-dark);
  color: var(--clr-text-muted);
}
.v6nt-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-border), #2d4460);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: #fff;
  flex-shrink: 0;
}
.v6nt-name {
  flex: 1;
  font-weight: 500;
  font-size: 0.9rem;
}
.v6nt-game {
  font-size: 0.78rem;
  color: var(--clr-text-muted);
}
.v6nt-amount {
  font-weight: 700;
  font-size: 0.95rem;
  color: #22d45a;
  white-space: nowrap;
}
.v6nt-live-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 57, 57, 0.12);
  border: 1px solid rgba(255, 57, 57, 0.25);
  color: var(--clr-accent);
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 0.7rem;
  font-weight: 600;
}
.v6nt-live-tag::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--clr-accent);
  animation: blink-dot 1.5s infinite;
}

.k2ws-app-grid {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.k2ws-app-info {
  flex: 1;
  min-width: 280px;
}
.k2ws-app-dl {
  flex: 1;
  min-width: 240px;
}
.k2ws-app-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}
.k2ws-app-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 20px;
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  text-decoration: none;
  color: var(--clr-text);
}
.k2ws-app-btn:hover {
  border-color: #2d4460;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}
.k2ws-app-btn-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  fill: var(--clr-text-muted);
}
.k2ws-app-btn-label {
  font-size: 0.72rem;
  color: var(--clr-text-muted);
}
.k2ws-app-btn-store {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
}

.s3jl-slots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.s3jl-slot-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.s3jl-slot-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
}
.s3jl-slot-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.s3jl-slot-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s;
}
.s3jl-slot-card:hover .s3jl-slot-img img {
  transform: scale(1.06);
}
.s3jl-slot-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s;
}
.s3jl-slot-card:hover .s3jl-slot-overlay {
  opacity: 1;
}
.s3jl-slot-body {
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.s3jl-slot-name {
  font-weight: 600;
  font-size: 0.92rem;
  color: #fff;
}
.s3jl-slot-provider {
  font-size: 0.75rem;
  color: var(--clr-text-muted);
  margin-top: 2px;
}

.lw9b-modal-bg {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.lw9b-modal-bg.open {
  display: flex;
  animation: fade-in 0.25s;
}
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.lw9b-modal {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 860px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.7);
}
.lw9b-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid var(--clr-border);
}
.lw9b-modal-title {
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
}
.lw9b-modal-close {
  background: var(--clr-btn-dark);
  border: 1px solid var(--clr-border);
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.lw9b-modal-close:hover {
  background: #2d3e52;
}
.lw9b-modal-frame {
  width: 100%;
  height: 480px;
  border: none;
  background: #000;
}
.lw9b-modal-footer {
  padding: 12px 20px;
  border-top: 1px solid var(--clr-border);
  display: flex;
  justify-content: center;
}

.w4pz-wheel-section {
  background: linear-gradient(180deg, var(--clr-bg) 0%, #0a101a 100%);
}
.w4pz-wheel-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.w4pz-canvas-wrap {
  position: relative;
  width: 320px;
  height: 320px;
}
.w4pz-canvas-wrap canvas {
  border-radius: 50%;
  box-shadow:
    0 0 40px rgba(255, 57, 57, 0.25),
    0 0 0 4px var(--clr-border);
}
.w4pz-pointer {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 20px solid var(--clr-accent);
  filter: drop-shadow(0 2px 6px rgba(255, 57, 57, 0.6));
}
.w4pz-wheel-btn {
  margin-top: 4px;
}
.w4pz-wheel-result {
  text-align: center;
  padding: 20px 32px;
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  min-width: 280px;
  animation: slide-up 0.3s;
}
@keyframes slide-up {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.w4pz-result-win {
  color: #22d45a;
}
.w4pz-result-lose {
  color: var(--clr-text-muted);
}
.w4pz-result-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.w4pz-result-bonus {
  font-size: 1.05rem;
  margin-bottom: 16px;
}

.p1xm-review {
  background: var(--clr-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border);
  padding: 36px 40px;
}
.p1xm-review-content {
  font-size: 0.97rem;
  line-height: 1.8;
  color: #c8d4e4;
}
.p1xm-review-content h2,
.p1xm-review-content h3,
.p1xm-review-content h4,
.p1xm-review-content h5 {
  color: #fff;
  margin: 1.6em 0 0.6em;
  line-height: 1.3;
}
.p1xm-review-content h2 {
  font-size: 1.4rem;
}
.p1xm-review-content h3 {
  font-size: 1.2rem;
}
.p1xm-review-content h4 {
  font-size: 1.05rem;
}
.p1xm-review-content p {
  margin-bottom: 1em;
}
.p1xm-review-content ul,
.p1xm-review-content ol {
  margin: 1em 0 1em 1.5em;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.p1xm-review-content ul li {
  list-style: disc;
}
.p1xm-review-content ol li {
  list-style: decimal;
}
.p1xm-review-content a {
  color: var(--clr-accent2);
  text-decoration: underline;
  text-decoration-color: rgba(255, 107, 107, 0.4);
}
.p1xm-review-content a:hover {
  color: #fff;
}
.p1xm-review-content strong,
.p1xm-review-content b {
  color: #fff;
  font-weight: 600;
}
.p1xm-review-content em,
.p1xm-review-content i {
  color: var(--clr-text-muted);
  font-style: italic;
}
.p1xm-review-content blockquote {
  border-left: 3px solid var(--clr-accent);
  padding: 10px 18px;
  background: rgba(255, 57, 57, 0.07);
  border-radius: 0 8px 8px 0;
  margin: 1.2em 0;
  color: #b0bdd0;
}
.p1xm-review-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.2em 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--clr-border);
}
.p1xm-review-content table th,
.p1xm-review-content table td {
  text-align: left;
  padding: 10px 14px;
  border-bottom: 1px solid var(--clr-border);
  font-size: 0.9rem;
}
.p1xm-review-content table th {
  background: #0f1929;
  color: var(--clr-text-muted);
  font-weight: 600;
}
.p1xm-review-content table tr:last-child td {
  border-bottom: none;
}
.p1xm-review-content table tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.02);
}
.p1xm-review-content hr {
  border: none;
  border-top: 1px solid var(--clr-border);
  margin: 2em 0;
}
.p1xm-review-content img {
  border-radius: 8px;
  margin: 1em 0;
}
.p1xm-review-content code {
  background: rgba(255, 255, 255, 0.08);
  padding: 2px 7px;
  border-radius: 4px;
  font-family: "Courier New", monospace;
  font-size: 0.88em;
}
.p1xm-review-content pre {
  background: rgba(255, 255, 255, 0.06);
  padding: 16px;
  border-radius: 8px;
  overflow-x: auto;
  margin: 1em 0;
}
.p1xm-review-content pre code {
  background: none;
  padding: 0;
}

.z8cx-author {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.z8cx-author-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--clr-border);
}
.z8cx-author-name {
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 4px;
}
.z8cx-author-role {
  font-size: 0.82rem;
  color: var(--clr-accent2);
  margin-bottom: 10px;
  font-weight: 500;
}
.z8cx-author-bio {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
}
.z8cx-author-links {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}
.z8cx-author-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: var(--clr-btn-dark);
  border: 1px solid var(--clr-border);
  border-radius: 7px;
  font-size: 0.82rem;
  color: var(--clr-text-muted);
  transition:
    color 0.2s,
    border-color 0.2s;
}
.z8cx-author-links a:hover {
  color: #fff;
  border-color: #2d4460;
}

.h5rw-footer {
  background: var(--clr-header);
  border-top: 1px solid var(--clr-border);
  padding: 48px 0 24px;
}
.h5rw-footer-top {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  align-items: flex-start;
}
.h5rw-footer-col {
  flex: 1;
  min-width: 200px;
}
.h5rw-footer-col-title {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--clr-text-muted);
  font-weight: 600;
  margin-bottom: 14px;
}
.h5rw-footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.h5rw-footer-nav a {
  font-size: 0.88rem;
  color: var(--clr-text-muted);
  transition: color 0.2s;
}
.h5rw-footer-nav a:hover {
  color: #fff;
}
.h5rw-logos-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 16px;
}
.h5rw-logo-badge {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 0.75rem;
  color: var(--clr-text-muted);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.h5rw-footer-bottom {
  border-top: 1px solid var(--clr-border);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.h5rw-copyright {
  font-size: 0.8rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
}
.h5rw-legal {
  font-size: 0.75rem;
  color: #4a5a72;
  line-height: 1.7;
}

.y3mc-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: linear-gradient(90deg, #0a0f17 0%, #12202f 100%);
  border-top: 1px solid var(--clr-border);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.5);
}
.y3mc-widget-text {
  font-size: 0.82rem;
  color: var(--clr-text-muted);
  line-height: 1.4;
}
.y3mc-widget-text strong {
  color: #fff;
  display: block;
  font-size: 0.92rem;
}
.y3mc-widget-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.y3mc-widget-bonus {
  font-size: 0.78rem;
  background: rgba(255, 57, 57, 0.12);
  border: 1px solid rgba(255, 57, 57, 0.25);
  color: var(--clr-accent2);
  padding: 4px 10px;
  border-radius: 16px;
  font-weight: 600;
}
.y3mc-widget-close {
  background: transparent;
  border: none;
  color: var(--clr-text-muted);
  cursor: pointer;
  font-size: 1.1rem;
  padding: 4px;
  line-height: 1;
  transition: color 0.2s;
}
.y3mc-widget-close:hover {
  color: #fff;
}
.y3mc-hidden {
  display: none;
}

.f2bp-divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--clr-border) 30%,
    var(--clr-border) 70%,
    transparent
  );
  margin: 0;
}

.g7hn-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

body {
  padding-bottom: 68px;
}

@media (max-width: 1024px) {
  .s3jl-slots-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .g7hn-grid-2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .q9mz-nav {
    display: none;
  }
  .q9mz-burger {
    display: flex;
  }
  .s3jl-slots-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .p1xm-review {
    padding: 22px 18px;
  }
  .p1xm-review-content {
    font-size: 0.92rem;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
  }
  .p1xm-review-content table {
    font-size: 0.82rem;
  }
  .p1xm-review-content table th,
  .p1xm-review-content table td {
    padding: 8px 10px;
  }
  .z8cx-author {
    flex-direction: column;
    padding: 20px;
  }
  .z8cx-author-photo {
    width: 64px;
    height: 64px;
  }
  .m5vx-hero {
    min-height: 400px;
  }
  .m5vx-hero-content h1 {
    font-size: 1.7rem;
  }
  .n4qp-section {
    padding: 40px 0;
  }
  .k2ws-app-grid {
    flex-direction: column;
    gap: 24px;
  }
  .k2ws-app-info {
    width: 100%;
    overflow-x: auto;
  }
  .k2ws-app-dl {
    width: 100%;
  }
  .k2ws-app-dl p {
    font-size: 0.88rem;
  }
  .k2ws-app-btns {
    width: 100%;
  }
  .k2ws-app-btn {
    width: 100%;
    padding: 12px 16px;
  }
  .h5rw-footer-top {
    flex-direction: column;
    gap: 28px;
  }
  .y3mc-widget {
    flex-wrap: wrap;
    gap: 8px;
  }
  .w4pz-canvas-wrap {
    width: 260px;
    height: 260px;
  }
  .w4pz-canvas-wrap canvas {
    width: 260px !important;
    height: 260px !important;
  }
  .lw9b-modal-frame {
    height: 320px;
  }
  .r8kz-table {
    min-width: 100%;
  }
}

@media (max-width: 480px) {
  .s3jl-slots-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .m5vx-hero-btns {
    flex-direction: column;
  }
  .q9mz-header-right .pf72-btn {
    padding: 8px 14px;
    font-size: 0.8rem;
  }
  .r8kz-table th,
  .r8kz-table td {
    padding: 10px 12px;
    font-size: 0.85rem;
  }
  .k2ws-app-btn {
    padding: 10px 14px;
  }
  .k2ws-app-btn-icon {
    width: 32px;
    height: 32px;
  }
  .k2ws-app-btn-label {
    font-size: 0.7rem;
  }
  .k2ws-app-btn-store {
    font-size: 0.88rem;
  }
  .p1xm-review {
    padding: 18px 14px;
  }
  .p1xm-review-content {
    font-size: 0.88rem;
  }
  .p1xm-review-content h2 {
    font-size: 1.2rem;
  }
  .p1xm-review-content h3 {
    font-size: 1.05rem;
  }
  .p1xm-review-content pre {
    padding: 12px;
    font-size: 0.8rem;
  }
}
@keyframes e9zp-fade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.t6nk-pulse:hover {
  animation: t6nk-pulse 0.5s ease;
}
@keyframes t6nk-pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.04);
  }
  100% {
    transform: scale(1);
  }
}

.sk-loading {
  position: relative;
  overflow: hidden;
  background: var(--clr-card);
}
.sk-loading::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.04) 50%,
    transparent 100%
  );
  animation: sk-shimmer 1.8s infinite;
}
@keyframes sk-shimmer {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100%);
  }
}

.wc-yoast-meta-robots {
  display: none;
}
#page-wrapper {
  display: block;
}
.elementor-section {
  display: block;
}
.wp-image-placeholder {
  display: none !important;
}
.et_pb_module {
  display: block;
}
