@font-face {
  font-family: "Exo 2";
  src: url("assets/fonts/exo2-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: optional;
}

@font-face {
  font-family: "Exo 2";
  src: url("assets/fonts/exo2-semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: optional;
}

:root {
  --bon-bg: #060d1e;
  --bon-surface: #121a2e;
  --bon-surface-soft: #1a2238;
  --bon-card: #0d1528;
  --bon-line: #2d3650;
  --bon-text: #f2f5ff;
  --bon-muted: #b2bdd7;
  --bon-yellow: #ffd92d;
  --bon-yellow-deep: #ffb906;
  --bon-blue: #3f6bff;
  --bon-pink: #e73d6b;
  --bon-radius-lg: 20px;
  --bon-radius-md: 14px;
  --bon-radius-sm: 10px;
  --bon-space: clamp(16px, 2.15vw, 24px);
  --bon-space-lg: clamp(20px, 2.5vw, 30px);
  --bon-shadow: 0 14px 28px rgba(0, 0, 0, 0.36);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 92% -12%, #ffd92d33 0, transparent 43%),
    radial-gradient(circle at 12% 8%, #3f6bff2c 0, transparent 40%),
    var(--bon-bg);
  color: var(--bon-text);
  font-family: "Exo 2", "Segoe UI", sans-serif;
  line-height: 1.56;
}

body.bon-modal-open {
  overflow: hidden;
}

a {
  color: inherit;
}

.bon-layout {
  max-width: 1680px;
  margin: 0 auto;
}

.bon-sidebar {
  position: fixed;
  left: 0;
  top: 0;
  width: 280px;
  height: 100vh;
  padding: 20px 18px;
  background: linear-gradient(180deg, #0d1426 0%, #0b111f 100%);
  border-right: 1px solid #232c45;
  display: flex;
  flex-direction: column;
  z-index: 50;
}

.bon-sidebar-logo-wrap {
  text-align: center;
  margin-bottom: 18px;
}

.bon-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 252px;
  min-height: 82px;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.bon-logo-link img {
  width: 100%;
  max-width: 252px;
  height: auto;
  object-fit: contain;
  display: block;
}

.bon-sidebar-cta-stack {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.bon-btn,
.click-login-launch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0 26px;
  min-height: 50px;
  min-width: 212px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.bon-btn:hover,
.click-login-launch:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
}

.bon-btn:focus-visible,
.click-login-launch:focus-visible,
button:focus-visible {
  outline: 2px solid #8ab0ff;
  outline-offset: 2px;
}

.bon-btn-dark {
  background: #2f3749;
  color: #f2f5ff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.38);
}

.bon-btn-main {
  background: linear-gradient(135deg, var(--bon-yellow) 0%, var(--bon-yellow-deep) 100%);
  color: #101421;
  box-shadow: 0 10px 18px rgba(255, 196, 20, 0.35);
}

.de-sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
  overflow: auto;
  padding-right: 3px;
}

.de-sidebar-nav a {
  display: block;
  text-decoration: none;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 0.95rem;
  color: #d6deef;
  background: #151e33;
  border: 1px solid #2a3550;
}

.de-sidebar-nav a:hover {
  background: #1e2944;
}

.bon-sidebar-disclaimer {
  margin-top: auto;
  font-size: 0.76rem;
  color: #94a0be;
}

main[data-main-content] {
  margin-left: 280px;
  padding: var(--bon-space);
  padding-bottom: var(--bon-space);
}

main[data-main-content] > section {
  margin-block: var(--bon-space);
}

main[data-main-content] > section:first-of-type {
  margin-top: 0;
}

main[data-main-content] > section:last-of-type {
  margin-bottom: var(--bon-space);
}

.bon-panel {
  background: linear-gradient(180deg, #0d1528 0%, #0b1324 100%);
  border: 1px solid #242e49;
  border-radius: var(--bon-radius-lg);
  box-shadow: var(--bon-shadow);
}

.bon-hero.hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(500px, 64vw, 680px);
}

.bon-hero picture,
.bon-hero picture img {
  display: block;
  width: 100%;
  height: 100%;
}

.bon-hero picture {
  position: absolute;
  inset: 0;
}

.bon-hero picture img {
  object-fit: cover;
}

.bon-hero-topline {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: clamp(14px, 1.8vw, 20px) clamp(16px, 2vw, 26px);
}

.bon-hero-brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: 152px;
}

.bon-hero-brand img {
  width: 100%;
  max-width: 184px;
  height: auto;
}

.bon-hero-menu {
  display: flex;
  gap: 14px;
  margin-right: auto;
  flex-wrap: wrap;
}

.bon-hero-menu a {
  text-decoration: none;
  color: #e9eefc;
  font-weight: 600;
}

.bon-hero-auth {
  display: flex;
  gap: 10px;
}

.bon-hero-auth a {
  min-height: 44px;
  min-width: 148px;
  padding-inline: 22px;
}

.bon-hero-arrow {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 0;
  color: #f7f8ff;
  background: #131b2e;
  font-size: 1.8rem;
  line-height: 1;
}

.bon-hero-arrow-left {
  position: absolute;
  left: clamp(12px, 1.8vw, 24px);
  top: 44%;
  z-index: 4;
}

.bon-hero-arrow-right {
  position: absolute;
  right: clamp(12px, 1.8vw, 24px);
  top: 44%;
  z-index: 4;
}

.bon-hero-card {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(90%, 580px);
  background: #071226d6;
  border: 1px solid #3a4f86;
  border-radius: 18px;
  padding: clamp(18px, 2.2vw, 24px);
  text-align: left;
  z-index: 3;
}

.bon-hero-kicker {
  margin: 0 0 8px;
  color: var(--bon-yellow);
  font-size: clamp(1.2rem, 2.6vw, 1.9rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.bon-hero h1 {
  margin: 0;
  line-height: 1.05;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  text-transform: uppercase;
  color: #ffffff;
}

.bon-hero h1 span {
  color: var(--bon-yellow);
}

.bon-hero-copy {
  margin: 12px 0 14px;
  color: #d2def9;
  font-size: clamp(0.98rem, 1.8vw, 1.08rem);
}

.bon-hero-card .click-login-launch {
  min-height: 52px;
  min-width: 232px;
}

.bon-hero-search-row {
  position: absolute;
  left: clamp(18px, 2.5vw, 34px);
  right: clamp(18px, 2.5vw, 34px);
  bottom: clamp(14px, 2vw, 26px);
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(200px, 370px);
  gap: 14px;
}

.bon-hero-search,
.bon-hero-filter {
  background: #d5d9e4;
  border-radius: 999px;
  border: 1px solid #f1f3f8;
  min-height: 54px;
  display: flex;
  align-items: center;
  color: #32384a;
}

.bon-hero-search input {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 0 18px;
  font-size: 1.02rem;
  color: #2f3648;
}

.bon-hero-search input::placeholder {
  color: #6d7385;
}

.bon-hero-filter {
  justify-content: space-between;
  padding: 0 12px 0 16px;
  gap: 10px;
}

.bon-hero-filter span {
  font-weight: 600;
}

.bon-hero-filter button {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: var(--bon-yellow);
  font-size: 1.1rem;
}

.bon-tags-row {
  display: flex;
  gap: 10px;
  overflow: auto;
  padding: 8px 2px;
}

.bon-tag {
  flex: 0 0 auto;
  background: #1a233a;
  border: 1px solid #2e3a58;
  border-radius: 999px;
  color: #ecf1ff;
  font-weight: 600;
  padding: 8px 14px;
  text-decoration: none;
  font-size: 0.95rem;
}

.bon-accordion-nav {
  padding: 10px;
}

.bon-accordion-trigger {
  width: 100%;
  border: 1px solid #2a3758;
  background: #131d34;
  color: #f2f5ff;
  border-radius: 14px;
  min-height: 54px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
  font-family: inherit;
  font-weight: 600;
}

[data-nav-trigger] {
  font-family: inherit;
  font-weight: 600;
}

.bon-accordion-trigger .bon-accordion-icon {
  font-size: 1.2rem;
  transition: transform 0.22s ease;
}

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

.bon-accordion-list {
  margin: 10px 0 0;
  padding: 10px;
  border-radius: 14px;
  background: #0f192d;
  border: 1px solid #263150;
  list-style: none;
  display: grid;
  gap: 8px;
}

.bon-accordion-list[hidden] {
  display: none !important;
}

.bon-accordion-list a {
  color: #dce5ff;
  text-decoration: none;
}

.bon-section-title {
  margin: 0 0 12px;
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  line-height: 1.2;
}

.bon-section-intro {
  margin-top: clamp(16px, 2vw, 24px);
  color: var(--bon-muted);
}

.bon-slots-wrap {
  padding: clamp(12px, 1.6vw, 18px);
}

.bon-slot-grid,
.slots-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.bon-slot-card,
[data-slot-card],
.slot-card {
  position: relative;
  border: 0;
  border-radius: 14px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.42);
  background: #121a2e;
}

.bon-slot-card:hover {
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.5);
}

.bon-slot-image-wrap {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(180deg, #14203a 0%, #0d1528 100%);
}

.bon-slot-image-wrap img,
.bon-slot-card img,
.slot-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.bon-slot-reveal {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid #d0dbff78;
  background: #0e1830cc;
  color: #ffffff;
  font-size: 1.6rem;
  z-index: 3;
}

.bon-slot-actions {
  position: absolute;
  inset: auto 8px 10px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 4;
}

.bon-slot-actions a {
  min-height: 40px;
  min-width: 0;
  padding: 0 10px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 700;
}

.bon-slot-actions .bon-btn-main {
  box-shadow: 0 6px 14px rgba(255, 196, 20, 0.3);
}

.bon-slot-actions .bon-btn-secondary {
  background: #24304e;
  color: #edf3ff;
  box-shadow: 0 6px 13px rgba(0, 0, 0, 0.35);
}

.bon-slot-card.is-active .bon-slot-actions,
.bon-slot-card:hover .bon-slot-actions {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.bon-slot-card.is-active .bon-slot-reveal,
.bon-slot-card:hover .bon-slot-reveal {
  opacity: 0;
  pointer-events: none;
}

.bon-slot-card.bon-slot-touch:hover:not(.is-active) .bon-slot-actions {
  opacity: 0;
  pointer-events: none;
}

.bon-slot-card.bon-slot-touch:hover:not(.is-active) .bon-slot-reveal {
  opacity: 1;
  pointer-events: auto;
}

.bon-table-wrap,
.bon-info-box {
  padding: clamp(14px, 2vw, 20px);
}

.bon-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 12px;
  overflow: hidden;
  background: #111a30;
}

.bon-table th,
.bon-table td {
  border-bottom: 1px solid #263253;
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}

.bon-table th {
  width: 42%;
  color: #d3ddf8;
  font-weight: 600;
}

.bon-table td {
  color: #f2f5ff;
}

.bon-two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--bon-space);
}

.bon-cta-banner {
  position: relative;
  min-height: clamp(320px, 44vw, 430px);
  overflow: hidden;
}

.bon-cta-banner picture,
.bon-cta-banner picture img {
  width: 100%;
  height: 100%;
  display: block;
}

.bon-cta-banner picture {
  position: absolute;
  inset: 0;
}

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

.bon-cta-banner-card {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: min(88%, 520px);
  padding: clamp(16px, 2vw, 24px);
  border-radius: 16px;
  background: #08152ad8;
  border: 1px solid #395083;
  text-align: center;
}

.bon-cta-banner-card p {
  margin: 0;
  color: #dde6fb;
}

.bon-cta-banner-card h3 {
  margin: 0 0 12px;
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
}

.bon-cta-banner-card .click-login-launch {
  margin-top: 14px;
  min-height: 52px;
  min-width: 220px;
}

.bon-calc-form {
  display: grid;
  gap: 14px;
}

.bon-calc-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.bon-calc-grid label {
  display: grid;
  gap: 6px;
  font-weight: 600;
}

.bon-calc-grid input {
  border: 1px solid #2f3b5d;
  border-radius: 10px;
  background: #0d1730;
  color: #f3f6ff;
  min-height: 42px;
  padding: 0 10px;
}

.bon-calc-result {
  margin-top: clamp(16px, 2vw, 24px);
  padding: 12px 14px;
  border-radius: 12px;
  background: #14213d;
  border: 1px solid #334e88;
  color: #f2f6ff;
}

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

.bon-pros-cons article {
  border-radius: 14px;
  padding: 14px;
  background: #121b30;
  border: 1px solid #2d3856;
}

.bon-pros-cons h3 {
  margin: 0 0 8px;
}

.bon-media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--bon-space);
}

