:root {
  --clr-bg: #0b0c0d;
  --clr-surface: #131416;
  --clr-surface2: #1a1b1e;
  --clr-border: #232428;
  --clr-accent: #bbeb00;
  --clr-accent-dim: #9ec400;
  --clr-btn-dark: #1f2021;
  --clr-text: #e8eaed;
  --clr-text-muted: #9aa0ab;
  --clr-text-dim: #6b7280;
  --clr-white: #ffffff;
  --clr-header: #0b0c0d;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.45);
  --shadow-accent: 0 0 24px rgba(187, 235, 0, 0.18);
  --font-main: "Inter", "Roboto", Arial, sans-serif;
  --font-head: "Montserrat", "Inter", Arial, sans-serif;
  --trans: 0.22s ease;
}

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

html {
  scroll-behavior: smooth;
  background: var(--clr-bg);
  overflow-x: hidden;
}

body {
  background: var(--clr-bg);
  color: var(--clr-text);
  font-family: var(--font-main);
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.xb3k9 {
  display: none;
}

.wp-block-spacer {
  height: 0;
}

.wp-content-placeholder {
  visibility: hidden;
  height: 0;
  overflow: hidden;
}

.q9mx3 {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.jt-wrap {
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  grid-template-columns: minmax(0, 1fr);
  overflow-x: hidden;
  position: relative;
  width: 100%;
  max-width: 100vw;
}

.jt-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  min-width: 0;
}

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

.jt-section-title {
  font-family: var(--font-head);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 8px;
  line-height: 1.25;
}

.jt-section-sub {
  color: var(--clr-text-muted);
  font-size: 15px;
  margin-bottom: 36px;
}

.jt-badge {
  display: inline-block;
  background: rgba(187, 235, 0, 0.12);
  color: var(--clr-accent);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition:
    transform var(--trans),
    box-shadow var(--trans),
    background var(--trans),
    opacity var(--trans);
  text-decoration: none;
  white-space: nowrap;
  padding: 10px 22px;
}

.btn:active {
  transform: scale(0.97);
}

.btn-accent {
  background: var(--clr-accent);
  color: #0b0c0d;
}

.btn-accent:hover {
  background: var(--clr-accent-dim);
  box-shadow: 0 0 20px rgba(187, 235, 0, 0.35);
  transform: translateY(-1px);
}

.btn-dark {
  background: var(--clr-btn-dark);
  color: var(--clr-text);
  border: 1px solid var(--clr-border);
}

.btn-dark:hover {
  background: #282a2d;
  border-color: #3a3d42;
  transform: translateY(-1px);
}

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

.btn-sm {
  padding: 7px 16px;
  font-size: 13px;
}

.jt-header {
  background: var(--clr-header);
  border-bottom: 1px solid var(--clr-border);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  overflow: hidden;
}

.jt-header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px 20px;
  max-width: 1200px;
  margin: 0 auto;
  min-width: 0;
}

.jt-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.jt-logo img {
  height: 40px;
  width: auto;
}

.jt-logo-text {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 20px;
  color: var(--clr-white);
  letter-spacing: -0.02em;
}

.jt-logo-text span {
  color: var(--clr-accent);
}

.jt-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
  flex-wrap: wrap;
}

.jt-nav a {
  color: var(--clr-text-muted);
  font-size: 13.5px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition:
    color var(--trans),
    background var(--trans);
}

.jt-nav a:hover {
  color: var(--clr-white);
  background: rgba(255, 255, 255, 0.06);
}

.jt-nav a.active {
  color: var(--clr-accent);
}

.jt-header-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.jt-online-count {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--clr-text-muted);
  margin-right: 4px;
}

.jt-online-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

.jt-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius-sm);
}

.jt-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition:
    transform var(--trans),
    opacity var(--trans);
}

.jt-burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.jt-burger.open span:nth-child(2) {
  opacity: 0;
}

.jt-burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.jt-mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: var(--clr-surface);
  border-top: 1px solid var(--clr-border);
  padding: 16px 20px;
}

.jt-mobile-menu.open {
  display: flex;
}

.jt-mobile-menu a {
  color: var(--clr-text-muted);
  font-size: 15px;
  font-weight: 500;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  transition:
    color var(--trans),
    background var(--trans);
}

