:root {
  --clr-header: #314253;
  --clr-header-dark: #273646;
  --clr-bg: #232e39;
  --clr-bg-alt: #1c2630;
  --clr-bg-card: #2d3d4e;
  --clr-bg-card2: #29394a;
  --clr-accent: #733eeb;
  --clr-accent-hover: #6232d4;
  --clr-accent-glow: rgba(115,62,235,0.35);
  --clr-white: #ffffff;
  --clr-text: #d4dde7;
  --clr-text-muted: #8fa3b3;
  --clr-border: rgba(255,255,255,0.08);
  --clr-plus: #3ecf8e;
  --clr-minus: #f25f5c;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.35);
  --transition: 0.25s ease;
  --font-main: 'Open Sans', sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

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

img { max-width: 100%; height: auto; display: block; }
a { color: var(--clr-white); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--clr-accent); }
ul, ol { list-style: none; }

.x9f2a { display: none; }
.k7mz1 { visibility: hidden; height: 0; overflow: hidden; }
.wp-caption { max-width: 100%; }
.wp-image-placeholder { display: none; }
.entry-meta { display: none; }
.post-thumbnail { display: none; }

.jk-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.jk-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.jk-section {
  padding: 56px 0;
}

.jk-section-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 28px;
  position: relative;
  padding-bottom: 12px;
}

.jk-section-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 56px; height: 3px;
  background: var(--clr-accent);
  border-radius: 2px;
}

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

.jk-btn:hover { transform: translateY(-2px); opacity: 0.92; }
.jk-btn:active { transform: translateY(0); }

.jk-btn--login {
  background: transparent;
  color: var(--clr-white);
  border: 1.5px solid rgba(255,255,255,0.4);
}

.jk-btn--login:hover { border-color: var(--clr-white); color: var(--clr-white); }

.jk-btn--register {
  background: var(--clr-accent);
  color: var(--clr-white);
  box-shadow: 0 4px 18px var(--clr-accent-glow);
}

.jk-btn--register:hover { background: var(--clr-accent-hover); box-shadow: 0 6px 24px var(--clr-accent-glow); color: var(--clr-white); }

.jk-btn--hero {
  background: var(--clr-accent);
  color: var(--clr-white);
  font-size: 1.05rem;
  padding: 14px 36px;
  border-radius: var(--radius-md);
  box-shadow: 0 6px 28px var(--clr-accent-glow);
  animation: jk-pulse 2.4s infinite;
}

.jk-btn--hero:hover { background: var(--clr-accent-hover); color: var(--clr-white); }

.jk-btn--sm {
  padding: 8px 18px;
  font-size: 0.82rem;
}

.jk-btn--card {
  background: var(--clr-accent);
  color: var(--clr-white);
  width: 100%;
  padding: 11px;
  border-radius: var(--radius-sm);
  box-shadow: 0 3px 12px var(--clr-accent-glow);
}

.jk-btn--card:hover { background: var(--clr-accent-hover); color: var(--clr-white); }

@keyframes jk-pulse {
  0%,100% { box-shadow: 0 6px 28px var(--clr-accent-glow); }
  50% { box-shadow: 0 8px 36px rgba(115,62,235,0.6); }
}

.jk-header {
  background: var(--clr-header);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(0,0,0,0.4);
}

.jk-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 68px;
}

.jk-header__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.jk-header__logo img {
  height: 42px;
  width: auto;
}

.jk-header__nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.jk-header__nav a {
  color: rgba(255,255,255,0.8);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  transition: background var(--transition), color var(--transition);
}

.jk-header__nav a:hover { background: rgba(255,255,255,0.1); color: var(--clr-white); }

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

.jk-header__online {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--clr-text-muted);
  white-space: nowrap;
}

.jk-header__online-dot {
  width: 8px; height: 8px;
  background: var(--clr-plus);
  border-radius: 50%;
  animation: jk-blink 1.5s infinite;
  flex-shrink: 0;
}

@keyframes jk-blink {
  0%,100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.jk-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  background: transparent;
  border: none;
  flex-shrink: 0;
}

.jk-burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--clr-white);
  border-radius: 2px;
  transition: all var(--transition);
}

