:root {
  --c-bg: #0b0c0d;
  --c-bg-2: #111314;
  --c-bg-3: #161819;
  --c-bg-card: #13151a;
  --c-accent: #bbeb00;
  --c-accent-hover: #d0ff00;
  --c-btn-dark: #1f2021;
  --c-btn-dark-hover: #2a2c2d;
  --c-text: #e8eaed;
  --c-text-muted: #8f9299;
  --c-text-dim: #5c6068;
  --c-border: #222528;
  --c-border-light: #2d3035;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --font-main: "Inter", "Roboto", Arial, sans-serif;
  --font-head: "Montserrat", "Inter", Arial, sans-serif;
  --tr: 0.22s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background: var(--c-bg);
}

body {
  font-family: var(--font-main);
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: var(--c-accent);
  text-decoration: none;
  transition: color var(--tr);
}
a:hover {
  color: var(--c-accent-hover);
}

img {
  display: block;
  max-width: 100%;
}

.wp-site-title,
.wp-description,
.entry-content,
.post-thumbnail,
.wp-block-image {
  display: none;
}

.jt-container {
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 20px;
}

.jt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.4px;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-sm);
  padding: 10px 22px;
  transition:
    background var(--tr),
    transform var(--tr),
    box-shadow var(--tr),
    color var(--tr);
  white-space: nowrap;
  text-decoration: none;
}
.jt-btn:active {
  transform: scale(0.97);
}

.jt-btn--dark {
  background: var(--c-btn-dark);
  color: var(--c-text);
}
.jt-btn--dark:hover {
  background: var(--c-btn-dark-hover);
  color: var(--c-text);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
}

.jt-btn--accent {
  background: var(--c-accent);
  color: #0a0b0c;
}
.jt-btn--accent:hover {
  background: var(--c-accent-hover);
  color: #0a0b0c;
  box-shadow: 0 4px 20px rgba(187, 235, 0, 0.32);
}

.jt-btn--lg {
  padding: 14px 32px;
  font-size: 16px;
  border-radius: var(--radius-md);
}

.jt-section {
  padding: 64px 0;
}
.jt-section--tight {
  padding: 40px 0;
}

.jt-section-title {
  font-family: var(--font-head);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 800;
  color: var(--c-text);
  margin-bottom: 24px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}
.jt-section-title::before {
  content: "";
  display: block;
  width: 4px;
  height: 28px;
  background: var(--c-accent);
  border-radius: 2px;
  flex-shrink: 0;
}

.jt-card {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition:
    border-color var(--tr),
    box-shadow var(--tr);
}
.jt-card:hover {
  border-color: var(--c-border-light);
}

#jt-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(11, 12, 13, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--c-border);
}

.jt-header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  height: 68px;
}

.jt-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.jt-logo img {
  height: 68px;
  width: auto;
}

.jt-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  list-style: none;
}
.jt-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--c-text-muted);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition:
    color var(--tr),
    background var(--tr);
}
.jt-nav a:hover {
  color: var(--c-text);
  background: var(--c-btn-dark);
}

.jt-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.jt-online-count {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--c-text-muted);
  padding: 4px 10px;
  background: var(--c-btn-dark);
  border-radius: 20px;
  white-space: nowrap;
}
.jt-online-dot {
  width: 7px;
  height: 7px;
  background: #4cff72;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.3);
  }
}

.jt-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1100;
}
.jt-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition:
    transform var(--tr),
    opacity var(--tr);
}
.jt-burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.jt-burger.is-open span:nth-child(2) {
  opacity: 0;
}
.jt-burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.jt-mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(11, 12, 13, 0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 80px 24px 24px;
}
.jt-mobile-menu.is-open {
  display: flex;
}
.jt-mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
}
.jt-mobile-menu ul li a {
  display: block;
  font-size: 18px;
  font-weight: 600;
  font-family: var(--font-head);
  color: var(--c-text);
  padding: 12px 24px;
  border-radius: var(--radius-md);
  text-align: center;
  text-decoration: none;
  transition: background var(--tr);
  width: 100%;
}
.jt-mobile-menu ul li a:hover {
  background: var(--c-btn-dark);
}
.jt-mobile-menu .jt-mobile-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 320px;
  margin-top: 12px;
}
.jt-mobile-menu .jt-btn {
  width: 100%;
  font-size: 15px;
  padding: 14px;
}

