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

:root {
  --clr-bg: #000002;
  --clr-header: #18191b;
  --clr-btn-dark: #0e0e0e;
  --clr-btn-red: #dd4c5d;
  --clr-btn-red-hover: #c43a4a;
  --clr-text: #e8e8e8;
  --clr-text-muted: #9a9a9a;
  --clr-border: #2a2a2e;
  --clr-card: #111114;
  --clr-card2: #16161a;
  --clr-accent: #dd4c5d;
  --clr-gold: #f5c842;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --font: "Poppins", Arial, sans-serif;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.55);
}

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

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

body {
  font-family: var(--font);
  background: var(--clr-bg);
  color: var(--clr-text);
  font-size: 15px;
  line-height: 1.6;
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul,
ol {
  list-style: none;
}

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

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

.site-main {
  flex: 1;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.hd-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.hd-logo {
  flex-shrink: 0;
}
.hd-logo img {
  height: 40px;
  width: auto;
  border-radius: 6px;
  filter: brightness(0) saturate(100%) invert(15%) sepia(95%) saturate(6932%)
    hue-rotate(359deg) brightness(94%) contrast(113%);
}

.hd-online {
  font-size: 11px;
  color: #4ade80;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-right: 4px;
}

.hd-online::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse-dot 1.6s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.3);
  }
}

.hd-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.hd-nav a {
  font-size: 13px;
  font-weight: 500;
  color: #c8c8cc;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition:
    color 0.2s,
    background 0.2s;
  white-space: nowrap;
}

.hd-nav a:hover,
.hd-nav a.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 13px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 8px 18px;
  text-decoration: none;
  transition:
    transform 0.15s,
    box-shadow 0.15s,
    background 0.2s,
    opacity 0.2s;
  letter-spacing: 0.02em;
}

.btn:hover {
  transform: translateY(-1px);
}
.btn:active {
  transform: translateY(0);
}

.btn-login {
  background: #1e1e22;
  color: #e8e8e8;
  border: 1px solid var(--clr-border);
}
.btn-login:hover {
  background: #2a2a2e;
}

.btn-signup {
  background: var(--clr-btn-red);
  color: #fff;
  box-shadow: 0 2px 12px rgba(221, 76, 93, 0.4);
}
.btn-signup:hover {
  background: var(--clr-btn-red-hover);
  box-shadow: 0 4px 18px rgba(221, 76, 93, 0.55);
}

.btn-bonus {
  background: linear-gradient(135deg, #dd4c5d, #b33c4a);
  color: #fff;
  font-size: 12px;
  padding: 8px 14px;
}

.btn-primary {
  background: var(--clr-btn-red);
  color: #fff;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 20px rgba(221, 76, 93, 0.45);
}
.btn-primary:hover {
  background: var(--clr-btn-red-hover);
  box-shadow: 0 6px 28px rgba(221, 76, 93, 0.6);
}

.btn-outline {
  background: transparent;
  color: var(--clr-text);
  border: 1px solid var(--clr-border);
  font-size: 14px;
  padding: 11px 26px;
  border-radius: var(--radius-md);
}
.btn-outline:hover {
  border-color: var(--clr-accent);
  color: var(--clr-accent);
}

.btn-download {
  background: #1a1a1e;
  border: 1px solid var(--clr-border);
  color: var(--clr-text);
  font-size: 13px;
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  gap: 8px;
}
.btn-download:hover {
  border-color: var(--clr-accent);
  color: var(--clr-accent);
}

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

.hd-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #e8e8e8;
  border-radius: 2px;
  transition:
    transform 0.25s,
    opacity 0.25s;
}

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

.hero-block {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--clr-header);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("/banpok.png");
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 2, 0.92) 0%,
    rgba(0, 0, 2, 0.45) 60%,
    rgba(0, 0, 2, 0.1) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 60px 20px;
}

.hero-content .xw-container {
  max-width: 1200px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(221, 76, 93, 0.18);
  border: 1px solid rgba(221, 76, 93, 0.35);
  color: #dd4c5d;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(26px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 14px;
}

.hero-title span {
  color: var(--clr-accent);
}

.hero-desc {
  font-size: 15px;
  color: #b8b8c0;
  margin-bottom: 28px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-slider {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}

.hero-slider .slider-track {
  display: flex;
  transition: transform 0.5s ease;
}

.hero-slider .slider-slide {
  min-width: 100%;
  min-height: 420px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-slider .slider-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.38;
}

.hero-slider .slider-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 2, 0.9) 0%,
    rgba(0, 0, 2, 0.4) 100%
  );
}