.jk-burger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.jk-burger.is-active span:nth-child(2) { opacity: 0; }
.jk-burger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.jk-mob-nav {
  display: none;
  background: var(--clr-header-dark);
  border-top: 1px solid var(--clr-border);
  padding: 16px;
  flex-direction: column;
  gap: 8px;
}

.jk-mob-nav.is-open { display: flex; }

.jk-mob-nav a {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 10px 14px;
  border-radius: 8px;
  display: block;
  transition: background var(--transition);
}

.jk-mob-nav a:hover { background: rgba(255,255,255,0.1); color: var(--clr-white); }

.jk-hero {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--clr-bg-alt);
}

.jk-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('/hero-banner.png');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.jk-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(35,46,57,0.92) 40%, rgba(35,46,57,0.4) 100%);
  z-index: 1;
}

.jk-hero__content {
  position: relative;
  z-index: 2;
  max-width: 560px;
}

.jk-hero__badge {
  display: inline-block;
  background: rgba(115,62,235,0.25);
  border: 1px solid rgba(115,62,235,0.5);
  color: #c0a0ff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.jk-hero__title {
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--clr-white);
  line-height: 1.2;
  margin-bottom: 14px;
}

.jk-hero__title span {
  color: var(--clr-accent);
}

.jk-hero__sub {
  font-size: 1.05rem;
  color: var(--clr-text);
  margin-bottom: 28px;
  line-height: 1.6;
}

.jk-hero__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.jk-hero__note {
  font-size: 0.8rem;
  color: var(--clr-text-muted);
  margin-top: 12px;
}

.jk-breadcrumb {
  background: var(--clr-bg-alt);
  padding: 12px 0;
  border-bottom: 1px solid var(--clr-border);
}

.jk-breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--clr-text-muted);
}

.jk-breadcrumb__list li + li::before {
  content: '/';
  margin-right: 6px;
  color: var(--clr-text-muted);
}

.jk-breadcrumb__list a {
  color: var(--clr-text-muted);
  transition: color var(--transition);
}

.jk-breadcrumb__list a:hover { color: var(--clr-accent); }
.jk-breadcrumb__list li:last-child { color: var(--clr-text); }

.jk-toc {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin-bottom: 40px;
}

.jk-toc__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.jk-toc__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
}

.jk-toc__list li a {
  color: var(--clr-accent);
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition);
}

.jk-toc__list li a::before {
  content: '#';
  opacity: 0.6;
  font-size: 0.8rem;
}

.jk-toc__list li a:hover { color: #a87fff; }

.jk-advantages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.jk-advantage-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.jk-advantage-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--clr-accent);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.jk-advantage-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.jk-advantage-card__icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}

.jk-advantage-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 8px;
}

.jk-advantage-card__text {
  font-size: 0.87rem;
  color: var(--clr-text-muted);
  line-height: 1.55;
}

.jk-pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.jk-pros-col, .jk-cons-col {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 22px 20px;
}

.jk-pros-col { border-top: 3px solid var(--clr-plus); }
.jk-cons-col { border-top: 3px solid var(--clr-minus); }

.jk-pros-col__title, .jk-cons-col__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.jk-pros-col__title { color: var(--clr-plus); }
.jk-cons-col__title { color: var(--clr-minus); }

.jk-pros-col ul li, .jk-cons-col ul li {
  font-size: 0.88rem;
  color: var(--clr-text);
  padding: 8px 0;
  border-bottom: 1px solid var(--clr-border);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}

.jk-pros-col ul li:last-child, .jk-cons-col ul li:last-child { border-bottom: none; }

