*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: "Roboto", "Open Sans", Arial, sans-serif;
  background-color: #1d1f2b;
  color: #e8eaf0;
  line-height: 1.6;
  overflow-x: hidden;
}
a {
  color: #fab308;
  text-decoration: none;
  transition: color 0.25s;
}
a:hover {
  color: #ffd04d;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul,
ol {
  list-style: none;
}
button {
  cursor: pointer;
  font-family: inherit;
}
input,
textarea {
  font-family: inherit;
}

.b3k9m-wrap {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}
.f7x2p-section {
  padding: 70px 0;
}

.k4rl1-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  padding: 11px 24px;
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    background 0.2s;
  text-decoration: none;
  line-height: 1.2;
}
.k4rl1-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}
.k4rl1-btn:active {
  transform: translateY(0);
}
.btn-login {
  background: #262c3b;
  color: #e8eaf0;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.btn-login:hover {
  background: #2f374a;
  color: #fff;
}
.btn-register {
  background: #fab308;
  color: #1d1f2b;
}
.btn-register:hover {
  background: #ffc82a;
  color: #1a1c27;
}
.btn-primary {
  background: #fab308;
  color: #1d1f2b;
  font-size: 17px;
  padding: 14px 36px;
  border-radius: 10px;
}
.btn-primary:hover {
  background: #ffc82a;
}

.x8vn3-title {
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
}
.x8vn3-sub {
  font-size: 15px;
  color: #a0a8c0;
  margin-bottom: 32px;
}

.q2m7s-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(250, 179, 8, 0.15);
  border: 1px solid rgba(250, 179, 8, 0.3);
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 13px;
  color: #fab308;
  font-weight: 600;
}
.q2m7s-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #4caf50;
  border-radius: 50%;
  box-shadow: 0 0 6px #4caf50;
  animation: qpulse 1.5s infinite;
}
@keyframes qpulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

#jv-header {
  background: #282c38;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}
.jv-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 16px;
}
.jv-logo img {
  height: 46px;
  width: auto;
}
.jv-logo {
  display: flex;
  align-items: center;
}
.jv-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.jv-nav a {
  color: #c8cedf;
  font-size: 14px;
  font-weight: 500;
  padding: 7px 12px;
  border-radius: 6px;
  transition:
    background 0.2s,
    color 0.2s;
}
.jv-nav a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
.jv-header-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.jv-online {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #a0a8c0;
  white-space: nowrap;
}
.jv-online span {
  color: #4caf50;
  font-weight: 700;
}

.jv-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  z-index: 1100;
}
.jv-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #e8eaf0;
  border-radius: 2px;
  transition:
    transform 0.3s,
    opacity 0.3s;
}
.jv-burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.jv-burger.open span:nth-child(2) {
  opacity: 0;
}
.jv-burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.jv-mobile-menu {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  width: 100%;
  background: #282c38;
  z-index: 999;
  padding: 20px;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}
.jv-mobile-menu.open {
  display: flex;
}
.jv-mobile-menu a {
  color: #c8cedf;
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 15px;
  display: block;
}
.jv-mobile-menu a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
.jv-mobile-menu-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 4px;
}
.jv-mobile-menu-btns .k4rl1-btn {
  flex: 1;
  min-width: 120px;
  justify-content: center;
}

