:root {
  --clr-header: #450b17;
  --clr-header-dark: #350810;
  --clr-btn-light: #e0e0e0;
  --clr-btn-red: #c7051d;
  --clr-btn-red-hover: #a00418;
  --clr-bg: #110d0e;
  --clr-bg2: #1a1214;
  --clr-bg3: #221519;
  --clr-card: #1e1316;
  --clr-border: #3a1a22;
  --clr-text: #f0e8e9;
  --clr-text-muted: #b89aa0;
  --clr-gold: #d4a843;
  --clr-gold-light: #f0c96a;
  --clr-green: #1db954;
  --clr-red: #c7051d;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
  --transition: 0.25s ease;
  --font: "Manrope", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  max-width: 100%;
}
html {
  scroll-behavior: smooth;
  background: var(--clr-bg);
  overflow-x: hidden;
}
body {
  font-family: var(--font);
  background: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}
img {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  cursor: pointer;
  font-family: var(--font);
}

.wp-block-spacer {
  display: none;
}
.elementor-hidden {
  visibility: hidden;
  position: absolute;
  pointer-events: none;
}
.wp-content-placeholder {
  display: none;
}

.xf7k-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}
.xf7k-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.xf7k-section {
  padding: 64px 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

main {
  flex: 1;
  width: 100%;
  max-width: 100%;
}

.xf7k-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition);
  white-space: nowrap;
  line-height: 1;
}
.xf7k-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}
.xf7k-btn:active {
  transform: translateY(0);
}
.xf7k-btn--light {
  background: var(--clr-btn-light);
  color: #1a0a0e;
}
.xf7k-btn--light:hover {
  background: #fff;
}
.xf7k-btn--red {
  background: var(--clr-btn-red);
  color: #fff;
}
.xf7k-btn--red:hover {
  background: var(--clr-btn-red-hover);
}
.xf7k-btn--gold {
  background: linear-gradient(135deg, #d4a843, #f0c96a);
  color: #1a0a0e;
}
.xf7k-btn--gold:hover {
  background: linear-gradient(135deg, #c49535, #e0b95a);
}
.xf7k-btn--lg {
  padding: 15px 36px;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
}
.xf7k-btn--xl {
  padding: 18px 44px;
  font-size: 1.15rem;
  border-radius: var(--radius-md);
}

.xf7k-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--clr-text);
  margin-bottom: 8px;
}
.xf7k-subtitle {
  color: var(--clr-text-muted);
  font-size: 0.95rem;
  margin-bottom: 32px;
}
.xf7k-title-wrap {
  margin-bottom: 40px;
}
.xf7k-gold {
  color: var(--clr-gold);
}

.xf7k-header {
  background: var(--clr-header);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}
.xf7k-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 16px;
  padding: 12px 20px;
  max-width: 1280px;
  margin: 0 auto;
}
.xf7k-logo {
  display: flex;
  align-items: center;
}
.xf7k-logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
}
.xf7k-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  justify-content: center;
  flex-wrap: wrap;
}
.xf7k-nav a {
  color: var(--clr-btn-light);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  transition:
    background var(--transition),
    color var(--transition);
}
.xf7k-nav a:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}
.xf7k-header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.xf7k-header__meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: rgba(224, 224, 224, 0.7);
}
.xf7k-online-dot {
  width: 8px;
  height: 8px;
  background: var(--clr-green);
  border-radius: 50%;
  animation: xf7k-pulse 2s infinite;
}
@keyframes xf7k-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(29, 185, 84, 0.5);
  }
  50% {
    box-shadow: 0 0 0 5px rgba(29, 185, 84, 0);
  }
}

.xf7k-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
}
.xf7k-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-btn-light);
  border-radius: 2px;
  transition:
    transform 0.3s,
    opacity 0.3s;
}
.xf7k-burger.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.xf7k-burger.is-active span:nth-child(2) {
  opacity: 0;
}
.xf7k-burger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.xf7k-mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--clr-header-dark);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 80px 24px 24px;
}
.xf7k-mobile-menu.is-active {
  display: flex;
}
.xf7k-mobile-menu a {
  color: var(--clr-btn-light);
  font-size: 1.1rem;
  font-weight: 700;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  text-align: center;
}
.xf7k-mobile-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: var(--clr-btn-light);
  font-size: 1.8rem;
  cursor: pointer;
}