.jk-pros-col ul li::before {
  content: '✓';
  color: var(--clr-plus);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.jk-cons-col ul li::before {
  content: '✗';
  color: var(--clr-minus);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.jk-slider-wrap {
  position: relative;
  overflow: hidden;
}

.jk-slider-track {
  display: flex;
  gap: 18px;
  transition: transform 0.4s ease;
}

.jk-slider-track > * {
  flex: 0 0 calc(33.333% - 12px);
  min-width: 0;
}

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

.jk-slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  transition: background var(--transition);
  border: none;
}

.jk-slider-dot.is-active { background: var(--clr-accent); }

.jk-slider-arrows {
  display: none;
  justify-content: space-between;
  position: absolute;
  top: 50%; left: 0; right: 0;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 5;
}

.jk-slider-btn {
  background: var(--clr-header);
  border: 1px solid var(--clr-border);
  color: var(--clr-white);
  width: 36px; height: 36px;
  border-radius: 50%;
  cursor: pointer;
  pointer-events: all;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: background var(--transition);
  margin: 0 -14px;
}

.jk-slider-btn:hover { background: var(--clr-accent); }

.jk-tournament-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.jk-tournament-card::after {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 100px; height: 100px;
  background: radial-gradient(circle, rgba(115,62,235,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.jk-tournament-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.jk-tournament-card__badge {
  display: inline-block;
  background: rgba(115,62,235,0.2);
  color: #c0a0ff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  width: fit-content;
}

.jk-tournament-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--clr-white);
}

.jk-tournament-card__desc {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  line-height: 1.55;
  flex: 1;
}

.jk-tournament-card__prize {
  font-size: 1.4rem;
  font-weight: 800;
  color: #f9c84a;
}

.jk-tournament-card__prize-label {
  font-size: 0.75rem;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.jk-timer {
  display: flex;
  gap: 8px;
  align-items: center;
}

.jk-timer__unit {
  background: var(--clr-bg-alt);
  border: 1px solid var(--clr-border);
  border-radius: 6px;
  padding: 6px 10px;
  text-align: center;
  min-width: 48px;
}

.jk-timer__num {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-white);
  font-variant-numeric: tabular-nums;
}

.jk-timer__label {
  display: block;
  font-size: 0.68rem;
  color: var(--clr-text-muted);
  text-transform: uppercase;
}

.jk-timer__sep {
  color: var(--clr-text-muted);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.jk-bonus-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.jk-bonus-card--featured {
  border-color: rgba(115,62,235,0.5);
  box-shadow: 0 0 0 1px rgba(115,62,235,0.3);
}

.jk-bonus-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.jk-bonus-card__ribbon {
  position: absolute;
  top: 14px; right: -28px;
  background: var(--clr-accent);
  color: var(--clr-white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 36px;
  transform: rotate(45deg);
  text-transform: uppercase;
}

.jk-bonus-card__icon {
  font-size: 2.2rem;
}

.jk-bonus-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-white);
}

.jk-bonus-card__amount {
  font-size: 1.6rem;
  font-weight: 800;
  color: #f9c84a;
  line-height: 1.1;
}

.jk-bonus-card__desc {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  line-height: 1.55;
}

.jk-bonus-card__wager {
  font-size: 0.78rem;
  color: var(--clr-text-muted);
  border-top: 1px solid var(--clr-border);
  padding-top: 10px;
}

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

.jk-slot-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.jk-slot-card__img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/2;
}

.jk-slot-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.jk-slot-card:hover .jk-slot-card__img-wrap img { transform: scale(1.06); }

.jk-slot-card__provider {
  position: absolute;
  bottom: 8px; left: 8px;
  background: rgba(35,46,57,0.85);
  color: var(--clr-text-muted);
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 12px;
  backdrop-filter: blur(4px);
}

.jk-slot-card__body {
  padding: 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.jk-slot-card__name {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--clr-white);
}

.jk-content-block {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 28px 32px;
}

.jk-content-block h1,
.jk-content-block h2,
.jk-content-block h3,
.jk-content-block h4,
.jk-content-block h5,
.jk-content-block h6 {
  color: var(--clr-white);
  font-weight: 700;
  margin: 24px 0 12px;
  line-height: 1.3;
}

.jk-content-block h1 { font-size: 1.9rem; }
.jk-content-block h2 { font-size: 1.5rem; }
.jk-content-block h3 { font-size: 1.25rem; }
.jk-content-block h4 { font-size: 1.1rem; }
.jk-content-block h5, .jk-content-block h6 { font-size: 1rem; }

.jk-content-block p {
  margin-bottom: 14px;
  color: var(--clr-text);
  line-height: 1.7;
  font-size: 0.95rem;
}

.jk-content-block a {
  color: var(--clr-accent);
  text-decoration: underline;
}

.jk-content-block a:hover { color: #a87fff; }

.jk-content-block ul,
.jk-content-block ol {
  margin: 0 0 16px 20px;
}

.jk-content-block ul { list-style: disc; }
.jk-content-block ol { list-style: decimal; }

.jk-content-block li {
  margin-bottom: 6px;
  color: var(--clr-text);
  font-size: 0.93rem;
  line-height: 1.6;
}

.jk-content-block table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 0.88rem;
  overflow-x: auto;
  display: block;
}

.jk-content-block table th {
  background: var(--clr-header);
  color: var(--clr-white);
  font-weight: 700;
  padding: 10px 14px;
  text-align: left;
  border: 1px solid rgba(255,255,255,0.12);
}

.jk-content-block table td {
  padding: 9px 14px;
  border: 1px solid var(--clr-border);
  color: var(--clr-text);
  vertical-align: top;
}

.jk-content-block table tr:nth-child(even) td { background: rgba(255,255,255,0.04); }

.jk-content-block blockquote {
  border-left: 4px solid var(--clr-accent);
  margin: 20px 0;
  padding: 12px 20px;
  background: rgba(115,62,235,0.08);
  border-radius: 0 8px 8px 0;
  color: var(--clr-text);
  font-style: italic;
}

.jk-content-block img {
  border-radius: var(--radius-sm);
  margin: 16px 0;
}

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

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

.jk-faq__item {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}

.jk-faq__item.is-open { border-color: rgba(115,62,235,0.4); }

.jk-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 22px;
  cursor: pointer;
  user-select: none;
  font-weight: 600;
  color: var(--clr-white);
  font-size: 0.95rem;
  transition: background var(--transition);
}

