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

:root {
  --clr-bg: #0b0c0d;
  --clr-surface: #131415;
  --clr-surface2: #1a1b1d;
  --clr-surface3: #212325;
  --clr-border: #2a2c2f;
  --clr-accent: #bbeb00;
  --clr-accent-dim: #9bc400;
  --clr-btn-dark: #1f2021;
  --clr-text: #e8e9ea;
  --clr-text-muted: #8a8d91;
  --clr-text-dim: #5a5d61;
  --clr-white: #ffffff;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.45);
  --shadow-glow: 0 0 24px rgba(187, 235, 0, 0.18);
  --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  --font-head: "Montserrat", Arial, sans-serif;
  --font-body: "Inter", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  background: var(--clr-bg);
}
body {
  background: var(--clr-bg);
  color: var(--clr-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  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: #d4f520;
}
ul {
  list-style: none;
}

.jt-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
.jt-section {
  padding: 72px 0;
}
.jt-section-title {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--clr-white);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.jt-section-sub {
  color: var(--clr-text-muted);
  margin-bottom: 40px;
  font-size: 0.97rem;
}
.jt-label {
  display: inline-block;
  background: rgba(187, 235, 0, 0.12);
  color: var(--clr-accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 40px;
  margin-bottom: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-sm);
  padding: 10px 22px;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.btn:active {
  transform: scale(0.97);
}
.btn--login {
  background: var(--clr-btn-dark);
  color: var(--clr-text);
  border: 1px solid var(--clr-border);
}
.btn--login:hover {
  background: #2a2c2e;
  color: var(--clr-white);
  border-color: #3a3d40;
}
.btn--signup {
  background: var(--clr-accent);
  color: #0b0c0d;
  box-shadow: 0 2px 16px rgba(187, 235, 0, 0.28);
}
.btn--signup:hover {
  background: #d4f520;
  box-shadow: 0 4px 24px rgba(187, 235, 0, 0.45);
  transform: translateY(-1px);
}
.btn--primary {
  background: var(--clr-accent);
  color: #0b0c0d;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-glow);
}
.btn--primary:hover {
  background: #d4f520;
  transform: translateY(-2px);
  box-shadow: 0 6px 32px rgba(187, 235, 0, 0.5);
}
.btn--dark {
  background: var(--clr-btn-dark);
  color: var(--clr-text);
  border: 1px solid var(--clr-border);
}
.btn--dark:hover {
  background: var(--clr-surface3);
  color: var(--clr-white);
}
.btn--outline {
  background: transparent;
  color: var(--clr-accent);
  border: 1.5px solid var(--clr-accent);
}
.btn--outline:hover {
  background: rgba(187, 235, 0, 0.1);
}
.btn--sm {
  padding: 7px 16px;
  font-size: 0.82rem;
}
.btn--lg {
  padding: 16px 40px;
  font-size: 1.05rem;
}

.jt-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--clr-bg);
  border-bottom: 1px solid var(--clr-border);
  backdrop-filter: blur(12px);
}
.jt-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 68px;
}
.jt-header__logo {
  flex-shrink: 0;
}
.jt-header__logo img {
  height: 60px;
  width: auto;
  object-fit: contain;
}
.jt-header__nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.jt-header__nav a {
  color: var(--clr-text-muted);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.jt-header__nav a:hover {
  color: var(--clr-white);
  background: var(--clr-surface);
}
.jt-header__right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.jt-header__online {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--clr-text-muted);
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: 40px;
  padding: 5px 12px;
  white-space: nowrap;
}
.jt-header__online-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse-green 1.8s infinite;
}
@keyframes pulse-green {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
  }
  50% {
    box-shadow: 0 0 0 5px rgba(34, 197, 94, 0);
  }
}
.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: 24px;
  height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: all 0.3s;
}
.jt-burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.jt-burger.active span:nth-child(2) {
  opacity: 0;
}
.jt-burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.jt-mobile-nav {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: var(--clr-bg);
  border-bottom: 1px solid var(--clr-border);
  padding: 16px 20px 24px;
  z-index: 999;
  animation: slideDown 0.25s ease;
}
.jt-mobile-nav.open {
  display: block;
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.jt-mobile-nav a {
  display: block;
  color: var(--clr-text);
  font-size: 1rem;
  font-weight: 500;
  padding: 12px 8px;
  border-bottom: 1px solid var(--clr-border);
}
.jt-mobile-nav a:last-of-type {
  border-bottom: none;
}

.jt-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--clr-surface);
}
.jt-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url("/tonban.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.38;
}
.jt-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(11, 12, 13, 0.96) 0%,
    rgba(11, 12, 13, 0.6) 60%,
    rgba(11, 12, 13, 0.2) 100%
  );
}
.jt-hero__content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}
.jt-hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(187, 235, 0, 0.1);
  border: 1px solid rgba(187, 235, 0, 0.3);
  color: var(--clr-accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 40px;
  margin-bottom: 20px;
}
.jt-hero__title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  color: var(--clr-white);
  line-height: 1.1;
  margin-bottom: 18px;
  letter-spacing: -0.03em;
}
.jt-hero__title span {
  color: var(--clr-accent);
}
.jt-hero__desc {
  color: var(--clr-text-muted);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 480px;
}
.jt-hero__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.jt-hero__stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.jt-hero__stat-num {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--clr-accent);
}
.jt-hero__stat-label {
  font-size: 0.78rem;
  color: var(--clr-text-muted);
  margin-top: 2px;
}

