*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --clr-bg: #1d1f2b;
  --clr-header: #282c38;
  --clr-btn-login: #262c3b;
  --clr-btn-reg: #fab308;
  --clr-btn-reg-text: #1d1f2b;
  --clr-text: #e8eaf0;
  --clr-text-muted: #9aa0b4;
  --clr-accent: #fab308;
  --clr-accent2: #ffd04a;
  --clr-border: #343848;
  --clr-card: #23263a;
  --clr-card2: #1e2133;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.45);
  --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}
html {
  scroll-behavior: smooth;
  background: var(--clr-bg);
}
body {
  font-family: "Open Sans", "Roboto", Arial, sans-serif;
  background: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}
a {
  color: var(--clr-accent);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: var(--clr-accent2);
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

.xq7b2k {
  display: none;
}
.wp-block-spacer {
  display: none;
}
.elementor-hidden {
  visibility: hidden;
  height: 0;
  overflow: hidden;
}

.jv-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
.jv-section {
  padding: 64px 0;
}
.jv-section--sm {
  padding: 40px 0;
}

.jv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    filter var(--transition);
  white-space: nowrap;
  letter-spacing: 0.3px;
}
.jv-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  text-decoration: none;
}
.jv-btn:active {
  transform: translateY(0);
}
.jv-btn--login {
  background: var(--clr-btn-login);
  color: var(--clr-text);
  border: 1px solid var(--clr-border);
}
.jv-btn--login:hover {
  color: var(--clr-accent);
  border-color: var(--clr-accent);
}
.jv-btn--reg {
  background: var(--clr-btn-reg);
  color: var(--clr-btn-reg-text);
}
.jv-btn--reg:hover {
  filter: brightness(1.1);
  color: var(--clr-btn-reg-text);
}
.jv-btn--lg {
  padding: 14px 36px;
  font-size: 16px;
  border-radius: var(--radius-md);
}
.jv-btn--sm {
  padding: 8px 16px;
  font-size: 13px;
}

.jv-header {
  background: var(--clr-header);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--clr-border);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
}
.jv-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 68px;
}
.jv-header__logo img {
  height: 40px;
  width: auto;
}
.jv-header__nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.jv-header__nav a {
  color: var(--clr-text-muted);
  font-size: 14px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition:
    color var(--transition),
    background var(--transition);
}
.jv-header__nav a:hover {
  color: var(--clr-text);
  background: rgba(255, 255, 255, 0.06);
}
.jv-header__right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.jv-header__online {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--clr-text-muted);
  background: rgba(255, 255, 255, 0.04);
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid var(--clr-border);
}
.jv-header__online-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2ecc71;
  box-shadow: 0 0 6px #2ecc71;
  animation: pulse-dot 1.8s infinite;
}
@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}
.jv-header__online strong {
  color: var(--clr-text);
}

.jv-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 6px;
}
.jv-burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition:
    transform var(--transition),
    opacity var(--transition);
}
.jv-burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.jv-burger.is-open span:nth-child(2) {
  opacity: 0;
}
.jv-burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.jv-mobile-nav {
  display: none;
  position: fixed;
  inset: 68px 0 0 0;
  background: var(--clr-header);
  z-index: 999;
  overflow-y: auto;
  padding: 24px 20px;
  flex-direction: column;
  gap: 8px;
}
.jv-mobile-nav.is-open {
  display: flex;
}
.jv-mobile-nav a {
  color: var(--clr-text);
  font-size: 16px;
  font-weight: 600;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--clr-border);
  display: block;
  transition: background var(--transition);
}
.jv-mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.06);
}
.jv-mobile-nav__btns {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}
.jv-mobile-nav__btns .jv-btn {
  flex: 1;
  justify-content: center;
}

.jv-hero {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
}
.jv-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.jv-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.jv-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(29, 31, 43, 0.95) 40%,
    rgba(29, 31, 43, 0.5) 100%
  );
  z-index: 1;
}
.jv-hero__content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}
.jv-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(250, 179, 8, 0.15);
  border: 1px solid rgba(250, 179, 8, 0.4);
  color: var(--clr-accent);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.jv-hero__title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}
