*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --c-bg: #110d0e;
  --c-hdr: #450b17;
  --c-btn-light: #e0e0e0;
  --c-btn-red: #c7051d;
  --c-text: #f0e8e8;
  --c-text-muted: #b09090;
  --c-border: #3a1a1a;
  --c-gold: #d4a843;
  --c-gold2: #f5c842;
  --c-card: #1e1214;
  --c-card2: #261519;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.55);
  --transition: 0.22s ease;
}
html {
  scroll-behavior: smooth;
  background: var(--c-bg);
}
body {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-text);
  background: var(--c-bg);
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--c-btn-light);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: var(--c-gold);
}

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

.x7k-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--c-gold2);
  margin-bottom: 12px;
  text-align: center;
  letter-spacing: -0.5px;
  text-wrap: balance;
}
.x7k-subtitle {
  font-size: 1rem;
  color: var(--c-text-muted);
  text-align: center;
  margin-bottom: 36px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.x7k-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--c-btn-red), var(--c-gold));
  border-radius: 3px;
  margin: 0 auto 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 22px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.3px;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}
.btn:active {
  transform: translateY(0);
}
.btn-login {
  background: var(--c-btn-light);
  color: #1a0a0c;
}
.btn-login:hover {
  background: #fff;
  color: #1a0a0c;
}
.btn-signup {
  background: var(--c-btn-red);
  color: #fff;
}
.btn-signup:hover {
  background: #e5061f;
  color: #fff;
}
.btn-gold {
  background: linear-gradient(135deg, var(--c-gold), var(--c-gold2));
  color: #1a0a0c;
  font-size: 1rem;
  padding: 14px 36px;
  border-radius: 10px;
  font-size: 1.05rem;
}
.btn-gold:hover {
  color: #1a0a0c;
  filter: brightness(1.1);
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--c-btn-light);
  color: var(--c-btn-light);
}
.btn-outline:hover {
  background: var(--c-btn-light);
  color: #1a0a0c;
}

/* HEADER */
.x7k-header {
  background: var(--c-hdr);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}
.x7k-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 20px;
  max-width: 1240px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.x7k-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.x7k-logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
}
.x7k-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.x7k-nav a {
  color: var(--c-btn-light);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  transition:
    background var(--transition),
    color var(--transition);
}
.x7k-nav a:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}
.x7k-header-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.x7k-online {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--c-text-muted);
  background: rgba(0, 0, 0, 0.3);
  padding: 5px 10px;
  border-radius: 20px;
  white-space: nowrap;
}
.x7k-online-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2ecc71;
  animation: blink 1.6s infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

.x7k-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.x7k-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-btn-light);
  border-radius: 2px;
  transition:
    transform var(--transition),
    opacity var(--transition);
}
.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-menu {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: var(--c-hdr);
  padding: 16px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.x7k-mobile-menu.open {
  display: flex;
}
.x7k-mobile-menu a {
  color: var(--c-btn-light);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 6px;
}
.x7k-mobile-menu a:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* HERO */
.x7k-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #110d0e;
}
.x7k-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("/7koban.jpg");
  background-size: cover;
  background-position: center top;
  z-index: 0;
}
.x7k-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(17, 13, 14, 0.92) 40%,
    rgba(17, 13, 14, 0.4)
  );
}
.x7k-hero-content {
  position: relative;
  z-index: 1;
  max-width: 580px;
  padding: 60px 20px 60px 0;
}
.x7k-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 16px;
  text-wrap: balance;
}
.x7k-hero h1 span {
  color: var(--c-gold2);
}
.x7k-hero-desc {
  font-size: 1.05rem;
  color: rgba(240, 232, 232, 0.85);
  margin-bottom: 28px;
  line-height: 1.7;
}
.x7k-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(199, 5, 29, 0.18);
  border: 1px solid var(--c-btn-red);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--c-btn-light);
  margin-bottom: 20px;
  letter-spacing: 0.3px;
}
.x7k-hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.x7k-hero-bonus {
  font-size: 0.82rem;
  color: var(--c-gold);
  margin-top: 16px;
  font-weight: 600;
}