#jt-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--c-bg);
}
.jt-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("/nab.jpg");
  background-size: cover;
  background-position: center;
  filter: brightness(0.45);
  z-index: 0;
}
.jt-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(11, 12, 13, 0.92) 0%,
    rgba(11, 12, 13, 0.5) 60%,
    rgba(11, 12, 13, 0.1) 100%
  );
  z-index: 1;
}
.jt-hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 80px 0;
}
.jt-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(187, 235, 0, 0.12);
  border: 1px solid rgba(187, 235, 0, 0.3);
  color: var(--c-accent);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.jt-hero-title {
  font-family: var(--font-head);
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 900;
  line-height: 1.15;
  color: var(--c-text);
  margin-bottom: 16px;
  text-balance: balance;
}
.jt-hero-title span {
  color: var(--c-accent);
}
.jt-hero-sub {
  font-size: 17px;
  color: var(--c-text-muted);
  margin-bottom: 32px;
  line-height: 1.6;
  max-width: 480px;
}
.jt-hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.jt-hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.jt-hero-stat {
  display: flex;
  flex-direction: column;
}
.jt-hero-stat strong {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--c-accent);
}
.jt-hero-stat span {
  font-size: 12px;
  color: var(--c-text-muted);
}

#jt-mirrors {
  background: var(--c-bg-2);
}

.jt-mirrors-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.jt-datetime {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--c-text-muted);
  background: var(--c-btn-dark);
  padding: 6px 14px;
  border-radius: 20px;
}
.jt-datetime strong {
  color: var(--c-accent);
}

.jt-status-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #4cff72;
  background: rgba(76, 255, 114, 0.1);
  border: 1px solid rgba(76, 255, 114, 0.25);
  padding: 5px 12px;
  border-radius: 20px;
}
.jt-status-dot {
  width: 6px;
  height: 6px;
  background: #4cff72;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

.jt-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-md);
}
.jt-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
  font-size: 14px;
}
.jt-table thead tr {
  background: var(--c-btn-dark);
  border-bottom: 1px solid var(--c-border-light);
}
.jt-table thead th {
  padding: 14px 18px;
  text-align: left;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.jt-table tbody tr {
  border-bottom: 1px solid var(--c-border);
  transition: background var(--tr);
}
.jt-table tbody tr:last-child {
  border-bottom: none;
}
.jt-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.03);
}
.jt-table td {
  padding: 14px 18px;
  vertical-align: middle;
  color: var(--c-text);
}
.jt-table td.num {
  color: var(--c-text-muted);
  font-size: 13px;
}
.jt-table .status-ok {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #4cff72;
  font-weight: 600;
  font-size: 13px;
}
.jt-table .status-ok::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #4cff72;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
.jt-table a.mirror-link {
  color: var(--c-accent);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--tr);
}
.jt-table a.mirror-link:hover {
  color: var(--c-accent-hover);
}

#jt-winners {
  background: var(--c-bg);
}

.jt-winners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
}

.jt-winner-card {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 12px;
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  transition:
    border-color var(--tr),
    transform var(--tr);
}
.jt-winner-card:hover {
  border-color: var(--c-border-light);
  transform: translateY(-1px);
}
.jt-winner-card.top1 {
  border-color: rgba(255, 215, 0, 0.35);
}
.jt-winner-card.top2 {
  border-color: rgba(192, 192, 192, 0.25);
}
.jt-winner-card.top3 {
  border-color: rgba(205, 127, 50, 0.25);
}

