@font-face {
  font-family: "Manrope";
  src: url("fonts/manrope-latin-400-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

:root {
  --vkj-bg: #2a1209;
  --vkj-bg-2: #3a190c;
  --vkj-panel: #2e1208;
  --vkj-panel-soft: #3f2115;
  --vkj-card: #3a1c11;
  --vkj-card-soft: #4a2a1d;
  --vkj-text: #f6ede9;
  --vkj-muted: #dbc0b3;
  --vkj-accent: #d38a52;
  --vkj-accent-2: #f1b37f;
  --vkj-green: #5ca145;
  --vkj-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  min-height: 100%;
  background: radial-gradient(circle at 20% 0%, #4a1d0d 0%, var(--vkj-bg) 36%, #240f08 100%);
  color: var(--vkj-text);
  font-family: "Manrope", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

a {
  color: inherit;
}

.vkj-page-shell {
  display: flex;
  align-items: flex-start;
}

.vkj-sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  width: 300px;
  padding: 18px 14px;
  background: linear-gradient(180deg, rgba(52, 23, 12, 0.97) 0%, rgba(40, 17, 9, 0.98) 100%);
  border-right: 1px solid rgba(234, 176, 129, 0.18);
  overflow-y: auto;
}

.vkj-sidebar-top {
  display: grid;
  justify-items: center;
  row-gap: 12px;
  margin-bottom: 14px;
}

.vkj-logo {
  width: clamp(150px, 70%, 210px);
  height: auto;
  display: block;
  margin-inline: auto;
}

.vkj-sidebar-cta {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.vkj-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  min-width: 220px;
  border-radius: 12px;
  border: 1px solid rgba(237, 194, 158, 0.35);
  text-decoration: none;
  font-weight: 700;
  padding: 0.72rem 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.vkj-btn:hover {
  transform: translateY(-1px);
}

.vkj-btn-ghost {
  background: transparent;
  color: var(--vkj-text);
}

.vkj-btn-solid,
.vkj-btn-primary {
  background: linear-gradient(180deg, var(--vkj-accent-2) 0%, var(--vkj-accent) 100%);
  color: #1a0b05;
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: var(--vkj-shadow);
}

.vkj-sidebar-nav {
  display: grid;
  gap: 6px;
}

.vkj-sidebar-nav a {
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-weight: 600;
  color: #f5ddd0;
}

.vkj-sidebar-nav a:hover {
  background: rgba(211, 138, 82, 0.18);
}

.vkj-sidebar-disclaimer {
  margin: 14px 0 0;
  padding: 12px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.2);
  color: #e8cdbf;
  font-size: 0.92rem;
}

.vkj-main {
  margin-left: 300px;
  width: calc(100% - 300px);
  padding: 22px;
  min-width: 0;
}

.vkj-main > :first-child {
  margin-top: 0;
}

.vkj-main > :last-child {
  margin-bottom: 0;
}

.vkj-section,
.vkj-cta-banner,
.vkj-accordion-wrap,
.vkj-hero {
  margin: 22px 0;
}

.vkj-section-head h2,
.vkj-section-head h3 {
  margin: 0 0 10px;
  line-height: 1.2;
}

.vkj-section-head p {
  margin: 10px 0;
  color: #f2d8cb;
}

.vkj-hero {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--vkj-shadow);
}

.vkj-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(25, 8, 3, 0.88) 0%, rgba(25, 8, 3, 0.35) 56%, rgba(25, 8, 3, 0.18) 100%);
}