/* SCREENSHOTS */
.x7k-screens {
  background: linear-gradient(180deg, var(--c-bg) 0%, #1a0f10 100%);
}
.x7k-screens-grid {
  display: flex;
  gap: 20px;
  overflow: hidden;
}
.x7k-screen-card {
  flex: 1 1 0;
  min-width: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--c-border);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}
.x7k-screen-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.7);
}
.x7k-screen-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.x7k-screen-card-label {
  background: var(--c-card);
  padding: 12px 16px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--c-text-muted);
  border-top: 1px solid var(--c-border);
}

.x7k-slider-wrap {
  position: relative;
}
.x7k-slider-dots {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
.x7k-slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-border);
  border: none;
  cursor: pointer;
  transition:
    background var(--transition),
    transform var(--transition);
}
.x7k-slider-dot.active {
  background: var(--c-gold);
  transform: scale(1.3);
}

/* WINNERS */
.x7k-winners {
  background: #1a0f10;
}
.x7k-winners-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.x7k-winners-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--c-card);
  min-width: 420px;
}
.x7k-winners-table th {
  background: var(--c-hdr);
  color: var(--c-btn-light);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 12px 18px;
  text-align: left;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.x7k-winners-table td {
  padding: 11px 18px;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--c-border);
  color: var(--c-text);
}
.x7k-winners-table tr:last-child td {
  border-bottom: none;
}
.x7k-winners-table tr:hover td {
  background: rgba(255, 255, 255, 0.03);
}
.x7k-winners-table .rank-1 td:first-child {
  color: var(--c-gold2);
}
.x7k-winners-table .rank-2 td:first-child {
  color: #c0c0c0;
}
.x7k-winners-table .rank-3 td:first-child {
  color: #cd7f32;
}
.x7k-win-amount {
  color: #2ecc71;
  font-weight: 700;
}
.x7k-win-badge {
  display: inline-block;
  background: rgba(46, 204, 113, 0.15);
  color: #2ecc71;
  border-radius: 4px;
  padding: 2px 8px;
  font-size: 0.78rem;
  font-weight: 700;
}

/* MIRRORS */
.x7k-mirrors {
  background: linear-gradient(180deg, #1a0f10 0%, var(--c-bg) 100%);
}
.x7k-mirrors-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.x7k-mirror-time {
  font-size: 0.82rem;
  color: var(--c-text-muted);
  background: var(--c-card);
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  gap: 8px;
}
.x7k-mirror-time .live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2ecc71;
  animation: blink 1.6s infinite;
}
.x7k-mirror-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.x7k-mirror-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--c-card);
  min-width: 600px;
}
.x7k-mirror-table th {
  background: var(--c-hdr);
  color: var(--c-btn-light);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 13px 18px;
  text-align: left;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.x7k-mirror-table td {
  padding: 13px 18px;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--c-border);
  color: var(--c-text);
}
.x7k-mirror-table tr:last-child td {
  border-bottom: none;
}
.x7k-mirror-table tr:hover td {
  background: rgba(255, 255, 255, 0.03);
}
.x7k-mirror-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #2ecc71;
  font-weight: 700;
  font-size: 0.82rem;
}
.x7k-mirror-status::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2ecc71;
  display: inline-block;
}
.x7k-mirror-link {
  color: var(--c-gold);
  font-weight: 700;
}
.x7k-mirror-link:hover {
  color: var(--c-gold2);
}

/* TOURNAMENTS */
.x7k-tournaments {
  background: var(--c-bg);
}
.x7k-tourn-grid {
  display: flex;
  gap: 20px;
  overflow: hidden;
}
.x7k-tourn-card {
  flex: 1 1 0;
  min-width: 0;
  background: var(--c-card2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.x7k-tourn-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-btn-red), var(--c-gold));
}
.x7k-tourn-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.6);
}
.x7k-tourn-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(199, 5, 29, 0.2);
  border: 1px solid rgba(199, 5, 29, 0.4);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #ff6b6b;
  width: fit-content;
}
.x7k-tourn-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
}
.x7k-tourn-desc {
  font-size: 0.85rem;
  color: var(--c-text-muted);
  line-height: 1.6;
}
.x7k-tourn-prize {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--c-gold2);
}
.x7k-tourn-prize small {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--c-text-muted);
  display: block;
  margin-top: 2px;
}
.x7k-tourn-timer {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--c-text-muted);
}
.x7k-timer-val {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: 6px;
  padding: 4px 10px;
  font-weight: 700;
  color: #fff;
  font-size: 0.88rem;
  font-variant-numeric: tabular-nums;
}
.x7k-tourn-btn {
  margin-top: auto;
}

