@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-bg: #110d0e;
  --c-header: #450b17;
  --c-btn-light: #e0e0e0;
  --c-btn-red: #c7051d;
  --c-text: #f0ecea;
  --c-text-muted: #b8a8ac;
  --c-border: #2e1a20;
  --c-card: #1c1214;
  --c-card2: #1f1416;
  --c-gold: #e8c84a;
  --c-gold2: #f5d76e;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.6);
  --trans: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
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: var(--trans);
}
a:hover {
  color: var(--c-gold);
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  font-family: inherit;
}
input,
textarea {
  font-family: inherit;
}

.x7k-wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.3px;
  border: none;
  transition: var(--trans);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}
.btn-light {
  background: var(--c-btn-light);
  color: #1a0a0f;
}
.btn-light:hover {
  background: #fff;
  color: #1a0a0f;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(224, 224, 224, 0.25);
}
.btn-red {
  background: var(--c-btn-red);
  color: #fff;
}
.btn-red:hover {
  background: #e50822;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(199, 5, 29, 0.4);
}
.btn-gold {
  background: linear-gradient(135deg, #e8c84a, #f5d76e);
  color: #1a0a0f;
  font-weight: 800;
}
.btn-gold:hover {
  background: linear-gradient(135deg, #f5d76e, #e8c84a);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 200, 74, 0.35);
}
.btn-lg {
  padding: 14px 32px;
  font-size: 16px;
  border-radius: var(--radius);
}
.btn-xl {
  padding: 18px 40px;
  font-size: 18px;
  border-radius: var(--radius);
}

.hd3f2 {
  display: none;
}
.wp-block-spacer {
  height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}
.elementor-invisible {
  visibility: visible;
}
.n3x7a {
  font-size: 0;
  line-height: 0;
  height: 0;
  overflow: hidden;
  visibility: hidden;
  position: absolute;
  pointer-events: none;
}
.wp-block-group {
  margin-bottom: 0;
}
.entry-content {
  margin-bottom: 0;
}
.site-main {
  flex: 1;
}
.wf-loading body {
  opacity: 0;
}

.x7k-header {
  background: var(--c-header);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}
.x7k-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.x7k-logo img {
  height: 44px;
  width: auto;
}
.x7k-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.x7k-nav a {
  color: var(--c-text);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: var(--trans);
}
.x7k-nav a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.x7k-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.x7k-online {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
  margin-right: 6px;
}
.x7k-online-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.3);
  }
}
.x7k-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}
.x7k-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: var(--trans);
}
.x7k-burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.x7k-burger.open span:nth-child(2) {
  opacity: 0;
}
.x7k-burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.x7k-mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--c-header);
  z-index: 999;
  padding: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.x7k-mobile-nav.open {
  display: block;
}
.x7k-mobile-nav a {
  display: block;
  color: var(--c-text);
  font-weight: 600;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  transition: var(--trans);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.x7k-mobile-nav a:last-child {
  border-bottom: none;
}
.x7k-mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.x7k-hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.x7k-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("/banner.jpg");
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.x7k-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(17, 13, 14, 0.92) 45%,
    rgba(17, 13, 14, 0.4) 100%
  );
}
.x7k-hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  padding: 80px 0;
}
.x7k-hero-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
.x7k-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(199, 5, 29, 0.2);
  border: 1px solid rgba(199, 5, 29, 0.4);
  color: #ff6b7a;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 40px;
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.x7k-hero h1 {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  color: #fff;
}
.x7k-hero h1 span {
  color: var(--c-gold);
}
.x7k-hero-desc {
  font-size: 17px;
  color: rgba(240, 236, 234, 0.8);
  margin-bottom: 32px;
  max-width: 480px;
  line-height: 1.8;
}
.x7k-hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.x7k-hero-bonus {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding: 14px 20px;
  background: rgba(232, 200, 74, 0.08);
  border: 1px solid rgba(232, 200, 74, 0.2);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--c-gold);
}
.x7k-hero-bonus strong {
  font-size: 18px;
  display: block;
}