.vkj-hero-image {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

.vkj-hero-card {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: clamp(14px, 4vw, 48px);
  transform: translateY(-50%);
  width: min(560px, calc(100% - 28px));
  padding: clamp(16px, 2.8vw, 24px);
  border-radius: 16px;
  background: rgba(36, 14, 7, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(4px);
}

.vkj-badge {
  display: inline-flex;
  margin-bottom: 10px;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.85rem;
  background: rgba(255, 255, 255, 0.2);
}

.vkj-hero-card h1 {
  margin: 0 0 12px;
  line-height: 1.14;
  font-size: clamp(1.8rem, 3.4vw, 3rem);
}

.vkj-hero-card p {
  margin: 0 0 14px;
}

.vkj-hero-card .vkj-btn {
  min-width: 240px;
}

.vkj-accordion {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(67, 30, 17, 0.78) 0%, rgba(44, 18, 10, 0.82) 100%);
}

.vkj-accordion-trigger {
  width: 100%;
  text-align: left;
  cursor: pointer;
  padding: 14px 20px;
  font-weight: 700;
  font-size: clamp(1.12rem, 1.25vw, 1.36rem);
  line-height: 1.2;
  color: var(--vkj-text);
  background: transparent;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.vkj-accordion-trigger::after {
  content: "▾";
  font-size: 1rem;
  color: var(--vkj-accent-2);
  transition: transform 0.2s ease;
}

.vkj-accordion-trigger[aria-expanded="true"]::after {
  transform: rotate(180deg);
}

.vkj-accordion ul {
  margin: 0;
  padding: 4px 16px 16px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  list-style: none;
  min-width: 0;
}

.vkj-accordion ul[hidden] {
  display: none;
}

.vkj-accordion li {
  margin: 0;
  height: 68px;
  display: flex;
  min-width: 0;
}

.vkj-accordion a {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 10px 12px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 0.86rem;
  line-height: 1.22;
  font-weight: 650;
  white-space: normal;
  overflow-wrap: anywhere;
  color: #f9e7dd;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.vkj-accordion a:hover {
  background: rgba(211, 138, 82, 0.25);
  border-color: rgba(241, 179, 127, 0.65);
  transform: translateY(-1px);
}

.vkj-slot-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  min-width: 0;
}

.vkj-slot-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.35);
  background: linear-gradient(180deg, #2b130a 0%, #3a190d 100%);
  border: 0;
  aspect-ratio: 432 / 580;
}

.vkj-slot-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.vkj-slot-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 3, 2, 0.1) 0%, rgba(7, 3, 2, 0.55) 100%);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.vkj-slot-reveal {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 235, 220, 0.5);
  background: rgba(20, 11, 8, 0.78);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  z-index: 3;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.38);
}

.vkj-slot-actions {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 14px);
  max-width: 220px;
  display: none;
  gap: 8px;
  z-index: 4;
}

.vkj-slot-actions a,
.vkj-slot-actions button {
  flex: 1;
  min-height: 42px;
  border-radius: 10px;
  border: 1px solid transparent;
  text-decoration: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-weight: 800;
  font-size: 0.86rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  padding: 0 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.vkj-slot-actions a {
  background: linear-gradient(180deg, #f3bf92 0%, #d6874c 100%);
  color: #1b0d07;
  box-shadow: 0 10px 16px rgba(0, 0, 0, 0.35);
}

.vkj-slot-actions button {
  background: linear-gradient(180deg, #4a291b 0%, #2d160d 100%);
  border-color: rgba(243, 191, 146, 0.72);
  color: #ffe6d6;
  box-shadow: 0 10px 16px rgba(0, 0, 0, 0.35);
}

.vkj-slot-actions a:hover,
.vkj-slot-actions button:hover {
  transform: translateY(-1px);
  filter: brightness(1.07);
}

.vkj-slot-card:hover,
.vkj-slot-card.vkj-active {
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.48);
}

.vkj-slot-card.vkj-active::after,
.vkj-slot-card:hover::after {
  opacity: 1;
}

.vkj-slot-card.vkj-active .vkj-slot-actions,
.vkj-slot-card:hover .vkj-slot-actions {
  display: flex;
}

.vkj-slot-card.vkj-active .vkj-slot-reveal,
.vkj-slot-card:hover .vkj-slot-reveal {
  display: none;
}

.vkj-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(60, 28, 16, 0.78);
  box-shadow: var(--vkj-shadow);
  font-size: 0.95rem;
}

.vkj-table caption {
  text-align: left;
  padding: 12px 14px;
  font-weight: 700;
  color: #ffe3d3;
}

.vkj-table th,
.vkj-table td {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
  font-size: 0.96rem;
  vertical-align: top;
  word-break: normal;
  overflow-wrap: break-word;
}

.vkj-table th {
  color: #f8d8c6;
}

.vkj-table-overview tbody th {
  width: 34%;
}

.vkj-table tr:last-child th,
.vkj-table tr:last-child td {
  border-bottom: 0;
}

.vkj-table-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  min-width: 0;
}

@media (min-width: 901px) {
  .vkj-table-grid .vkj-table thead th:nth-child(1),
  .vkj-table-grid .vkj-table tbody td:nth-child(1) {
    width: 38%;
  }

  .vkj-table-grid .vkj-table thead th:nth-child(2),
  .vkj-table-grid .vkj-table tbody td:nth-child(2) {
    width: 17%;
  }

  .vkj-table-grid .vkj-table thead th:nth-child(3),
  .vkj-table-grid .vkj-table tbody td:nth-child(3) {
    width: 25%;
  }

  .vkj-table-grid .vkj-table thead th:nth-child(4),
  .vkj-table-grid .vkj-table tbody td:nth-child(4) {
    width: 20%;
  }
}