/* WHEEL */
.x7k-wheel-section {
  background: linear-gradient(180deg, var(--c-bg) 0%, #1a0f10 100%);
}
.x7k-wheel-wrap {
  display: flex;
  gap: 48px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.x7k-wheel-box {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.x7k-wheel-canvas-wrap {
  position: relative;
  width: 320px;
  height: 320px;
}
.x7k-wheel-canvas-wrap canvas {
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(212, 168, 67, 0.3);
  display: block;
}
.x7k-wheel-pointer {
  position: absolute;
  top: -16px;
  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 2px 6px rgba(212, 168, 67, 0.6));
  z-index: 2;
}
.x7k-wheel-spin-btn {
  background: linear-gradient(135deg, var(--c-btn-red) 0%, #ff2040 100%);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 800;
  padding: 14px 40px;
  border-radius: 40px;
  border: none;
  cursor: pointer;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(199, 5, 29, 0.5);
  letter-spacing: 0.5px;
}
.x7k-wheel-spin-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(199, 5, 29, 0.6);
}
.x7k-wheel-spin-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.x7k-wheel-info {
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.x7k-wheel-info h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--c-gold2);
  text-wrap: balance;
}
.x7k-wheel-info p {
  color: var(--c-text-muted);
  line-height: 1.7;
}
.x7k-wheel-result {
  display: none;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
}
.x7k-wheel-result.show {
  display: block;
  animation: fadeIn 0.4s ease;
}
.x7k-wheel-result.win {
  border-color: var(--c-gold);
  background: rgba(212, 168, 67, 0.08);
}
.x7k-wheel-result.lose {
  border-color: var(--c-btn-red);
  background: rgba(199, 5, 29, 0.08);
}
.x7k-wheel-result h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.x7k-wheel-result.win h3 {
  color: var(--c-gold2);
}
.x7k-wheel-result.lose h3 {
  color: #ff6b6b;
}
.x7k-wheel-result p {
  font-size: 0.9rem;
  color: var(--c-text-muted);
  margin-bottom: 16px;
}

/* REVIEW CONTENT */
.x7k-review {
  background: #1a0f10;
}
.x7k-review-body {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
  max-width: 860px;
  margin: 0 auto;
}
.x7k-review-body h2,
.x7k-review-body h3,
.x7k-review-body h4,
.x7k-review-body h5,
.x7k-review-body h6 {
  color: var(--c-gold2);
  font-weight: 800;
  margin: 1.5em 0 0.7em;
  line-height: 1.3;
  text-wrap: balance;
}
.x7k-review-body h2 {
  font-size: 1.5rem;
}
.x7k-review-body h3 {
  font-size: 1.25rem;
}
.x7k-review-body h4 {
  font-size: 1.1rem;
}
.x7k-review-body p {
  margin-bottom: 1.1em;
  line-height: 1.75;
  color: var(--c-text);
}
.x7k-review-body a {
  color: var(--c-gold);
  text-decoration: underline;
}
.x7k-review-body a:hover {
  color: var(--c-gold2);
}
.x7k-review-body ul,
.x7k-review-body ol {
  padding-left: 1.6em;
  margin-bottom: 1.1em;
}
.x7k-review-body li {
  margin-bottom: 0.5em;
  line-height: 1.65;
}
.x7k-review-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.2em 0;
  font-size: 0.9rem;
}
.x7k-review-body table th {
  background: var(--c-hdr);
  color: var(--c-btn-light);
  padding: 10px 14px;
  text-align: left;
  font-weight: 700;
}
.x7k-review-body table td {
  padding: 10px 14px;
  border: 1px solid var(--c-border);
  color: var(--c-text);
}
.x7k-review-body table tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.03);
}
.x7k-review-body blockquote {
  border-left: 4px solid var(--c-gold);
  padding: 12px 20px;
  margin: 1.2em 0;
  background: rgba(212, 168, 67, 0.07);
  color: var(--c-text-muted);
  font-style: italic;
  border-radius: 0 8px 8px 0;
}
.x7k-review-body strong {
  color: #fff;
  font-weight: 700;
}
.x7k-review-body em {
  color: var(--c-text-muted);
}
.x7k-review-body hr {
  border: none;
  border-top: 1px solid var(--c-border);
  margin: 1.5em 0;
}
.x7k-review-body img {
  border-radius: 8px;
  margin: 1em 0;
  max-width: 100%;
}
.x7k-review-body pre {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--c-border);
  border-radius: 8px;
  padding: 16px;
  overflow-x: auto;
  font-size: 0.85rem;
  margin-bottom: 1em;
}
.x7k-review-body code {
  background: rgba(0, 0, 0, 0.3);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.85em;
  color: var(--c-gold);
}

