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

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

:root {
  --c-bg: #0f1923;
  --c-header: #171f2c;
  --c-btn-blue: #2087ec;
  --c-btn-red: #f9335c;
  --c-text: #e8edf4;
  --c-text-muted: #8a97a8;
  --c-border: #243044;
  --c-card: #1a2535;
  --c-card2: #1e2d42;
  --c-gold: #f5c842;
  --c-green: #1db954;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
}

html {
  scroll-behavior: smooth;
  background: var(--c-bg);
}
body {
  font-family: "Inter", Arial, sans-serif;
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--c-btn-blue);
  text-decoration: none;
}
a:hover {
  color: #5aabff;
}
h1,
h2,
h3,
h4,
h5 {
  line-height: 1.3;
  font-weight: 700;
  color: var(--c-text);
}
h1 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
}
h2 {
  font-size: clamp(1.3rem, 3vw, 1.9rem);
}
h3 {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
}
p {
  margin-bottom: 1rem;
  color: var(--c-text);
}

.xw9b2 {
  display: none;
}
.qr7p1 {
  visibility: hidden;
  height: 0;
  overflow: hidden;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 16px;
}
.wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
main {
  flex: 1;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition:
    transform 0.18s,
    box-shadow 0.18s,
    filter 0.18s;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}
.btn--blue {
  background: var(--c-btn-blue);
  color: #fff;
}
.btn--blue:hover {
  background: #3a9aff;
  color: #fff;
}
.btn--red {
  background: var(--c-btn-red);
  color: #fff;
}
.btn--red:hover {
  background: #ff5c7a;
  color: #fff;
}
.btn--outline {
  background: transparent;
  color: var(--c-btn-blue);
  border: 1.5px solid var(--c-btn-blue);
}
.btn--lg {
  padding: 14px 32px;
  font-size: 1rem;
}
.btn--sm {
  padding: 7px 16px;
  font-size: 0.82rem;
}

.site-header {
  background: var(--c-header);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--c-border);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}
.hdr-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 0 16px;
  height: 68px;
}
.hdr-logo img {
  height: 44px;
  width: auto;
  filter: brightness(0) saturate(100%) invert(76%) sepia(67%) saturate(652%)
    hue-rotate(1deg) brightness(105%) contrast(101%);
}
.hdr-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: nowrap;
  overflow: hidden;
}
.hdr-nav a {
  color: var(--c-text-muted);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 7px 10px;
  border-radius: var(--radius-sm);
  transition:
    color 0.18s,
    background 0.18s;
  white-space: nowrap;
}
.hdr-nav a:hover,
.hdr-nav a.active {
  color: var(--c-text);
  background: rgba(255, 255, 255, 0.07);
}
.hdr-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hdr-online {
  font-size: 0.75rem;
  color: var(--c-green);
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}
.hdr-online::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--c-green);
  box-shadow: 0 0 6px var(--c-green);
  animation: pulse 2s infinite;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition:
    transform 0.25s,
    opacity 0.25s;
}
.burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger.open span:nth-child(2) {
  opacity: 0;
}
.burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--c-header);
  z-index: 999;
  overflow-y: auto;
  padding: 16px;
}
.mobile-menu.open {
  display: block;
}
.mobile-menu a {
  display: block;
  padding: 14px 12px;
  color: var(--c-text);
  font-size: 1rem;
  border-bottom: 1px solid var(--c-border);
}
.mobile-menu .mm-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 16px 0;
}
.mobile-menu .mm-actions .btn {
  flex: 1;
  min-width: 120px;
  text-align: center;
}

.hero-slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  margin: 20px 0;
}
.hero-slider .slide {
  display: none;
  position: relative;
  min-height: 380px;
  background: linear-gradient(135deg, #0d2240 0%, #1a3a5e 60%, #0f1923 100%);
  border-radius: var(--radius);
  align-items: center;
  overflow: hidden;
}
.hero-slider .slide.active {
  display: flex;
}
.hero-slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 48px 48px;
  max-width: 600px;
}
.hero-content h1,
.hero-content h2 {
  color: #fff;
  margin-bottom: 12px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
}
.hero-content p {
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 24px;
  font-size: 1.05rem;
}
.hero-content .btn {
  margin-right: 12px;
  margin-bottom: 8px;
}
.hero-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.hero-badge {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  padding: 6px 14px;
  font-size: 0.8rem;
  color: #fff;
}
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}
.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--c-border);
  cursor: pointer;
  transition: background 0.2s;
}
.slider-dot.active {
  background: var(--c-btn-blue);
}
.slider-arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  width: 100%;
  pointer-events: none;
  padding: 0 12px;
  z-index: 3;
}
.slider-arrow {
  pointer-events: all;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.18s;
  font-size: 1.1rem;
}
.slider-arrow:hover {
  background: rgba(255, 255, 255, 0.25);
}