.jv-hero__title span {
  color: var(--clr-accent);
}
.jv-hero__desc {
  font-size: 17px;
  color: rgba(232, 234, 240, 0.85);
  margin-bottom: 28px;
  line-height: 1.7;
}
.jv-hero__bonus {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(250, 179, 8, 0.1);
  border: 1px solid rgba(250, 179, 8, 0.3);
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
  font-size: 15px;
  font-weight: 700;
  color: var(--clr-accent);
}
.jv-hero__btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.jv-toc {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
}
.jv-toc__title {
  font-size: 18px;
  font-weight: 800;
  color: var(--clr-text);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.jv-toc__title::before {
  content: "";
  display: block;
  width: 4px;
  height: 22px;
  background: var(--clr-accent);
  border-radius: 2px;
}
.jv-toc__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 8px;
}
.jv-toc__list li a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--clr-text-muted);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: all var(--transition);
}
.jv-toc__list li a::before {
  content: attr(data-num);
  font-size: 11px;
  font-weight: 800;
  color: var(--clr-accent);
  background: rgba(250, 179, 8, 0.12);
  padding: 2px 6px;
  border-radius: 4px;
  min-width: 22px;
  text-align: center;
}
.jv-toc__list li a:hover {
  color: var(--clr-text);
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--clr-border);
}

.jv-section-title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: var(--clr-text);
  margin-bottom: 8px;
  text-align: center;
}
.jv-section-title span {
  color: var(--clr-accent);
}
.jv-section-sub {
  text-align: center;
  color: var(--clr-text-muted);
  margin-bottom: 36px;
  font-size: 15px;
}

.jv-advantages {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}
.jv-adv-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}
.jv-adv-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: rgba(250, 179, 8, 0.35);
}
.jv-adv-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(250, 179, 8, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.jv-adv-card__title {
  font-size: 15px;
  font-weight: 800;
  color: var(--clr-text);
}
.jv-adv-card__text {
  font-size: 14px;
  color: var(--clr-text-muted);
  line-height: 1.6;
}

.jv-jackpot {
  background: linear-gradient(135deg, #1a1c2e 0%, #23263a 60%, #1a1c2e 100%);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.jv-jackpot::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 0%,
    rgba(250, 179, 8, 0.12) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.jv-jackpot__label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  margin-bottom: 12px;
}
.jv-jackpot__amount {
  font-size: clamp(42px, 7vw, 80px);
  font-weight: 900;
  color: var(--clr-accent);
  text-shadow: 0 0 32px rgba(250, 179, 8, 0.5);
  letter-spacing: -1px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.jv-jackpot__currency {
  font-size: 32px;
  vertical-align: super;
}
.jv-jackpot__sub {
  font-size: 14px;
  color: var(--clr-text-muted);
  margin-top: 10px;
}
.jv-jackpot__winners {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.jv-jackpot__winner {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 12px 20px;
  text-align: left;
}
.jv-jackpot__winner-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--clr-text);
}
.jv-jackpot__winner-amount {
  font-size: 18px;
  font-weight: 900;
  color: var(--clr-accent);
}
.jv-jackpot__winner-time {
  font-size: 11px;
  color: var(--clr-text-muted);
}
.jv-jackpot__btn-wrap {
  margin-top: 32px;
}

.jv-games {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.jv-game-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}
.jv-game-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.jv-game-card__img {
  position: relative;
  padding-bottom: 60%;
  background: var(--clr-card2);
  overflow: hidden;
}
.jv-game-card__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.jv-game-card:hover .jv-game-card__img img {
  transform: scale(1.06);
}
.jv-game-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--clr-accent);
  color: #111;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.jv-game-card__body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.jv-game-card__name {
  font-size: 15px;
  font-weight: 800;
  color: var(--clr-text);
}
.jv-game-card__provider {
  font-size: 12px;
  color: var(--clr-text-muted);
}
.jv-game-card__btn {
  margin-top: auto;
}

.jv-games-slider-wrap {
  position: relative;
}
.jv-games-slider-nav {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
.jv-games-slider-nav button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clr-border);
  border: none;
  cursor: pointer;
  transition:
    background var(--transition),
    transform var(--transition);
}
.jv-games-slider-nav button.active {
  background: var(--clr-accent);
  transform: scale(1.3);
}