.jt-winner-pos {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 800;
  color: var(--c-text-muted);
  min-width: 22px;
}
.jt-winner-card.top1 .jt-winner-pos {
  color: #ffd700;
}
.jt-winner-card.top2 .jt-winner-pos {
  color: #c0c0c0;
}
.jt-winner-card.top3 .jt-winner-pos {
  color: #cd7f32;
}

.jt-winner-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--c-btn-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--c-accent);
  font-family: var(--font-head);
  flex-shrink: 0;
}

.jt-winner-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--c-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.jt-winner-game {
  font-size: 11px;
  color: var(--c-text-muted);
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.jt-winner-amount {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 800;
  color: var(--c-accent);
  white-space: nowrap;
  text-align: right;
}

#jt-games {
  background: var(--c-bg-2);
}

.jt-games-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.jt-game-card {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition:
    border-color var(--tr),
    transform var(--tr),
    box-shadow var(--tr);
  cursor: pointer;
}
.jt-game-card:hover {
  border-color: var(--c-accent);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(187, 235, 0, 0.15);
}

.jt-game-img-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--c-btn-dark);
}
.jt-game-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.jt-game-card:hover .jt-game-img-wrap img {
  transform: scale(1.05);
}
.jt-game-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--tr);
}
.jt-game-card:hover .jt-game-overlay {
  opacity: 1;
}

.jt-game-info {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.jt-game-name {
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-head);
  color: var(--c-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.jt-game-provider {
  font-size: 11px;
  color: var(--c-text-muted);
}

.jt-games-slider-wrap {
  display: none;
}

#jt-demo {
  background: var(--c-bg);
}

.jt-demo-wrap {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 24px;
  align-items: start;
}

.jt-demo-iframe-wrap {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  position: relative;
  aspect-ratio: 16/9;
}
.jt-demo-iframe-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.jt-demo-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.jt-demo-info {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.jt-demo-game-name {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  color: var(--c-text);
  margin-bottom: 8px;
}
.jt-demo-provider {
  font-size: 13px;
  color: var(--c-text-muted);
  margin-bottom: 16px;
}
.jt-demo-props {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.jt-demo-prop {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--c-border);
}
.jt-demo-prop:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.jt-demo-prop span:first-child {
  color: var(--c-text-muted);
}
.jt-demo-prop strong {
  color: var(--c-text);
  font-weight: 600;
}

.jt-demo-cta {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
}
.jt-demo-cta-title {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 8px;
}
.jt-demo-cta-sub {
  font-size: 13px;
  color: var(--c-text-muted);
  margin-bottom: 16px;
  line-height: 1.5;
}
.jt-demo-cta .jt-btn {
  width: 100%;
  margin-bottom: 8px;
}

#jt-review {
  background: var(--c-bg-2);
}

.jt-review-wrap {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 32px;
  align-items: start;
}

.jt-review-content {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.jt-review-content h1,
.jt-review-content h2,
.jt-review-content h3,
.jt-review-content h4,
.jt-review-content h5 {
  font-family: var(--font-head);
  color: var(--c-text);
  margin: 24px 0 12px;
  line-height: 1.3;
}
.jt-review-content h1 {
  font-size: 26px;
  font-weight: 900;
}
.jt-review-content h2 {
  font-size: 22px;
  font-weight: 800;
  border-bottom: 1px solid var(--c-border);
  padding-bottom: 10px;
}
.jt-review-content h3 {
  font-size: 18px;
  font-weight: 700;
}
.jt-review-content h4 {
  font-size: 16px;
  font-weight: 700;
}
.jt-review-content p {
  color: var(--c-text);
  line-height: 1.75;
  margin-bottom: 14px;
  font-size: 15px;
}
.jt-review-content ul,
.jt-review-content ol {
  padding-left: 24px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.jt-review-content li {
  color: var(--c-text);
  font-size: 15px;
  line-height: 1.65;
}
.jt-review-content li::marker {
  color: var(--c-accent);
}
.jt-review-content a {
  color: var(--c-accent);
}
.jt-review-content strong {
  color: var(--c-accent);
  font-weight: 700;
}
.jt-review-content em {
  color: var(--c-text-muted);
}
.jt-review-content blockquote {
  border-left: 3px solid var(--c-accent);
  padding: 12px 20px;
  background: rgba(187, 235, 0, 0.06);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 20px 0;
  font-style: italic;
  color: var(--c-text-muted);
}
.jt-review-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 14px;
}
.jt-review-content table th {
  background: var(--c-btn-dark);
  color: var(--c-text);
  padding: 10px 14px;
  text-align: left;
  font-weight: 700;
  border: 1px solid var(--c-border-light);
}
.jt-review-content table td {
  padding: 10px 14px;
  color: var(--c-text);
  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 img {
  max-width: 100%;
  border-radius: var(--radius-md);
  margin: 16px 0;
}

.jt-author-card {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.jt-author-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--c-btn-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  color: var(--c-accent);
  font-family: var(--font-head);
  border: 2px solid var(--c-border-light);
}
.jt-author-name {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 800;
  color: var(--c-text);
}
.jt-author-role {
  font-size: 13px;
  color: var(--c-accent);
  font-weight: 600;
  margin-top: 2px;
}
.jt-author-bio {
  font-size: 13px;
  color: var(--c-text-muted);
  line-height: 1.6;
}
.jt-author-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-accent);
  text-decoration: none;
  transition: color var(--tr);
}
.jt-author-link:hover {
  color: var(--c-accent-hover);
}

.jt-review-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 84px;
}