.bon-media-card {
  background: #0f1830;
  border: 1px solid #2c395a;
  border-radius: 16px;
  padding: 12px;
}

.bon-media-card img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: contain;
  display: block;
}

.bon-review-slider {
  position: relative;
  padding: 0 clamp(32px, 5vw, 56px);
}

.bon-review-track {
  overflow: hidden;
}

.bon-review-row {
  display: flex;
  gap: 14px;
  transition: transform 0.28s ease;
}

.bon-review-card {
  flex: 0 0 calc((100% - 28px) / 3);
  border-radius: 14px;
  padding: 14px;
  background: #121b2f;
  border: 1px solid #2f3958;
  min-height: 220px;
}

.bon-review-meta {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
  color: #c2cee9;
  font-size: 0.92rem;
}

.bon-review-rating {
  color: var(--bon-yellow);
  font-weight: 700;
}

.bon-review-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 78px;
  border: 0;
  border-radius: 12px;
  background: #1d2844;
  color: #f5f7ff;
  font-size: 1.2rem;
}

.bon-review-btn[data-review-dir="prev"] {
  left: 0;
}

.bon-review-btn[data-review-dir="next"] {
  right: 0;
}

.bon-faq details {
  border: 1px solid #2b3656;
  border-radius: 12px;
  padding: 12px 14px;
  background: #10182e;
  margin-bottom: 10px;
}