.section {
  padding: 32px 0;
}
.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--c-text);
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--c-border);
}

.block {
  background: var(--c-card);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 20px;
  border: 1px solid var(--c-border);
}
.block2 {
  background: var(--c-card2);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 20px;
  border: 1px solid var(--c-border);
}

.jackpot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.jackpot-card {
  background: linear-gradient(135deg, var(--c-card2), #0d1a2a);
  border: 1px solid rgba(245, 200, 66, 0.25);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.jackpot-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(245, 200, 66, 0.15);
}
.jackpot-card .jc-name {
  font-size: 0.85rem;
  color: var(--c-text-muted);
  margin-bottom: 6px;
}
.jackpot-card .jc-amount {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--c-gold);
  font-variant-numeric: tabular-nums;
}
.jackpot-card .jc-label {
  font-size: 0.75rem;
  color: var(--c-text-muted);
  margin-top: 4px;
}

.mirror-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-sm);
}
.mirror-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 540px;
}
.mirror-table th {
  background: var(--c-card2);
  color: var(--c-text-muted);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 2px solid var(--c-border);
}
.mirror-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--c-border);
  font-size: 0.9rem;
  color: var(--c-text);
}
.mirror-table tr:last-child td {
  border-bottom: none;
}
.mirror-table tr:hover td {
  background: rgba(255, 255, 255, 0.03);
}
.mirror-table .status-ok {
  color: var(--c-green);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}
.mirror-table .status-ok::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--c-green);
}
.mirror-ts {
  font-size: 0.78rem;
  color: var(--c-text-muted);
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.tournaments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.tournament-card {
  background: var(--c-card2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.2s;
}
.tournament-card:hover {
  transform: translateY(-3px);
}
.tc-badge {
  display: inline-block;
  background: var(--c-btn-blue);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
}
.tc-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-text);
}
.tc-desc {
  font-size: 0.87rem;
  color: var(--c-text-muted);
  line-height: 1.5;
}
.tc-prize {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--c-gold);
}
.tc-timer {
  font-size: 0.82rem;
  color: var(--c-text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.tc-timer .timer-val {
  color: var(--c-text);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.wheel-section {
  text-align: center;
  padding: 32px 20px;
}
.wheel-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
#luckWheelCanvas {
  max-width: 280px;
  max-height: 280px;
  filter: drop-shadow(0 0 18px rgba(32, 135, 236, 0.4));
}
.wheel-result {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
}
.wheel-result .wr-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-gold);
}
.wheel-result .wr-sub {
  font-size: 0.85rem;
  color: var(--c-text-muted);
}

.content-review {
  line-height: 1.75;
  font-size: 0.97rem;
}
.content-review h2 {
  font-size: 1.4rem;
  margin: 2rem 0 0.75rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--c-border);
}
.content-review h3 {
  font-size: 1.15rem;
  margin: 1.5rem 0 0.6rem;
}
.content-review h4 {
  font-size: 1rem;
  margin: 1.2rem 0 0.5rem;
}
.content-review p {
  margin-bottom: 1rem;
  color: var(--c-text);
}
.content-review ul,
.content-review ol {
  padding-left: 1.4rem;
  margin-bottom: 1rem;
}
.content-review li {
  margin-bottom: 0.5rem;
  color: var(--c-text);
}
.content-review table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.content-review th {
  background: var(--c-card2);
  padding: 10px 14px;
  text-align: left;
  border: 1px solid var(--c-border);
  font-size: 0.88rem;
}
.content-review td {
  padding: 10px 14px;
  border: 1px solid var(--c-border);
  font-size: 0.88rem;
}
.content-review a {
  color: var(--c-btn-blue);
}
.content-review strong {
  color: #fff;
  font-weight: 600;
}
.content-review img {
  border-radius: var(--radius-sm);
  margin: 1rem 0;
}
.content-review blockquote {
  border-left: 3px solid var(--c-btn-blue);
  padding-left: 16px;
  color: var(--c-text-muted);
  margin: 1rem 0;
  font-style: italic;
}