.xf7k-hero {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  overflow: hidden;
  width: 100%;
}
.xf7k-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.xf7k-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(17, 13, 14, 0.92) 40%,
    rgba(17, 13, 14, 0.5) 100%
  );
}
.xf7k-hero__content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 60px 0;
}
.xf7k-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(199, 5, 29, 0.2);
  border: 1px solid rgba(199, 5, 29, 0.4);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--clr-gold);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.xf7k-hero__title {
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}
.xf7k-hero__desc {
  font-size: 1.05rem;
  color: rgba(240, 232, 233, 0.85);
  margin-bottom: 32px;
  line-height: 1.6;
}
.xf7k-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.xf7k-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: var(--clr-text-muted);
  font-size: 0.85rem;
}
.xf7k-hero__badge svg {
  color: var(--clr-gold);
}

.xf7k-jackpots {
  background: var(--clr-bg2);
}
.xf7k-jackpots__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  gap: 20px;
  width: 100%;
}
.xf7k-jackpot-card {
  background: linear-gradient(145deg, var(--clr-card), #2a1520);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}
.xf7k-jackpot-card::before {
  content: "";
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 180px;
  background: radial-gradient(
    circle,
    rgba(212, 168, 67, 0.15) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.xf7k-jackpot-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}
.xf7k-jackpot-card__label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--clr-text-muted);
  margin-bottom: 8px;
}
.xf7k-jackpot-card__amount {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--clr-gold);
  line-height: 1;
  margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
}
.xf7k-jackpot-card__currency {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  font-weight: 600;
}
.xf7k-jackpot-card__icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.xf7k-mirrors {
  background: var(--clr-bg3);
}
.xf7k-mirrors__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.xf7k-mirrors__time {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(29, 185, 84, 0.1);
  border: 1px solid rgba(29, 185, 84, 0.25);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--clr-green);
}
.xf7k-mirrors__updated {
  font-size: 0.82rem;
  color: var(--clr-text-muted);
}
.xf7k-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  -webkit-overflow-scrolling: touch;
}
.xf7k-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--clr-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  min-width: 100%;
}
.xf7k-table th {
  background: var(--clr-header);
  color: var(--clr-btn-light);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 14px 18px;
  text-align: left;
  border-bottom: 2px solid var(--clr-border);
}
.xf7k-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--clr-border);
  font-size: 0.92rem;
  vertical-align: middle;
}
.xf7k-table tr:last-child td {
  border-bottom: none;
}
.xf7k-table tr:hover td {
  background: rgba(255, 255, 255, 0.03);
}
.xf7k-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
}
.xf7k-status-badge--ok {
  background: rgba(29, 185, 84, 0.15);
  color: var(--clr-green);
  border: 1px solid rgba(29, 185, 84, 0.3);
}
.xf7k-status-badge--dot {
  width: 7px;
  height: 7px;
  background: currentColor;
  border-radius: 50%;
  animation: xf7k-pulse 2s infinite;
}

.xf7k-slots {
  background: var(--clr-bg);
}
.xf7k-slots__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 20px;
  width: 100%;
}
.xf7k-slot-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  cursor: pointer;
  width: 100%;
  max-width: 100%;
}
.xf7k-slot-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
}
.xf7k-slot-card__img {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
}
.xf7k-slot-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.xf7k-slot-card:hover .xf7k-slot-card__img img {
  transform: scale(1.06);
}
.xf7k-slot-card__body {
  padding: 16px;
}
.xf7k-slot-card__name {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 10px;
  color: var(--clr-text);
}
.xf7k-slot-card__provider {
  font-size: 0.78rem;
  color: var(--clr-text-muted);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.xf7k-slot-card__btn {
  width: 100%;
}

.xf7k-minigame {
  background: var(--clr-bg2);
}
.xf7k-slot-machine {
  max-width: 480px;
  margin: 0 auto;
  background: var(--clr-card);
  border: 2px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow);
}
.xf7k-slot-machine__reels {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 24px;
}
.xf7k-reel {
  width: 80px;
  height: 80px;
  background: var(--clr-bg3);
  border: 2px solid var(--clr-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  line-height: 1;
  overflow: hidden;
  position: relative;
  user-select: none;
}
.xf7k-reel.is-spinning {
  animation: xf7k-spin 0.15s linear infinite;
}
@keyframes xf7k-spin {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-8px);
  }
  75% {
    transform: translateY(8px);
  }
  100% {
    transform: translateY(0);
  }
}
.xf7k-slot-machine__result {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  padding: 12px;
}
.xf7k-slot-result-win {
  background: rgba(29, 185, 84, 0.1);
  border: 1px solid rgba(29, 185, 84, 0.3);
  border-radius: var(--radius-sm);
  padding: 12px 20px;
  width: 100%;
}
.xf7k-slot-result-win p {
  color: var(--clr-green);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 10px;
}
.xf7k-slot-result-lose {
  color: var(--clr-text-muted);
  font-size: 0.92rem;
}