.jt-mobile-menu a:hover {
  color: var(--clr-white);
  background: rgba(255, 255, 255, 0.06);
}

.jt-mobile-menu-btns {
  display: flex;
  gap: 8px;
  padding: 8px 0;
  margin-top: 4px;
  border-top: 1px solid var(--clr-border);
}

.jt-mobile-menu-btns .btn {
  flex: 1;
  justify-content: center;
}

.jt-hero {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
}

.jt-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0b0c0d 0%, #0d1a00 60%, #0b0c0d 100%);
  z-index: 0;
}

.jt-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  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: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
}

.jt-hero-title {
  font-family: var(--font-head);
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--clr-white);
  margin-bottom: 20px;
  max-width: 620px;
}

.jt-hero-title em {
  color: var(--clr-accent);
  font-style: normal;
}

.jt-hero-desc {
  font-size: 16px;
  color: var(--clr-text-muted);
  max-width: 500px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.jt-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.jt-hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.jt-stat {
  display: flex;
  flex-direction: column;
}

.jt-stat-value {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--clr-accent);
}

.jt-stat-label {
  font-size: 12px;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.jt-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition:
    transform var(--trans),
    box-shadow var(--trans),
    border-color var(--trans);
}

.jt-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
  border-color: rgba(187, 235, 0, 0.2);
}

.jt-mirrors {
  background: var(--clr-surface);
  padding: 32px 0;
}

.jt-mirrors-time {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding: 12px 16px;
  background: rgba(187, 235, 0, 0.07);
  border: 1px solid rgba(187, 235, 0, 0.18);
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--clr-accent);
}

.jt-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-md);
  border: 1px solid var(--clr-border);
  max-width: 100%;
}

.jt-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.jt-table th {
  background: var(--clr-surface2);
  color: var(--clr-text-muted);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--clr-border);
  white-space: nowrap;
}

.jt-table td {
  padding: 14px 16px;
  color: var(--clr-text);
  border-bottom: 1px solid rgba(35, 36, 40, 0.7);
  text-align: left;
  vertical-align: middle;
}

.jt-table tr:last-child td {
  border-bottom: none;
}

.jt-table tr:hover td {
  background: rgba(255, 255, 255, 0.025);
}

.jt-status-active {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #22c55e;
  font-size: 13px;
  font-weight: 600;
}

.jt-status-active::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(34, 197, 94, 0.7);
}

.jt-mirror-link {
  color: var(--clr-accent);
}

.jt-screenshots {
  padding: 64px 0;
}

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

.jt-screenshot-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--clr-border);
  cursor: pointer;
  transition:
    transform var(--trans),
    box-shadow var(--trans);
}

.jt-screenshot-item:hover {
  transform: scale(1.025);
  box-shadow: var(--shadow-card);
}

.jt-screenshot-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.jt-screenshots-slider {
  display: none;
}

.jt-slide-img {
  width: 100%;
  border-radius: 12px;
}

.jt-slide img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: contain;
}

.jt-app-info {
  background: var(--clr-surface);
  padding: 64px 0;
}

.jt-app-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.jt-app-table-wrap {
  margin-bottom: 24px;
}

.jt-app-desc {
  color: var(--clr-text-muted);
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 20px;
}

.jt-app-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.jt-app-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--clr-surface2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 10px 18px;
  color: var(--clr-text);
  transition:
    border-color var(--trans),
    transform var(--trans),
    background var(--trans);
  text-decoration: none;
}

.jt-app-btn:hover {
  border-color: var(--clr-accent);
  background: rgba(187, 235, 0, 0.06);
  transform: translateY(-2px);
}

.jt-app-btn-icon {
  font-size: 22px;
  line-height: 1;
}

.jt-app-btn-text small {
  display: block;
  font-size: 10px;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.jt-app-btn-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
}

.jt-slots {
  padding: 64px 0;
}

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

.jt-slots-slider {
  display: none;
}

.jt-slot-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform var(--trans),
    box-shadow var(--trans),
    border-color var(--trans);
}

.jt-slot-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: rgba(187, 235, 0, 0.25);
}

.jt-slot-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.jt-slot-info {
  padding: 10px 12px 12px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.jt-slot-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--clr-white);
  line-height: 1.3;
}

.jt-slot-provider {
  font-size: 10px;
  color: var(--clr-text-muted);
}

