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

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --c-hdr: #450b17;
  --c-bg: #110d0e;
  --c-btn-light: #e0e0e0;
  --c-btn-reg: #c7051d;
  --c-text: #f0eaea;
  --c-text-muted: #b8a8ab;
  --c-accent: #ff2a44;
  --c-gold: #f5c842;
  --c-border: #2e1620;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.55);
  --trans: 0.25s ease;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: "Manrope", sans-serif;
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--c-btn-light);
  text-decoration: none;
  transition: color var(--trans);
}
a:hover {
  color: var(--c-accent);
}
h1,
h2,
h3,
h4,
h5 {
  line-height: 1.3;
  font-weight: 700;
}
h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}
h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
}
h3 {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
}

.x7k-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.x7k-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.x7k-section {
  padding: 64px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 8px;
  font-family: "Manrope", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all var(--trans);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.btn--light {
  background: var(--c-btn-light);
  color: #1a0a0e;
}
.btn--light:hover {
  background: #fff;
  color: #1a0a0e;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(224, 224, 224, 0.3);
}
.btn--reg {
  background: var(--c-btn-reg);
  color: #fff;
}
.btn--reg:hover {
  background: #e0061f;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(199, 5, 29, 0.45);
}
.btn--lg {
  padding: 16px 40px;
  font-size: 1.05rem;
  border-radius: 10px;
}
.btn--sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}
.btn--pulse {
  animation: pulse-btn 2s infinite;
}
@keyframes pulse-btn {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(199, 5, 29, 0.5);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(199, 5, 29, 0);
  }
}

.x7k-hdr {
  background: var(--c-hdr);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.6);
}
.x7k-hdr__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.x7k-hdr__logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
}
.x7k-hdr__nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.x7k-hdr__nav a {
  color: var(--c-btn-light);
  font-size: 0.9rem;
  font-weight: 600;
  transition: color var(--trans);
  position: relative;
}
.x7k-hdr__nav a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--c-accent);
  transition: width var(--trans);
}
.x7k-hdr__nav a:hover::after {
  width: 100%;
}
.x7k-hdr__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.x7k-hdr__online {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--c-text-muted);
  white-space: nowrap;
}
.x7k-hdr__online-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2ecc71;
  box-shadow: 0 0 6px #2ecc71;
  animation: blink-dot 1.8s infinite;
}
@keyframes blink-dot {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.35;
  }
}
.x7k-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.x7k-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-btn-light);
  border-radius: 2px;
  transition: all var(--trans);
}
.x7k-burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.x7k-burger.is-open span:nth-child(2) {
  opacity: 0;
}
.x7k-burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.x7k-mob-nav {
  display: none;
  flex-direction: column;
  gap: 12px;
  background: #3a0913;
  padding: 20px;
  border-top: 1px solid #5e1528;
}
.x7k-mob-nav a {
  color: var(--c-btn-light);
  font-weight: 600;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.x7k-mob-nav.is-open {
  display: flex;
}

.x7k-hero {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
}
.x7k-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url("/casinoban.png");
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.x7k-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(17, 13, 14, 0.92) 40%,
    rgba(69, 11, 23, 0.7) 100%
  );
}
.x7k-hero__content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  padding: 80px 20px;
}
.x7k-hero__badge {
  display: inline-block;
  background: rgba(199, 5, 29, 0.25);
  border: 1px solid var(--c-btn-reg);
  color: var(--c-accent);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}
.x7k-hero__title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 14px;
  line-height: 1.2;
}
.x7k-hero__title span {
  color: var(--c-gold);
}
.x7k-hero__sub {
  font-size: 1.05rem;
  color: var(--c-text-muted);
  margin-bottom: 30px;
  max-width: 520px;
}
.x7k-hero__btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.x7k-hero__bonus {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--c-text-muted);
}
.x7k-hero__bonus-val {
  color: var(--c-gold);
  font-weight: 700;
}

.x7k-sec-title {
  text-align: center;
  margin-bottom: 40px;
}
.x7k-sec-title h2 {
  margin-bottom: 8px;
}
.x7k-sec-title p {
  color: var(--c-text-muted);
  font-size: 0.95rem;
}
.x7k-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--c-btn-reg), var(--c-accent));
  border-radius: 2px;
  margin: 12px auto 0;
}