.bon-faq summary {
  cursor: pointer;
  font-weight: 600;
}

.bon-faq p {
  margin: 10px 0 0;
  color: #d0d9f2;
}

.bon-support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.bon-support-grid > div {
  border-radius: 12px;
  border: 1px solid #304069;
  padding: 12px;
  background: #121d36;
}

.bon-floating-banner {
  position: fixed;
  left: 50%;
  right: auto;
  width: min(900px, calc(100% - 24px));
  bottom: 12px;
  z-index: 80;
  border-radius: 12px;
  background: #0f1a33;
  border: 1px solid #334876;
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.4);
  padding: 10px 46px 10px 12px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  transform: translate(-50%, 120%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.bon-floating-banner.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: auto;
}

.bon-floating-banner p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.35;
}

.bon-floating-banner .bon-btn,
.bon-floating-banner .click-login-launch {
  min-height: 44px;
  min-width: 168px;
  padding: 0 16px;
  font-size: 0.95rem;
}

.bon-floating-close {
  position: absolute;
  top: 50%;
  right: 8px;
  width: 28px;
  height: 28px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 1;
  border-radius: 8px;
  border: 0;
  background: #253251;
  color: #f3f6ff;
  font-size: 0.95rem;
}

.bon-slot-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(7, 11, 20, 0.84);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.bon-slot-modal[aria-hidden="false"] {
  display: flex;
}