.jt-slot-info .btn {
  margin-top: auto;
  width: 100%;
}

.jt-slide--slot {
  padding: 0 4px;
}

.jt-wheel-section {
  background: var(--clr-surface);
  padding: 64px 0;
}

.jt-wheel-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.jt-wheel-canvas-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

#jt-wheel-canvas {
  border-radius: 50%;
  box-shadow:
    0 0 40px rgba(187, 235, 0, 0.2),
    0 0 80px rgba(187, 235, 0, 0.08);
  max-width: 320px;
  width: 100%;
}

.jt-spin-btn {
  min-width: 200px;
}

.jt-wheel-pointer {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 28px solid var(--clr-accent);
  filter: drop-shadow(0 2px 6px rgba(187, 235, 0, 0.5));
}

.jt-wheel-result {
  display: none;
  text-align: center;
  animation: fadeInUp 0.4s ease;
}

.jt-wheel-result.show {
  display: block;
}

.jt-wheel-result-title {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--clr-accent);
  margin-bottom: 8px;
}

.jt-wheel-result-text {
  font-size: 15px;
  color: var(--clr-text-muted);
  margin-bottom: 18px;
}

.jt-wheel-get-btn {
  display: none;
}

.jt-wheel-info {
  margin-top: 24px;
}

.jt-wheel-info-text {
  color: var(--clr-text-muted);
  font-size: 14px;
  margin-bottom: 16px;
  line-height: 1.7;
}

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

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

.jt-content-inner {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
}

.jt-content-inner h2 {
  font-family: var(--font-head);
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 700;
  color: var(--clr-white);
  margin: 28px 0 12px;
  line-height: 1.3;
}

.jt-content-inner h2:first-child {
  margin-top: 0;
}

.jt-content-inner h3 {
  font-family: var(--font-head);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 600;
  color: var(--clr-white);
  margin: 22px 0 10px;
}

.jt-content-inner h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--clr-text);
  margin: 18px 0 8px;
}

.jt-content-inner p {
  color: var(--clr-text);
  line-height: 1.75;
  margin-bottom: 16px;
}

.jt-content-inner ul,
.jt-content-inner ol {
  margin: 12px 0 18px 22px;
  color: var(--clr-text);
  line-height: 1.75;
}

.jt-content-inner li {
  margin-bottom: 7px;
}

.jt-content-inner table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 14px;
  overflow-x: auto;
  display: block;
  max-width: 100%;
}

.jt-content-inner table th {
  background: var(--clr-surface2);
  color: var(--clr-text-muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 10px 14px;
  text-align: left;
  border: 1px solid var(--clr-border);
}

.jt-content-inner table td {
  padding: 10px 14px;
  color: var(--clr-text);
  border: 1px solid var(--clr-border);
  text-align: left;
}

.jt-content-inner a {
  color: var(--clr-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.jt-content-inner a:hover {
  color: var(--clr-accent-dim);
}

.jt-content-inner blockquote {
  border-left: 3px solid var(--clr-accent);
  padding: 12px 18px;
  background: rgba(187, 235, 0, 0.05);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 18px 0;
  color: var(--clr-text-muted);
}

.jt-content-inner strong {
  color: var(--clr-white);
}

.jt-content-inner hr {
  border: none;
  border-top: 1px solid var(--clr-border);
  margin: 28px 0;
}

.jt-author {
  padding: 56px 0;
}

.jt-author-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: start;
}

.jt-author-photo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(187, 235, 0, 0.3);
  flex-shrink: 0;
}

.jt-author-name {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 4px;
}

.jt-author-role {
  font-size: 13px;
  color: var(--clr-accent);
  font-weight: 500;
  margin-bottom: 14px;
}

.jt-author-bio {
  font-size: 14px;
  color: var(--clr-text-muted);
  line-height: 1.7;
  margin-bottom: 18px;
}

.jt-author-socials {
  display: flex;
  gap: 10px;
}

.jt-author-social {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--clr-text-muted);
  background: var(--clr-surface2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 6px 14px;
  transition:
    color var(--trans),
    border-color var(--trans);
  text-decoration: none;
}

.jt-author-social:hover {
  color: var(--clr-accent);
  border-color: rgba(187, 235, 0, 0.35);
}

.jt-footer {
  background: var(--clr-header);
  border-top: 1px solid var(--clr-border);
  padding: 48px 0 24px;
}

.jt-footer-top {
  display: grid;
  grid-template-columns: 240px 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--clr-border);
  margin-bottom: 32px;
}