.x7k-section {
  padding: 64px 0;
}
.x7k-section-alt {
  background: linear-gradient(
    180deg,
    var(--c-bg) 0%,
    rgba(69, 11, 23, 0.1) 50%,
    var(--c-bg) 100%
  );
}
.x7k-section-title {
  font-size: clamp(22px, 3.5vw, 36px);
  font-weight: 800;
  text-align: center;
  margin-bottom: 8px;
  color: #fff;
}
.x7k-section-sub {
  text-align: center;
  color: var(--c-text-muted);
  margin-bottom: 12px;
  font-size: 15px;
}
.x7k-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--c-btn-red), var(--c-gold));
  border-radius: 4px;
  margin: 12px auto 40px;
}

.x7k-jackpots-grid {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.x7k-jackpot-card {
  flex: 1;
  min-width: 200px;
  max-width: 280px;
  background: linear-gradient(135deg, #1f1214 0%, #2a1219 100%);
  border: 1px solid rgba(199, 5, 29, 0.25);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: var(--trans);
}
.x7k-jackpot-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(199, 5, 29, 0.06) 0%,
    transparent 60%
  );
  pointer-events: none;
}
.x7k-jackpot-card:hover {
  transform: translateY(-4px);
  border-color: rgba(199, 5, 29, 0.5);
  box-shadow: 0 12px 40px rgba(199, 5, 29, 0.15);
}
.x7k-jackpot-icon {
  font-size: 32px;
  margin-bottom: 12px;
}
.x7k-jackpot-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--c-text-muted);
  margin-bottom: 8px;
}
.x7k-jackpot-amount {
  font-size: clamp(22px, 3.5vw, 36px);
  font-weight: 800;
  color: var(--c-gold);
  line-height: 1.1;
  margin-bottom: 6px;
  font-variant-numeric: tabular-nums;
}
.x7k-jackpot-name {
  font-size: 13px;
  color: var(--c-text-muted);
  margin-bottom: 16px;
}

.x7k-app-table-wrap {
  overflow-x: auto;
  margin: 0 auto 32px;
  max-width: 720px;
  border-radius: var(--radius);
  border: 1px solid var(--c-border);
}
.x7k-app-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 400px;
}
.x7k-app-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--c-border);
  text-align: left;
  vertical-align: middle;
}
.x7k-app-table tr:last-child td {
  border-bottom: none;
}
.x7k-app-table td:first-child {
  background: rgba(69, 11, 23, 0.2);
  font-weight: 700;
  color: var(--c-text);
  font-size: 14px;
  white-space: nowrap;
  width: 210px;
}
.x7k-app-table td:last-child {
  color: var(--c-text-muted);
  font-size: 14px;
}
.x7k-app-table tr:hover td {
  background: rgba(255, 255, 255, 0.025);
}
.x7k-app-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}
.x7k-app-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: var(--radius);
  background: var(--c-card2);
  border: 1px solid var(--c-border);
  color: var(--c-text);
  font-weight: 700;
  font-size: 14px;
  transition: var(--trans);
  text-decoration: none;
}
.x7k-app-btn:hover {
  border-color: var(--c-gold);
  color: var(--c-gold);
  transform: translateY(-2px);
  background: rgba(232, 200, 74, 0.07);
}
.x7k-app-btn svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  fill: currentColor;
}
.x7k-app-btn-sub {
  font-size: 11px;
  font-weight: 400;
  opacity: 0.7;
  display: block;
}

.x7k-games-grid {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.x7k-game-card {
  flex: 0 0 calc(33.333% - 12px);
  max-width: calc(33.333% - 12px);
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--trans);
  position: relative;
}
.x7k-game-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
  border-color: rgba(232, 200, 74, 0.3);
}
.x7k-game-img {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}
.x7k-game-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.x7k-game-card:hover .x7k-game-img img {
  transform: scale(1.08);
}
.x7k-game-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 13, 14, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--trans);
}
.x7k-game-card:hover .x7k-game-overlay {
  opacity: 1;
}
.x7k-game-info {
  padding: 16px;
}
.x7k-game-name {
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  margin-bottom: 4px;
}
.x7k-game-provider {
  font-size: 12px;
  color: var(--c-text-muted);
  margin-bottom: 12px;
}
.x7k-game-actions {
  display: flex;
  gap: 8px;
}
.x7k-game-actions .btn {
  flex: 1;
  font-size: 12px;
  padding: 8px 10px;
}
.x7k-new-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--c-btn-red);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 1;
}
.x7k-hot-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: linear-gradient(135deg, #e8c84a, #f5a623);
  color: #1a0a0f;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 1;
}

