@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Montserrat:wght@400;600;700;800;900&display=swap");

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

:root {
  --c-bg: #0b0c0d;
  --c-surface: #13151a;
  --c-surface2: #1a1d24;
  --c-border: #252830;
  --c-btn-dark: #1f2021;
  --c-btn-accent: #bbeb00;
  --c-text: #f0f2f5;
  --c-text-muted: #8a9bb0;
  --c-green: #bbeb00;
  --c-green-dim: #99c200;
  --c-red: #ff4d4d;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.55);
  --shadow-lg: 0 8px 48px rgba(0, 0, 0, 0.75);
  --transition: 0.25s ease;
}

html {
  scroll-behavior: smooth;
  background: var(--c-bg);
  font-size: 16px;
}
body {
  font-family: "Inter", Arial, sans-serif;
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: var(--c-green);
  transition: color var(--transition);
}
a:hover {
  color: var(--c-green-dim);
}

.xw9k2 {
  display: none;
}
.pq4m7 {
  visibility: hidden;
  height: 0;
  overflow: hidden;
}
.fz8r3 {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
}

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

.jt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: var(--radius-sm);
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.4px;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}
.jt-btn--dark {
  background: var(--c-btn-dark);
  color: var(--c-text);
  border: 1px solid var(--c-border);
}
.jt-btn--dark:hover {
  background: #2a2d2e;
  color: var(--c-text);
  border-color: #3a3d40;
}
.jt-btn--accent {
  background: var(--c-btn-accent);
  color: #0b0c0d;
  border: 1px solid var(--c-btn-accent);
}
.jt-btn--accent:hover {
  background: #ccff00;
  color: #0b0c0d;
  box-shadow: 0 0 18px rgba(187, 235, 0, 0.45);
}
.jt-btn--lg {
  padding: 15px 36px;
  font-size: 16px;
  border-radius: var(--radius-md);
}
.jt-btn--sm {
  padding: 8px 16px;
  font-size: 12px;
}

.jt-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.jt-badge--green {
  background: rgba(187, 235, 0, 0.15);
  color: var(--c-green);
  border: 1px solid rgba(187, 235, 0, 0.3);
}
.jt-badge--red {
  background: rgba(255, 77, 77, 0.12);
  color: var(--c-red);
  border: 1px solid rgba(255, 77, 77, 0.25);
}

.jt-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--c-green);
}

.jt-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  color: var(--c-text);
  line-height: 1.2;
  letter-spacing: -0.3px;
}
.jt-title--xl {
  font-size: clamp(32px, 5vw, 56px);
}
.jt-title--lg {
  font-size: clamp(24px, 3.5vw, 40px);
}
.jt-title--md {
  font-size: clamp(20px, 2.5vw, 28px);
}
.jt-title--sm {
  font-size: 20px;
}

.jt-sep {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}
.jt-sep-line {
  flex: 1;
  height: 1px;
  background: var(--c-border);
}

.jt-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}
.jt-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