/* AUTHOR */
.x7k-author {
  background: var(--c-bg);
}
.x7k-author-card {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  background: var(--c-card2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: var(--shadow);
}
.x7k-author-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid var(--c-gold);
  box-shadow: 0 0 20px rgba(212, 168, 67, 0.3);
}
.x7k-author-info h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}
.x7k-author-role {
  font-size: 0.8rem;
  color: var(--c-gold);
  font-weight: 600;
  margin-bottom: 10px;
}
.x7k-author-bio {
  font-size: 0.88rem;
  color: var(--c-text-muted);
  line-height: 1.7;
  margin-bottom: 14px;
}
.x7k-author-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.x7k-author-social {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--c-border);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--c-btn-light);
  transition:
    background var(--transition),
    border-color var(--transition);
}
.x7k-author-social:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--c-gold);
  color: var(--c-gold);
}

/* FOOTER */
.x7k-footer {
  background: var(--c-hdr);
  margin-top: auto;
}
.x7k-footer-top {
  padding: 40px 20px 28px;
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.x7k-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 280px;
}
.x7k-footer-brand img {
  height: 40px;
  width: auto;
  object-fit: contain;
}
.x7k-footer-brand p {
  font-size: 0.82rem;
  color: rgba(240, 232, 232, 0.6);
  line-height: 1.6;
}
.x7k-footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.x7k-footer-nav h4 {
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(240, 232, 232, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 4px;
}
.x7k-footer-nav a {
  font-size: 0.85rem;
  color: rgba(240, 232, 232, 0.75);
  padding: 3px 0;
}
.x7k-footer-nav a:hover {
  color: #fff;
}
.x7k-footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 0 20px;
}
.x7k-footer-mid {
  padding: 20px;
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.x7k-footer-logos-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.x7k-footer-logos-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(240, 232, 232, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  min-width: 80px;
}
.x7k-payment-logo,
.x7k-provider-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(240, 232, 232, 0.6);
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.x7k-footer-bottom {
  background: rgba(0, 0, 0, 0.25);
  padding: 16px 20px;
  font-size: 0.78rem;
  color: rgba(240, 232, 232, 0.45);
  text-align: center;
  line-height: 1.7;
}
.x7k-footer-bottom a {
  color: rgba(240, 232, 232, 0.5);
}
.x7k-footer-bottom a:hover {
  color: var(--c-gold);
}

/* FLOATING WIDGET */
.x7k-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(135deg, #1e0a0d, #3a1020);
  border-top: 2px solid var(--c-btn-red);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.5);
}
.x7k-widget-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.x7k-widget-text strong {
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
}
.x7k-widget-text span {
  font-size: 0.78rem;
  color: var(--c-gold);
}
.x7k-widget-close {
  background: none;
  border: none;
  color: rgba(240, 232, 232, 0.4);
  cursor: pointer;
  font-size: 1.2rem;
  padding: 4px;
  line-height: 1;
  transition: color var(--transition);
  flex-shrink: 0;
}
.x7k-widget-close:hover {
  color: rgba(240, 232, 232, 0.8);
}