.jt-rating-card {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
}
.jt-rating-score {
  font-family: var(--font-head);
  font-size: 52px;
  font-weight: 900;
  color: var(--c-accent);
  line-height: 1;
  margin-bottom: 6px;
}
.jt-rating-stars {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--c-accent);
}
.jt-rating-label {
  font-size: 13px;
  color: var(--c-text-muted);
  margin-bottom: 18px;
}
.jt-rating-rows {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}
.jt-rating-row {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.jt-rating-row-label {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--c-text-muted);
}
.jt-rating-row-label span:last-child {
  color: var(--c-text);
  font-weight: 600;
}
.jt-rating-bar {
  height: 4px;
  background: var(--c-btn-dark);
  border-radius: 2px;
  overflow: hidden;
}
.jt-rating-fill {
  height: 100%;
  background: var(--c-accent);
  border-radius: 2px;
}

#jt-faq {
  background: var(--c-bg);
}

.jt-faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.jt-faq-item {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--tr);
}
.jt-faq-item.is-open {
  border-color: var(--c-border-light);
}

.jt-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
}
.jt-faq-q-text {
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-head);
  color: var(--c-text);
  line-height: 1.4;
}
.jt-faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--c-btn-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    background var(--tr),
    transform var(--tr);
}
.jt-faq-icon svg {
  color: var(--c-accent);
}
.jt-faq-item.is-open .jt-faq-icon {
  background: var(--c-accent);
  transform: rotate(45deg);
}
.jt-faq-item.is-open .jt-faq-icon svg {
  color: #0a0b0c;
}

.jt-faq-a {
  display: none;
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--c-text-muted);
  line-height: 1.7;
}
.jt-faq-item.is-open .jt-faq-a {
  display: block;
}

#jt-footer {
  background: var(--c-bg-2);
  border-top: 1px solid var(--c-border);
}

.jt-footer-top {
  display: grid;
  grid-template-columns: 240px 1fr 1fr 1fr;
  gap: 40px;
  padding: 56px 0 40px;
}