header.jt-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--c-bg);
  border-bottom: 1px solid var(--c-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.jt-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px 0;
}
.jt-logo {
  display: flex;
  align-items: center;
}
.jt-logo img {
  height: 40px;
  width: auto;
}
.jt-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  list-style: none;
}
.jt-nav a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--c-text-muted);
  transition: all var(--transition);
}
.jt-nav a:hover {
  color: var(--c-text);
  background: var(--c-surface);
}
.jt-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.jt-online {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--c-text-muted);
  margin-right: 8px;
}
.jt-online__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--c-green);
  box-shadow: 0 0 6px var(--c-green);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.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(--c-text);
  border-radius: 2px;
  transition: all var(--transition);
}
.jt-burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.jt-burger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.jt-burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.jt-mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--c-bg);
  z-index: 999;
  padding: 80px 20px 32px;
  flex-direction: column;
  gap: 12px;
  overflow-y: auto;
}
.jt-mobile-nav.is-open {
  display: flex;
}
.jt-mobile-nav a {
  padding: 14px 18px;
  border-radius: var(--radius-md);
  font-size: 16px;
  font-weight: 500;
  color: var(--c-text-muted);
  border: 1px solid var(--c-border);
  transition: all var(--transition);
}
.jt-mobile-nav a:hover {
  color: var(--c-text);
  background: var(--c-surface);
  border-color: var(--c-green);
}
.jt-mobile-nav__btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.jt-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0b0c0d;
}
.jt-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url("/banner.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.45;
}
.jt-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(11, 12, 13, 0.95) 35%,
    rgba(11, 12, 13, 0.4) 100%
  );
}
.jt-hero__content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: 80px 0;
}
.jt-hero__bonus {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(187, 235, 0, 0.12);
  border: 1px solid rgba(187, 235, 0, 0.35);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-green);
  margin-bottom: 20px;
}
.jt-hero__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 4.5vw, 52px);
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.jt-hero__title span {
  color: var(--c-green);
}
.jt-hero__sub {
  font-size: 16px;
  color: var(--c-text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}
.jt-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.jt-hero__stats {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.jt-hero__stat strong {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--c-green);
}
.jt-hero__stat span {
  font-size: 12px;
  color: var(--c-text-muted);
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.jt-advantages {
  background: var(--c-surface);
}
.jt-advantages__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.jt-adv-card {
  background: var(--c-surface2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.jt-adv-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--c-green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.jt-adv-card:hover::before {
  transform: scaleX(1);
}
.jt-adv-card:hover {
  border-color: rgba(187, 235, 0, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}
.jt-adv-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(187, 235, 0, 0.1);
  border: 1px solid rgba(187, 235, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.jt-adv-card__icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--c-green);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.jt-adv-card h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--c-text);
  margin-bottom: 8px;
}
.jt-adv-card p {
  font-size: 13px;
  color: var(--c-text-muted);
  line-height: 1.6;
}

.jt-pros-cons__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.jt-pros-card {
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid;
}
.jt-pros-card--pros {
  background: rgba(187, 235, 0, 0.04);
  border-color: rgba(187, 235, 0, 0.2);
}
.jt-pros-card--cons {
  background: rgba(255, 77, 77, 0.04);
  border-color: rgba(255, 77, 77, 0.2);
}
.jt-pros-card h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.jt-pros-card--pros h3 {
  color: var(--c-green);
}
.jt-pros-card--cons h3 {
  color: var(--c-red);
}
.jt-pros-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.jt-pros-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--c-text-muted);
  line-height: 1.55;
}
.jt-pros-card ul li::before {
  content: "";
  display: block;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  margin-top: 1px;
}
.jt-pros-card--pros ul li::before {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18'%3E%3Ccircle cx='9' cy='9' r='9' fill='%23BBEB00' fill-opacity='.18'/%3E%3Cpath d='M5 9l3 3 5-5' stroke='%23BBEB00' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E")
    no-repeat center;
}
.jt-pros-card--cons ul li::before {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18'%3E%3Ccircle cx='9' cy='9' r='9' fill='%23FF4D4D' fill-opacity='.18'/%3E%3Cpath d='M6 6l6 6M12 6l-6 6' stroke='%23FF4D4D' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E")
    no-repeat center;
}

.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(--c-border);
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
}
.jt-screenshot-item img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.jt-screenshot-item:hover img {
  transform: scale(1.04);
}
.jt-screenshot-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(187, 235, 0, 0.08);
  opacity: 0;
  transition: opacity var(--transition);
}
.jt-screenshot-item:hover::after {
  opacity: 1;
}
.jt-screenshot-item .jt-screenshot-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: linear-gradient(transparent, rgba(11, 12, 13, 0.95));
  font-size: 13px;
  font-weight: 600;
  color: var(--c-text);
  z-index: 1;
}

.jt-screenshots__slider {
  display: none;
  overflow: hidden;
  position: relative;
}
.jt-screens-track {
  display: flex;
  transition: transform 0.4s ease;
  gap: 0;
}
.jt-screens-track .jt-screenshot-item {
  min-width: 100%;
  max-width: 100%;
  flex-shrink: 0;
}
.jt-screens-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
.jt-screens-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--c-border);
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}
.jt-screens-dots button.active {
  background: var(--c-green);
  width: 24px;
  border-radius: 4px;
}