.x7k-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  align-items: center;
  justify-content: center;
}
.x7k-modal.open {
  display: flex;
}
.x7k-modal-bg {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(4px);
}
.x7k-modal-box {
  position: relative;
  z-index: 1;
  width: 90%;
  max-width: 820px;
  background: var(--c-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  animation: modalIn 0.25s ease;
}
@keyframes modalIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.x7k-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--c-header);
  flex-shrink: 0;
}
.x7k-modal-title {
  font-weight: 700;
  font-size: 16px;
  color: #fff;
}
.x7k-modal-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  padding: 0 4px;
  transition: var(--trans);
}
.x7k-modal-close:hover {
  color: #fff;
}
.x7k-modal-iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
  background: #0a0707;
}
.x7k-modal-foot {
  padding: 16px 20px;
  display: flex;
  justify-content: center;
  gap: 12px;
  background: rgba(0, 0, 0, 0.4);
  flex-shrink: 0;
}

.x7k-slot-game {
  max-width: 480px;
  margin: 0 auto;
  background: linear-gradient(135deg, #1c1214, #231619);
  border: 2px solid rgba(232, 200, 74, 0.2);
  border-radius: var(--radius);
  padding: 36px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.x7k-slot-title {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
.x7k-slot-sub {
  font-size: 13px;
  color: var(--c-text-muted);
  margin-bottom: 28px;
}
.x7k-reels {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 24px;
}
.x7k-reel {
  width: 88px;
  height: 88px;
  border-radius: var(--radius-sm);
  border: 2px solid rgba(232, 200, 74, 0.3);
  background: #0e0a0b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
  transition: border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}
.x7k-reel.spinning {
  animation: reelBounce 0.12s steps(1) infinite;
  border-color: var(--c-gold);
}
@keyframes reelBounce {
  0% {
    transform: translateY(-2px);
  }
  50% {
    transform: translateY(2px);
  }
  100% {
    transform: translateY(0);
  }
}
.x7k-reel.win {
  border-color: var(--c-gold);
  box-shadow: 0 0 20px rgba(232, 200, 74, 0.4);
}
.x7k-slot-result {
  min-height: 68px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.x7k-slot-win-text {
  color: var(--c-gold);
  font-size: 20px;
  font-weight: 800;
  animation: fadeInUp 0.4s ease;
}
.x7k-slot-lose-text {
  color: var(--c-text-muted);
  font-size: 15px;
  animation: fadeInUp 0.4s ease;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.x7k-spin-count {
  font-size: 12px;
  color: var(--c-text-muted);
  margin-top: 12px;
}

.x7k-review-content {
  max-width: 860px;
  margin: 0 auto;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 44px;
  line-height: 1.9;
}
.x7k-review-content h2 {
  color: #fff;
  margin: 28px 0 14px;
  font-weight: 700;
  font-size: 22px;
}
.x7k-review-content h3 {
  color: #fff;
  margin: 22px 0 12px;
  font-weight: 700;
  font-size: 18px;
}
.x7k-review-content h4 {
  color: #fff;
  margin: 18px 0 10px;
  font-weight: 700;
  font-size: 16px;
}
.x7k-review-content p {
  color: var(--c-text-muted);
  margin-bottom: 16px;
}
.x7k-review-content ul {
  list-style: disc;
  padding-left: 22px;
  margin-bottom: 16px;
  color: var(--c-text-muted);
}
.x7k-review-content ol {
  list-style: decimal;
  padding-left: 22px;
  margin-bottom: 16px;
  color: var(--c-text-muted);
}
.x7k-review-content li {
  margin-bottom: 6px;
  padding-left: 4px;
}
.x7k-review-content a {
  color: var(--c-gold);
  text-decoration: underline;
}
.x7k-review-content strong {
  color: var(--c-text);
  font-weight: 700;
}
.x7k-review-content em {
  font-style: italic;
  color: var(--c-text-muted);
}
.x7k-review-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  overflow-x: auto;
  display: block;
}
.x7k-review-content table th {
  background: rgba(69, 11, 23, 0.35);
  font-weight: 700;
  color: #fff;
  padding: 12px 16px;
  border: 1px solid var(--c-border);
  text-align: left;
}
.x7k-review-content table td {
  border: 1px solid var(--c-border);
  padding: 10px 16px;
  text-align: left;
  color: var(--c-text-muted);
}
.x7k-author-box {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: rgba(69, 11, 23, 0.2);
  border: 1px solid rgba(69, 11, 23, 0.45);
  border-radius: var(--radius);
  padding: 24px;
  margin-top: 36px;
}
.x7k-author-ava {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-btn-red), var(--c-header));
  border: 2px solid var(--c-btn-red);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
}
.x7k-author-name {
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
  font-size: 16px;
}
.x7k-author-role {
  font-size: 13px;
  color: var(--c-text-muted);
  margin-bottom: 10px;
  line-height: 1.5;
}
.x7k-author-link {
  font-size: 13px;
  color: var(--c-gold);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
}
.x7k-author-link:hover {
  color: var(--c-gold2);
  text-decoration: underline;
}

.x7k-reviews-grid {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}
.x7k-review-card {
  flex: 1;
  min-width: 260px;
  max-width: 340px;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 24px;
  transition: var(--trans);
}
.x7k-review-card:hover {
  border-color: rgba(232, 200, 74, 0.25);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.x7k-review-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.x7k-review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-btn-red), var(--c-header));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  color: #fff;
  flex-shrink: 0;
}
.x7k-review-name {
  font-weight: 700;
  color: #fff;
  font-size: 15px;
  margin-bottom: 2px;
}
.x7k-review-date {
  font-size: 12px;
  color: var(--c-text-muted);
}
.x7k-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 12px;
}
.x7k-stars svg {
  width: 16px;
  height: 16px;
  fill: var(--c-gold);
}
.x7k-review-text {
  color: var(--c-text-muted);
  font-size: 14px;
  line-height: 1.75;
}
.x7k-review-rating {
  font-size: 12px;
  color: var(--c-text-muted);
  margin-top: 10px;
}
.x7k-review-rating strong {
  color: var(--c-gold);
}