.jv-wheel-section {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
}
.jv-wheel-wrap {
  position: relative;
  display: inline-block;
  margin: 24px auto 0;
}
.jv-wheel-canvas {
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(250, 179, 8, 0.3);
  display: block;
  max-width: 320px;
  width: 100%;
  height: auto;
}
.jv-wheel-pointer {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 28px solid var(--clr-accent);
  filter: drop-shadow(0 2px 6px rgba(250, 179, 8, 0.6));
}
.jv-wheel-spin-btn {
  margin-top: 24px;
}
.jv-wheel-result {
  margin-top: 24px;
  padding: 20px 28px;
  border-radius: var(--radius-md);
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.jv-wheel-result.win {
  background: rgba(46, 204, 113, 0.1);
  border: 1px solid rgba(46, 204, 113, 0.4);
  display: flex;
}
.jv-wheel-result.lose {
  background: rgba(231, 76, 60, 0.08);
  border: 1px solid rgba(231, 76, 60, 0.3);
  display: flex;
}
.jv-wheel-result__icon {
  font-size: 36px;
}
.jv-wheel-result__text {
  font-size: 18px;
  font-weight: 800;
  color: var(--clr-text);
}
.jv-wheel-result__sub {
  font-size: 14px;
  color: var(--clr-text-muted);
}

.jv-review-block {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
}
.jv-review-block h1,
.jv-review-block h2,
.jv-review-block h3,
.jv-review-block h4,
.jv-review-block h5,
.jv-review-block h6 {
  color: var(--clr-text);
  font-weight: 800;
  line-height: 1.3;
  margin-top: 28px;
  margin-bottom: 12px;
}
.jv-review-block h1 {
  font-size: clamp(22px, 3vw, 32px);
}
.jv-review-block h2 {
  font-size: clamp(20px, 2.5vw, 26px);
}
.jv-review-block h3 {
  font-size: 20px;
}
.jv-review-block h4 {
  font-size: 18px;
}
.jv-review-block p {
  color: var(--clr-text);
  margin-bottom: 16px;
  line-height: 1.75;
}
.jv-review-block a {
  color: var(--clr-accent);
  text-decoration: underline;
}
.jv-review-block ul,
.jv-review-block ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
.jv-review-block ul li,
.jv-review-block ol li {
  color: var(--clr-text);
  margin-bottom: 8px;
  line-height: 1.65;
}
.jv-review-block ul {
  list-style: none;
  padding-left: 0;
}
.jv-review-block ul li {
  padding-left: 20px;
  position: relative;
}
.jv-review-block ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clr-accent);
}
.jv-review-block table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  overflow-x: auto;
  display: block;
}
.jv-review-block table th,
.jv-review-block table td {
  padding: 11px 14px;
  border: 1px solid var(--clr-border);
  font-size: 14px;
  text-align: left;
  color: var(--clr-text);
}
.jv-review-block table th {
  background: rgba(255, 255, 255, 0.06);
  font-weight: 800;
  color: var(--clr-accent);
}
.jv-review-block table tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.02);
}
.jv-review-block blockquote {
  border-left: 3px solid var(--clr-accent);
  padding: 12px 20px;
  margin: 16px 0;
  background: rgba(250, 179, 8, 0.05);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--clr-text-muted);
  font-style: italic;
}
.jv-review-block strong,
.jv-review-block b {
  color: var(--clr-accent);
  font-weight: 700;
}
.jv-review-block em,
.jv-review-block i {
  color: var(--clr-text-muted);
  font-style: italic;
}
.jv-review-block hr {
  border: none;
  border-top: 1px solid var(--clr-border);
  margin: 24px 0;
}
.jv-review-block img {
  border-radius: var(--radius-sm);
  max-width: 100%;
}
.jv-review-block figure {
  margin: 0 0 16px;
}
.jv-review-block figcaption {
  font-size: 13px;
  color: var(--clr-text-muted);
  text-align: center;
  margin-top: 6px;
}

