*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --c-bg: #0b0c0d;
  --c-surface: #141618;
  --c-surface2: #1c1e20;
  --c-border: #2a2d30;
  --c-accent: #bbeb00;
  --c-accent-dim: #9dc200;
  --c-btn-dark: #1f2021;
  --c-text: #e8eaec;
  --c-text-muted: #9aa0a8;
  --c-white: #ffffff;
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 18px;
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.45);
  --tr: 0.22s ease;
}
html {
  scroll-behavior: smooth;
  background: var(--c-bg);
}
body {
  font-family: "Inter", Arial, sans-serif;
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}
a {
  color: var(--c-accent);
  text-decoration: none;
  transition: color var(--tr);
}
a:hover {
  color: var(--c-accent-dim);
}
img {
  max-width: 100%;
  display: block;
}
.xq7r2 {
  display: none;
}
.wp-block-spacer {
  height: 0;
}

.jt-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.jt-section {
  padding: 64px 0;
}
.jt-section--sm {
  padding: 40px 0;
}

.jt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--r-sm);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--tr);
  text-decoration: none;
  white-space: nowrap;
}
.jt-btn--dark {
  background: var(--c-btn-dark);
  color: var(--c-text);
  border: 1px solid var(--c-border);
}
.jt-btn--dark:hover {
  background: #28292b;
  color: var(--c-white);
  border-color: #3a3d42;
}
.jt-btn--accent {
  background: var(--c-accent);
  color: #0b0c0d;
  font-weight: 700;
}
.jt-btn--accent:hover {
  background: var(--c-accent-dim);
  color: #0b0c0d;
}
.jt-btn--lg {
  padding: 14px 32px;
  font-size: 1rem;
  border-radius: var(--r-md);
}
.jt-btn--xl {
  padding: 16px 40px;
  font-size: 1.1rem;
  border-radius: var(--r-md);
}

.jt-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  background: rgba(187, 235, 0, 0.15);
  color: var(--c-accent);
  border: 1px solid rgba(187, 235, 0, 0.3);
}
.jt-badge--green {
  background: rgba(0, 200, 100, 0.12);
  color: #00c864;
  border-color: rgba(0, 200, 100, 0.25);
}
.jt-badge--orange {
  background: rgba(255, 160, 0, 0.12);
  color: #ffa000;
  border-color: rgba(255, 160, 0, 0.25);
}

.jt-title {
  font-family: "Montserrat", "Inter", sans-serif;
  font-weight: 800;
  color: var(--c-white);
  line-height: 1.2;
}
.jt-title--xl {
  font-size: clamp(2rem, 5vw, 3.2rem);
}
.jt-title--lg {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}
.jt-title--md {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
}
.jt-title--sm {
  font-size: 1.1rem;
}

.jt-subtitle {
  color: var(--c-text-muted);
  font-size: 1rem;
  margin-top: 8px;
}

.jt-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-border), transparent);
  margin: 40px 0;
}

.jt-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
  transition:
    transform var(--tr),
    box-shadow var(--tr);
}
.jt-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
}

.jt-grid--2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.jt-grid--3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.jt-grid--4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.jt-section-header {
  text-align: center;
  margin-bottom: 40px;
}
.jt-section-header .jt-subtitle {
  max-width: 560px;
  margin: 8px auto 0;
}

.wp-content-placeholder {
  display: block;
  height: 0;
  overflow: hidden;
  visibility: hidden;
}
.wp-includes-ref {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  width: 1px;
  height: 1px;
}

.jt-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--c-bg);
  border-bottom: 1px solid var(--c-border);
  backdrop-filter: blur(12px);
}
.jt-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 20px;
  padding: 12px 0;
  min-height: 64px;
}
.jt-header__logo img {
  height: 60px;
  width: auto;
}
.jt-header__logo {
  display: flex;
  align-items: center;
}
.jt-header__nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.jt-header__nav a {
  color: var(--c-text-muted);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--r-sm);
  transition: all var(--tr);
}
.jt-header__nav a:hover {
  color: var(--c-white);
  background: var(--c-surface2);
}
.jt-header__online {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--c-text-muted);
  white-space: nowrap;
}
.jt-header__online-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #00c864;
  animation: onlinePulse 2s ease-in-out infinite;
}
@keyframes onlinePulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}
.jt-header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.jt-burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.jt-burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: all var(--tr);
}
.jt-burger.is-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.jt-burger.is-active span:nth-child(2) {
  opacity: 0;
}
.jt-burger.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
.jt-mobile-nav {
  display: none;
  position: fixed;
  top: 100px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(11, 12, 13, 0.97);
  z-index: 999;
  flex-direction: column;
  padding: 24px 20px;
  gap: 8px;
  overflow-y: auto;
}
.jt-mobile-nav.is-open {
  display: flex;
}
.jt-mobile-nav a {
  color: var(--c-text);
  font-size: 1rem;
  padding: 12px 16px;
  border-radius: var(--r-sm);
  border-bottom: 1px solid var(--c-border);
}
.jt-mobile-nav a:hover {
  background: var(--c-surface);
  color: var(--c-white);
}
.jt-mobile-nav .jt-mobile-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}
.jt-mobile-nav .jt-mobile-btns .jt-btn {
  width: 100%;
  text-align: center;
}