.vkj-cta-banner {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 300px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--vkj-shadow);
}

.vkj-cta-banner picture,
.vkj-cta-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.vkj-cta-banner img {
  object-fit: cover;
}

.vkj-cta-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 8, 4, 0.52);
}

.vkj-cta-content {
  position: absolute;
  z-index: 1;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: min(560px, calc(100% - 32px));
  padding: clamp(16px, 2.6vw, 24px);
  border-radius: 14px;
  background: rgba(38, 14, 7, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

.vkj-cta-content h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
}

.vkj-cta-content p {
  margin: 12px 0;
}

.vkj-cta-content .vkj-btn {
  margin-top: 4px;
  min-width: 220px;
}

.vkj-review-shell {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) 36px;
  gap: 10px;
  align-items: stretch;
  min-width: 0;
}

.vkj-review-arrow {
  width: 36px;
  height: 64px;
  margin: auto 0;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
}

.vkj-review-viewport {
  position: relative;
  overflow: hidden;
  min-width: 0;
}

.vkj-review-card {
  display: none;
  background: linear-gradient(180deg, rgba(65, 30, 18, 0.9) 0%, rgba(41, 18, 10, 0.92) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 16px;
  min-height: 180px;
}

.vkj-review-card.vkj-current {
  display: block;
}

.vkj-review-card h3 {
  margin: 0;
}

.vkj-review-card header p {
  margin: 4px 0 8px;
  color: #e9c8b8;
  font-size: 0.92rem;
}

.vkj-feature-list,
.vkj-steps {
  margin: 12px 0 0;
  padding-left: 20px;
  display: grid;
  gap: 10px;
}

.vkj-steps h3 {
  margin: 0 0 6px;
}

.vkj-steps p {
  margin: 0;
}

.vkj-auth-gallery {
  display: grid;
  gap: 18px;
  justify-items: center;
}

.vkj-auth-gallery figure {
  margin: 0;
  width: 100%;
  text-align: center;
}

.vkj-auth-gallery img {
  width: min(420px, 100%);
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--vkj-shadow);
}

.vkj-auth-gallery figcaption {
  margin-top: 8px;
  color: #efcdbd;
}

.vkj-pros-cons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.vkj-pros-cons article {
  background: rgba(58, 26, 15, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 14px;
}

.vkj-pros-cons h3 {
  margin: 0 0 10px;
}

.vkj-pros-cons ul {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 8px;
}

#pr-faq details {
  background: rgba(58, 26, 15, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  margin: 10px 0;
  padding: 0 14px;
}

#pr-faq summary {
  cursor: pointer;
  padding: 12px 0;
  font-weight: 700;
}

#pr-faq details p {
  margin: 0 0 12px;
  color: #f2d7ca;
}

.vkj-footer {
  margin-left: 300px;
  margin-top: 12px;
  padding: 16px 22px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(26, 12, 7, 0.9);
}

.vkj-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.vkj-footer a {
  color: #f7d9c9;
}

.vkj-footer p {
  margin: 12px 0 0;
}

.vkj-demo-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  padding: 18px;
  z-index: 120;
}

.vkj-demo-modal.vkj-open {
  display: flex;
}

.vkj-demo-dialog {
  width: min(980px, 100%);
  max-height: calc(100vh - 36px);
  display: grid;
  gap: 12px;
  padding: 16px;
  border-radius: 16px;
  background: #1f0d07;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.vkj-demo-close {
  justify-self: end;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
}

.vkj-demo-dialog iframe {
  width: 100%;
  height: min(62vh, 620px);
  border: 0;
  border-radius: 12px;
}

.vkj-floating-bonus {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 14px;
  width: min(940px, calc(100vw - 24px));
  display: none;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(90deg, rgba(88, 37, 19, 0.96) 0%, rgba(55, 22, 11, 0.98) 100%);
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.45);
  z-index: 150;
}

.vkj-floating-bonus.vkj-visible {
  display: flex;
}

.vkj-floating-bonus p {
  margin: 0;
  flex: 1;
}

.vkj-floating-bonus a {
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 9px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  background: linear-gradient(180deg, var(--vkj-accent-2) 0%, var(--vkj-accent) 100%);
  color: #1a0c05;
  white-space: nowrap;
}

.vkj-floating-bonus button {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
}