.jt-footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.jt-footer-logo img {
  height: 36px;
  width: auto;
}

.jt-footer-desc {
  font-size: 13px;
  color: var(--clr-text-dim);
  line-height: 1.65;
}

.jt-footer-nav-title {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--clr-text-muted);
  margin-bottom: 14px;
}

.jt-footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.jt-footer-nav-list a {
  font-size: 13.5px;
  color: var(--clr-text-dim);
  transition: color var(--trans);
}

.jt-footer-nav-list a:hover {
  color: var(--clr-accent);
}

.jt-footer-payments {
  margin-bottom: 24px;
}

.jt-footer-block-title {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--clr-text-muted);
  margin-bottom: 14px;
}

.jt-payment-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.jt-payment-badge {
  background: var(--clr-surface2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--clr-text-muted);
  letter-spacing: 0.04em;
}

.jt-provider-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.jt-footer-bottom {
  text-align: center;
  font-size: 12px;
  color: var(--clr-text-dim);
  line-height: 1.7;
}

.jt-footer-bottom a {
  color: var(--clr-text-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.jt-footer-bottom a:hover {
  color: var(--clr-accent);
}

.jt-footer-license {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--clr-border);
  font-size: 11px;
  color: var(--clr-text-dim);
}

.jt-widget {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  background: linear-gradient(135deg, #1a1e00, #2a3000);
  border: 1px solid rgba(187, 235, 0, 0.35);
  border-radius: var(--radius-lg);
  padding: 14px 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow:
    0 8px 40px rgba(0, 0, 0, 0.6),
    0 0 30px rgba(187, 235, 0, 0.12);
  max-width: 520px;
  width: calc(100% - 32px);
  animation: slideUp 0.5s ease;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.jt-widget-close {
  position: absolute;
  top: 8px;
  right: 12px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--clr-text-muted);
  font-size: 16px;
  line-height: 1;
  transition: color var(--trans);
}

.jt-widget-close:hover {
  color: var(--clr-white);
}

.jt-widget-text {
  flex: 1;
  min-width: 0;
}

.jt-widget-bonus {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--clr-accent);
  font-weight: 600;
  margin-bottom: 2px;
}

.jt-widget-desc {
  font-size: 14px;
  color: var(--clr-white);
  font-weight: 600;
  line-height: 1.3;
}

.jt-widget-sub {
  font-size: 11px;
  color: var(--clr-text-muted);
  margin-top: 2px;
}

.jt-widget-get-btn {
  flex-shrink: 0;
}

.jt-slider {
  position: relative;
  overflow: hidden;
}

.jt-slides {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.jt-slide {
  min-width: 100%;
}

.jt-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(11, 12, 13, 0.8);
  border: 1px solid var(--clr-border);
  color: var(--clr-text);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background var(--trans),
    border-color var(--trans);
  z-index: 5;
  font-size: 18px;
  line-height: 1;
}

.jt-slider-btn:hover {
  background: rgba(187, 235, 0, 0.15);
  border-color: var(--clr-accent);
}

.jt-slider-btn-prev {
  left: 12px;
}

.jt-slider-btn-next {
  right: 12px;
}

.jt-slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.jt-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clr-border);
  cursor: pointer;
  transition:
    background var(--trans),
    transform var(--trans);
}

.jt-dot.active {
  background: var(--clr-accent);
  transform: scale(1.3);
}

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

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

.fade-in.visible {
  opacity: 1;
  transform: none;
}

.jt-promo-block {
  background: linear-gradient(
    135deg,
    rgba(187, 235, 0, 0.08) 0%,
    rgba(187, 235, 0, 0.03) 100%
  );
  border: 1px solid rgba(187, 235, 0, 0.2);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  margin-top: 40px;
}

.jt-promo-block-btn {
  flex-shrink: 0;
}

.jt-promo-title {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--clr-white);
  margin-bottom: 8px;
}

.jt-promo-sub {
  font-size: 14px;
  color: var(--clr-text-muted);
}