.jv-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #12141e;
}
.jv-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("/banj.png");
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}
.jv-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(29, 31, 43, 0.95) 40%,
    rgba(29, 31, 43, 0.3) 100%
  );
}
.jv-hero-content {
  position: relative;
  z-index: 1;
  max-width: 620px;
}
.jv-hero-content h1 {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
}
.jv-hero-content h1 span {
  color: #fab308;
}
.jv-hero-content p {
  font-size: 17px;
  color: #c8cedf;
  margin-bottom: 28px;
  line-height: 1.7;
}
.jv-hero-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.jv-hero-tag {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 13px;
  color: #a0a8c0;
}
.jv-hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.jv-mirrors-section {
  background: #1a1c2a;
}
.jv-mirrors-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}
.jv-datetime {
  font-size: 13px;
  color: #a0a8c0;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 7px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.jv-datetime strong {
  color: #4caf50;
  font-weight: 700;
}
.jv-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 12px;
}
.jv-table {
  width: 100%;
  border-collapse: collapse;
  background: #22253a;
  min-width: 600px;
}
.jv-table thead tr {
  background: #282c38;
}
.jv-table th {
  padding: 14px 18px;
  text-align: left;
  font-size: 13px;
  font-weight: 700;
  color: #a0a8c0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.08);
}
.jv-table td {
  padding: 14px 18px;
  font-size: 14px;
  color: #c8cedf;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.jv-table tbody tr {
  transition: background 0.2s;
}
.jv-table tbody tr:hover {
  background: rgba(250, 179, 8, 0.06);
}
.jv-table tbody tr:last-child td {
  border-bottom: none;
}
.jv-status-active {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #4caf50;
  font-weight: 600;
  font-size: 13px;
}
.jv-status-active::before {
  content: "";
  width: 7px;
  height: 7px;
  background: #4caf50;
  border-radius: 50%;
  box-shadow: 0 0 5px #4caf50;
}
.jv-mirror-link {
  color: #fab308;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s;
}
.jv-mirror-link:hover {
  color: #ffd04d;
  text-decoration: underline;
}

