
.scottstudio-unauthorized {
  border: 1px solid #f56c6c30;
  color: #f56c6c;
  border-radius: 6px;
  background-color: rgba(var(--bg), 0.3);
  padding: 1em;
}
.scottstudio-unauthorized-title {
  font-size: 20px;
  gap: 10px;
  margin-bottom: 10px;
}
.scottstudio-ad {
  padding: 10px 15px;
  overflow: hidden;
  max-width: 320px;
  flex: 1;
  border-radius: 1rem;
  background: rgba(var(--rgb), 0.6);
  position: relative;
  font-size: 14px;
  box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
  margin-top: 20px;
}
.scottstudio-ad::before {
  content: '';
  position: absolute;
  background: linear-gradient(rgba(var(--rgb), 0.1), rgba(var(--rgb), 1));
  z-index: 2;
  inset: 0;
}
.scottstudio-ad .bg-wrapper {
  position: absolute;
  inset: 0;
  width: 200%;
  height: 200%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  z-index: 1;
  flex-wrap: wrap;
  gap: 20px;
  transform: translateX(-70px);
}
.scottstudio-ad .bg-wrapper .img {
  width: 60px;
  background-size: 100% 100%;
  height: 120px;
  border-radius: 5px;
  position: relative;
}
.scottstudio-ad .bg-wrapper .img::before {
  content: '';
  inset: 0;
  border-radius: 5px;
  position: absolute;
  background: rgba(var(--rgb), 0.5);
  z-index: 2;
}
.scottstudio-ad .bg-wrapper .strip {
  display: flex;
  flex-direction: column;
  transform: rotate(-30deg);
  transform-origin: top;
  gap: 10px;
  animation: bgMove 60s linear infinite;
}
.scottstudio-ad .bg-wrapper .strip:nth-of-type(2n) {
  animation: bgMoveReverse 60s linear infinite;
}
@keyframes bgMove {
0% {
    transform: rotate(-30deg) translateY(0);
}
100% {
    transform: rotate(-30deg) translateY(-80%);
}
}
@keyframes bgMoveReverse {
0% {
    transform: rotate(-30deg) translateY(-85%);
}
100% {
    transform: rotate(-30deg) translateY(5%);
}
}
.scottstudio-ad .ad-wrapper {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--default);
}
.scottstudio-ad .ad-wrapper .icon img {
  width: 50px;
  height: 50px;
  border-radius: 9px;
}
.scottstudio-ad .ad-wrapper .toolbar {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 5px;
  gap: 5px;
}
.scottstudio-ad .ad-wrapper .toolbar .info {
  color: var(--default, #fff);
  gap: 2px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  flex: 1;
}
.scottstudio-ad .ad-wrapper .toolbar .info p {
  margin: 0;
  font-size: 12px;
  word-break: break-all;
  line-height: 1.6;
}
.scottstudio-ad .ad-wrapper .toolbar .info p:first-child {
  font-size: 16px;
  font-weight: 500;
}
.scottstudio-ad .ad-wrapper .toolbar .info p .ad-tag {
  background: var(--default, #312484);
  color: #fff;
  padding: 2px 5px;
  border-radius: 5px;
  margin-right: 5px;
}
.scottstudio-ad .ad-wrapper .toolbar .ad-get-more {
  padding: 0 15px;
  border-radius: 15px;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  background: var(--default, #312484);
  color: #fff;
  cursor: pointer;
  font-size: 12px;
  opacity: 0.8;
  transition: 0.3s;
}
.scottstudio-ad .ad-wrapper .toolbar .ad-get-more::before {
  display: none !important;
}
.scottstudio-ad .ad-wrapper .toolbar .ad-get-more:hover {
  opacity: 1;
  border: none;
}
.scottstudio-ad .ad-wrapper .toolbar.is-dark .info,
.scottstudio-ad .ad-wrapper .toolbar.is-dark .get-more {
  color: #fff;
}