.jt-hero {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: center;
}
.jt-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.jt-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.jt-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(11, 12, 13, 0.92) 40%,
    rgba(11, 12, 13, 0.5) 100%
  );
}
.jt-hero__inner {
  position: relative;
  z-index: 1;
  padding: 80px 0;
}
.jt-hero__content {
  max-width: 600px;
}
.jt-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.jt-hero__tag {
  background: rgba(187, 235, 0, 0.15);
  color: var(--c-accent);
  border: 1px solid rgba(187, 235, 0, 0.3);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.jt-hero__title {
  margin-bottom: 16px;
  color: var(--c-white);
}
.jt-hero__desc {
  color: var(--c-text-muted);
  font-size: 1.05rem;
  margin-bottom: 28px;
  max-width: 480px;
  line-height: 1.65;
}
.jt-hero__btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.jt-hero__promo {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(187, 235, 0, 0.07);
  border: 1px solid rgba(187, 235, 0, 0.2);
  padding: 12px 16px;
  border-radius: var(--r-md);
  max-width: 480px;
}
.jt-hero__promo-label {
  color: var(--c-text-muted);
  font-size: 0.85rem;
}
.jt-hero__promo-code {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--c-accent);
  letter-spacing: 0.12em;
}

.jt-info-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--r-lg);
  border: 1px solid var(--c-border);
}
.jt-info-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
}
.jt-info-table tr:not(:last-child) {
  border-bottom: 1px solid var(--c-border);
}
.jt-info-table td {
  padding: 12px 20px;
  font-size: 0.9rem;
  text-align: left;
  vertical-align: top;
  line-height: 1.5;
}
.jt-info-table td:first-child {
  color: var(--c-text-muted);
  font-weight: 600;
  width: 200px;
  white-space: nowrap;
}
.jt-info-table td:last-child {
  color: var(--c-text);
}
.jt-info-table tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.02);
}
.jt-info-table tr:hover td {
  background: rgba(187, 235, 0, 0.04);
}
.jt-info-table .jt-badge {
  margin: 2px 3px 2px 0;
}

.jt-promo-section {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 40px;
  text-align: center;
}
.jt-promo-card {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  background: var(--c-bg);
  border: 2px dashed var(--c-accent);
  border-radius: var(--r-lg);
  padding: 32px 40px;
  position: relative;
  min-width: 280px;
}
.jt-promo-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, rgba(187, 235, 0, 0.08), transparent);
  pointer-events: none;
}
.jt-promo-code-text {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 2.2rem;
  letter-spacing: 0.18em;
  color: var(--c-accent);
  text-shadow: 0 0 20px rgba(187, 235, 0, 0.35);
}
.jt-promo-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: #00c864;
  font-weight: 600;
}
.jt-promo-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #00c864;
  animation: onlinePulse 1.8s ease-in-out infinite;
}
.jt-promo-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}
.jt-promo-bonus-desc {
  color: var(--c-text-muted);
  font-size: 0.9rem;
  max-width: 400px;
  line-height: 1.5;
}
.jt-promo-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 12px;
}
.jt-promo-meta-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.jt-promo-meta-item span:first-child {
  font-size: 0.75rem;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.jt-promo-meta-item span:last-child {
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-white);
}
.jt-copy-toast {
  position: fixed;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--c-accent);
  color: #0b0c0d;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  opacity: 0;
  transition: all 0.35s ease;
  pointer-events: none;
  z-index: 9999;
}
.jt-copy-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.jt-tournaments {
}
.jt-tournament-slider-wrap {
  position: relative;
  overflow: hidden;
}
.jt-tournament-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.jt-tournament-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
  transition:
    transform var(--tr),
    box-shadow var(--tr);
}
.jt-tournament-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}
.jt-tournament-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-accent), var(--c-accent-dim));
}
.jt-tournament-badge {
  position: absolute;
  top: 16px;
  right: 16px;
}
.jt-tournament-name {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--c-white);
  padding-right: 60px;
}
.jt-tournament-desc {
  font-size: 0.875rem;
  color: var(--c-text-muted);
  line-height: 1.55;
}
.jt-tournament-prize {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.jt-tournament-prize-label {
  font-size: 0.78rem;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.jt-tournament-prize-amount {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--c-accent);
}
.jt-tournament-timer {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--c-text-muted);
}
.jt-timer-blocks {
  display: flex;
  gap: 6px;
}
.jt-timer-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: 6px;
  padding: 6px 10px;
  min-width: 42px;
}
.jt-timer-unit span:first-child {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--c-white);
}
.jt-timer-unit span:last-child {
  font-size: 0.65rem;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.jt-tournament-btn {
  margin-top: auto;
}
.jt-slider-dots {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.jt-slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-border);
  cursor: pointer;
  transition: background var(--tr);
}
.jt-slider-dot.active {
  background: var(--c-accent);
}