.hero-slider .slider-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 60px 16px;
}

.slider-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  padding: 14px 0;
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  z-index: 5;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.2s;
  border: none;
}

.slider-dot.is-active {
  background: var(--clr-accent);
  transform: scale(1.3);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--clr-border);
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.slider-arrow:hover {
  background: var(--clr-accent);
}
.slider-arrow-prev {
  left: 12px;
}
.slider-arrow-next {
  right: 12px;
}

.section {
  padding: 56px 0;
}

.section-sm {
  padding: 36px 0;
}

.section-title {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

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

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

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: 8px;
}

/* CARD BLOCK */
.card-block {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
}

.card-block--accent {
  border-color: rgba(221, 76, 93, 0.35);
  background: linear-gradient(135deg, #111114 0%, #18080c 100%);
}

/* ===== BREADCRUMBS ===== */
.breadcrumbs {
  background: var(--clr-card);
  border-bottom: 1px solid var(--clr-border);
}

.breadcrumbs-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  font-size: 13px;
  color: var(--clr-text-muted);
  flex-wrap: wrap;
}

.breadcrumbs-inner a {
  color: var(--clr-text-muted);
  transition: color 0.2s;
}
.breadcrumbs-inner a:hover {
  color: var(--clr-accent);
}
.breadcrumbs-inner .sep {
  color: #444;
}
.breadcrumbs-inner .current {
  color: var(--clr-text);
}

/* ===== TABLE ===== */
.tbl-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-md);
}

table {
  width: 100%;
  min-width: 480px;
  border-collapse: collapse;
  font-size: 14px;
}

thead tr {
  background: #1a1a1e;
}

thead th {
  padding: 13px 16px;
  text-align: left;
  font-weight: 600;
  color: #e0e0e4;
  border-bottom: 2px solid var(--clr-border);
  white-space: nowrap;
}

tbody tr {
  border-bottom: 1px solid var(--clr-border);
  transition: background 0.15s;
}
tbody tr:hover {
  background: rgba(255, 255, 255, 0.03);
}

tbody td {
  padding: 12px 16px;
  color: var(--clr-text);
  vertical-align: middle;
}

tbody td a {
  color: var(--clr-accent);
  font-weight: 600;
  text-decoration: underline;
}
tbody td a:hover {
  text-decoration: none;
}

.tbl-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: #4ade80;
}
.tbl-status::before {
  content: "";
  width: 7px;
  height: 7px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse-dot 1.6s infinite;
}

/* ===== MIRROR TABLE ===== */
.mirror-time {
  font-size: 12px;
  color: var(--clr-text-muted);
  margin-bottom: 10px;
}

/* ===== SCREENSHOTS SLIDER ===== */
.screenshots-slider {
  position: relative;
}

.screenshots-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.screenshots-track::-webkit-scrollbar {
  display: none;
}

.screenshot-item {
  scroll-snap-align: start;
  flex-shrink: 0;
  width: 340px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--clr-border);
}

.screenshot-item img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  transition: transform 0.3s;
}
.screenshot-item:hover img {
  transform: scale(1.04);
}

/* ===== WINNERS TABLE ===== */
.winners-rank {
  font-weight: 700;
  color: var(--clr-gold);
  font-size: 15px;
}
.winners-rank.r1 {
  color: #f5c842;
}
.winners-rank.r2 {
  color: #c0c0c0;
}
.winners-rank.r3 {
  color: #cd7f32;
}

.winners-amount {
  font-weight: 700;
  color: #4ade80;
}

/* ===== APP INFO ===== */
.app-download-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

/* ===== WHEEL GAME ===== */
.wheel-block {
  text-align: center;
  padding: 40px 20px;
}

.wheel-wrap {
  position: relative;
  display: inline-block;
  margin: 24px auto;
}

.wheel-canvas {
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(221, 76, 93, 0.3);
  cursor: pointer;
}

.wheel-pointer {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 22px solid var(--clr-accent);
  filter: drop-shadow(0 2px 6px rgba(221, 76, 93, 0.6));
}

.wheel-result {
  display: none;
  margin-top: 20px;
  padding: 20px 28px;
  background: linear-gradient(135deg, #1a0a0e, #110008);
  border: 1px solid rgba(221, 76, 93, 0.4);
  border-radius: var(--radius-md);
  animation: fadeInUp 0.4s ease;
}

.wheel-result.show {
  display: block;
}

.wheel-result-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--clr-gold);
  margin-bottom: 8px;
}

.wheel-result-desc {
  font-size: 15px;
  color: #c8c8cc;
  margin-bottom: 16px;
}