.jv-author {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.jv-author__photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--clr-accent);
  flex-shrink: 0;
}
.jv-author__body {
  flex: 1;
}
.jv-author__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  margin-bottom: 4px;
}
.jv-author__name {
  font-size: 18px;
  font-weight: 800;
  color: var(--clr-text);
  margin-bottom: 8px;
}
.jv-author__bio {
  font-size: 14px;
  color: var(--clr-text-muted);
  line-height: 1.7;
  margin-bottom: 14px;
}
.jv-author__socials {
  display: flex;
  gap: 10px;
}
.jv-author__social {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--clr-text-muted);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--clr-border);
  padding: 6px 14px;
  border-radius: 20px;
  transition: all var(--transition);
}
.jv-author__social:hover {
  color: var(--clr-accent);
  border-color: var(--clr-accent);
}
.jv-author__social svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.jv-footer {
  background: var(--clr-header);
  border-top: 1px solid var(--clr-border);
  padding: 48px 0 24px;
}
.jv-footer__top {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.jv-footer__brand {
  flex: 1;
  min-width: 220px;
}
.jv-footer__logo img {
  height: 36px;
  width: auto;
  margin-bottom: 14px;
}
.jv-footer__tagline {
  font-size: 13px;
  color: var(--clr-text-muted);
  line-height: 1.6;
}
.jv-footer__col {
  min-width: 160px;
}
.jv-footer__col-title {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  margin-bottom: 14px;
}
.jv-footer__col ul {
  list-style: none;
}
.jv-footer__col ul li {
  margin-bottom: 8px;
}
.jv-footer__col ul li a {
  font-size: 14px;
  color: var(--clr-text-muted);
  transition: color var(--transition);
}
.jv-footer__col ul li a:hover {
  color: var(--clr-text);
}
.jv-footer__payments {
  margin-bottom: 28px;
}
.jv-footer__payments-title,
.jv-footer__providers-title {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  margin-bottom: 14px;
}
.jv-footer__logos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.jv-footer__logo-badge {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--clr-text-muted);
}
.jv-footer__bottom {
  border-top: 1px solid var(--clr-border);
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}
.jv-footer__copy {
  font-size: 12px;
  color: var(--clr-text-muted);
  line-height: 1.6;
}
.jv-footer__legal {
  font-size: 11px;
  color: var(--clr-text-muted);
  line-height: 1.6;
  max-width: 680px;
  opacity: 0.7;
}
.jv-footer__18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--clr-text-muted);
  font-size: 10px;
  font-weight: 900;
  color: var(--clr-text-muted);
  flex-shrink: 0;
}

.jv-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  background: linear-gradient(90deg, #1e2133 0%, #262c3b 100%);
  border-top: 2px solid var(--clr-accent);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.jv-widget__text {
  font-size: 13px;
  color: var(--clr-text);
  flex: 1;
}
.jv-widget__bonus {
  color: var(--clr-accent);
  font-weight: 800;
}
.jv-widget__close {
  background: none;
  border: none;
  color: var(--clr-text-muted);
  cursor: pointer;
  font-size: 20px;
  padding: 4px;
  line-height: 1;
  transition: color var(--transition);
  flex-shrink: 0;
}
.jv-widget__close:hover {
  color: var(--clr-text);
}
.jv-widget a.jv-btn--reg {
  text-decoration: none;
  color: var(--clr-btn-reg-text);
}

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

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

body {
  padding-bottom: 70px;
}

@media (max-width: 900px) {
  .jv-header__nav {
    display: none;
  }
  .jv-burger {
    display: flex;
  }
  .jv-games {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .jv-section {
    padding: 40px 0;
  }
  .jv-hero {
    min-height: 380px;
  }
  .jv-author {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .jv-author__socials {
    justify-content: center;
  }
  .jv-toc__list {
    grid-template-columns: 1fr;
  }
  .jv-footer__top {
    flex-direction: column;
  }
  .jv-games {
    grid-template-columns: 1fr;
  }
  .jv-jackpot__winners {
    gap: 12px;
  }
  .jv-review-block {
    padding: 24px 20px;
  }
  .jv-wheel-section {
    padding: 28px 20px;
  }
}
@media (max-width: 480px) {
  .jv-widget {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

.woocommerce-page .woocommerce {
  display: none;
}
.entry-meta {
  display: none;
}
.post-navigation {
  display: none;
}