.x7k-review-form-wrap {
  max-width: 560px;
  margin: 0 auto;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 36px;
}
.x7k-review-form-wrap h3 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
  text-align: center;
}
.x7k-form-group {
  margin-bottom: 18px;
}
.x7k-form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--c-text-muted);
  margin-bottom: 7px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.x7k-form-group input,
.x7k-form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--c-text);
  font-size: 15px;
  transition: var(--trans);
  outline: none;
  font-family: inherit;
  -webkit-appearance: none;
}
.x7k-form-group input:focus,
.x7k-form-group textarea:focus {
  border-color: var(--c-btn-red);
  background: rgba(199, 5, 29, 0.04);
}
.x7k-form-group input::placeholder,
.x7k-form-group textarea::placeholder {
  color: rgba(184, 168, 172, 0.5);
}
.x7k-form-group textarea {
  min-height: 110px;
  resize: vertical;
}
.x7k-form-success {
  display: none;
  background: rgba(34, 197, 94, 0.08);
  border: 1.5px solid rgba(34, 197, 94, 0.3);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  color: #4ade80;
  font-weight: 600;
  text-align: center;
  margin-top: 14px;
  font-size: 15px;
}
.x7k-form-success.show {
  display: block;
  animation: fadeInUp 0.4s ease;
}

.x7k-faq {
  max-width: 760px;
  margin: 0 auto;
}
.x7k-faq-item {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  overflow: hidden;
}
.x7k-faq-item.open {
  border-color: rgba(199, 5, 29, 0.35);
}
.x7k-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  user-select: none;
  gap: 12px;
}
.x7k-faq-q:hover {
  background: rgba(255, 255, 255, 0.03);
}
.x7k-faq-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  position: relative;
}
.x7k-faq-icon::before,
.x7k-faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--c-btn-red);
  border-radius: 2px;
}
.x7k-faq-icon::before {
  width: 12px;
  height: 2px;
  transform: translate(-50%, -50%);
}
.x7k-faq-icon::after {
  width: 2px;
  height: 12px;
  transform: translate(-50%, -50%);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}