/* ===== AUTHOR ===== */
.author-block {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.author-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--clr-accent);
  flex-shrink: 0;
}

.author-name {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.author-role {
  font-size: 12px;
  color: var(--clr-accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.author-bio {
  font-size: 13px;
  color: var(--clr-text-muted);
  line-height: 1.6;
  margin-bottom: 10px;
}

.author-socials {
  display: flex;
  gap: 10px;
}

.author-social-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: var(--clr-accent);
  border: 1px solid rgba(221, 76, 93, 0.3);
  padding: 4px 12px;
  border-radius: 20px;
  transition: background 0.2s;
}
.author-social-link:hover {
  background: rgba(221, 76, 93, 0.12);
}

/* ===== FAQ ===== */
.faq-item {
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.is-open {
  border-color: rgba(221, 76, 93, 0.4);
}

.faq-question {
  width: 100%;
  background: var(--clr-card);
  border: none;
  text-align: left;
  padding: 16px 20px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  color: #e8e8e8;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition:
    background 0.2s,
    color 0.2s;
}

.faq-question:hover {
  background: var(--clr-card2);
  color: #fff;
}
.faq-item.is-open .faq-question {
  color: var(--clr-accent);
}

.faq-chevron {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item.is-open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.3s;
  background: var(--clr-card2);
  font-size: 14px;
  color: var(--clr-text-muted);
  line-height: 1.65;
  padding: 0 20px;
}

.faq-item.is-open .faq-answer {
  max-height: 400px;
  padding: 14px 20px 18px;
}

.bonus-cards {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.bonus-cards::-webkit-scrollbar {
  display: none;
}

.bonus-card {
  scroll-snap-align: start;
  flex-shrink: 0;
  width: 280px;
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition:
    border-color 0.2s,
    transform 0.2s;
}

.bonus-card:hover {
  border-color: rgba(221, 76, 93, 0.4);
  transform: translateY(-3px);
}

.bonus-card-icon {
  font-size: 36px;
  margin-bottom: 12px;
}

.bonus-card-title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.bonus-card-amount {
  font-size: 24px;
  font-weight: 800;
  color: var(--clr-accent);
  margin-bottom: 10px;
}

.bonus-card-desc {
  font-size: 13px;
  color: var(--clr-text-muted);
  line-height: 1.55;
  margin-bottom: 16px;
}

.promo-block {
  background: linear-gradient(135deg, #18080c, #0e0e12);
  border: 2px solid var(--clr-accent);
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: center;
}

.promo-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--clr-text-muted);
  margin-bottom: 10px;
}

.promo-code-display {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--clr-btn-dark);
  border: 1px dashed var(--clr-accent);
  border-radius: var(--radius-sm);
  padding: 14px 28px;
  font-size: 28px;
  font-weight: 800;
  color: var(--clr-gold);
  letter-spacing: 0.12em;
  margin-bottom: 20px;
  cursor: pointer;
  transition: background 0.2s;
}
.promo-code-display:hover {
  background: #1a1a1e;
}

.promo-copy-btn {
  background: none;
  border: none;
  color: var(--clr-text-muted);
  font-size: 13px;
  font-family: var(--font);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
}

.jackpot-cards {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.jackpot-card {
  flex: 1;
  min-width: 160px;
  background: linear-gradient(135deg, #1a0a0e, #100010);
  border: 1px solid rgba(245, 200, 66, 0.25);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
}

.jackpot-card-title {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--clr-text-muted);
  margin-bottom: 8px;
}

.jackpot-amount {
  font-size: 28px;
  font-weight: 800;
  color: var(--clr-gold);
  font-variant-numeric: tabular-nums;
}

.jackpot-currency {
  font-size: 13px;
  color: var(--clr-text-muted);
  margin-top: 4px;
}

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

.slot-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition:
    border-color 0.2s,
    transform 0.2s;
}

.slot-card:hover {
  border-color: rgba(221, 76, 93, 0.4);
  transform: translateY(-2px);
}

.slot-card-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.slot-card-body {
  padding: 14px;
}

.slot-card-title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.slot-card-provider {
  font-size: 12px;
  color: var(--clr-text-muted);
  margin-bottom: 6px;
}

.slot-rtp {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 700;
  color: #4ade80;
  background: rgba(74, 222, 128, 0.1);
  padding: 2px 8px;
  border-radius: 20px;
}

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

.mirror-broken-title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.mirror-broken-desc {
  color: var(--clr-text-muted);
  font-size: 14px;
  margin-bottom: 20px;
}

.mirror-broken-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.reg-methods {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.reg-method-card {
  flex: 1;
  min-width: 180px;
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 22px 18px;
  text-align: center;
  transition:
    border-color 0.2s,
    transform 0.2s;
}
.reg-method-card:hover {
  border-color: rgba(221, 76, 93, 0.4);
  transform: translateY(-2px);
}

.reg-method-icon {
  font-size: 32px;
  margin-bottom: 10px;
}
.reg-method-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.reg-method-desc {
  font-size: 13px;
  color: var(--clr-text-muted);
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.advantage-item {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 22px;
  transition: border-color 0.2s;
}
.advantage-item:hover {
  border-color: rgba(221, 76, 93, 0.35);
}

.advantage-icon {
  font-size: 28px;
  margin-bottom: 10px;
}
.advantage-title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.advantage-desc {
  font-size: 13px;
  color: var(--clr-text-muted);
}

.rtp-badge {
  display: inline-block;
  font-weight: 700;
  font-size: 13px;
  padding: 3px 10px;
  border-radius: 20px;
  color: #fff;
}
.rtp-high {
  background: rgba(74, 222, 128, 0.2);
  color: #4ade80;
}
.rtp-mid {
  background: rgba(245, 200, 66, 0.15);
  color: var(--clr-gold);
}

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

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

.app-spec-label {
  font-weight: 600;
  color: #c8c8cc;
  white-space: nowrap;
  width: 180px;
}

.sticky-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: linear-gradient(90deg, #0e0e0e 0%, #1a0a0e 100%);
  border-top: 2px solid var(--clr-accent);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  box-shadow: 0 -4px 24px rgba(221, 76, 93, 0.2);
}

.widget-text {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  flex: 1;
}

.widget-text span {
  color: var(--clr-gold);
}

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

.site-footer {
  background: var(--clr-header);
  border-top: 1px solid var(--clr-border);
  padding: 48px 0 20px;
  margin-top: auto;
}

.footer-top {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.footer-brand {
  flex: 0 0 220px;
}

.footer-logo img {
  height: 36px;
  margin-bottom: 14px;
  filter: brightness(0) saturate(100%) invert(15%) sepia(95%) saturate(6932%)
    hue-rotate(359deg) brightness(94%) contrast(113%);
}

.footer-brand-desc {
  font-size: 13px;
  color: var(--clr-text-muted);
  line-height: 1.6;
}

.footer-nav-col {
  flex: 1;
  min-width: 130px;
}

.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #888;
  margin-bottom: 14px;
}

.footer-nav-col ul li {
  margin-bottom: 8px;
}

.footer-nav-col ul li a {
  font-size: 13px;
  color: var(--clr-text-muted);
  transition: color 0.2s;
}

.footer-nav-col ul li a:hover {
  color: var(--clr-accent);
}

.footer-payments {
  margin-bottom: 20px;
}

.footer-payments-title {
  font-size: 12px;
  color: #666;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-logos-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.footer-payment-logo {
  background: #1e1e22;
  border: 1px solid var(--clr-border);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 700;
  color: #b0b0b8;
  letter-spacing: 0.04em;
}

.footer-provider-logo {
  background: #1e1e22;
  border: 1px solid var(--clr-border);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 700;
  color: #b0b0b8;
}

.footer-bottom {
  border-top: 1px solid var(--clr-border);
  padding-top: 16px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 12px;
  color: #555;
  line-height: 1.6;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-legal-links a {
  font-size: 12px;
  color: #555;
  transition: color 0.2s;
}
.footer-legal-links a:hover {
  color: var(--clr-text-muted);
}

.content-review h2 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 28px 0 12px;
  line-height: 1.3;
}

.content-review h3 {
  font-size: 18px;
  font-weight: 600;
  color: #e4e4e8;
  margin: 22px 0 10px;
}

.content-review h4 {
  font-size: 16px;
  font-weight: 600;
  color: #ccc;
  margin: 18px 0 8px;
}

.content-review p {
  font-size: 15px;
  color: var(--clr-text-muted);
  line-height: 1.75;
  margin-bottom: 14px;
}

.content-review ul,
.content-review ol {
  margin-bottom: 14px;
  padding-left: 20px;
}

.content-review ul {
  list-style: disc;
}
.content-review ol {
  list-style: decimal;
}

.content-review li {
  font-size: 14px;
  color: var(--clr-text-muted);
  line-height: 1.6;
  margin-bottom: 6px;
}

.content-review table {
  min-width: 320px;
  margin-bottom: 16px;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.content-review table th,
.content-review table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--clr-border);
  text-align: left;
}

.content-review a {
  color: var(--clr-accent);
  text-decoration: underline;
}

.content-review strong {
  color: #fff;
  font-weight: 700;
}
.content-review em {
  color: #b8b8c0;
  font-style: italic;
}
.content-review blockquote {
  border-left: 3px solid var(--clr-accent);
  padding-left: 16px;
  color: #999;
  font-style: italic;
  margin-bottom: 14px;
}

.technical-content h2 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin: 24px 0 10px;
}
.technical-content h3 {
  font-size: 17px;
  font-weight: 600;
  color: #e0e0e4;
  margin: 18px 0 8px;
}
.technical-content p {
  font-size: 14px;
  color: var(--clr-text-muted);
  line-height: 1.7;
  margin-bottom: 12px;
}
.technical-content ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 14px;
}
.technical-content li {
  font-size: 14px;
  color: var(--clr-text-muted);
  line-height: 1.65;
  margin-bottom: 5px;
}
.technical-content a {
  color: var(--clr-accent);
}

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fade-in-up {
  animation: fadeInUp 0.5s ease both;
}

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

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

@media (max-width: 900px) {
  .hd-nav {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--clr-header);
    z-index: 9998;
    padding: 80px 24px 24px;
    gap: 8px;
  }
  .hd-nav.is-open {
    display: flex;
    animation: fadeIn 0.25s ease;
  }
  .hd-nav a {
    font-size: 16px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    border-bottom: 1px solid var(--clr-border);
  }
  .hd-burger {
    display: flex;
    z-index: 9999;
  }
  .hd-actions .btn-login {
    display: none;
  }
  .hd-online {
    display: none;
  }
  .slots-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .footer-brand {
    flex: 0 0 100%;
  }
  .jackpot-cards {
    flex-wrap: wrap;
  }
  .jackpot-card {
    min-width: 140px;
  }
  .hero-content {
    padding: 40px 16px;
  }
}