/* ANIMATIONS */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.x7k-fade {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}
.x7k-fade.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .x7k-header-inner {
    flex-wrap: nowrap;
    gap: 8px;
  }
  .x7k-nav {
    display: none;
  }
  .x7k-burger {
    display: flex;
  }
  .x7k-screens-grid {
    gap: 14px;
  }
  .x7k-screens-grid .x7k-screen-card:nth-child(n + 2) {
    display: none;
  }
  .x7k-slider-dots {
    display: flex;
  }
  .x7k-tourn-grid .x7k-tourn-card:nth-child(n + 2) {
    display: none;
  }
  .x7k-wheel-wrap {
    flex-direction: column;
    gap: 28px;
  }
  .x7k-author-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .x7k-author-socials {
    justify-content: center;
  }
  .x7k-footer-top {
    flex-direction: column;
    gap: 24px;
  }
}
@media (max-width: 600px) {
  .x7k-section {
    padding: 44px 0;
  }
  .x7k-hero {
    min-height: 400px;
  }
  .x7k-hero-content {
    padding: 40px 0;
  }
  .x7k-wheel-canvas-wrap {
    width: 260px;
    height: 260px;
  }
  .x7k-widget {
    flex-wrap: wrap;
    gap: 10px;
  }
  .x7k-review-body {
    padding: 20px;
  }
}
@media (min-width: 901px) {
  .x7k-screens-grid .x7k-screen-card {
    display: block !important;
  }
  .x7k-tourn-grid .x7k-tourn-card {
    display: flex !important;
  }
}

.wp-block-rss,
.wp-block-latest-posts,
.wp-block-archives {
  display: none;
}
.elementor-hidden-desktop,
.elementor-hidden-tablet {
  visibility: hidden;
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

.x7k-scroll-top {
  position: fixed;
  bottom: 72px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: var(--c-hdr);
  border: 1px solid var(--c-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity var(--transition),
    transform var(--transition);
  z-index: 998;
  color: var(--c-btn-light);
  font-size: 1.1rem;
}
.x7k-scroll-top.show {
  opacity: 1;
  pointer-events: auto;
}
.x7k-scroll-top:hover {
  transform: translateY(-3px);
}

.x7k-section-sep {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-border), transparent);
  margin: 0 20px;
}

@media (max-width: 600px) {
  .x7k-wheel-section {
    padding: 44px 0 80px !important;
  }

  .x7k-wheel-canvas-wrap {
    width: 280px !important;
    height: 280px !important;
    margin: 0 auto;
  }

  .x7k-wheel-canvas-wrap canvas {
    width: 280px !important;
    height: 280px !important;
  }

  .x7k-wheel-pointer {
    top: -14px !important;
    border-left: 12px solid transparent !important;
    border-right: 12px solid transparent !important;
    border-top: 24px solid var(--c-gold) !important;
  }

  .x7k-wheel-spin-btn {
    font-size: 0.95rem !important;
    padding: 12px 32px !important;
  }

  .x7k-wheel-wrap {
    gap: 24px !important;
    padding: 0 10px;
  }

  .x7k-wheel-box {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .x7k-wheel-info {
    max-width: 100% !important;
    padding: 0 10px;
  }

  .x7k-wheel-info h2 {
    font-size: 1.4rem !important;
  }

  .x7k-wheel-info p {
    font-size: 0.9rem !important;
  }

  .x7k-wheel-result {
    margin-top: 16px;
  }
}

@media (max-width: 380px) {
  .x7k-wheel-canvas-wrap {
    width: 240px !important;
    height: 240px !important;
  }

  .x7k-wheel-canvas-wrap canvas {
    width: 240px !important;
    height: 240px !important;
  }

  .x7k-wheel-pointer {
    top: -12px !important;
    border-left: 10px solid transparent !important;
    border-right: 10px solid transparent !important;
    border-top: 20px solid var(--c-gold) !important;
  }

  .x7k-wheel-info h2 {
    font-size: 1.2rem !important;
  }
}