.x7k-screenshots {
  background: linear-gradient(180deg, var(--c-bg) 0%, #1a0e12 100%);
}
.x7k-shots-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
}
.x7k-shot {
  flex: 1;
  max-width: 360px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--trans);
  border: 1px solid var(--c-border);
}
.x7k-shot:hover {
  transform: translateY(-6px);
}
.x7k-shot img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.x7k-app {
  background: #1a0e12;
}
.x7k-app__inner {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.x7k-app__info {
  flex: 1;
  min-width: 280px;
}
.x7k-app__tbl-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 24px 0;
}
.x7k-app__tbl {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius);
  overflow: hidden;
  min-width: 340px;
}
.x7k-app__tbl th {
  background: #3a0913;
  color: var(--c-btn-light);
  padding: 12px 16px;
  text-align: left;
  font-size: 0.88rem;
  font-weight: 700;
  border-bottom: 2px solid var(--c-btn-reg);
}
.x7k-app__tbl td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--c-border);
  font-size: 0.92rem;
  vertical-align: top;
}
.x7k-app__tbl tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.03);
}
.x7k-app__tbl td:first-child {
  color: var(--c-text-muted);
  width: 45%;
}
.x7k-app__tbl td:last-child {
  color: var(--c-text);
  font-weight: 600;
}
.x7k-app__dl {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}
.x7k-dl-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #1e1215;
  border: 1px solid var(--c-border);
  border-radius: 10px;
  padding: 12px 20px;
  color: var(--c-text);
  transition: all var(--trans);
  cursor: pointer;
  text-decoration: none;
}
.x7k-dl-btn:hover {
  border-color: var(--c-btn-reg);
  background: #2e1620;
  color: var(--c-text);
  transform: translateX(4px);
}
.x7k-dl-btn__icon {
  font-size: 1.8rem;
  line-height: 1;
}
.x7k-dl-btn__info {
  display: flex;
  flex-direction: column;
}
.x7k-dl-btn__label {
  font-size: 0.72rem;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.x7k-dl-btn__store {
  font-size: 1rem;
  font-weight: 700;
}
.x7k-app__img {
  flex: 1;
  min-width: 240px;
  max-width: 380px;
}
.x7k-app__img img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  width: 100%;
}

.x7k-bonuses {
  background: var(--c-bg);
}
.x7k-bonus-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.x7k-bonus-card {
  flex: 1;
  min-width: 260px;
  max-width: 340px;
  background: #1e1215;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all var(--trans);
  position: relative;
  overflow: hidden;
}
.x7k-bonus-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-btn-reg), var(--c-accent));
}
.x7k-bonus-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(199, 5, 29, 0.2);
  border-color: var(--c-btn-reg);
}
.x7k-bonus-card__icon {
  font-size: 2.4rem;
  line-height: 1;
}
.x7k-bonus-card__tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-accent);
  background: rgba(199, 5, 29, 0.15);
  padding: 3px 10px;
  border-radius: 20px;
  align-self: flex-start;
}
.x7k-bonus-card__title {
  font-size: 1.15rem;
  font-weight: 700;
}
.x7k-bonus-card__val {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--c-gold);
  line-height: 1.2;
}
.x7k-bonus-card__desc {
  font-size: 0.88rem;
  color: var(--c-text-muted);
  line-height: 1.6;
}
.x7k-bonus-card__cta {
  margin-top: auto;
  padding-top: 8px;
}