.jt-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.jt-features-grid--2col {
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.jt-features-grid--compact {
  gap: 12px;
}

.jt-feature-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 24px;
  transition:
    border-color var(--trans),
    transform var(--trans);
}

.jt-feature-card:hover {
  border-color: rgba(187, 235, 0, 0.25);
  transform: translateY(-2px);
}

.jt-feature-icon {
  font-size: 28px;
  margin-bottom: 14px;
  line-height: 1;
}

.jt-feature-title {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 8px;
}

.jt-feature-title--accent {
  color: var(--clr-accent);
  font-size: 18px;
  font-weight: 800;
}

.jt-feature-text {
  font-size: 13px;
  color: var(--clr-text-muted);
  line-height: 1.65;
}

.jt-activate-btn {
  margin-top: 8px;
}

.jt-promos-section {
  padding: 64px 0;
  background: var(--clr-surface);
}

.jt-promos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.jt-promo-card {
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition:
    border-color var(--trans),
    transform var(--trans);
}

.jt-promo-card:hover {
  border-color: rgba(187, 235, 0, 0.25);
  transform: translateY(-2px);
}

.jt-promo-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(187, 235, 0, 0.1);
  color: var(--clr-accent);
  padding: 3px 10px;
  border-radius: 4px;
  align-self: flex-start;
}

.jt-promo-card-title {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--clr-white);
}

.jt-promo-card-desc {
  font-size: 13px;
  color: var(--clr-text-muted);
  line-height: 1.6;
}

.jt-promo-card-amount {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 800;
  color: var(--clr-accent);
}

.jt-bonus-code-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--clr-surface2);
  border: 1px dashed rgba(187, 235, 0, 0.4);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  margin-top: 4px;
}

.jt-bonus-code {
  font-family: "Roboto Mono", monospace;
  font-size: 16px;
  font-weight: 700;
  color: var(--clr-accent);
  letter-spacing: 0.08em;
  flex: 1;
}

.jt-copy-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--clr-text-muted);
  font-size: 13px;
  transition: color var(--trans);
  padding: 4px 8px;
  border-radius: 4px;
}

.jt-copy-btn:hover {
  color: var(--clr-accent);
  background: rgba(187, 235, 0, 0.08);
}

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

.jt-faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 36px;
}

.jt-faq-item {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--trans);
}

.jt-faq-item.open {
  border-color: rgba(187, 235, 0, 0.25);
}

.jt-faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 18px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--clr-white);
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  transition: color var(--trans);
}

.jt-faq-q:hover {
  color: var(--clr-accent);
}

.jt-faq-chevron {
  font-size: 18px;
  transition: transform var(--trans);
  color: var(--clr-accent);
  flex-shrink: 0;
}

.jt-faq-item.open .jt-faq-chevron {
  transform: rotate(180deg);
}

.jt-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.jt-faq-item.open .jt-faq-a {
  max-height: 500px;
}

.jt-faq-a-inner {
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--clr-text-muted);
  line-height: 1.75;
}

.jt-h1-hidden {
  font-family: var(--font-head);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 24px;
}

.wp-block-group {
  display: block;
}

.wp-block-columns {
  display: block;
}

.elementor-section {
  display: none;
}

.wp-caption {
  margin: 0;
}

