:root {
  --clr-bg: #0b0c0d;
  --clr-bg2: #111315;
  --clr-bg3: #181a1c;
  --clr-card: #161819;
  --clr-border: #252729;
  --clr-accent: #bbeb00;
  --clr-accent-hover: #d0ff00;
  --clr-btn-dark: #1f2021;
  --clr-text: #e8eaec;
  --clr-text-muted: #8a9099;
  --clr-text-dim: #5a6170;
  --clr-white: #ffffff;
  --clr-header: #0b0c0d;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --shadow-card: 0 2px 20px rgba(0, 0, 0, 0.5);
  --transition: 0.22s ease;
  --font-main: "Inter", "Roboto", Arial, sans-serif;
  --font-head: "Montserrat", "Inter", Arial, sans-serif;
}

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

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

body {
  font-family: var(--font-main);
  background: var(--clr-bg);
  color: var(--clr-text);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.x7k2m {
  display: none;
}

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

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

.jt-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
}
.jt-btn:active {
  transform: translateY(0);
}

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

.jt-btn--login:hover {
  background: #2a2c2e;
  color: var(--clr-text);
}

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

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

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

.jt-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  background: var(--clr-accent);
  color: #0b0c0d;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

#jt-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--clr-header);
  border-bottom: 1px solid var(--clr-border);
  backdrop-filter: blur(10px);
}

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

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

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

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

.jt-nav a:hover {
  background: var(--clr-bg3);
  color: var(--clr-text);
}

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

.jt-online-count {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--clr-text-muted);
  padding: 5px 12px;
  background: var(--clr-bg3);
  border-radius: 20px;
  border: 1px solid var(--clr-border);
}

.jt-online-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 6px #4ade80;
  animation: jt-pulse 2s infinite;
}

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

.jt-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: var(--clr-bg3);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 8px;
}

.jt-burger span {
  display: block;
  height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: all 0.25s;
}

.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;
  flex-direction: column;
  gap: 4px;
  padding: 12px 20px 16px;
  background: var(--clr-header);
  border-top: 1px solid var(--clr-border);
}

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

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

.jt-mobile-menu a:hover {
  background: var(--clr-bg3);
  color: var(--clr-text);
}

#jt-hero {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  background: var(--clr-bg2);
}

.jt-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("/ttban.jpeg");
  background-size: cover;
  background-position: center;
  filter: brightness(0.35);
  transform: scale(1.03);
  transition: transform 8s ease;
}

#jt-hero:hover .jt-hero-bg {
  transform: scale(1.06);
}

.jt-hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 80%,
    rgba(187, 235, 0, 0.08) 0%,
    transparent 70%
  );
}

.jt-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: center;
  text-align: center;
  padding: 90px 20px 80px;
  max-width: 800px;
  margin: 0 auto;
}

.jt-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(187, 235, 0, 0.1);
  border: 1px solid rgba(187, 235, 0, 0.25);
  color: var(--clr-accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.jt-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--clr-white);
  line-height: 1.15;
  margin-bottom: 18px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
}

.jt-hero h1 span {
  color: var(--clr-accent);
}

.jt-hero-sub {
  color: rgba(232, 234, 236, 0.75);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 560px;
}

.jt-hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 36px;
}

.jt-hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}

.jt-hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

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

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

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

.jt-section-title {
  font-family: var(--font-head);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 8px;
}

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

.jt-section-head {
  margin-bottom: 36px;
}

.jt-divider {
  width: 44px;
  height: 3px;
  background: var(--clr-accent);
  border-radius: 2px;
  margin: 10px 0 0;
}

.jt-info-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-card);
}

.jt-info-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
}

.jt-info-table tr {
  transition: background var(--transition);
}
.jt-info-table tr:hover {
  background: rgba(187, 235, 0, 0.035);
}
.jt-info-table tr:not(:last-child) td {
  border-bottom: 1px solid var(--clr-border);
}

.jt-info-table td {
  padding: 13px 20px;
  font-size: 14px;
  line-height: 1.5;
  text-align: left;
  vertical-align: middle;
}

.jt-info-table td:first-child {
  color: var(--clr-text-muted);
  font-weight: 500;
  width: 38%;
  background: rgba(255, 255, 255, 0.01);
  white-space: nowrap;
}

.jt-info-table td:last-child {
  color: var(--clr-text);
  font-weight: 600;
}

.jt-info-table td .jt-badge {
  margin-right: 4px;
}

.jt-adv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

.jt-adv-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition:
    border-color var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
}