.jk-faq__question:hover { background: rgba(255,255,255,0.04); }

.jk-faq__chevron {
  width: 20px; height: 20px;
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--clr-accent);
}

.jk-faq__item.is-open .jk-faq__chevron { transform: rotate(180deg); }

.jk-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding var(--transition);
  padding: 0 22px;
}

.jk-faq__item.is-open .jk-faq__answer {
  max-height: 400px;
  padding: 0 22px 18px;
}

.jk-faq__answer p {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  line-height: 1.65;
}

.jk-author {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.jk-author__avatar {
  width: 90px; height: 90px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid var(--clr-accent);
}

.jk-author__content { flex: 1; }

.jk-author__name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 4px;
}

.jk-author__role {
  font-size: 0.82rem;
  color: var(--clr-accent);
  margin-bottom: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.jk-author__bio {
  font-size: 0.88rem;
  color: var(--clr-text-muted);
  line-height: 1.65;
  margin-bottom: 14px;
}

.jk-author__socials {
  display: flex;
  gap: 10px;
}

.jk-author__social-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(115,62,235,0.15);
  border: 1px solid rgba(115,62,235,0.35);
  color: #c0a0ff;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  transition: background var(--transition), color var(--transition);
}

.jk-author__social-link:hover { background: var(--clr-accent); color: var(--clr-white); }

.jk-footer {
  background: var(--clr-header);
  padding: 48px 0 24px;
  margin-top: auto;
}

.jk-footer__top {
  display: grid;
  grid-template-columns: 200px 1fr 1fr;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--clr-border);
}

.jk-footer__logo img {
  height: 40px;
  width: auto;
  margin-bottom: 12px;
}

.jk-footer__tagline {
  font-size: 0.82rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
}

.jk-footer__col-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--clr-white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}

.jk-footer__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.jk-footer__links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.86rem;
  transition: color var(--transition);
}

.jk-footer__links a:hover { color: var(--clr-white); }

.jk-footer__payments {
  margin: 24px 0;
}

.jk-footer__payments-title {
  font-size: 0.82rem;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
  font-weight: 600;
}

.jk-footer__payment-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.jk-payment-badge {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  white-space: nowrap;
}

.jk-footer__providers {
  margin-bottom: 24px;
}

.jk-footer__provider-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.jk-provider-badge {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 0.73rem;
  color: rgba(255,255,255,0.5);
  white-space: nowrap;
}