.jt-info-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border);
}
.jt-info-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  background: var(--clr-surface);
}
.jt-info-table tr {
  border-bottom: 1px solid var(--clr-border);
}
.jt-info-table tr:last-child {
  border-bottom: none;
}
.jt-info-table tr:hover {
  background: var(--clr-surface2);
}
.jt-info-table td {
  padding: 14px 20px;
  font-size: 0.93rem;
  line-height: 1.5;
  vertical-align: middle;
}
.jt-info-table td:first-child {
  color: var(--clr-text-muted);
  font-weight: 500;
  width: 38%;
  white-space: nowrap;
}
.jt-info-table td:last-child {
  color: var(--clr-text);
  font-weight: 400;
}
.jt-table-badge {
  display: inline-block;
  background: rgba(187, 235, 0, 0.12);
  color: var(--clr-accent);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 20px;
}

/* =========== TOURNAMENTS =========== */
.jt-tournaments-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.jt-tournament-card {
  flex: 1 1 280px;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}
.jt-tournament-card:hover {
  border-color: rgba(187, 235, 0, 0.35);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}
.jt-tournament-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-accent), transparent);
}
.jt-tournament-badge {
  display: inline-block;
  background: rgba(187, 235, 0, 0.12);
  color: var(--clr-accent);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.jt-tournament-title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 8px;
}
.jt-tournament-desc {
  font-size: 0.86rem;
  color: var(--clr-text-muted);
  line-height: 1.55;
  margin-bottom: 18px;
}
.jt-tournament-prize {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--clr-accent);
  margin-bottom: 6px;
}
.jt-tournament-prize-label {
  font-size: 0.75rem;
  color: var(--clr-text-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}
.jt-timer {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}
.jt-timer__block {
  text-align: center;
  background: var(--clr-surface2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  min-width: 50px;
}
.jt-timer__num {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--clr-white);
  line-height: 1;
}
.jt-timer__label {
  font-size: 0.62rem;
  color: var(--clr-text-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 3px;
}

.jt-games-grid {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.jt-game-card {
  flex: 1 1 180px;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
  position: relative;
}
.jt-game-card:hover {
  border-color: rgba(187, 235, 0, 0.35);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.jt-game-card:hover .jt-game-overlay {
  opacity: 1;
}
.jt-game-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.jt-game-overlay {
  position: absolute;
  inset: 0 0 auto 0;
  height: calc(100% - 72px);
  background: rgba(11, 12, 13, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.jt-game-body {
  padding: 12px 14px;
}
.jt-game-title {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.jt-game-provider {
  font-size: 0.74rem;
  color: var(--clr-text-dim);
}

.jt-slot-wrap {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: 36px;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  box-shadow: var(--shadow-card);
}
.jt-slot-title {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--clr-white);
  margin-bottom: 6px;
}
.jt-slot-sub {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  margin-bottom: 28px;
}
.jt-slot-machine {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 28px;
}
.jt-slot-reel {
  width: 90px;
  height: 100px;
  background: var(--clr-surface2);
  border: 2px solid var(--clr-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  overflow: hidden;
  position: relative;
  transition: border-color 0.3s;
}
.jt-slot-reel.spinning {
  animation: reel-spin 0.12s linear infinite;
}
@keyframes reel-spin {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-8px);
  }
  75% {
    transform: translateY(8px);
  }
  100% {
    transform: translateY(0);
  }
}
.jt-slot-reel.win {
  border-color: var(--clr-accent);
  box-shadow: 0 0 20px rgba(187, 235, 0, 0.35);
}
.jt-slot-result {
  min-height: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.jt-slot-win-text {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--clr-accent);
  animation: fadeInUp 0.4s ease;
}
.jt-slot-lose-text {
  font-size: 0.95rem;
  color: var(--clr-text-muted);
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.jt-review-wrap {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
}
.jt-author-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: var(--clr-surface2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  margin-bottom: 32px;
}
.jt-author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--clr-border);
}
.jt-author-name {
  font-weight: 700;
  color: var(--clr-white);
  font-size: 0.97rem;
}
.jt-author-bio {
  font-size: 0.8rem;
  color: var(--clr-text-muted);
  margin-top: 2px;
  line-height: 1.5;
}
.jt-author-link {
  font-size: 0.78rem;
  color: var(--clr-accent);
  margin-top: 4px;
  display: inline-block;
}
.jt-content-block h1,
.jt-content-block h2,
.jt-content-block h3,
.jt-content-block h4,
.jt-content-block h5,
.jt-content-block h6 {
  font-family: var(--font-head);
  color: var(--clr-white);
  font-weight: 700;
  line-height: 1.3;
  margin-top: 28px;
  margin-bottom: 12px;
}
.jt-content-block h1 {
  font-size: 1.9rem;
}
.jt-content-block h2 {
  font-size: 1.5rem;
}
.jt-content-block h3 {
  font-size: 1.25rem;
}
.jt-content-block h4 {
  font-size: 1.05rem;
}
.jt-content-block p {
  color: var(--clr-text);
  line-height: 1.75;
  margin-bottom: 16px;
}
.jt-content-block ul,
.jt-content-block ol {
  margin: 0 0 16px 22px;
  color: var(--clr-text);
  line-height: 1.75;
}
.jt-content-block ul {
  list-style: disc;
}
.jt-content-block ol {
  list-style: decimal;
}
.jt-content-block li {
  margin-bottom: 6px;
}
.jt-content-block a {
  color: var(--clr-accent);
  text-decoration: underline;
}
.jt-content-block blockquote {
  border-left: 3px solid var(--clr-accent);
  background: var(--clr-surface2);
  padding: 14px 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 20px 0;
  color: var(--clr-text-muted);
  font-style: italic;
}
.jt-content-block table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  background: var(--clr-surface2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.jt-content-block table th {
  background: var(--clr-surface3);
  color: var(--clr-white);
  font-weight: 700;
  padding: 10px 14px;
  text-align: left;
  border-bottom: 1px solid var(--clr-border);
  font-size: 0.88rem;
}
.jt-content-block table td {
  padding: 10px 14px;
  color: var(--clr-text);
  border-bottom: 1px solid var(--clr-border);
  font-size: 0.88rem;
}
.jt-content-block table tr:last-child td {
  border-bottom: none;
}
.jt-content-block strong {
  color: var(--clr-white);
  font-weight: 700;
}
.jt-content-block em {
  color: var(--clr-text-muted);
}
.jt-content-block hr {
  border: none;
  border-top: 1px solid var(--clr-border);
  margin: 28px 0;
}
.jt-content-block img {
  border-radius: var(--radius-md);
  margin: 16px 0;
}
.jt-content-block code {
  background: var(--clr-surface3);
  color: var(--clr-accent);
  padding: 2px 7px;
  border-radius: 4px;
  font-size: 0.88em;
  font-family: monospace;
}
.jt-content-block pre {
  background: var(--clr-surface3);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 16px;
  overflow-x: auto;
  margin: 16px 0;
}
.jt-content-block pre code {
  background: none;
  padding: 0;
}

/* =========== REVIEWS =========== */
.jt-reviews-grid {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.jt-review-card {
  flex: 1 1 260px;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  transition: all var(--transition);
}
.jt-review-card:hover {
  border-color: rgba(187, 235, 0, 0.25);
  transform: translateY(-2px);
}
.jt-review-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.jt-review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--clr-border);
  flex-shrink: 0;
  background: var(--clr-surface3);
}
.jt-review-meta-name {
  font-weight: 700;
  color: var(--clr-white);
  font-size: 0.92rem;
}
.jt-review-meta-date {
  font-size: 0.74rem;
  color: var(--clr-text-dim);
  margin-top: 2px;
}
.jt-review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 10px;
}
.jt-review-stars svg {
  width: 16px;
  height: 16px;
}
.jt-review-text {
  font-size: 0.88rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
}
.jt-form-wrap {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  max-width: 560px;
}
.jt-form-title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 20px;
}
.jt-form-group {
  margin-bottom: 16px;
}
.jt-form-group label {
  display: block;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--clr-text-muted);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.jt-form-group input,
.jt-form-group textarea {
  width: 100%;
  background: var(--clr-surface2);
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  color: var(--clr-white);
  font-size: 0.93rem;
  font-family: var(--font-body);
  transition: border-color var(--transition);
  outline: none;
  resize: none;
}
.jt-form-group input::placeholder,
.jt-form-group textarea::placeholder {
  color: var(--clr-text-dim);
}
.jt-form-group input:focus,
.jt-form-group textarea:focus {
  border-color: var(--clr-accent);
  background: var(--clr-surface3);
}
.jt-form-success {
  display: none;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #4ade80;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.9rem;
  text-align: center;
  margin-top: 12px;
}
.jt-form-success.show {
  display: block;
  animation: fadeInUp 0.3s ease;
}

/* =========== FOOTER =========== */
.jt-footer {
  background: var(--clr-bg);
  border-top: 1px solid var(--clr-border);
  padding: 48px 0 24px;
}
.jt-footer__top {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--clr-border);
}
.jt-footer__brand {
  flex: 0 0 220px;
}
.jt-footer__brand img {
  height: 36px;
  margin-bottom: 14px;
}
.jt-footer__brand-desc {
  font-size: 0.83rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
}
.jt-footer__col {
  flex: 1 1 140px;
}
.jt-footer__col-title {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--clr-text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.jt-footer__col a {
  display: block;
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  padding: 4px 0;
  transition: color var(--transition);
}
.jt-footer__col a:hover {
  color: var(--clr-white);
}
.jt-footer__middle {
  margin-bottom: 28px;
}
.jt-footer__logos-title {
  font-size: 0.75rem;
  color: var(--clr-text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.jt-footer__logos {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.jt-footer__logo-chip {
  background: var(--clr-surface2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--clr-text-muted);
}
.jt-footer__bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.jt-footer__copy {
  font-size: 0.8rem;
  color: var(--clr-text-dim);
  line-height: 1.6;
}
.jt-footer__legal {
  font-size: 0.73rem;
  color: var(--clr-text-dim);
  max-width: 600px;
  line-height: 1.55;
  margin-top: 6px;
}
.jt-footer__lic {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  font-size: 0.76rem;
  color: var(--clr-text-muted);
  flex-shrink: 0;
}
.jt-footer__lic-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
}

.jt-widget {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1100;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow:
    0 8px 40px rgba(0, 0, 0, 0.6),
    var(--shadow-glow);
  max-width: calc(100% - 32px);
  animation: widgetIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.8s both;
}
@keyframes widgetIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}
.jt-widget__close {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 22px;
  height: 22px;
  background: var(--clr-surface3);
  border: 1px solid var(--clr-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.7rem;
  color: var(--clr-text-muted);
  transition: all var(--transition);
}
.jt-widget__close:hover {
  background: var(--clr-surface);
  color: var(--clr-white);
}
.jt-widget__icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}
.jt-widget__text {
  flex: 1;
  min-width: 0;
}
.jt-widget__promo {
  font-size: 0.73rem;
  color: var(--clr-text-muted);
  margin-bottom: 2px;
}
.jt-widget__bonus {
  font-family: var(--font-head);
  font-size: 0.97rem;
  font-weight: 800;
  color: var(--clr-white);
  line-height: 1.2;
}
.jt-widget__bonus span {
  color: var(--clr-accent);
}
.jt-widget a.btn--signup {
  font-size: 0.84rem;
  padding: 9px 18px;
  flex-shrink: 0;
}

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

.jt-divider {
  border: none;
  border-top: 1px solid var(--clr-border);
  margin: 0;
}

.jt-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 800px;
}
.jt-faq-item {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.jt-faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--clr-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 18px 20px;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: background var(--transition);
}
.jt-faq-q:hover {
  background: var(--clr-surface2);
}
.jt-faq-q::after {
  content: "+";
  font-size: 1.3rem;
  color: var(--clr-accent);
  flex-shrink: 0;
  transition: transform 0.25s;
}
.jt-faq-item.open .jt-faq-q::after {
  transform: rotate(45deg);
}
.jt-faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    padding 0.3s;
}
.jt-faq-item.open .jt-faq-a {
  max-height: 300px;
  padding: 0 20px 18px;
}
.jt-faq-a p {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  line-height: 1.65;
}

.wp-block-group,
.wp-block-columns,
.wp-block-image,
.entry-content,
.post-content,
.site-content,
.elementor-widget-container {
  display: contents;
}
.wp-caption {
  max-width: 100%;
  margin: 0 auto;
}
.alignleft {
  float: left;
  margin-right: 20px;
}
.alignright {
  float: right;
  margin-left: 20px;
}
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
.dashicons {
  display: inline-block;
  vertical-align: middle;
}
.woocommerce-product-gallery {
  position: relative;
}
.elementor-section {
  position: relative;
}
.elementor-col-50 {
  width: 50%;
}
.elementor-heading-title {
  margin: 0;
}
.yoast-schema-graph {
  display: none;
}
.wp-caption-text {
  font-size: 0.85em;
  text-align: center;
  margin-top: 4px;
  color: var(--clr-text-dim);
}
.custom-logo-link {
  display: inline-block;
}
.nav-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}
.menu-item {
  display: inline-block;
}
.has-drop-shadow {
  box-shadow: var(--shadow-card);
}
.is-style-rounded img {
  border-radius: 50%;
}
.wp-block-button__link {
  display: inline-block;
  padding: 0.6em 1.4em;
  border-radius: var(--radius-sm);
}