.jt-adv-card:hover {
  border-color: rgba(187, 235, 0, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(187, 235, 0, 0.07);
}

.jt-adv-icon {
  width: 44px;
  height: 44px;
  background: rgba(187, 235, 0, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 20px;
}

.jt-adv-card h3 {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 8px;
}

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

.jt-winners-wrap {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.jt-winners-head {
  display: grid;
  grid-template-columns: 44px 1fr auto auto;
  align-items: center;
  gap: 14px;
  padding: 12px 20px;
  border-bottom: 1px solid var(--clr-border);
  background: var(--clr-bg3);
}

.jt-winners-head span {
  font-size: 11px;
  font-weight: 700;
  color: var(--clr-text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.jt-winner-row {
  display: grid;
  grid-template-columns: 44px 1fr auto auto;
  align-items: center;
  gap: 14px;
  padding: 12px 20px;
  border-bottom: 1px solid rgba(37, 39, 41, 0.6);
  transition: background var(--transition);
  animation: jt-fadeIn 0.4s ease both;
}

.jt-winner-row:hover {
  background: rgba(187, 235, 0, 0.04);
}
.jt-winner-row:last-child {
  border-bottom: none;
}

@keyframes jt-fadeIn {
  from {
    opacity: 0;
    transform: translateX(-6px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.jt-winner-rank {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--clr-text-dim);
  text-align: center;
}

.jt-winner-rank.top1 {
  color: #ffd700;
}
.jt-winner-rank.top2 {
  color: #c0c0c0;
}
.jt-winner-rank.top3 {
  color: #cd7f32;
}

.jt-winner-name {
  display: flex;
  align-items: center;
  gap: 10px;
}

.jt-winner-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--clr-bg3);
  border: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--clr-accent);
  flex-shrink: 0;
  text-transform: uppercase;
}

.jt-winner-nick {
  font-size: 13px;
  font-weight: 600;
  color: var(--clr-text);
}

.jt-winner-game {
  font-size: 11px;
  color: var(--clr-text-dim);
  margin-top: 1px;
}

.jt-winner-mult {
  font-size: 12px;
  font-weight: 600;
  color: var(--clr-accent);
  text-align: right;
  white-space: nowrap;
}

.jt-winner-amount {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: #4ade80;
  text-align: right;
  white-space: nowrap;
}

.jt-demo-wrap {
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-card);
  background: var(--clr-card);
}

.jt-demo-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: var(--clr-bg3);
  border-bottom: 1px solid var(--clr-border);
}

.jt-demo-top span {
  font-size: 13px;
  font-weight: 600;
  color: var(--clr-text);
}

.jt-demo-iframe-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #000;
}

.jt-demo-iframe-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.jt-demo-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--clr-bg3);
  gap: 16px;
}

.jt-demo-placeholder p {
  color: var(--clr-text-muted);
  font-size: 14px;
}

.jt-review-block {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-card);
}

.jt-author-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: var(--clr-bg3);
  border-radius: var(--radius-md);
  border: 1px solid var(--clr-border);
  margin-bottom: 28px;
}

.jt-author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--clr-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  color: #0b0c0d;
  flex-shrink: 0;
}

.jt-author-info {
  flex: 1;
}

.jt-author-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--clr-white);
}

.jt-author-role {
  font-size: 12px;
  color: var(--clr-text-muted);
  margin-top: 2px;
  line-height: 1.5;
}

.jt-author-link {
  font-size: 12px;
  color: var(--clr-accent);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
  text-decoration: none;
}

.jt-author-link:hover {
  text-decoration: underline;
}

.jt-content-area {
  color: var(--clr-text);
  font-size: 15px;
  line-height: 1.75;
}

.jt-content-area h2 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--clr-white);
  margin: 28px 0 12px;
}

.jt-content-area h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--clr-white);
  margin: 22px 0 10px;
}

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

.jt-content-area p {
  margin: 0 0 14px;
}

.jt-content-area ul,
.jt-content-area ol {
  margin: 0 0 14px 22px;
}

.jt-content-area li {
  margin-bottom: 6px;
}

.jt-content-area a {
  color: var(--clr-accent);
  text-decoration: underline;
}
.jt-content-area a:hover {
  color: var(--clr-accent-hover);
}

.jt-content-area strong {
  color: var(--clr-white);
  font-weight: 600;
}
.jt-content-area em {
  font-style: italic;
  color: var(--clr-text-muted);
}

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

.jt-content-area table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  overflow-x: auto;
  display: block;
}

.jt-content-area table th {
  background: var(--clr-bg3);
  color: var(--clr-white);
  font-weight: 700;
  padding: 10px 14px;
  text-align: left;
  border: 1px solid var(--clr-border);
  font-size: 13px;
}

.jt-content-area table td {
  padding: 9px 14px;
  border: 1px solid var(--clr-border);
  font-size: 13px;
  color: var(--clr-text);
}

.jt-content-area table tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.02);
}

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

.jt-content-area img {
  border-radius: var(--radius-md);
  margin: 16px 0;
}

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

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

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

.jt-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  font-weight: 600;
  font-size: 14px;
  color: var(--clr-white);
  transition: background var(--transition);
}

.jt-faq-q:hover {
  background: rgba(187, 235, 0, 0.04);
}