@media (max-width: 600px) {
  .slots-grid {
    grid-template-columns: 1fr 1fr;
  }
  .advantages-grid {
    grid-template-columns: 1fr 1fr;
  }
  .reg-methods {
    flex-direction: column;
  }
  .promo-code-display {
    font-size: 22px;
  }
  .author-block {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .sticky-widget {
    flex-wrap: nowrap;
  }
  .screenshot-item {
    width: 280px;
  }
  .bonus-card {
    width: 250px;
  }
  .section {
    padding: 36px 0;
  }
}

@media (max-width: 400px) {
  .slots-grid {
    grid-template-columns: 1fr;
  }
  .advantages-grid {
    grid-template-columns: 1fr;
  }
  .hd-actions .btn-signup {
    font-size: 12px;
    padding: 7px 12px;
  }
}

.wp-block-group,
.entry-content,
.post-thumbnail,
.widget-area,
.elementor-widget-container,
.wp-caption {
  display: contents;
}
.woocommerce,
.wc-block,
.wp-block-image {
  display: contents;
}

@media (max-width: 900px) {
  .card-block {
    padding: 16px;
    overflow: hidden;
  }
  .tbl-wrap {
    margin: 0 -16px;
    padding: 0 16px;
    width: calc(100% + 32px);
  }
  table {
    min-width: 0;
    width: 100%;
  }
  .app-spec-label {
    width: auto;
    min-width: 100px;
  }
  .app-download-btns {
    flex-direction: column;
  }
  .app-download-btns .btn-download {
    width: 100%;
    text-align: center;
  }
  .screenshots-track {
    margin: 0 -16px;
    padding: 0 16px;
    width: calc(100% + 32px);
  }
  .bonus-cards {
    margin: 0 -16px;
    padding: 0 16px;
    width: calc(100% + 32px);
  }
  .promo-code-display {
    padding: 10px 16px;
    font-size: 18px;
    word-break: break-all;
  }
  .jackpot-amount {
    font-size: 22px;
  }
  .promo-block {
    padding: 24px 16px;
  }
  .wheel-block {
    padding: 20px 0;
  }
  #wheel-canvas {
    width: 220px;
    height: 220px;
  }
}

@media (max-width: 600px) {
  .xw-container {
    padding: 0 12px;
  }
  .card-block {
    padding: 14px;
    border-radius: 14px;
  }
  .tbl-wrap {
    margin: 0 -14px;
    padding: 0 14px;
    width: calc(100% + 28px);
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }
  .sticky-widget {
    padding: 8px 12px;
    gap: 8px;
  }
  .widget-text {
    font-size: 12px;
  }
}