.xf7k-review {
  background: var(--clr-bg3);
}
.xf7k-review__content {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.xf7k-review__author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--clr-border);
}
.xf7k-review__author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--clr-header);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--clr-gold);
  flex-shrink: 0;
  overflow: hidden;
}
.xf7k-review__author-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--clr-text);
  margin-bottom: 2px;
}
.xf7k-review__author-role {
  font-size: 0.82rem;
  color: var(--clr-text-muted);
}
.xf7k-review__author-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--clr-gold);
  font-size: 0.8rem;
  margin-top: 4px;
  transition: color var(--transition);
}
.xf7k-review__author-link:hover {
  color: var(--clr-gold-light);
}
.xf7k-review__body {
}
.xf7k-review__body h2,
.xf7k-review__body h3,
.xf7k-review__body h4 {
  color: var(--clr-text);
  margin: 24px 0 12px;
  font-weight: 700;
}
.xf7k-review__body h2 {
  font-size: 1.3rem;
}
.xf7k-review__body h3 {
  font-size: 1.1rem;
}
.xf7k-review__body p {
  color: rgba(240, 232, 233, 0.85);
  line-height: 1.7;
  margin-bottom: 16px;
  font-size: 0.95rem;
}
.xf7k-review__body ul,
.xf7k-review__body ol {
  padding-left: 20px;
  margin-bottom: 16px;
}
.xf7k-review__body li {
  color: rgba(240, 232, 233, 0.85);
  line-height: 1.7;
  margin-bottom: 6px;
  font-size: 0.95rem;
}
.xf7k-review__body table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  font-size: 0.9rem;
}
.xf7k-review__body table th {
  background: var(--clr-header);
  color: var(--clr-btn-light);
  padding: 10px 14px;
  text-align: left;
  font-weight: 700;
}
.xf7k-review__body table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--clr-border);
  color: rgba(240, 232, 233, 0.85);
}
.xf7k-review__body table tr:last-child td {
  border-bottom: none;
}
.xf7k-review__body a {
  color: var(--clr-gold);
  text-decoration: underline;
}
.xf7k-review__body a:hover {
  color: var(--clr-gold-light);
}
.xf7k-review__body strong {
  color: var(--clr-text);
  font-weight: 700;
}
.xf7k-review__body blockquote {
  border-left: 3px solid var(--clr-gold);
  padding: 12px 20px;
  margin: 20px 0;
  background: rgba(212, 168, 67, 0.06);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.xf7k-review__body hr {
  border: none;
  border-top: 1px solid var(--clr-border);
  margin: 24px 0;
}

.xf7k-testimonials {
  background: var(--clr-bg);
}
.xf7k-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}
.xf7k-tcard {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 24px;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}
.xf7k-tcard:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}
.xf7k-tcard__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.xf7k-tcard__avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.xf7k-tcard__name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--clr-text);
  margin-bottom: 2px;
}
.xf7k-tcard__date {
  font-size: 0.75rem;
  color: var(--clr-text-muted);
}
.xf7k-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 10px;
}
.xf7k-stars svg {
  width: 16px;
  height: 16px;
  fill: var(--clr-gold);
}
.xf7k-tcard__text {
  font-size: 0.88rem;
  color: rgba(240, 232, 233, 0.8);
  line-height: 1.65;
}