.jt-video-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--c-border);
  aspect-ratio: 16/9;
  max-width: 860px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
}
.jt-video-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.jt-slot-section {
  background: var(--c-surface);
}
.jt-slot-box {
  max-width: 540px;
  margin: 0 auto;
  background: var(--c-surface2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  box-shadow: var(--shadow);
}
.jt-slot-box h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--c-text);
  margin-bottom: 8px;
}
.jt-slot-box .jt-slot-sub {
  font-size: 14px;
  color: var(--c-text-muted);
  margin-bottom: 32px;
}
.jt-reels {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
}
.jt-reel {
  width: 88px;
  height: 100px;
  background: var(--c-bg);
  border: 2px solid var(--c-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
  overflow: hidden;
  position: relative;
  transition: border-color var(--transition);
}
.jt-reel.spinning {
  border-color: var(--c-green);
  animation: reelGlow 0.15s ease infinite alternate;
}
@keyframes reelGlow {
  from {
    box-shadow: none;
  }
  to {
    box-shadow: 0 0 12px rgba(187, 235, 0, 0.5);
  }
}
.jt-reel span {
  display: block;
  transition: transform 0.1s;
}
.jt-spin-btn {
  width: 100%;
  max-width: 240px;
  margin: 0 auto 24px;
  display: block;
}
.jt-slot-result {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
}
.jt-slot-result.hidden {
  display: none;
}
.jt-slot-result--win .jt-result-text {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--c-green);
}
.jt-slot-result--lose .jt-result-text {
  font-size: 15px;
  color: var(--c-text-muted);
}
.jt-slot-win-glow {
  animation: winPulse 1s ease-out;
}
@keyframes winPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(187, 235, 0, 0.6);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(187, 235, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(187, 235, 0, 0);
  }
}

.jt-review-section h2 {
  font-family: "Montserrat", sans-serif;
}
.jt-review-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 0 36px;
  border-bottom: 1px solid var(--c-border);
  margin-bottom: 36px;
}
.jt-review-meta img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--c-border);
}
.jt-review-meta__info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.jt-review-meta__name {
  font-weight: 700;
  font-size: 15px;
  color: var(--c-text);
}
.jt-review-meta__role {
  font-size: 13px;
  color: var(--c-text-muted);
}
.jt-review-meta a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  margin-top: 3px;
}

.jt-content-body {
  font-size: 15px;
  line-height: 1.75;
  color: var(--c-text-muted);
}
.jt-content-body h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 24px;
  color: var(--c-text);
  margin: 36px 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--c-border);
}
.jt-content-body h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--c-text);
  margin: 28px 0 10px;
}
.jt-content-body h4 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--c-text);
  margin: 20px 0 8px;
}
.jt-content-body p {
  margin-bottom: 16px;
}
.jt-content-body ul,
.jt-content-body ol {
  margin: 14px 0 18px 20px;
}
.jt-content-body ul li,
.jt-content-body ol li {
  margin-bottom: 8px;
}
.jt-content-body ul li {
  list-style: none;
  position: relative;
  padding-left: 20px;
}
.jt-content-body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-green);
}
.jt-content-body a {
  color: var(--c-green);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.jt-content-body strong,
.jt-content-body b {
  font-weight: 700;
  color: var(--c-text);
}
.jt-content-body em,
.jt-content-body i {
  font-style: italic;
  color: var(--c-text);
}
.jt-content-body blockquote {
  border-left: 3px solid var(--c-green);
  padding: 14px 20px;
  background: var(--c-surface2);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 20px 0;
  font-style: italic;
  color: var(--c-text-muted);
}
.jt-content-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  overflow-x: auto;
  display: block;
  text-align: left;
}
.jt-content-body table th {
  background: var(--c-surface2);
  color: var(--c-text);
  font-weight: 700;
  padding: 12px 16px;
  border: 1px solid var(--c-border);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.jt-content-body table td {
  padding: 11px 16px;
  border: 1px solid var(--c-border);
  color: var(--c-text-muted);
  font-size: 14px;
  vertical-align: top;
}
.jt-content-body table tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.02);
}
.jt-content-body table tr:hover td {
  background: var(--c-surface);
}
.jt-content-body img {
  border-radius: var(--radius-md);
  margin: 16px 0;
  border: 1px solid var(--c-border);
}
.jt-content-body code {
  background: var(--c-surface2);
  padding: 2px 7px;
  border-radius: 4px;
  font-family: monospace;
  font-size: 13px;
  color: var(--c-green);
  border: 1px solid var(--c-border);
}
.jt-content-body pre {
  background: var(--c-surface2);
  padding: 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--c-border);
  overflow-x: auto;
  margin: 16px 0;
}
.jt-content-body pre code {
  background: none;
  border: none;
  padding: 0;
}
.jt-content-body hr {
  border: none;
  border-top: 1px solid var(--c-border);
  margin: 28px 0;
}