.bon-slot-modal-card {
  width: min(1100px, 100%);
  max-height: 92vh;
  border-radius: 16px;
  border: 1px solid #3a4e80;
  background: #0a1428;
  padding: 16px;
  position: relative;
  display: grid;
  gap: 12px;
}

.bon-slot-modal-top {
  display: flex;
  justify-content: flex-end;
}

.bon-slot-modal-close {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 0;
  background: #24314f;
  color: #f4f6ff;
  font-size: 1.5rem;
}

.bon-slot-modal iframe {
  width: 100%;
  height: min(66vh, 640px);
  border: 0;
  border-radius: 12px;
  background: #050b15;
}

.bon-footer {
  margin-left: 280px;
  padding: 0 var(--bon-space) var(--bon-space);
}

.bon-footer-inner {
  background: #0c1427;
  border: 1px solid #263352;
  border-radius: 16px;
  padding: 16px;
}

.bon-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}

.bon-footer-links a {
  text-decoration: none;
  color: #dce5ff;
}

.bon-footer-meta {
  color: #9daccc;
  font-size: 0.9rem;
}

.bon-service-main {
  padding: var(--bon-space);
  margin-left: 280px;
}

.bon-service-main section {
  margin-block: var(--bon-space);
}

.bon-contact-form {
  display: grid;
  gap: 10px;
}