.x7k-faq-item.open .x7k-faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}
.x7k-faq-a {
  display: none;
  padding: 0 22px 18px;
  color: var(--c-text-muted);
  font-size: 14px;
  line-height: 1.8;
}
.x7k-faq-item.open .x7k-faq-a {
  display: block;
  animation: fadeInUp 0.25s ease;
}

.x7k-footer {
  background: var(--c-header);
  padding: 52px 0 24px;
  margin-top: 24px;
}
.x7k-footer-top {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.x7k-footer-logo img {
  height: 40px;
  width: auto;
}
.x7k-footer-logo p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 12px;
  max-width: 260px;
  line-height: 1.6;
}
.x7k-footer-nav h4,
.x7k-footer-payments h4,
.x7k-footer-providers h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 16px;
}
.x7k-footer-nav a {
  display: block;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  padding: 5px 0;
  transition: var(--trans);
}
.x7k-footer-nav a:hover {
  color: #fff;
}
.x7k-payment-logos,
.x7k-provider-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  max-width: 300px;
}
.x7k-pay-badge,
.x7k-prov-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 6px 11px;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.65);
  white-space: nowrap;
  transition: var(--trans);
}
.x7k-pay-badge:hover,
.x7k-prov-badge:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}
.x7k-footer-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.x7k-copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.7;
}
.x7k-license {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
  line-height: 1.6;
  margin-top: 6px;
}
.x7k-age {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  font-weight: 800;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.x7k-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  background: linear-gradient(135deg, #c7051d 0%, #8b0318 100%);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 -4px 24px rgba(199, 5, 29, 0.45);
  transform: translateY(100%);
  animation: slideUpWidget 0.5s 0.8s ease forwards;
}
@keyframes slideUpWidget {
  to {
    transform: translateY(0);
  }
}
.x7k-widget-text {
  color: #fff;
  font-size: 13px;
  line-height: 1.4;
  flex: 1;
}
.x7k-widget-text strong {
  font-size: 15px;
  display: block;
  font-weight: 800;
}
.x7k-widget-btn {
  flex-shrink: 0;
  background: #fff;
  color: #c7051d;
  font-weight: 800;
  font-size: 14px;
  padding: 11px 24px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition: var(--trans);
}
.x7k-widget-btn:hover {
  background: #f0f0f0;
  color: #8b0318;
  transform: translateY(-1px);
}
.x7k-widget-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.55);
  font-size: 20px;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  flex-shrink: 0;
  transition: var(--trans);
}
.x7k-widget-close:hover {
  color: #fff;
}

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

@media (max-width: 900px) {
  .x7k-nav {
    display: none;
  }
  .x7k-burger {
    display: flex;
  }
  .x7k-header-inner {
    padding: 12px 16px;
  }
  .x7k-online {
    display: none;
  }
  .x7k-game-card {
    flex: 0 0 calc(50% - 8px);
    max-width: calc(50% - 8px);
  }
  .x7k-footer-top {
    flex-direction: column;
    gap: 28px;
  }
  .x7k-jackpot-card {
    min-width: 160px;
  }
}
@media (max-width: 640px) {
  .x7k-hero {
    min-height: 440px;
  }
  .x7k-hero-content {
    padding: 48px 0;
  }
  .x7k-game-card {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .x7k-jackpot-card {
    flex: 0 0 calc(50% - 8px);
    min-width: 130px;
    padding: 20px 12px;
  }
  .x7k-review-card {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .x7k-widget {
    flex-wrap: wrap;
    padding: 10px 14px;
  }
  .x7k-reels {
    gap: 8px;
  }
  .x7k-reel {
    width: 72px;
    height: 72px;
    font-size: 36px;
  }
  .x7k-review-form-wrap {
    padding: 24px 18px;
  }
  .x7k-review-content {
    padding: 24px 18px;
  }
  .x7k-author-box {
    flex-direction: column;
    text-align: center;
  }
  .x7k-app-btn span:not(.x7k-app-btn-sub) {
    display: none;
  }
  .x7k-hero-bonus {
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
