@import url("https://fonts.googleapis.com/css2?family=Google+Sans:wght@100;200;300;400;500;700;900&display=swap");

#buzeep-app,
#buzeep-app * {
  box-sizing: border-box;
}

#buzeep-app {
  font-family: "Google Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

#buzeep-app button,
#buzeep-app input,
#buzeep-app select,
#buzeep-app textarea {
  font: inherit;
}

#buzeep-app button {
  cursor: pointer;
}

#buzeep-app button:disabled {
  cursor: not-allowed;
}

body.admin-bar #buzeep-app .buzeep-public-nav {
  top: 32px;
}

@media (max-width: 782px) {
  body.admin-bar #buzeep-app .buzeep-public-nav {
    top: 46px;
  }
}

@keyframes buzeepFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes buzeepScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes buzeepScrollY {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}

@keyframes buzeepViralFade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes buzeepRocketDashDraw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes buzeepRocketFadeArea {
  to {
    opacity: 1;
  }
}

@keyframes buzeepRocketMoveDot {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(250px, -210px);
  }
}

#buzeep-app .animate-fadeIn {
  animation: buzeepFadeIn 0.4s ease-out forwards;
}

#buzeep-app .animate-scroll {
  animation: buzeepScroll 30s linear infinite;
}

#buzeep-app .animate-scroll-y {
  animation: buzeepScrollY 35s linear infinite;
}

#buzeep-app .animate-scroll-y:hover {
  animation-play-state: paused;
}

#buzeep-app .buzeep-viral-fade {
  animation: buzeepViralFade 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
}

#buzeep-app .buzeep-feed-mask {
  -webkit-mask-image:
    linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%),
    linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%),
    linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  mask-composite: intersect;
}

#buzeep-app .buzeep-trust-item:focus-visible {
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.3);
}

#buzeep-app .buzeep-trust-tooltip {
  letter-spacing: 0;
}

#buzeep-app .buzeep-rocket-grid {
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.2) 1px, transparent 1px);
  background-size: 40px 40px;
  -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
}

.dark #buzeep-app .buzeep-rocket-grid {
  background-image:
    linear-gradient(rgba(30, 41, 59, 0.95) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 41, 59, 0.95) 1px, transparent 1px);
}

#buzeep-app .buzeep-rocket-draw-line {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: buzeepRocketDashDraw 1.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

#buzeep-app .buzeep-rocket-fade-area {
  animation: buzeepRocketFadeArea 2s ease-in-out forwards;
  animation-delay: 0.5s;
  opacity: 0;
}

#buzeep-app .buzeep-rocket-move-dot {
  animation: buzeepRocketMoveDot 1.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@media (max-width: 640px) {
  #buzeep-app .buzeep-trust-tooltip {
    bottom: auto;
    top: calc(100% + 12px);
  }

  #buzeep-app .buzeep-trust-tooltip > span {
    top: auto;
    bottom: 100%;
  }
}

#buzeep-app .custom-scrollbar::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

#buzeep-app .custom-scrollbar::-webkit-scrollbar-track {
  background: transparent;
}

#buzeep-app .custom-scrollbar::-webkit-scrollbar-thumb {
  background-color: rgba(156, 163, 175, 0.3);
  border-radius: 20px;
}

.dark #buzeep-app .custom-scrollbar::-webkit-scrollbar-thumb {
  background-color: rgba(71, 85, 105, 0.5);
}

#buzeep-app .buzeep-icon svg,
#buzeep-app [data-lucide] {
  display: block;
}

#buzeep-app .buzeep-table-wrap {
  overflow: auto;
}

#buzeep-app .buzeep-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 20px;
  border-radius: 5px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.12), 0 1px 2px rgba(15, 23, 42, 0.08);
}

#buzeep-app .buzeep-flag svg {
  display: block;
  width: 100%;
  height: 100%;
}

#buzeep-app[data-mode="dashboard"] input[data-field="quantity"]::placeholder {
  font-size: 12px;
}

.buzeep-noscript-summary {
  max-width: 820px;
  margin: 48px auto;
  padding: 28px;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  background: #ffffff;
  color: #0f172a;
  font-family: "Google Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

.buzeep-noscript-summary h1 {
  margin: 0 0 12px;
  font-size: 32px;
  line-height: 1.15;
}

.buzeep-noscript-summary p {
  margin: 0 0 10px;
  color: #475569;
}