.author-block {
  background: var(--c-card2);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  border: 1px solid var(--c-border);
}
.author-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--c-btn-blue);
}
.author-info .au-name {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 3px;
}
.author-info .au-role {
  font-size: 0.8rem;
  color: var(--c-btn-blue);
  margin-bottom: 8px;
  font-weight: 600;
}
.author-info .au-bio {
  font-size: 0.85rem;
  color: var(--c-text-muted);
  margin-bottom: 10px;
  line-height: 1.55;
}
.author-links a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  color: var(--c-btn-blue);
  border: 1px solid rgba(32, 135, 236, 0.3);
  border-radius: 20px;
  padding: 4px 12px;
  transition: background 0.18s;
}
.author-links a:hover {
  background: rgba(32, 135, 236, 0.12);
}

.toc-block {
  background: var(--c-card);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--c-border);
}
.toc-block h3 {
  font-size: 1rem;
  margin-bottom: 12px;
}
.toc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.toc-list li a {
  color: var(--c-text-muted);
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  border-radius: var(--radius-sm);
  transition:
    color 0.18s,
    background 0.18s;
}
.toc-list li a:hover {
  color: var(--c-text);
  background: rgba(255, 255, 255, 0.05);
}
.toc-list li a::before {
  content: attr(data-n);
  min-width: 22px;
  height: 22px;
  background: var(--c-btn-blue);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  flex-shrink: 0;
}

.bonus-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 16px;
}
.bonus-card {
  background: var(--c-card2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.bonus-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4);
}
.bonus-card-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}
.bonus-card-body {
  padding: 16px;
}
.bc-type {
  font-size: 0.72rem;
  color: var(--c-btn-blue);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.bc-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.bc-amount {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--c-gold);
  margin-bottom: 6px;
}
.bc-desc {
  font-size: 0.83rem;
  color: var(--c-text-muted);
  line-height: 1.5;
  margin-bottom: 12px;
}
.bc-tag {
  display: inline-block;
  background: rgba(32, 135, 236, 0.15);
  color: var(--c-btn-blue);
  font-size: 0.72rem;
  padding: 3px 9px;
  border-radius: 12px;
  margin-right: 4px;
  margin-bottom: 4px;
}

.promo-accent {
  background: linear-gradient(135deg, #1a3a5e, #0d2240);
  border: 2px solid var(--c-btn-blue);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.promo-accent::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(32, 135, 236, 0.08);
  pointer-events: none;
}
.promo-code-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.promo-code-val {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px dashed rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-sm);
  padding: 10px 22px;
  cursor: pointer;
  transition: background 0.18s;
  user-select: all;
}
.promo-code-val:hover {
  background: rgba(255, 255, 255, 0.16);
}
.promo-copy-btn {
  font-size: 0.8rem;
}