.jt-app-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.jt-app-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.jt-app-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  overflow: hidden;
}
.jt-app-table tr:not(:last-child) {
  border-bottom: 1px solid var(--c-border);
}
.jt-app-table td {
  padding: 11px 18px;
  font-size: 0.875rem;
  text-align: left;
}
.jt-app-table td:first-child {
  color: var(--c-text-muted);
  font-weight: 600;
  width: 160px;
}
.jt-app-table td:last-child {
  color: var(--c-text);
}
.jt-app-table tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.02);
}
.jt-app-download {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}
.jt-app-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--c-surface2);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 14px 20px;
  transition: all var(--tr);
  color: var(--c-text);
  text-decoration: none;
}
.jt-app-btn:hover {
  border-color: var(--c-accent);
  background: rgba(187, 235, 0, 0.07);
  color: var(--c-white);
}
.jt-app-btn-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  opacity: 0.9;
}
.jt-app-btn-texts {
}
.jt-app-btn-sup {
  font-size: 0.72rem;
  color: var(--c-text-muted);
  display: block;
}
.jt-app-btn-label {
  font-weight: 700;
  font-size: 0.95rem;
  display: block;
  line-height: 1.2;
  margin-top: 2px;
}
.jt-app-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.jt-app-mockup {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 24px;
  text-align: center;
}
.jt-app-mockup-img {
  max-width: 220px;
  margin: 0 auto;
}
.jt-app-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.jt-app-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--c-surface2);
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  padding: 10px 14px;
  font-size: 0.82rem;
  color: var(--c-text-muted);
}
.jt-app-feature-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-accent);
  flex-shrink: 0;
}

.jt-demo {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
}
.jt-demo__header {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--c-border);
}
.jt-demo__iframe-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
}
.jt-demo__iframe-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.jt-demo__disclaimer {
  padding: 12px 24px;
  font-size: 0.8rem;
  color: var(--c-text-muted);
  border-top: 1px solid var(--c-border);
}

.jt-review-block {
}
.jt-review-author {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 20px 24px;
  margin-bottom: 28px;
}
.jt-review-author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--c-surface2);
  border: 2px solid var(--c-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--c-accent);
  flex-shrink: 0;
}
.jt-review-author-info {
}
.jt-review-author-name {
  font-weight: 700;
  color: var(--c-white);
  font-size: 1rem;
}
.jt-review-author-role {
  font-size: 0.82rem;
  color: var(--c-text-muted);
  margin-top: 2px;
}
.jt-review-author-link {
  font-size: 0.8rem;
  color: var(--c-accent);
  margin-top: 4px;
  display: inline-block;
}
.jt-review-content {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--c-text);
}
.jt-review-content h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--c-white);
  margin: 28px 0 12px;
  line-height: 1.3;
}
.jt-review-content h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--c-white);
  margin: 20px 0 8px;
}
.jt-review-content h4 {
  font-weight: 600;
  color: var(--c-text);
  margin: 14px 0 6px;
}
.jt-review-content p {
  margin: 0 0 14px;
}
.jt-review-content ul,
.jt-review-content ol {
  margin: 0 0 14px 22px;
}
.jt-review-content li {
  margin-bottom: 6px;
}
.jt-review-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 0.875rem;
  overflow-x: auto;
  display: block;
}
.jt-review-content table th {
  background: var(--c-surface2);
  color: var(--c-white);
  font-weight: 700;
  padding: 10px 14px;
  text-align: left;
  border: 1px solid var(--c-border);
}
.jt-review-content table td {
  padding: 9px 14px;
  border: 1px solid var(--c-border);
  vertical-align: top;
}
.jt-review-content table tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.02);
}
.jt-review-content strong {
  color: var(--c-white);
}
.jt-review-content em {
  color: var(--c-text-muted);
}
.jt-review-content a {
  color: var(--c-accent);
}
.jt-review-content blockquote {
  border-left: 3px solid var(--c-accent);
  padding: 10px 16px;
  margin: 16px 0;
  background: rgba(187, 235, 0, 0.05);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  color: var(--c-text-muted);
}

