
  .scb-wrap,
  .scb-wrap * {
    box-sizing: border-box;
  }

  .scb-wrap {
    --scb-yellow: #f5c928;
    --scb-ink: #0d0e10;
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9998;
    padding: 10px max(12px, env(safe-area-inset-right))
             calc(10px + env(safe-area-inset-bottom))
             max(12px, env(safe-area-inset-left));
    direction: rtl;
    font-family: inherit, Tahoma, Arial, sans-serif;
    pointer-events: none;
    transform: translateY(110%);
    opacity: 0;
    transition: transform .35s ease, opacity .25s ease;
  }

  .scb-wrap.scb-show {
    transform: translateY(0);
    opacity: 1;
  }

  .scb-box {
    width: min(1120px, 100%);
    min-height: 72px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    position: relative;
    overflow: hidden;
    padding: 12px 56px 12px 16px;
    border: 1px solid rgba(245, 201, 40, .55);
    border-radius: 18px;
    background:
      radial-gradient(circle at 85% 0%, rgba(245,201,40,.22), transparent 35%),
      linear-gradient(118deg, rgba(26,25,18,.98), rgba(9,10,12,.98));
    color: #fff;
    box-shadow: 0 -8px 34px rgba(0,0,0,.38);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    pointer-events: auto;
  }

  .scb-box::before {
    content: "AI";
    position: absolute;
    right: 13px;
    top: 50%;
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    transform: translateY(-50%);
    border-radius: 9px;
    background: var(--scb-yellow);
    color: var(--scb-ink);
    font: 900 13px/1 Arial, sans-serif;
    box-shadow: 0 0 22px rgba(245,201,40,.24);
  }

  .scb-copy {
    min-width: 0;
  }

  .scb-title {
    display: block;
    margin: 0 0 3px;
    overflow: hidden;
    color: #fff;
    font-size: clamp(12px, 1.2vw, 16px);
    font-weight: 900;
    line-height: 1.5;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .scb-title span {
    color: var(--scb-yellow);
  }

  .scb-description {
    display: block;
    margin: 0;
    overflow: hidden;
    color: #bdbdb7;
    font-size: 12px;
    line-height: 1.7;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .scb-button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0 17px;
    border-radius: 11px;
    background: var(--scb-yellow);
    color: #090909 !important;
    font-size: 13px;
    font-weight: 900;
    text-decoration: none !important;
    white-space: nowrap;
    transition: transform .2s ease, background-color .2s ease;
  }

  .scb-button:hover {
    transform: translateY(-2px);
    background: #ffdc46;
  }

  .scb-button svg {
    width: 17px;
    height: 17px;
  }

  .scb-button__short {
    display: none;
  }

  .scb-close {
    position: absolute;
    top: -8px;
    left: -8px;
    z-index: 2;
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 50%;
    background: #18191c;
    color: #fff;
    font: 400 20px/1 Arial, sans-serif;
    cursor: pointer;
    pointer-events: auto;
  }

  @media (max-width: 600px) {
    .scb-wrap {
      padding-top: 7px;
    }

    .scb-box {
      min-height: 78px;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 9px;
      padding: 10px 49px 10px 9px;
      border-radius: 15px;
    }

    .scb-box::before {
      right: 10px;
      width: 29px;
      height: 29px;
      border-radius: 8px;
      font-size: 12px;
    }

    .scb-title {
      margin-bottom: 2px;
      font-size: 13px;
    }

    .scb-description {
      font-size: 10.5px;
    }

    .scb-button {
      min-height: 40px;
      padding: 0 11px;
      font-size: 11.5px;
    }

    .scb-button__full {
      display: none;
    }

    .scb-button__short {
      display: inline;
    }

    .scb-close {
      top: -5px;
      left: -5px;
      width: 27px;
      height: 27px;
      font-size: 18px;
    }
  }

  @media (max-width: 360px) {
    .scb-description {
      max-width: 165px;
    }

    .scb-button {
      padding-inline: 9px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .scb-wrap,
    .scb-button {
      transition: none;
    }
  }