.reg-methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.reg-method-card {
  background: var(--c-card2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  transition:
    border-color 0.2s,
    transform 0.2s;
}
.reg-method-card:hover {
  border-color: var(--c-btn-blue);
  transform: translateY(-3px);
}
.reg-method-card .rm-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}
.reg-method-card .rm-title {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.reg-method-card .rm-desc {
  font-size: 0.8rem;
  color: var(--c-text-muted);
  line-height: 1.5;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.benefit-card {
  background: var(--c-card2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: border-color 0.2s;
}
.benefit-card:hover {
  border-color: var(--c-btn-blue);
}
.benefit-card .bfc-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}
.benefit-card .bfc-title {
  font-size: 0.93rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.benefit-card .bfc-desc {
  font-size: 0.82rem;
  color: var(--c-text-muted);
  line-height: 1.5;
}

.mirror-compare-table {
  width: 100%;
  border-collapse: collapse;
}
.mirror-compare-table th,
.mirror-compare-table td {
  padding: 12px 16px;
  border: 1px solid var(--c-border);
  font-size: 0.88rem;
}
.mirror-compare-table th {
  background: var(--c-card2);
  color: var(--c-text-muted);
  font-weight: 600;
  text-align: left;
}
.mirror-compare-table .chk-yes {
  color: var(--c-green);
  font-weight: 700;
}
.mirror-compare-table .chk-no {
  color: #e55;
  font-weight: 700;
}

.slots-cats {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.slots-cat {
  background: var(--c-card2);
  border: 1.5px solid var(--c-border);
  border-radius: 20px;
  padding: 8px 18px;
  font-size: 0.85rem;
  cursor: pointer;
  transition:
    border-color 0.18s,
    background 0.18s;
  color: var(--c-text);
}
.slots-cat:hover,
.slots-cat.active {
  border-color: var(--c-btn-blue);
  background: rgba(32, 135, 236, 0.12);
  color: #fff;
}

.rtp-table {
  width: 100%;
  border-collapse: collapse;
}
.rtp-table th {
  background: var(--c-card2);
  padding: 10px 14px;
  text-align: left;
  border: 1px solid var(--c-border);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--c-text-muted);
}
.rtp-table td {
  padding: 10px 14px;
  border: 1px solid var(--c-border);
  font-size: 0.88rem;
}
.rtp-table tr:hover td {
  background: rgba(255, 255, 255, 0.03);
}
.rtp-bar {
  display: flex;
  align-items: center;
  gap: 8px;
}
.rtp-bar-track {
  flex: 1;
  height: 5px;
  background: var(--c-border);
  border-radius: 3px;
  overflow: hidden;
}
.rtp-bar-fill {
  height: 100%;
  background: var(--c-green);
  border-radius: 3px;
}

.app-specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.app-spec-card {
  background: var(--c-card2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 18px;
}
.app-spec-card .asc-label {
  font-size: 0.78rem;
  color: var(--c-text-muted);
  margin-bottom: 4px;
  font-weight: 600;
  text-transform: uppercase;
}
.app-spec-card .asc-val {
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--c-text);
}

.app-alts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.app-alt-card {
  background: var(--c-card2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: border-color 0.2s;
}
.app-alt-card:hover {
  border-color: var(--c-btn-blue);
}
.app-alt-card .aac-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--c-card);
}
.app-alt-card .aac-name {
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 2px;
}
.app-alt-card .aac-sub {
  font-size: 0.78rem;
  color: var(--c-text-muted);
}

.yt-embed-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius);
}
.yt-embed-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  background: var(--c-card2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.faq-q {
  padding: 16px 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--c-text);
  transition: background 0.18s;
  user-select: none;
}
.faq-q:hover {
  background: rgba(255, 255, 255, 0.04);
}
.faq-q .faq-icon {
  flex-shrink: 0;
  transition: transform 0.25s;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(32, 135, 236, 0.15);
  border-radius: 50%;
  color: var(--c-btn-blue);
  font-style: normal;
  font-size: 0.9rem;
}
.faq-item.open .faq-q .faq-icon {
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    padding 0.3s;
}
.faq-item.open .faq-a {
  max-height: 600px;
  padding-bottom: 16px;
}
.faq-a-inner {
  padding: 0 20px;
  font-size: 0.9rem;
  color: var(--c-text-muted);
  line-height: 1.65;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--c-text-muted);
  padding: 12px 0;
}
.breadcrumbs a {
  color: var(--c-text-muted);
  transition: color 0.18s;
}
.breadcrumbs a:hover {
  color: var(--c-text);
}
.breadcrumbs span {
  color: var(--c-text);
}

.site-footer {
  background: var(--c-header);
  border-top: 1px solid var(--c-border);
  padding: 40px 0 0;
  margin-top: 40px;
}
.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr 1fr auto;
  gap: 32px;
  padding-bottom: 28px;
}
.footer-logo img {
  height: 40px;
  filter: brightness(0) saturate(100%) invert(76%) sepia(67%) saturate(652%)
    hue-rotate(1deg) brightness(105%) contrast(101%);
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-nav a {
  font-size: 0.85rem;
  color: var(--c-text-muted);
  transition: color 0.18s;
}
.footer-nav a:hover {
  color: var(--c-text);
}
.footer-nav h4 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--c-text-muted);
  margin-bottom: 8px;
}
.footer-payments {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fp-title {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--c-text-muted);
  margin-bottom: 6px;
}
.fp-logos {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.fp-logo {
  background: rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-sm);
  padding: 4px 10px;
  font-size: 0.72rem;
  color: var(--c-text-muted);
  font-weight: 600;
  filter: brightness(0) saturate(100%) invert(76%) sepia(67%) saturate(652%)
    hue-rotate(1deg) brightness(105%) contrast(101%);
}
.footer-bottom {
  border-top: 1px solid var(--c-border);
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-legal-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-legal-links a {
  font-size: 0.78rem;
  color: var(--c-text-muted);
  transition: color 0.18s;
}
.footer-legal-links a:hover {
  color: var(--c-text);
}
.footer-copyright {
  font-size: 0.78rem;
  color: var(--c-text-muted);
}
.footer-disclaimer {
  font-size: 0.72rem;
  color: var(--c-text-muted);
  opacity: 0.65;
  margin-top: 8px;
  line-height: 1.55;
  padding-bottom: 20px;
  border-top: 1px solid var(--c-border);
  padding-top: 12px;
}
.footer-age {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 2px solid var(--c-text-muted);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--c-text-muted);
  flex-shrink: 0;
}