.xf7k-review-form {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  max-width: 640px;
  margin: 0 auto;
}
.xf7k-review-form__title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--clr-text);
}
.xf7k-form-group {
  margin-bottom: 18px;
}
.xf7k-form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--clr-text-muted);
  margin-bottom: 7px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.xf7k-form-group input,
.xf7k-form-group textarea {
  width: 100%;
  background: var(--clr-bg3);
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--clr-text);
  font-family: var(--font);
  font-size: 0.92rem;
  transition: border-color var(--transition);
}
.xf7k-form-group input:focus,
.xf7k-form-group textarea:focus {
  outline: none;
  border-color: var(--clr-gold);
}
.xf7k-form-group textarea {
  min-height: 120px;
  resize: vertical;
}
.xf7k-form-success {
  display: none;
  background: rgba(29, 185, 84, 0.1);
  border: 1px solid rgba(29, 185, 84, 0.3);
  border-radius: var(--radius-sm);
  padding: 16px;
  color: var(--clr-green);
  font-weight: 700;
  text-align: center;
  margin-top: 12px;
}
.xf7k-form-success.is-visible {
  display: block;
}

.xf7k-footer {
  background: var(--clr-header);
}
.xf7k-footer__top {
  padding: 48px 0 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.xf7k-footer__grid {
  display: grid;
  grid-template-columns: 200px 1fr 1fr;
  gap: 40px;
}
.xf7k-footer__logo img {
  height: 40px;
  width: auto;
  margin-bottom: 12px;
}
.xf7k-footer__tagline {
  font-size: 0.82rem;
  color: rgba(224, 224, 224, 0.6);
  line-height: 1.5;
}
.xf7k-footer__col-title {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(224, 224, 224, 0.5);
  margin-bottom: 14px;
}
.xf7k-footer__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.xf7k-footer__links a {
  font-size: 0.88rem;
  color: rgba(224, 224, 224, 0.75);
  transition: color var(--transition);
}
.xf7k-footer__links a:hover {
  color: var(--clr-btn-light);
}
.xf7k-footer__payments {
  padding: 24px 0;
}
.xf7k-footer__payments-title {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(224, 224, 224, 0.5);
  margin-bottom: 14px;
}
.xf7k-payment-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.xf7k-payment-logo {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(224, 224, 224, 0.8);
}
.xf7k-provider-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding: 0 0 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.xf7k-provider-logo {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  padding: 5px 10px;
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(224, 224, 224, 0.6);
}
.xf7k-footer__bottom {
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  text-align: center;
}
.xf7k-footer__legal {
  font-size: 0.76rem;
  color: rgba(224, 224, 224, 0.45);
  line-height: 1.6;
  max-width: 860px;
}
.xf7k-footer__copyright {
  font-size: 0.8rem;
  color: rgba(224, 224, 224, 0.5);
}
.xf7k-license {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.76rem;
  color: rgba(224, 224, 224, 0.4);
  margin-top: 4px;
}

.xf7k-widget {
  position: fixed;
  bottom: 20px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  z-index: 900;
  pointer-events: none;
  padding: 0 16px;
}
.xf7k-widget__inner {
  background: linear-gradient(90deg, #1a0508, #2d0b14);
  border: 1px solid rgba(199, 5, 29, 0.45);
  border-radius: var(--radius-lg);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.55);
  pointer-events: all;
  max-width: 680px;
  width: 100%;
  backdrop-filter: blur(6px);
}
.xf7k-widget__text {
  flex: 1;
  min-width: 0;
}
.xf7k-widget__label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--clr-gold);
  margin-bottom: 2px;
}
.xf7k-widget__bonus {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--clr-text);
  line-height: 1.2;
}
.xf7k-widget__close {
  background: none;
  border: none;
  color: rgba(224, 224, 224, 0.5);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
  transition: color var(--transition);
  padding: 4px;
}
.xf7k-widget__close:hover {
  color: var(--clr-btn-light);
}