.x7k-wheel-sec {
  background: linear-gradient(135deg, #1a0e12 0%, #0f0a0b 100%);
  text-align: center;
}
.x7k-wheel-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.x7k-wheel-canvas-wrap {
  position: relative;
  width: 320px;
  height: 320px;
  max-width: 100%;
}
#x7k-wheel-canvas {
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(199, 5, 29, 0.4);
  display: block;
  max-width: 100%;
  height: auto;
}
.x7k-wheel-ptr {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 28px solid var(--c-gold);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
}
.x7k-wheel-btn {
  min-width: 200px;
}
.x7k-wheel-result {
  background: #1e1215;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 28px 36px;
  max-width: 440px;
  display: none;
  text-align: center;
}
.x7k-wheel-result.is-show {
  display: block;
  animation: fade-in 0.4s ease;
}
.x7k-wheel-result__icon {
  font-size: 3rem;
  margin-bottom: 12px;
}
.x7k-wheel-result__title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.x7k-wheel-result__bonus {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--c-gold);
  margin-bottom: 16px;
}
.x7k-wheel-result__desc {
  font-size: 0.9rem;
  color: var(--c-text-muted);
  margin-bottom: 20px;
}
@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.x7k-review {
  background: #1a0e12;
}
.x7k-review__body {
  background: #1e1215;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  line-height: 1.85;
}
.x7k-review__body h2,
.x7k-review__body h3,
.x7k-review__body h4 {
  margin: 28px 0 12px;
  color: var(--c-text);
}
.x7k-review__body h2 {
  font-size: 1.5rem;
}
.x7k-review__body h3 {
  font-size: 1.25rem;
}
.x7k-review__body p {
  margin-bottom: 16px;
  color: var(--c-text);
}
.x7k-review__body ul,
.x7k-review__body ol {
  margin: 12px 0 16px 24px;
}
.x7k-review__body li {
  margin-bottom: 8px;
  color: var(--c-text);
}
.x7k-review__body a {
  color: var(--c-accent);
  text-decoration: underline;
}
.x7k-review__body table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  overflow-x: auto;
  display: block;
}
.x7k-review__body table th {
  background: #3a0913;
  padding: 10px 14px;
  text-align: left;
  border: 1px solid var(--c-border);
  font-weight: 700;
}
.x7k-review__body table td {
  padding: 10px 14px;
  border: 1px solid var(--c-border);
  text-align: left;
}
.x7k-review__body table tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.03);
}
.x7k-review__body strong {
  font-weight: 700;
  color: #fff;
}
.x7k-review__body em {
  font-style: italic;
  color: var(--c-text-muted);
}
.x7k-review__body blockquote {
  border-left: 3px solid var(--c-btn-reg);
  padding-left: 20px;
  color: var(--c-text-muted);
  margin: 16px 0;
  font-style: italic;
}

.x7k-author {
  background: var(--c-bg);
}
.x7k-author__card {
  background: #1e1215;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  display: flex;
  gap: 28px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.x7k-author__photo {
  flex-shrink: 0;
}
.x7k-author__photo img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--c-btn-reg);
}
.x7k-author__info {
  flex: 1;
  min-width: 220px;
}
.x7k-author__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.x7k-author__name {
  font-size: 1.2rem;
  font-weight: 700;
}
.x7k-author__role {
  font-size: 0.8rem;
  color: var(--c-accent);
  background: rgba(199, 5, 29, 0.15);
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 600;
}
.x7k-author__bio {
  font-size: 0.92rem;
  color: var(--c-text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.x7k-author__socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.x7k-social-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  padding: 6px 14px;
  border-radius: 6px;
  border: 1px solid var(--c-border);
  color: var(--c-text-muted);
  transition: all var(--trans);
}
.x7k-social-link:hover {
  border-color: var(--c-btn-reg);
  color: var(--c-accent);
}
.x7k-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.78rem;
  color: #2ecc71;
  margin-top: 10px;
}

.x7k-ftr {
  background: var(--c-hdr);
  padding: 48px 0 24px;
}
.x7k-ftr__top {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  justify-content: space-between;
}
.x7k-ftr__logo img {
  height: 44px;
  width: auto;
  margin-bottom: 16px;
}
.x7k-ftr__desc {
  font-size: 0.85rem;
  color: var(--c-text-muted);
  max-width: 300px;
  line-height: 1.6;
}
.x7k-ftr__col h4 {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 14px;
  color: var(--c-btn-light);
}
.x7k-ftr__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.x7k-ftr__links a {
  font-size: 0.85rem;
  color: var(--c-text-muted);
  transition: color var(--trans);
}
.x7k-ftr__links a:hover {
  color: var(--c-btn-light);
}
.x7k-ftr__payments {
  margin: 28px 0;
}
.x7k-ftr__payments h4 {
  font-size: 0.85rem;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 14px;
}
.x7k-ftr__pay-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.x7k-pay-badge {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 0.75rem;
  color: var(--c-btn-light);
  font-weight: 600;
  white-space: nowrap;
}
.x7k-ftr__providers {
  margin: 20px 0;
}
.x7k-ftr__providers h4 {
  font-size: 0.85rem;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 14px;
}
.x7k-ftr__prov-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.x7k-prov-badge {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 4px;
  padding: 4px 10px;
  font-size: 0.72rem;
  color: #9a8a8d;
}
.x7k-ftr__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  text-align: center;
}
.x7k-ftr__copy {
  font-size: 0.78rem;
  color: var(--c-text-muted);
}
.x7k-ftr__legal {
  font-size: 0.72rem;
  color: #6a5a5d;
  line-height: 1.6;
  max-width: 820px;
}
.x7k-ftr__lic {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--c-text-muted);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 8px;
}