.sticky-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 990;
  background: linear-gradient(
    180deg,
    rgba(23, 31, 44, 0) 0%,
    rgba(23, 31, 44, 0.97) 30%,
    #171f2c 100%
  );
  padding: 12px 16px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.sticky-widget-text {
  font-size: 0.85rem;
  color: var(--c-text-muted);
  flex-shrink: 0;
}
.sticky-widget .btn {
  min-width: 180px;
}

.hero-banner-static {
  background: linear-gradient(135deg, #0d2240 0%, #1a3a5e 60%, #0f1923 100%);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  margin: 20px 0;
}
.hbs-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}
.hbs-content {
  position: relative;
  z-index: 2;
  padding: 40px 48px;
  max-width: 580px;
}

.get-bonus-block {
  background: linear-gradient(
    135deg,
    rgba(249, 51, 92, 0.15),
    rgba(32, 135, 236, 0.15)
  );
  border: 1.5px solid var(--c-btn-red);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
}
.get-bonus-block .gbb-amount {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--c-btn-red);
  margin-bottom: 8px;
}
.get-bonus-block .gbb-desc {
  font-size: 0.9rem;
  color: var(--c-text-muted);
  margin-bottom: 16px;
}

.wp-post-image {
  border-radius: var(--radius-sm);
}
.entry-content,
.post-content {
  line-height: 1.7;
}
.elementor-widget-container p {
  margin-bottom: 1rem;
}
.has-small-font-size {
  font-size: 0.85em;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 6px var(--c-green);
  }
  50% {
    box-shadow:
      0 0 12px var(--c-green),
      0 0 20px var(--c-green);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.fade-in-up {
  animation: fadeInUp 0.5s ease forwards;
}

.technical-content {
  max-width: 840px;
}
.technical-content h2 {
  font-size: 1.25rem;
  margin: 1.8rem 0 0.7rem;
  color: var(--c-text);
}
.technical-content h3 {
  font-size: 1.05rem;
  margin: 1.4rem 0 0.55rem;
}
.technical-content p {
  font-size: 0.93rem;
  color: var(--c-text-muted);
  margin-bottom: 0.9rem;
  line-height: 1.7;
}
.technical-content ul,
.technical-content ol {
  padding-left: 1.4rem;
  margin-bottom: 1rem;
}
.technical-content li {
  font-size: 0.93rem;
  color: var(--c-text-muted);
  margin-bottom: 0.4rem;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    row-gap: 24px;
  }
  .tournaments-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hdr-inner {
    grid-template-columns: auto auto auto;
  }
  .hdr-nav {
    display: none;
  }
  .burger {
    display: flex;
  }
  .hero-content {
    padding: 28px 24px;
  }
  .hero-slider .slide {
    min-height: 280px;
  }
  .tournaments-grid {
    grid-template-columns: 1fr;
  }
  .jackpot-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bonus-cards-grid {
    grid-template-columns: 1fr;
  }
  .reg-methods-grid {
    grid-template-columns: 1fr;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  .app-specs-grid {
    grid-template-columns: 1fr;
  }
  .app-alts-grid {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .hbs-content {
    padding: 28px 24px;
  }
  .sticky-widget {
    gap: 6px;
  }
  .sticky-widget-text {
    display: none;
  }
  .author-block {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .author-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
  }
}

@media (max-width: 480px) {
  .jackpot-grid {
    grid-template-columns: 1fr;
  }
  .promo-code-box {
    flex-direction: column;
  }
  .hero-content h1,
  .hero-content h2 {
    font-size: 1.3rem;
  }
  .hero-badge {
    font-size: 0.72rem;
    padding: 4px 10px;
  }
}