.jv-top-section {
  background: #1d1f2b;
}
.jv-top-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.jv-top-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #22253a;
  border-radius: 10px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition:
    border-color 0.2s,
    background 0.2s;
}
.jv-top-item:hover {
  border-color: rgba(250, 179, 8, 0.3);
  background: #262940;
}
.jv-top-place {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 14px;
  flex-shrink: 0;
}
.jv-top-place.gold {
  background: linear-gradient(135deg, #ffd700, #ffa500);
  color: #1a1c27;
}
.jv-top-place.silver {
  background: linear-gradient(135deg, #c0c0c0, #909090);
  color: #1a1c27;
}
.jv-top-place.bronze {
  background: linear-gradient(135deg, #cd7f32, #a0522d);
  color: #fff;
}
.jv-top-place.reg {
  background: #2a2e42;
  color: #a0a8c0;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.jv-top-nick {
  flex: 1;
  font-weight: 600;
  font-size: 14px;
  color: #e8eaf0;
}
.jv-top-win {
  font-weight: 900;
  color: #fab308;
  font-size: 15px;
  white-space: nowrap;
}
.jv-top-game {
  font-size: 12px;
  color: #6b7498;
  margin-top: 2px;
}

.jv-video-section {
  background: #1a1c2a;
}
.jv-video-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}
.jv-video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.jv-bonuses-section {
  background: #1d1f2b;
}
.jv-bonuses-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.jv-bonus-card {
  flex: 1;
  min-width: 260px;
  background: #22253a;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  transition:
    transform 0.25s,
    box-shadow 0.25s,
    border-color 0.25s;
  position: relative;
}
.jv-bonus-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(250, 179, 8, 0.15);
  border-color: rgba(250, 179, 8, 0.4);
}
.jv-bonus-card-top {
  background: linear-gradient(135deg, #262c3b, #1e2133);
  padding: 28px 24px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.jv-bonus-badge {
  display: inline-block;
  background: #fab308;
  color: #1a1c27;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 4px;
  padding: 3px 10px;
  margin-bottom: 12px;
}
.jv-bonus-amount {
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 900;
  color: #fab308;
  line-height: 1;
}
.jv-bonus-amount small {
  font-size: 16px;
  font-weight: 500;
  color: #a0a8c0;
  display: block;
  margin-top: 4px;
}
.jv-bonus-card-body {
  padding: 20px 24px;
}
.jv-bonus-card-body p {
  font-size: 14px;
  color: #a0a8c0;
  margin-bottom: 14px;
  line-height: 1.6;
}
.jv-bonus-card-body ul {
  list-style: none;
}
.jv-bonus-card-body ul li {
  font-size: 13px;
  color: #c8cedf;
  padding: 4px 0;
  padding-left: 18px;
  position: relative;
}
.jv-bonus-card-body ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4caf50;
  font-weight: 700;
}
.jv-bonus-card-footer {
  padding: 16px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

@media (max-width: 768px) {
  .jv-bonuses-grid {
    flex-direction: row;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 12px;
    scroll-snap-type: x mandatory;
    gap: 16px;
  }
  .jv-bonus-card {
    min-width: 280px;
    scroll-snap-align: start;
  }
}

.jv-slot-section {
  background: #1a1c2a;
}
.jv-slot-machine {
  background: #22253a;
  border-radius: 20px;
  border: 2px solid rgba(250, 179, 8, 0.2);
  padding: 32px;
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}
.jv-slot-machine h3 {
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 8px;
}
.jv-slot-machine .sub {
  font-size: 14px;
  color: #a0a8c0;
  margin-bottom: 24px;
}
.jv-reels {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 24px;
}
.jv-reel {
  width: 80px;
  height: 96px;
  background: #1a1c2a;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.4);
}
.jv-reel.spinning {
  animation: reelSpin 0.12s linear infinite;
}
@keyframes reelSpin {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0);
  }
}
.jv-spin-btn {
  background: #fab308;
  color: #1a1c27;
  border: none;
  border-radius: 12px;
  padding: 14px 48px;
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
  letter-spacing: 0.5px;
}
.jv-spin-btn:hover:not(:disabled) {
  background: #ffc82a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(250, 179, 8, 0.4);
}
.jv-spin-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.jv-slot-result {
  margin-top: 20px;
  padding: 16px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  min-height: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: opacity 0.3s;
}
.jv-slot-result.win {
  background: rgba(76, 175, 80, 0.15);
  border: 1px solid rgba(76, 175, 80, 0.4);
  color: #4caf50;
}
.jv-slot-result.lose {
  background: rgba(244, 67, 54, 0.1);
  border: 1px solid rgba(244, 67, 54, 0.3);
  color: #ef5350;
}
.jv-slot-result.hidden {
  opacity: 0;
}
.jv-balance {
  font-size: 14px;
  color: #a0a8c0;
  margin-top: 12px;
}
.jv-balance strong {
  color: #fab308;
}

.jv-review-section {
  background: #1d1f2b;
}
.jv-review-block {
  background: #22253a;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 36px;
  line-height: 1.7;
}
.jv-review-block h1,
.jv-review-block h2,
.jv-review-block h3,
.jv-review-block h4 {
  color: #fff;
  font-weight: 700;
  margin: 24px 0 12px;
  line-height: 1.3;
}
.jv-review-block h1 {
  font-size: clamp(20px, 3vw, 28px);
}
.jv-review-block h2 {
  font-size: clamp(18px, 2.5vw, 24px);
}
.jv-review-block h3 {
  font-size: clamp(16px, 2vw, 20px);
}
.jv-review-block p {
  margin-bottom: 16px;
  color: #c8cedf;
  font-size: 15px;
}
.jv-review-block ul,
.jv-review-block ol {
  margin: 12px 0 20px 0;
  padding-left: 0;
}
.jv-review-block ul li,
.jv-review-block ol li {
  color: #c8cedf;
  font-size: 15px;
  padding: 5px 0 5px 24px;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.jv-review-block ul li::before {
  content: "▸";
  position: absolute;
  left: 6px;
  color: #fab308;
}
.jv-review-block ol {
  counter-reset: ol-cnt;
}
.jv-review-block ol li {
  counter-increment: ol-cnt;
}
.jv-review-block ol li::before {
  content: counter(ol-cnt) ".";
  position: absolute;
  left: 0;
  color: #fab308;
  font-weight: 700;
}
.jv-review-block a {
  color: #fab308;
  text-decoration: underline;
}
.jv-review-block strong {
  color: #fff;
  font-weight: 700;
}
.jv-review-block em {
  color: #c8cedf;
  font-style: italic;
}
.jv-review-block table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 14px;
}
.jv-review-block table th {
  background: #282c38;
  padding: 11px 16px;
  text-align: left;
  color: #e8eaf0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 700;
}
.jv-review-block table td {
  padding: 10px 16px;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #c8cedf;
}
.jv-review-block table tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.03);
}
.jv-review-block blockquote {
  border-left: 4px solid #fab308;
  padding: 12px 20px;
  background: rgba(250, 179, 8, 0.06);
  border-radius: 0 8px 8px 0;
  margin: 16px 0;
  font-style: italic;
  color: #c8cedf;
}
.jv-review-author {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #262940;
  border-radius: 12px;
  padding: 16px 20px;
  margin-top: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.jv-review-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fab308;
}
.jv-review-author-info a {
  color: #fab308;
  font-weight: 700;
  font-size: 15px;
}
.jv-review-author-info p {
  font-size: 13px;
  color: #a0a8c0;
  margin: 2px 0 0;
}