.bon-contact-form label {
  display: grid;
  gap: 6px;
  font-weight: 600;
}

.bon-contact-form input,
.bon-contact-form textarea {
  width: 100%;
  border: 1px solid #2e3a5b;
  border-radius: 10px;
  background: #0e1830;
  color: #f3f7ff;
  min-height: 44px;
  padding: 10px;
}

.bon-contact-form textarea {
  min-height: 130px;
  resize: vertical;
}

.bon-form-feedback {
  margin: 0;
  color: #9fd0a7;
  min-height: 1.2em;
}

.bon-seo-buffer[hidden] {
  display: none;
}

@media (max-width: 1200px) {
  .bon-slot-grid,
  .slots-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .bon-review-card {
    flex-basis: calc((100% - 14px) / 2);
  }
}

@media (max-width: 1023px) {
  .bon-sidebar {
    position: sticky;
    top: 0;
    width: auto;
    height: auto;
    border-right: 0;
    border-bottom: 1px solid #24314f;
    padding: 10px 12px;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .bon-sidebar-logo-wrap {
    margin: 0;
    flex: none;
    width: 100%;
    text-align: center;
  }

  .bon-logo-link {
    width: auto;
    min-height: 56px;
    max-width: 198px;
  }

  .bon-sidebar-cta-stack {
    margin: 0;
    display: flex;
    gap: 8px;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .bon-sidebar-cta-stack .bon-btn,
  .bon-sidebar-cta-stack .click-login-launch {
    min-height: 42px;
    min-width: 128px;
    padding: 0 14px;
  }

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

  main[data-main-content],
  .bon-footer,
  .bon-service-main {
    margin-left: 0;
  }

  .bon-hero-menu {
    display: none;
  }

  .bon-hero-auth {
    display: none;
  }

  .bon-hero picture img {
    object-position: center top;
  }

  .bon-hero-search-row {
    grid-template-columns: 1fr;
    bottom: 10px;
  }

  .bon-slot-grid,
  .slots-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bon-two-col,
  .bon-media-grid,
  .bon-pros-cons,
  .bon-support-grid,
  .bon-calc-grid {
    grid-template-columns: 1fr;
  }

  .bon-review-slider {
    padding-inline: 32px;
  }

  .bon-review-card {
    flex-basis: 100%;
  }

  .bon-review-btn {
    width: 26px;
    height: 62px;
    border-radius: 8px;
    font-size: 1rem;
  }

  .bon-floating-banner {
    grid-template-columns: 1fr;
    width: calc(100% - 24px);
    padding: 10px 44px 10px 12px;
    gap: 8px;
    align-items: start;
  }

  .bon-floating-banner .bon-btn,
  .bon-floating-banner .click-login-launch {
    min-height: 42px;
    min-width: 152px;
    padding: 0 14px;
  }

  .bon-floating-close {
    width: 30px;
    height: 30px;
    top: 8px;
    right: 8px;
    transform: none;
  }

  .bon-slot-modal {
    padding: 0;
  }

  .bon-slot-modal-card {
    width: 100vw;
    height: 100vh;
    max-height: 100vh;
    border-radius: 0;
    padding: 12px;
  }

  .bon-slot-modal iframe {
    height: calc(100vh - 180px);
  }

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

  .bon-accordion-trigger {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
  }

  [data-nav-trigger] {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
  }
}