.jk-footer__bottom {
  padding-top: 20px;
  text-align: center;
}

.jk-footer__copyright {
  font-size: 0.8rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
}

.jk-footer__legal {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
  margin-top: 10px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.jk-widget {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 2000;
  background: linear-gradient(90deg, var(--clr-header-dark) 0%, #3a2660 100%);
  border-top: 2px solid var(--clr-accent);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.4);
}

.jk-widget__text {
  font-size: 0.88rem;
  color: var(--clr-white);
  font-weight: 500;
  line-height: 1.4;
}

.jk-widget__bonus {
  font-size: 1rem;
  font-weight: 800;
  color: #f9c84a;
}

.jk-widget__btn {
  background: var(--clr-accent);
  color: var(--clr-white);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 11px 28px;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 18px var(--clr-accent-glow);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition);
  flex-shrink: 0;
}

.jk-widget__btn:hover { background: var(--clr-accent-hover); transform: translateY(-1px); color: var(--clr-white); }

.jk-widget__close {
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
  padding: 4px;
  flex-shrink: 0;
  transition: color var(--transition);
}

.jk-widget__close:hover { color: var(--clr-white); }

.jk-widget.is-hidden { display: none; }

body.widget-visible { padding-bottom: 68px; }

.jk-review-rating {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 18px 24px;
  margin-bottom: 24px;
}

.jk-stars {
  display: flex;
  gap: 3px;
}

.jk-star {
  color: #f9c84a;
  font-size: 1.2rem;
}

.jk-star--empty { color: rgba(249,200,74,0.3); }

.jk-rating-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--clr-white);
  line-height: 1;
}

.jk-rating-label {
  font-size: 0.8rem;
  color: var(--clr-text-muted);
}

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

.jk-fade-in { animation: jk-fadeInUp 0.5s ease both; }

.jk-info-bar {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 16px 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 32px;
}

.jk-info-bar__item {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.jk-info-bar__label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--clr-text-muted);
  font-weight: 600;
}

.jk-info-bar__value {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--clr-white);
}

.wp-block-group { display: block; }
.wp-block-columns { display: block; }
.has-text-align-center { text-align: center; }
.elementor-hidden { display: none !important; }
.screen-reader-text { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

@media (max-width: 1024px) {
  .jk-advantages { grid-template-columns: repeat(2, 1fr); }
  .jk-footer__top { grid-template-columns: 1fr 1fr; }
  .jk-footer__top > :first-child { grid-column: 1 / -1; }
}

@media (min-width: 769px) {
  .jk-slider-wrap { overflow: visible; }
  .jk-slider-track { flex-wrap: wrap; transform: none !important; }
  .jk-slider-nav { display: none; }
}

@media (max-width: 768px) {
  .jk-header__nav { display: none; }
  .jk-burger { display: flex; }
  .jk-section { padding: 40px 0; }
  .jk-section-title { font-size: 1.4rem; }

  .jk-toc__list { grid-template-columns: 1fr; }
  .jk-advantages { grid-template-columns: 1fr; }
  .jk-pros-cons { grid-template-columns: 1fr; }

  .jk-slider-track > * { flex: 0 0 100%; }
  .jk-slider-arrows { display: flex; }

  .jk-footer__top { grid-template-columns: 1fr; gap: 24px; }
  .jk-footer__top > :first-child { grid-column: auto; }

  .jk-author { flex-direction: column; align-items: center; text-align: center; }
  .jk-author__socials { justify-content: center; }

  .jk-content-block { padding: 20px 16px; }
  .jk-widget { flex-wrap: wrap; }
  .jk-widget__text { font-size: 0.82rem; }

  .jk-hero { min-height: 360px; }
  .jk-hero__actions { flex-direction: column; align-items: flex-start; }

  .jk-review-rating { flex-wrap: wrap; }
  .jk-info-bar { gap: 14px; }
}

@media (max-width: 480px) {
  .jk-btn--hero { width: 100%; justify-content: center; }
  .jk-header__right .jk-header__online { display: none; }
  .jk-widget__text span:first-child { display: none; }
}