.jv-testimonials-section {
  background: #1a1c2a;
}
.jv-testimonials-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.jv-testimonial-card {
  flex: 1;
  min-width: 260px;
  background: #22253a;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px;
  transition:
    border-color 0.2s,
    transform 0.2s;
}
.jv-testimonial-card:hover {
  border-color: rgba(250, 179, 8, 0.3);
  transform: translateY(-3px);
}
.jv-t-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.jv-t-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fab308, #e09000);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 18px;
  color: #1a1c27;
  flex-shrink: 0;
}
.jv-t-name {
  font-weight: 700;
  font-size: 15px;
  color: #fff;
}
.jv-t-date {
  font-size: 12px;
  color: #6b7498;
}
.jv-t-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 10px;
}
.jv-t-stars svg {
  fill: #fab308;
}
.jv-t-text {
  font-size: 14px;
  color: #a0a8c0;
  line-height: 1.65;
}

.jv-review-form-title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}
.jv-form {
  background: #22253a;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 28px;
  max-width: 560px;
}
.jv-form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 18px;
}
.jv-form-group label {
  font-size: 14px;
  font-weight: 600;
  color: #c8cedf;
}
.jv-form-group input,
.jv-form-group textarea {
  background: #1a1c2a;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  color: #e8eaf0;
  outline: none;
  transition: border-color 0.2s;
}
.jv-form-group input:focus,
.jv-form-group textarea:focus {
  border-color: #fab308;
}
.jv-form-group textarea {
  min-height: 100px;
  resize: vertical;
}
.jv-form-group input::placeholder,
.jv-form-group textarea::placeholder {
  color: #4e5470;
}
.jv-form-success {
  display: none;
  background: rgba(76, 175, 80, 0.15);
  border: 1px solid rgba(76, 175, 80, 0.4);
  border-radius: 8px;
  padding: 16px;
  color: #4caf50;
  font-weight: 600;
  font-size: 14px;
  margin-top: 12px;
  text-align: center;
}
.jv-form-success.show {
  display: block;
}

#jv-footer {
  background: #282c38;
  padding: 48px 0 28px;
  margin-top: 0;
}
.jv-footer-inner {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.jv-footer-col {
  flex: 1;
  min-width: 200px;
}
.jv-footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: #e8eaf0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}
.jv-footer-col ul li {
  margin-bottom: 8px;
}
.jv-footer-col ul li a {
  color: #a0a8c0;
  font-size: 14px;
  transition: color 0.2s;
}
.jv-footer-col ul li a:hover {
  color: #fab308;
}
.jv-footer-logo img {
  height: 42px;
}
.jv-footer-logo p {
  font-size: 13px;
  color: #6b7498;
  margin-top: 10px;
  line-height: 1.6;
}
.jv-footer-payments,
.jv-footer-providers {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}
.jv-payment-badge,
.jv-provider-badge {
  background: #1a1c2a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 12px;
  color: #a0a8c0;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: border-color 0.2s;
}
.jv-payment-badge:hover,
.jv-provider-badge:hover {
  border-color: rgba(250, 179, 8, 0.4);
  color: #fab308;
}
.jv-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  align-items: flex-start;
}
.jv-copyright {
  font-size: 13px;
  color: #6b7498;
  line-height: 1.6;
}
.jv-copyright a {
  color: #a0a8c0;
}
.jv-footer-legal {
  font-size: 12px;
  color: #4e5470;
  line-height: 1.6;
  max-width: 700px;
}
.jv-license-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 12px;
  color: #6b7498;
  margin-top: 10px;
}