.jt-faq {
}
.jt-faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.jt-faq-item {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  overflow: hidden;
}
.jt-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  gap: 12px;
  transition: background var(--tr);
}
.jt-faq-question:hover {
  background: var(--c-surface2);
}
.jt-faq-question-text {
  font-weight: 600;
  color: var(--c-white);
  font-size: 0.95rem;
  line-height: 1.4;
}
.jt-faq-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--c-surface2);
  border: 1px solid var(--c-border);
  transition: all var(--tr);
}
.jt-faq-icon svg {
  transition: transform var(--tr);
}
.jt-faq-item.is-open .jt-faq-icon {
  background: rgba(187, 235, 0, 0.12);
  border-color: rgba(187, 235, 0, 0.3);
}
.jt-faq-item.is-open .jt-faq-icon svg {
  transform: rotate(180deg);
}
.jt-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding var(--tr);
}
.jt-faq-item.is-open .jt-faq-answer {
  max-height: 400px;
}
.jt-faq-answer-inner {
  padding: 0 22px 18px;
  color: var(--c-text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}
.jt-faq-answer-inner a {
  color: var(--c-accent);
}

.jt-footer {
  background: var(--c-bg);
  border-top: 1px solid var(--c-border);
  padding: 48px 0 24px;
}
.jt-footer__top {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.jt-footer__brand {
}
.jt-footer__logo img {
  height: 65px;
}
.jt-footer__tagline {
  font-size: 0.83rem;
  color: var(--c-text-muted);
  margin-top: 10px;
  line-height: 1.55;
}
.jt-footer__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.jt-footer__nav-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--c-text-muted);
  margin-bottom: 12px;
}
.jt-footer__nav-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.jt-footer__nav-col li a {
  font-size: 0.875rem;
  color: var(--c-text-muted);
  transition: color var(--tr);
}
.jt-footer__nav-col li a:hover {
  color: var(--c-text);
}
.jt-footer__payments-row {
  margin-bottom: 28px;
}
.jt-footer__payments-row h4,
.jt-footer__providers-row h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--c-text-muted);
  margin-bottom: 12px;
}
.jt-footer__logos-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.jt-footer__logo-badge {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  padding: 7px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--c-text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.jt-footer__logo-badge:hover {
  border-color: var(--c-accent);
  color: var(--c-text);
}
.jt-footer__logo-badge svg {
  opacity: 0.7;
  flex-shrink: 0;
}
.jt-footer__providers-row {
  margin-bottom: 28px;
}
.jt-footer__bottom {
  border-top: 1px solid var(--c-border);
  padding-top: 20px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.jt-footer__copyright {
  font-size: 0.8rem;
  color: var(--c-text-muted);
  line-height: 1.6;
}
.jt-footer__legal {
  font-size: 0.75rem;
  color: #5a6068;
  line-height: 1.6;
  max-width: 600px;
}
.jt-footer__18-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #5a6068;
  font-weight: 800;
  font-size: 0.8rem;
  color: #5a6068;
  flex-shrink: 0;
  margin-top: 4px;
}

.jt-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 980;
  background: linear-gradient(90deg, #0f1012, #141618);
  border-top: 1px solid rgba(187, 235, 0, 0.25);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.jt-widget__text {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
}
.jt-widget__bonus {
  font-size: 0.75rem;
  color: var(--c-text-muted);
  white-space: nowrap;
}
.jt-widget__promo {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--c-accent);
  letter-spacing: 0.08em;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.jt-widget__action {
  flex-shrink: 0;
}
.jt-widget__action a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--c-accent);
  color: #0b0c0d;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 22px;
  border-radius: var(--r-md);
  text-decoration: none;
  transition: background var(--tr);
}
.jt-widget__action a:hover {
  background: var(--c-accent-dim);
  color: #0b0c0d;
}
.jt-widget__close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--c-text-muted);
  padding: 6px;
  border-radius: var(--r-sm);
  transition: color var(--tr);
  display: flex;
  align-items: center;
}
.jt-widget__close:hover {
  color: var(--c-white);
}