.xf7k-fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.xf7k-fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .xf7k-slots__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .xf7k-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
  .xf7k-footer__grid > :first-child {
    grid-column: 1/-1;
  }
}
@media (max-width: 768px) {
  .xf7k-header__inner {
    grid-template-columns: auto 1fr auto;
    gap: 8px;
  }
  .xf7k-nav {
    display: none;
  }
  .xf7k-header__meta {
    display: none;
  }
  .xf7k-burger {
    display: flex;
  }
  .xf7k-section {
    padding: 44px 0;
  }
  .xf7k-hero {
    min-height: 420px;
  }
  .xf7k-hero__content {
    padding: 40px 0;
  }
  .xf7k-slots__grid {
    grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
  }
  .xf7k-footer__grid {
    grid-template-columns: 1fr;
  }
  .xf7k-reel {
    width: 68px;
    height: 68px;
    font-size: 2rem;
  }
  .xf7k-mirrors__grid {
    grid-template-columns: 1fr;
  }
  .xf7k-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 -16px;
    padding: 0 16px;
  }
  .xf7k-table {
    min-width: 600px;
  }
  .xf7k-container {
    padding: 0 16px;
  }
  .xf7k-jackpots__grid {
    grid-template-columns: repeat(auto-fit, minmax(min(180px, 100%), 1fr));
  }
  .xf7k-hero__bg {
    background-position: 70% center;
  }
  .xf7k-section {
    overflow-x: hidden;
  }
}
@media (max-width: 540px) {
  .xf7k-slots__grid {
    grid-template-columns: 1fr;
  }
  .xf7k-testimonials__grid {
    grid-template-columns: 1fr;
  }
  .xf7k-jackpots__grid {
    grid-template-columns: 1fr;
  }
  .xf7k-hero__actions {
    flex-direction: column;
  }
  .xf7k-hero__actions .xf7k-btn {
    width: 100%;
    justify-content: center;
  }
  .xf7k-widget__inner {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  .xf7k-widget__inner .xf7k-btn {
    width: 100%;
  }
  .xf7k-mirrors__meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .xf7k-footer__grid {
    gap: 32px;
  }
  .xf7k-container {
    padding: 0 12px;
  }
  .xf7k-section {
    padding: 36px 0;
  }
  .xf7k-btn {
    padding: 12px 20px;
    font-size: 0.88rem;
  }
  .xf7k-btn--lg {
    padding: 14px 28px;
    font-size: 0.95rem;
  }
  .xf7k-btn--xl {
    padding: 16px 32px;
    font-size: 1rem;
  }
  .xf7k-table-wrap {
    margin: 0 -12px;
    padding: 0 12px;
  }
  .xf7k-hero {
    min-height: 380px;
  }
  .xf7k-header__inner {
    padding: 10px 12px;
  }
  .xf7k-hero__title {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
  }
}

@media (max-width: 400px) {
  .xf7k-jackpots__grid {
    grid-template-columns: 1fr;
  }
  .xf7k-container {
    padding: 0 10px;
  }
  .xf7k-header__inner {
    padding: 8px 10px;
  }
  .xf7k-logo img {
    height: 36px;
  }
  .xf7k-btn {
    padding: 10px 16px;
    font-size: 0.85rem;
  }
}

.xf7k-faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 860px;
  margin: 0 auto;
}
.xf7k-faq-item {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.xf7k-faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 18px 22px;
  font-family: var(--font);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--clr-text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background var(--transition);
}
.xf7k-faq-q::after {
  content: "+";
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--clr-gold);
  flex-shrink: 0;
  line-height: 1;
  transition: transform var(--transition);
}
.xf7k-faq-q[aria-expanded="true"] {
  background: rgba(255, 255, 255, 0.04);
}
.xf7k-faq-q[aria-expanded="true"]::after {
  transform: rotate(45deg);
}
.xf7k-faq-a {
  display: none;
  padding: 0 22px 18px;
  color: rgba(240, 232, 233, 0.8);
  font-size: 0.92rem;
  line-height: 1.7;
}
.xf7k-faq-a.is-open {
  display: block;
}

.b3k7-unused-var {
  display: none;
  color: transparent;
}
.wp-caption,
.wp-caption-text {
  display: inline-block;
  font-size: 0.8em;
}
.alignleft {
  float: left;
  margin-right: 1em;
}
.alignright {
  float: right;
  margin-left: 1em;
}
.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.page-template-default .entry-content {
  display: block;
}
.elementor-widget-container {
  display: block;
}
.x9fk2-noop-a3 {
  visibility: hidden;
  height: 0;
  overflow: hidden;
}