.jv-widget {
  position: fixed;
  bottom: 20px;
  left: 0;
  right: 0;
  margin: 0 auto;
  max-width: 420px;
  z-index: 2000;
  animation: widgetSlide 0.5s 0.8s both;
  padding: 0 16px;
}
@keyframes widgetSlide {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.jv-widget-inner {
  background: linear-gradient(135deg, #262c3b, #1e2133);
  border: 2px solid rgba(250, 179, 8, 0.4);
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
}
.jv-widget-text {
  flex: 1;
}
.jv-widget-text strong {
  font-size: 15px;
  font-weight: 900;
  color: #fff;
  display: block;
  margin-bottom: 2px;
}
.jv-widget-text span {
  font-size: 13px;
  color: #fab308;
  font-weight: 600;
}
.jv-widget-close {
  background: none;
  border: none;
  color: #6b7498;
  font-size: 20px;
  padding: 4px 8px;
  cursor: pointer;
  transition: color 0.2s;
  flex-shrink: 0;
  line-height: 1;
  margin-left: auto;
  margin-right: -4px;
  align-self: flex-start;
}
.jv-widget-close:hover {
  color: #fff;
}
.jv-widget-inner .k4rl1-btn {
  white-space: nowrap;
  flex-shrink: 0;
}

.jv-section-tag {
  display: inline-block;
  background: rgba(250, 179, 8, 0.1);
  border: 1px solid rgba(250, 179, 8, 0.25);
  border-radius: 4px;
  padding: 3px 12px;
  font-size: 12px;
  font-weight: 700;
  color: #fab308;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

@media (max-width: 900px) {
  .jv-nav {
    display: none;
  }
  .jv-burger {
    display: flex;
  }
  .jv-header-right .btn-login,
  .jv-header-right .btn-register {
    font-size: 13px;
    padding: 9px 16px;
  }
  .f7x2p-section {
    padding: 48px 0;
  }
  .jv-hero {
    min-height: 400px;
  }
}
@media (max-width: 600px) {
  .jv-header-right {
    gap: 7px;
  }
  .jv-header-right .btn-login,
  .jv-header-right .btn-register {
    padding: 8px 12px;
    font-size: 12px;
  }
  .jv-hero-content h1 {
    font-size: 28px;
  }
  .jv-online {
    display: none;
  }
  .jv-top-grid .jv-top-game {
    display: none;
  }
  .jv-footer-inner {
    flex-direction: column;
    gap: 24px;
  }
  .jv-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .jv-widget-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

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

.wp-block-separator {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin: 24px 0;
}
.wp-block-image {
  margin: 20px 0;
}
.wp-caption-text {
  font-size: 13px;
  color: #6b7498;
  text-align: center;
  margin-top: 6px;
}
.entry-content .alignleft {
  float: left;
  margin-right: 20px;
}
.entry-content .alignright {
  float: right;
  margin-left: 20px;
}
.post-thumbnail,
.attachment-post-thumbnail {
  display: none;
}
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
.wp-block-cover,
.wp-block-media-text {
  display: none;
}

.jv-faq-section {
  background: #1a1c2a;
}
.jv-faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.jv-faq-item {
  background: #22253a;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}
.jv-faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #e8eaf0;
  font-weight: 600;
  font-size: 15px;
  text-align: left;
  cursor: pointer;
  gap: 14px;
  transition: background 0.2s;
}
.jv-faq-question:hover {
  background: rgba(255, 255, 255, 0.04);
}
.jv-faq-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(250, 179, 8, 0.15);
  border: 1px solid rgba(250, 179, 8, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    transform 0.3s,
    background 0.3s;
}
.jv-faq-icon span {
  font-size: 14px;
  line-height: 1;
  color: #fab308;
  font-weight: 700;
  display: block;
  transition: transform 0.3s;
}
.jv-faq-item.open .jv-faq-icon {
  background: rgba(250, 179, 8, 0.25);
}
.jv-faq-item.open .jv-faq-icon span {
  transform: rotate(45deg);
}
.jv-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.35s;
}
.jv-faq-answer-inner {
  padding: 0 22px 20px;
  font-size: 14px;
  color: #a0a8c0;
  line-height: 1.7;
}
.jv-faq-item.open .jv-faq-answer {
  max-height: 400px;
}