.x7k-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background: linear-gradient(90deg, #3a0913 0%, #c7051d 100%);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.6);
  flex-wrap: wrap;
}
.x7k-widget__text {
  font-size: 0.88rem;
  color: #fff;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
.x7k-widget__bonus {
  font-weight: 800;
  font-size: 1rem;
  color: var(--c-gold);
}
.x7k-widget__close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  font-size: 1.2rem;
  margin-left: 12px;
  padding: 0;
  transition: color var(--trans);
  line-height: 1;
  flex-shrink: 0;
}
.x7k-widget__close:hover {
  color: #fff;
}

.x7k-slider {
  position: relative;
  overflow: hidden;
}
.x7k-slider__track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.x7k-slider__slide {
  flex-shrink: 0;
  width: 100%;
}
.x7k-slider__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
.x7k-slider__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-border);
  cursor: pointer;
  transition: all var(--trans);
}
.x7k-slider__dot.is-active {
  background: var(--c-btn-reg);
  transform: scale(1.3);
}
.x7k-slider__arr {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(69, 11, 23, 0.8);
  border: 1px solid var(--c-border);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--trans);
  z-index: 2;
  font-size: 1rem;
}
.x7k-slider__arr:hover {
  background: var(--c-btn-reg);
}
.x7k-slider__arr--prev {
  left: 10px;
}
.x7k-slider__arr--next {
  right: 10px;
}

.zx9f2-hidden {
  display: none !important;
}
.qr7m3-vis-util {
  visibility: hidden;
  position: absolute;
  width: 0;
  height: 0;
}
.wp-block-placeholder {
  display: none;
}
.elementor-widget-placeholder {
  display: none;
}
.x7k-shimmer {
  background: linear-gradient(90deg, #1e1215 0%, #2a1520 50%, #1e1215 100%);
  background-size: 200% 100%;
  animation: shimmer 1.8s infinite;
}
@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

@media (max-width: 900px) {
  .x7k-hdr__nav {
    display: none;
  }
  .x7k-burger {
    display: flex;
  }
  .x7k-shots-grid {
    display: block;
  }
  .x7k-shot {
    max-width: 100%;
    margin-bottom: 16px;
  }
  .x7k-app__inner {
    flex-direction: column;
  }
  .x7k-app__img {
    max-width: 100%;
    width: 100%;
  }
  .x7k-bonus-grid {
    flex-direction: column;
    align-items: center;
  }
  .x7k-bonus-card {
    max-width: 100%;
  }
  .x7k-review__body {
    padding: 20px;
  }
  .x7k-author__card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px;
  }
  .x7k-author__meta {
    justify-content: center;
  }
  .x7k-author__socials {
    justify-content: center;
  }
  .x7k-ftr__top {
    flex-direction: column;
    gap: 24px;
  }
  .x7k-section {
    padding: 40px 0;
  }
  .x7k-hero__content {
    padding: 60px 20px 40px;
  }
}

@media (max-width: 600px) {
  .x7k-hdr__inner {
    padding: 10px 16px;
  }
  .x7k-hdr__logo img {
    height: 36px;
  }
  .btn--lg {
    padding: 13px 24px;
    font-size: 0.95rem;
  }
  .x7k-wheel-canvas-wrap {
    width: 280px;
    height: 280px;
  }
  .x7k-widget {
    gap: 8px;
  }
  .x7k-widget__text {
    font-size: 0.82rem;
  }
}

.x7k-desktop-only {
  display: flex;
}
.x7k-mobile-only {
  display: none;
}
@media (max-width: 900px) {
  .x7k-desktop-only {
    display: none !important;
  }
  .x7k-mobile-only {
    display: block !important;
  }
  .x7k-slider__slide .x7k-bonus-card {
    max-width: 100%;
    width: 100%;
    min-width: unset;
  }
}