:where(main, [data-main-content], [role="main"], .cp-main, .rb-main)
  > :is(section, article, div)
  > :is(table, [class*="table"], [class*="grid"], [class*="slot"]:not([data-slot-card]):not([class*="slot-card"]), [class*="review"]:not([data-review-card]):not([class*="review-card"]), [class*="banner"], [data-review-slider], [data-cta-banner])
  + :is(p, ul, ol, div, section, article) {
  margin-top: clamp(16px, 2vw, 24px);
}

@media (hover: hover) and (pointer: fine) {
  .vkj-slot-card:not(.vkj-active) .vkj-slot-actions {
    display: none;
  }
}

@media (max-width: 1180px) {
  .vkj-main {
    padding: 20px;
  }

  .vkj-accordion ul {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .vkj-accordion li {
    height: 64px;
  }

  .vkj-accordion a {
    font-size: 0.84rem;
  }

  .vkj-table-grid,
  .vkj-pros-cons {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .vkj-page-shell {
    display: block;
  }

  .vkj-sidebar {
    position: sticky;
    width: 100%;
    inset: 0;
    z-index: 90;
    padding: 10px 12px;
    border-right: 0;
    border-bottom: 1px solid rgba(234, 176, 129, 0.18);
    overflow: visible;
  }

  .vkj-sidebar-top {
    grid-template-columns: auto 1fr;
    align-items: center;
    column-gap: 10px;
    row-gap: 8px;
    justify-items: start;
    margin-bottom: 0;
  }

  .vkj-logo {
    width: 122px;
  }

  .vkj-sidebar-cta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .vkj-sidebar-cta .vkj-btn {
    min-width: 0;
    min-height: 42px;
    padding: 0.5rem;
    font-size: 0.9rem;
  }

  .vkj-sidebar-nav,
  .vkj-sidebar-disclaimer {
    display: none;
  }

  .vkj-main,
  .vkj-footer {
    margin-left: 0;
    width: 100%;
  }

  .vkj-main {
    padding: 16px;
  }

  .vkj-accordion-trigger {
    padding: 12px 14px;
    font-size: 1.02rem;
  }

  .vkj-accordion ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 2px 12px 12px;
    gap: 7px;
  }

  .vkj-accordion li {
    height: 60px;
  }

  .vkj-accordion a {
    padding: 8px 10px;
    font-size: 0.8rem;
    line-height: 1.16;
  }

  .vkj-footer {
    padding: 14px 16px 16px;
  }

  .vkj-section,
  .vkj-cta-banner,
  .vkj-accordion-wrap,
  .vkj-hero {
    margin: 18px 0;
  }

  .vkj-hero,
  .vkj-hero-image {
    min-height: 660px;
  }

  .vkj-hero-card {
    top: 12px;
    left: 12px;
    right: 12px;
    transform: none;
    width: auto;
  }

  .vkj-hero-card h1 {
    font-size: 1.7rem;
  }

  .vkj-slot-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .vkj-table th,
  .vkj-table td {
    padding: 8px 10px;
    font-size: 0.88rem;
  }

  .vkj-cta-banner {
    min-height: 420px;
  }

  .vkj-cta-content {
    inset: 12px;
    top: 12px;
    left: 12px;
    transform: none;
    width: auto;
    min-height: calc(100% - 24px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 14px;
  }

  .vkj-cta-content h3 {
    font-size: 1.2rem;
  }

  .vkj-cta-content .vkj-btn {
    min-width: 200px;
    min-height: 48px;
  }

  .vkj-table {
    font-size: 14px;
  }

  .vkj-review-shell {
    grid-template-columns: 28px minmax(0, 1fr) 28px;
    gap: 6px;
  }

  .vkj-review-arrow {
    width: 28px;
    height: 62px;
    border-radius: 8px;
    font-size: 0.92rem;
  }

  .vkj-review-card {
    min-height: 210px;
    padding: 14px;
  }

  .vkj-demo-modal {
    padding: 0;
  }

  .vkj-demo-dialog {
    width: 100%;
    height: 100vh;
    max-height: none;
    border-radius: 0;
    padding: 12px;
  }

  .vkj-demo-dialog iframe {
    height: calc(100vh - 170px);
    border-radius: 10px;
  }

  .vkj-floating-bonus {
    bottom: 8px;
    left: 8px;
    right: 8px;
    width: auto;
    transform: none;
    padding: 8px;
    gap: 8px;
  }

  .vkj-floating-bonus p {
    font-size: 0.9rem;
    min-width: 0;
  }

  .vkj-floating-bonus a {
    min-height: 40px;
    padding: 8px 10px;
    font-size: 0.88rem;
  }
}