body {
  padding-bottom: 70px;
}

.jt-breadcrumb {
  padding: 12px 0;
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.jt-breadcrumb a {
  color: var(--c-text-muted);
}
.jt-breadcrumb a:hover {
  color: var(--c-accent);
}
.jt-breadcrumb-sep {
  color: var(--c-border);
}

.jt-trust-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 16px 0;
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  margin-bottom: 40px;
}
.jt-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--c-text-muted);
}
.jt-trust-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--c-accent);
}

.jt-stars {
  display: flex;
  align-items: center;
  gap: 3px;
  color: var(--c-accent);
}

.wp-kses-fake {
  display: none;
}
.entry-content-fake {
  visibility: hidden;
  position: absolute;
  pointer-events: none;
  width: 0;
  height: 0;
  overflow: hidden;
}
.elementor-fake-widget {
  display: none !important;
}
.wp-post-image {
  display: none;
}
.post-thumbnail {
  display: none;
}

@media (max-width: 1024px) {
  .jt-header__inner {
    grid-template-columns: auto 1fr auto auto;
  }
  .jt-header__nav {
    display: none;
  }
  .jt-burger {
    display: flex;
  }
  .jt-app-section {
    grid-template-columns: 1fr;
  }
  .jt-app-right {
    display: none;
  }
  .jt-footer__top {
    grid-template-columns: 1fr;
  }
  .jt-footer__nav {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .jt-hero {
    min-height: 380px;
  }
  .jt-hero__inner {
    padding: 56px 0;
  }
  .jt-section {
    padding: 44px 0;
  }
  .jt-tournament-cards {
    grid-template-columns: 1fr;
    transition: transform 0.4s ease;
  }
  .jt-slider-dots {
    display: flex;
  }
  .jt-grid--2,
  .jt-grid--3,
  .jt-grid--4 {
    grid-template-columns: 1fr;
  }
  .jt-promo-card {
    padding: 24px 20px;
    min-width: auto;
    width: 100%;
  }
  .jt-promo-section {
    padding: 28px 20px;
  }
  .jt-promo-code-text {
    font-size: 1.7rem;
    letter-spacing: 0.1em;
  }
  .jt-widget {
    flex-wrap: wrap;
  }
  .jt-footer__nav {
    grid-template-columns: 1fr 1fr;
  }
  .jt-hero__btns {
    flex-direction: column;
    align-items: flex-start;
  }
  .jt-title--xl {
    font-size: 1.9rem;
  }
  .jt-header__inner {
    grid-template-columns: auto 1fr auto;
  }
  .jt-header__online {
    display: none;
  }
}

@media (max-width: 480px) {
  .jt-container {
    padding: 0 14px;
  }
  .jt-footer__nav {
    grid-template-columns: 1fr;
  }
  .jt-app-features {
    grid-template-columns: 1fr;
  }
  .jt-promo-meta {
    gap: 12px;
  }
  .jt-hero__promo {
    flex-direction: column;
    text-align: center;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.jt-animate-in {
  animation: fadeInUp 0.5s ease both;
}
.jt-animate-in-delay {
  animation: fadeInUp 0.5s ease 0.15s both;
}
.jt-animate-in-delay2 {
  animation: fadeInUp 0.5s ease 0.3s both;
}

.jt-mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(11, 12, 13, 0.98);
  z-index: 9999;
  flex-direction: column;
  padding: 80px 20px 24px;
  gap: 8px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.jt-mobile-nav.is-open {
  display: flex;
}
.jt-burger {
  z-index: 10000;
  position: relative;
}
body.jt-nav-locked {
  overflow: hidden !important;
}

.jt-mobile-nav.is-open {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100vh;
  height: 100dvh;
  z-index: 9999;
  overflow-y: auto;
}