.jt-testimonials {
  background: var(--c-surface);
}
.jt-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}
.jt-testimonial-card {
  background: var(--c-surface2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: transform var(--transition);
}
.jt-testimonial-card:hover {
  transform: translateY(-3px);
}
.jt-testimonial-card__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.jt-testimonial-card__header img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--c-border);
}
.jt-testimonial-card__name {
  font-weight: 700;
  font-size: 14px;
  color: var(--c-text);
}
.jt-testimonial-card__date {
  font-size: 12px;
  color: var(--c-text-muted);
}
.jt-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 10px;
}
.jt-stars svg {
  width: 15px;
  height: 15px;
  fill: var(--c-green);
}
.jt-testimonial-card p {
  font-size: 13px;
  color: var(--c-text-muted);
  line-height: 1.65;
}

.jt-review-form {
  background: var(--c-surface2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  max-width: 600px;
}
.jt-review-form h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--c-text);
  margin-bottom: 24px;
}
.jt-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.jt-form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.jt-form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--c-text-muted);
  letter-spacing: 0.2px;
}
.jt-form-group input,
.jt-form-group textarea {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--c-text);
  font-size: 14px;
  font-family: "Inter", sans-serif;
  transition: border-color var(--transition);
  outline: none;
  width: 100%;
}
.jt-form-group input:focus,
.jt-form-group textarea:focus {
  border-color: var(--c-green);
  box-shadow: 0 0 0 3px rgba(187, 235, 0, 0.08);
}
.jt-form-group textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.6;
}
.jt-form-full {
  grid-column: 1/-1;
}
.jt-form-msg {
  display: none;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  margin-top: 12px;
  align-items: center;
  gap: 8px;
}
.jt-form-msg--success {
  background: rgba(187, 235, 0, 0.1);
  border: 1px solid rgba(187, 235, 0, 0.3);
  color: var(--c-green);
  display: flex;
}

footer.jt-footer {
  background: var(--c-bg);
  border-top: 1px solid var(--c-border);
  padding: 56px 0 32px;
}
.jt-footer__top {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.jt-footer__brand img {
  height: 36px;
  margin-bottom: 14px;
}
.jt-footer__brand p {
  font-size: 13px;
  color: var(--c-text-muted);
  max-width: 280px;
  line-height: 1.65;
}
.jt-footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.jt-footer__links-col h4 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--c-text);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 16px;
}
.jt-footer__links-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.jt-footer__links-col ul a {
  font-size: 13px;
  color: var(--c-text-muted);
  transition: color var(--transition);
}
.jt-footer__links-col ul a:hover {
  color: var(--c-text);
}
.jt-footer__payments {
  margin-bottom: 28px;
}
.jt-footer__payments h4,
.jt-footer__providers h4 {
  font-size: 12px;
  font-weight: 600;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 14px;
}
.jt-footer__logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.jt-pay-logo,
.jt-prov-logo {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--c-text-muted);
  white-space: nowrap;
  transition: all var(--transition);
}
.jt-pay-logo:hover,
.jt-prov-logo:hover {
  border-color: var(--c-green);
  color: var(--c-text);
}
.jt-footer__divider {
  height: 1px;
  background: var(--c-border);
  margin: 28px 0;
}
.jt-footer__bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.jt-footer__copy {
  font-size: 12px;
  color: var(--c-text-muted);
  line-height: 1.7;
  max-width: 640px;
}
.jt-footer__copy a {
  color: var(--c-text-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.jt-footer__license {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.jt-license-badge {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  padding: 7px 14px;
  font-size: 11px;
  color: var(--c-text-muted);
  font-weight: 600;
  letter-spacing: 0.3px;
}

.jt-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: linear-gradient(180deg, transparent, rgba(11, 12, 13, 0.98));
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--c-border);
}
.jt-widget__text {
  font-size: 13px;
  color: var(--c-text-muted);
  line-height: 1.4;
}
.jt-widget__text strong {
  color: var(--c-text);
}
.jt-widget__bonus {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.jt-widget__close {
  background: none;
  border: none;
  color: var(--c-text-muted);
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: color var(--transition);
  font-size: 18px;
  line-height: 1;
}
.jt-widget__close:hover {
  color: var(--c-text);
}

.jt-faq-item {
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 10px;
  transition: border-color var(--transition);
}
.jt-faq-item.open {
  border-color: rgba(187, 235, 0, 0.3);
}
.jt-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  cursor: pointer;
  background: var(--c-surface);
  transition: background var(--transition);
}
.jt-faq-q:hover {
  background: var(--c-surface2);
}
.jt-faq-q span {
  font-weight: 600;
  font-size: 15px;
  color: var(--c-text);
}
.jt-faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  position: relative;
}
.jt-faq-icon::before,
.jt-faq-icon::after {
  content: "";
  position: absolute;
  background: var(--c-green);
  border-radius: 2px;
  transition: transform var(--transition);
}
.jt-faq-icon::before {
  width: 14px;
  height: 2px;
  top: 9px;
  left: 3px;
}
.jt-faq-icon::after {
  width: 2px;
  height: 14px;
  top: 3px;
  left: 9px;
}
.jt-faq-item.open .jt-faq-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}
.jt-faq-a {
  display: none;
  padding: 16px 22px 20px;
  font-size: 14px;
  color: var(--c-text-muted);
  line-height: 1.7;
  background: var(--c-surface);
}
.jt-faq-item.open .jt-faq-a {
  display: block;
}

