.sc-widget {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: calc(100% - 40px);
  max-width: 440px;
  position: fixed;
  z-index: 1000;
  left: 20px;
  bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 20px;
  overflow: hidden;
  color: #f7f1e5;
  background:
    -o-linear-gradient(315deg, rgba(205, 170, 100, 0.18), rgba(205, 170, 100, 0) 42%),
    rgba(18, 25, 23, 0.92);
  background:
    linear-gradient(135deg, rgba(205, 170, 100, 0.18), rgba(205, 170, 100, 0) 42%),
    rgba(18, 25, 23, 0.92);
  border: 1px solid rgba(247, 241, 229, 0.18);
  border-radius: 18px;
  -webkit-box-shadow: 0 20px 50px rgba(0, 0, 0, 0.38);
          box-shadow: 0 20px 50px rgba(0, 0, 0, 0.38);
  -webkit-backdrop-filter: blur(14px);
          backdrop-filter: blur(14px);
  -webkit-animation: sc-widget-show 0.45s ease both;
          animation: sc-widget-show 0.45s ease both;
}

.sc-widget::before {
  content: "";
  width: 58px;
  height: 2px;
  margin-bottom: 14px;
  display: block;
  background: #d6b36f;
  border-radius: 999px;
}

.sc-widget * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.sc-widget__img {
  display: none;
}

.sc-widget__text {
  width: 100%;
  margin: 0 0 16px;
  color: rgba(247, 241, 229, 0.9);
  font-size: 13px;
  line-height: 1.45;
  letter-spacing: 0.01em;
}

.sc-widget__text a {
  color: #f3cf83;
  text-decoration: none;
  border-bottom: 1px solid rgba(243, 207, 131, 0.45);
  -webkit-transition: color 0.2s ease, border-color 0.2s ease;
  -o-transition: color 0.2s ease, border-color 0.2s ease;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.sc-widget__text a:visited {
  color: #f3cf83;
}

.sc-widget__text a:hover {
  color: #ffe4aa;
  border-color: rgba(255, 228, 170, 0.85);
}

.sc-widget__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  width: 100%;
}

.sc-widget .sc-widget__button {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0;
          flex: 1 1 0;
  min-width: 0;
  min-height: 44px;
  padding: 11px 14px;
  color: #f7f1e5;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  word-break: keep-all;
  writing-mode: horizontal-tb;
  background: transparent;
  border: 1px solid rgba(247, 241, 229, 0.32);
  border-radius: 999px;
  cursor: pointer;
  -webkit-transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    -webkit-transform 0.2s ease;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    -webkit-transform 0.2s ease;
  -o-transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease,
    -webkit-transform 0.2s ease;
}

.sc-widget .sc-widget__button:hover {
  -webkit-transform: translateY(-1px);
      -ms-transform: translateY(-1px);
          transform: translateY(-1px);
}

.sc-widget .sc-widget__button--accept {
  color: #171f1d;
  background: #f3cf83;
  border-color: #f3cf83;
  -webkit-box-shadow: 0 8px 18px rgba(243, 207, 131, 0.24);
          box-shadow: 0 8px 18px rgba(243, 207, 131, 0.24);
}

.sc-widget .sc-widget__button--accept:hover {
  background: #ffe0a2;
  border-color: #ffe0a2;
}

.sc-widget .sc-widget__button--reject:hover {
  color: #171f1d;
  background: #f7f1e5;
  border-color: #f7f1e5;
}

@-webkit-keyframes sc-widget-show {
  from {
    opacity: 0;
    -webkit-transform: translateY(14px);
            transform: translateY(14px);
  }

  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes sc-widget-show {
  from {
    opacity: 0;
    -webkit-transform: translateY(14px);
            transform: translateY(14px);
  }

  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .sc-widget {
    width: calc(100% - 24px);
    max-width: none;
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 16px;
    border-radius: 16px;
  }

  .sc-widget__text {
    font-size: 12px;
    line-height: 1.4;
  }
}

@media (max-width: 420px) {
  .sc-widget__actions {
    gap: 8px;
  }

  .sc-widget .sc-widget__button {
    min-height: 42px;
    padding: 10px 8px;
    font-size: 11px;
    letter-spacing: 0.05em;
  }
}