.jt-faq-q::marker,
.jt-faq-q::-webkit-details-marker {
  display: none;
}

.jt-faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background: var(--clr-bg3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform var(--transition),
    background var(--transition);
}

.jt-faq-item.is-open .jt-faq-chevron {
  transform: rotate(180deg);
  background: var(--clr-accent);
}

.jt-faq-chevron svg {
  width: 12px;
  height: 12px;
}
.jt-faq-item.is-open .jt-faq-chevron svg path {
  stroke: #0b0c0d;
}

.jt-faq-a {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.25s ease;
  font-size: 14px;
  color: var(--clr-text-muted);
  line-height: 1.7;
}

.jt-faq-item.is-open .jt-faq-a {
  max-height: 600px;
  padding: 0 20px 18px;
}

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

.jt-footer-grid {
  display: grid;
  grid-template-columns: 220px 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}

.jt-footer-brand img {
  height: 38px;
  width: auto;
  margin-bottom: 12px;
}

.jt-footer-brand p {
  font-size: 12px;
  color: var(--clr-text-dim);
  line-height: 1.6;
}

.jt-footer-col h4 {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--clr-text-muted);
  margin-bottom: 12px;
}

.jt-footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.jt-footer-col ul li a {
  font-size: 13px;
  color: var(--clr-text-dim);
  text-decoration: none;
  transition: color var(--transition);
}

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

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

.jt-footer-logos h4 {
  width: 100%;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--clr-text-dim);
  margin-bottom: 2px;
}

.jt-logo-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  background: var(--clr-bg3);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  font-size: 11px;
  font-weight: 600;
  color: var(--clr-text-muted);
  letter-spacing: 0.04em;
  transition:
    border-color var(--transition),
    color var(--transition);
}

.jt-logo-chip:hover {
  border-color: rgba(187, 235, 0, 0.3);
  color: var(--clr-text);
}

.jt-footer-bottom {
  border-top: 1px solid var(--clr-border);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.jt-footer-copy {
  font-size: 12px;
  color: var(--clr-text-dim);
  line-height: 1.6;
}

.jt-footer-legal {
  font-size: 11px;
  color: var(--clr-text-dim);
  max-width: 460px;
  line-height: 1.55;
  text-align: right;
}

.jt-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 990;
  background: linear-gradient(135deg, #0f1001 0%, #1a1e00 50%, #111301 100%);
  border-top: 2px solid var(--clr-accent);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  transform: translateY(100%);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 -4px 30px rgba(187, 235, 0, 0.12);
}

.jt-widget.is-visible {
  transform: translateY(0);
}

.jt-widget-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.jt-widget-text strong {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--clr-accent);
}

.jt-widget-text span {
  font-size: 12px;
  color: rgba(232, 234, 236, 0.7);
}

.jt-widget-close {
  background: none;
  border: none;
  color: var(--clr-text-muted);
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius-sm);
  line-height: 0;
  flex-shrink: 0;
  transition: color var(--transition);
}

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

.jt-sc-bg {
  background: var(--clr-bg2);
}

.jt-scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: var(--clr-accent);
  z-index: 2000;
  width: 0%;
  transition: width 0.1s linear;
}

.jt-aos {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}

.jt-aos.jt-visible {
  opacity: 1;
  transform: translateY(0);
}

.jt-aos-delay-1 {
  transition-delay: 0.1s;
}
.jt-aos-delay-2 {
  transition-delay: 0.2s;
}
.jt-aos-delay-3 {
  transition-delay: 0.3s;
}

.wp-block-separator {
  display: none;
}
.wp-caption-text {
  font-size: 12px;
  color: var(--clr-text-dim);
  margin-top: 4px;
}

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

@media (max-width: 640px) {
  .jt-hero-inner {
    padding: 60px 16px 56px;
  }
  .jt-hero-actions {
    gap: 10px;
  }
  .jt-section {
    padding: 44px 0;
  }
  .jt-footer-grid {
    grid-template-columns: 1fr;
  }
  .jt-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .jt-footer-legal {
    text-align: left;
    max-width: 100%;
  }
  .jt-review-block {
    padding: 20px;
  }
  .jt-widget {
    flex-wrap: wrap;
  }
  .jt-winners-wrap {
    overflow-x: auto;
  }
  .jt-winner-row,
  .jt-winners-head {
    min-width: 420px;
  }
}

@media (max-width: 400px) {
  .jt-btn--lg {
    padding: 13px 22px;
    font-size: 14px;
  }
}

.q4r9x {
  visibility: hidden;
  height: 0;
}
.wp-embed-share {
  display: none;
}
.elementor-widget-divider {
  border: none;
}
.site-footer__inner {
  display: flex;
}
.wp-post-image {
  border-radius: var(--radius-md);
}
.attachment-thumbnail {
  object-fit: cover;
}
.entry-content {
  font-size: 15px;
}
.page-header {
  padding: 0;
}