@media (max-width: 1024px) {
  .jt-header__nav {
    display: none;
  }
  .jt-burger {
    display: flex;
  }
  .jt-games-grid {
    gap: 12px;
  }
  .jt-game-card {
    flex: 1 1 150px;
  }
}
@media (max-width: 768px) {
  .jt-section {
    padding: 48px 0;
  }
  .jt-hero {
    min-height: 400px;
    padding: 40px 0;
  }
  .jt-hero__stats {
    gap: 20px;
  }
  .jt-hero__stat-num {
    font-size: 1.2rem;
  }
  .jt-hero__actions {
    gap: 10px;
  }
  .jt-tournaments-grid {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 12px;
    -webkit-overflow-scrolling: touch;
  }
  .jt-tournament-card {
    flex: 0 0 280px;
  }
  .jt-games-grid {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 12px;
    -webkit-overflow-scrolling: touch;
  }
  .jt-game-card {
    flex: 0 0 160px;
  }
  .jt-slot-machine {
    gap: 8px;
  }
  .jt-slot-reel {
    width: 75px;
    height: 85px;
    font-size: 2.4rem;
  }
  .jt-reviews-grid {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 12px;
    -webkit-overflow-scrolling: touch;
  }
  .jt-review-card {
    flex: 0 0 270px;
  }
  .jt-review-wrap {
    padding: 20px;
  }
  .jt-footer__top {
    gap: 28px;
  }
  .jt-footer__brand {
    flex: 0 0 100%;
  }
  .jt-form-wrap {
    padding: 20px;
  }
  .jt-widget {
    bottom: 12px;
    padding: 10px 14px;
    gap: 10px;
  }
  .jt-widget__bonus {
    font-size: 0.88rem;
  }
}
@media (max-width: 480px) {
  .jt-container {
    padding: 0 14px;
  }
  .jt-header__inner {
    height: 60px;
  }
  .jt-mobile-nav {
    top: 60px;
  }
  .jt-info-table td {
    padding: 11px 14px;
    font-size: 0.85rem;
  }
  .jt-slot-reel {
    width: 66px;
    height: 76px;
    font-size: 2rem;
  }
  .jt-footer__bottom {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .jt-widget {
    bottom: 12px;
    padding: 8px 12px;
    gap: 8px;
    border-radius: 60px;
  }
  .jt-widget__icon {
    font-size: 1.2rem;
  }
  .jt-widget__promo {
    display: none;
  }
  .jt-widget__bonus {
    font-size: 0.78rem;
    white-space: nowrap;
  }
  .jt-widget a.btn--signup {
    font-size: 0.76rem;
    padding: 7px 14px;
    border-radius: 40px;
  }
  .jt-widget__close {
    top: -6px;
    right: -6px;
    width: 18px;
    height: 18px;
    font-size: 0.6rem;
  }
}