.jt-footer-brand {
}
.jt-footer-logo {
  margin-bottom: 14px;
}
.jt-footer-logo img {
  height: 34px;
}
.jt-footer-desc {
  font-size: 13px;
  color: var(--c-text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.jt-footer-col-title {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 16px;
}
.jt-footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.jt-footer-links a {
  font-size: 14px;
  color: var(--c-text-muted);
  text-decoration: none;
  transition: color var(--tr);
}
.jt-footer-links a:hover {
  color: var(--c-text);
}

.jt-footer-mid {
  padding: 24px 0;
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.jt-footer-logos-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.jt-footer-logos-label {
  font-size: 12px;
  color: var(--c-text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  min-width: 100px;
}
.jt-logo-badge {
  background: var(--c-btn-dark);
  border: 1px solid var(--c-border-light);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--c-text);
  white-space: nowrap;
  font-family: var(--font-head);
}

.jt-footer-bot {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.jt-footer-copy {
  font-size: 12px;
  color: var(--c-text-dim);
  line-height: 1.5;
}
.jt-footer-legal {
  font-size: 11px;
  color: var(--c-text-dim);
  max-width: 580px;
  line-height: 1.5;
  text-align: right;
}

#jt-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(11, 12, 13, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--c-border);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
#jt-widget.is-visible {
  transform: translateY(0);
}

.jt-widget-text {
  display: flex;
  flex-direction: column;
}
.jt-widget-bonus {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 900;
  color: var(--c-accent);
}
.jt-widget-sub {
  font-size: 12px;
  color: var(--c-text-muted);
}
.jt-widget-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.jt-widget-close {
  background: none;
  border: none;
  color: var(--c-text-muted);
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  padding: 4px;
  transition: color var(--tr);
}
.jt-widget-close:hover {
  color: var(--c-text);
}

.wp-block-separator {
  display: none;
}
#wpadminbar {
  display: none !important;
}
.elementor-hidden {
  display: none;
  visibility: hidden;
}
.wp-content {
  visibility: hidden;
  height: 0;
  overflow: hidden;
}
.yoast-schema-graph {
  display: none;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.jt-animate {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}
.jt-animate.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .jt-games-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .jt-footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .jt-demo-wrap {
    grid-template-columns: 1fr;
  }
  .jt-demo-side {
    flex-direction: row;
  }
  .jt-demo-info,
  .jt-demo-cta {
    flex: 1;
  }
  .jt-review-wrap {
    grid-template-columns: 1fr;
  }
  .jt-review-sidebar {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .jt-rating-card,
  .jt-author-card {
    flex: 1;
    min-width: 260px;
  }
}

@media (max-width: 900px) {
  .jt-header-inner {
    grid-template-columns: auto 1fr auto;
  }
  .jt-nav {
    display: none;
  }
  .jt-burger {
    display: flex;
  }
  .jt-online-count {
    display: none;
  }
}

@media (max-width: 768px) {
  .jt-section {
    padding: 40px 0;
  }
  .jt-games-grid {
    display: none;
  }
  .jt-games-slider-wrap {
    display: block;
  }
  .jt-games-slider {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
    scroll-snap-type: x mandatory;
  }
  .jt-games-slider::-webkit-scrollbar {
    display: none;
  }
  .jt-games-slider .jt-game-card {
    min-width: 160px;
    max-width: 160px;
    flex-shrink: 0;
    scroll-snap-align: start;
  }
  .jt-footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .jt-footer-bot {
    flex-direction: column;
    align-items: flex-start;
  }
  .jt-footer-legal {
    text-align: left;
  }
  .jt-hero-content {
    padding: 60px 0;
  }
  .jt-winners-grid {
    grid-template-columns: 1fr;
  }
  .jt-demo-side {
    flex-direction: column;
  }
  .jt-review-content {
    padding: 20px;
  }
  .jt-review-sidebar {
    flex-direction: column;
  }
  .jt-widget-text .jt-widget-sub {
    display: none;
  }
}

@media (max-width: 480px) {
  .jt-footer-top {
    grid-template-columns: 1fr;
  }
  .jt-hero-btns {
    flex-direction: column;
    align-items: flex-start;
  }
  .jt-hero-btns .jt-btn {
    width: 100%;
  }
}