@media (max-width: 1024px) {
  .jt-slots-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
  .jt-footer-top {
    grid-template-columns: 1fr 1fr !important;
  }
  .jt-footer-top > :first-child {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .jt-section {
    padding: 44px 0 !important;
  }
  .jt-container {
    padding: 0 16px !important;
  }
  .jt-header-inner {
    grid-template-columns: 1fr auto !important;
    gap: 12px !important;
  }
  .jt-nav {
    display: none !important;
  }
  .jt-burger {
    display: flex !important;
  }
  .jt-online-count {
    display: none !important;
  }
  .jt-hero {
    min-height: auto !important;
  }
  .jt-hero-overlay {
    background: rgba(11, 12, 13, 0.88) !important;
  }
  .jt-hero-content {
    padding: 48px 16px !important;
  }
  .jt-hero-title {
    max-width: 100% !important;
    font-size: clamp(24px, 7vw, 36px) !important;
  }
  .jt-hero-desc {
    max-width: 100% !important;
    font-size: 14px !important;
  }
  .jt-hero-stats {
    gap: 20px !important;
  }
  .jt-screenshots-grid {
    display: none !important;
  }
  .jt-screenshots-slider,
  .jt-slider#jt-screens-slider {
    display: block !important;
  }
  .jt-slide img {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 16 / 9 !important;
    object-fit: contain !important;
    border-radius: 8px !important;
    background: var(--clr-surface);
  }
  .jt-app-grid {
    grid-template-columns: 1fr !important;
  }
  .jt-slots-grid {
    display: none !important;
  }
  .jt-slots-slider,
  .jt-slider#jt-slots-slider {
    display: block !important;
  }
  .jt-wheel-wrap {
    grid-template-columns: 1fr !important;
  }
  #jt-wheel-canvas {
    max-width: 260px !important;
  }
  .jt-content-inner {
    padding: 20px 16px !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
  }
  .jt-content-inner table {
    font-size: 12px !important;
  }
  .jt-content-inner table th,
  .jt-content-inner table td {
    padding: 8px 10px !important;
  }
  .jt-author-card {
    grid-template-columns: 1fr !important;
    text-align: center !important;
    padding: 24px 16px !important;
  }
  .jt-author-photo {
    margin: 0 auto !important;
  }
  .jt-author-socials {
    justify-content: center !important;
    flex-wrap: wrap !important;
  }
  .jt-footer-top {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
  .jt-footer-top > :first-child {
    grid-column: span 1 !important;
  }
  .jt-widget {
    bottom: 12px !important;
    padding: 12px 16px !important;
    gap: 12px !important;
  }
  .jt-promo-block {
    grid-template-columns: 1fr !important;
    text-align: center !important;
    padding: 24px 16px !important;
  }
  .jt-promo-block .btn {
    width: 100% !important;
    justify-content: center !important;
    flex-shrink: 1 !important;
  }
  .jt-features-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
  }
  .jt-features-grid--2col {
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
  }
  .jt-promos-grid {
    grid-template-columns: 1fr !important;
  }
  .jt-promo-card {
    padding: 20px 16px !important;
  }
  .jt-bonus-code-box {
    flex-wrap: wrap !important;
  }
  .jt-table-wrap {
    max-width: 100% !important;
    overflow-x: auto !important;
  }
  .jt-mirrors-time {
    font-size: 12px !important;
    flex-wrap: wrap !important;
  }
  .jt-payment-logos {
    gap: 6px !important;
  }
  .jt-payment-badge {
    padding: 5px 10px !important;
    font-size: 11px !important;
  }
  .jt-feature-card {
    padding: 16px !important;
  }
  .jt-promo-title {
    font-size: 18px !important;
  }
}

@media (max-width: 480px) {
  .jt-hero-content {
    padding: 36px 16px !important;
  }
  .jt-hero-actions {
    flex-direction: column !important;
  }
  .jt-hero-actions .btn {
    width: 100% !important;
    justify-content: center !important;
  }
  .jt-hero-stats {
    flex-direction: column !important;
    gap: 14px !important;
  }
  .jt-app-btns {
    flex-direction: column !important;
  }
  .jt-app-btn {
    justify-content: center !important;
  }
  .jt-header-right .btn-dark {
    display: none !important;
  }
  .jt-features-grid,
  .jt-features-grid--2col {
    grid-template-columns: 1fr !important;
  }
  .jt-promo-card-amount {
    font-size: 22px !important;
  }
  .jt-section-title {
    font-size: clamp(18px, 5vw, 26px) !important;
  }
  .jt-widget {
    flex-direction: column !important;
    text-align: center !important;
    gap: 10px !important;
  }
  .jt-widget .btn {
    width: 100% !important;
    flex-shrink: 1 !important;
  }
  .jt-author-social {
    font-size: 12px !important;
    padding: 5px 10px !important;
  }
  .jt-faq-q {
    font-size: 13px !important;
    padding: 14px 16px !important;
  }
  .jt-bonus-code-box {
    flex-direction: column !important;
    align-items: stretch !important;
  }
  .jt-bonus-code {
    text-align: center !important;
  }
  .jt-copy-btn {
    text-align: center !important;
  }
  #jt-wheel-canvas {
    max-width: 220px !important;
  }
  .jt-table th:nth-child(4),
  .jt-table td:nth-child(4),
  .jt-table th:nth-child(5),
  .jt-table td:nth-child(5) {
    display: none !important;
  }
}