.jt-announce-bar {
  background: rgba(187, 235, 0, 0.08);
  border-bottom: 1px solid rgba(187, 235, 0, 0.2);
  padding: 9px 0;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-green);
}
.jt-announce-bar a {
  color: var(--c-green);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.jt-wd2f9a {
  display: block;
  height: 0;
  overflow: hidden;
  max-height: 0;
}
.jt-qx3m {
  color: transparent;
  font-size: 0;
  position: absolute;
  pointer-events: none;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.animate-up {
  animation: fadeInUp 0.55s ease both;
}
.animate-fade {
  animation: fadeIn 0.55s ease both;
}

@media (max-width: 1024px) {
  .jt-header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .jt-nav {
    display: none;
  }
  .jt-burger {
    display: flex;
  }
  .jt-header__actions {
    order: 2;
  }
  .jt-header__actions .jt-btn {
    display: none;
  }
  .jt-header__actions .jt-online {
    display: none;
  }
  .jt-pros-cons__grid {
    grid-template-columns: 1fr;
  }
  .jt-footer__top {
    grid-template-columns: 1fr;
  }
  .jt-footer__links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .jt-section {
    padding: 48px 0;
  }
  .jt-screenshots__grid {
    display: none;
  }
  .jt-screenshots__slider {
    display: block;
    overflow: hidden;
  }
  .jt-screens-track {
    gap: 0;
  }
  .jt-screens-track .jt-screenshot-item {
    min-width: 100%;
    max-width: 100%;
    flex-shrink: 0;
  }
  .jt-screens-track .jt-screenshot-item img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    object-position: top center;
  }
  .jt-hero__content {
    padding: 56px 0 40px;
  }
  .jt-hero__stats {
    gap: 20px;
  }
  .jt-widget {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .jt-widget__bonus {
    width: 100%;
    justify-content: space-between;
  }
  .jt-footer__links {
    grid-template-columns: 1fr 1fr;
  }
  .jt-form-grid {
    grid-template-columns: 1fr;
  }
  .jt-advantages__grid {
    grid-template-columns: 1fr 1fr;
  }
  .jt-testimonials__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .jt-advantages__grid {
    grid-template-columns: 1fr;
  }
  .jt-footer__links {
    grid-template-columns: 1fr;
  }
  .jt-footer__bottom {
    flex-direction: column;
  }
  .jt-hero__actions {
    flex-direction: column;
  }
  .jt-hero__actions .jt-btn {
    width: 100%;
    justify-content: center;
  }
  .jt-reels {
    gap: 8px;
  }
  .jt-reel {
    width: 76px;
    height: 88px;
    font-size: 38px;
  }
}
