#nstda-cookie-trigger {
  box-sizing: border-box;
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: #0ea5e9;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.4);
  z-index: 100000;
  transition: all 0.3s ease;
}
#nstda-cookie-trigger * {
  box-sizing: border-box;
}
#nstda-cookie-trigger:hover {
  transform: scale(1.1);
  background: #0284c7;
}
#nstda-cookie-banner {
  box-sizing: border-box;
  position: fixed;
  bottom: 84px;
  right: 24px;
  max-width: 400px;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  z-index: 100000;
  font-family: 'Inter', 'Prompt', sans-serif;
  color: #f8fafc;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  display: none;
}
#nstda-cookie-banner * {
  box-sizing: border-box;
}
.cookie-content-wrap {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.cookie-btn-wrap {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}
@media (max-width: 576px) {
  #nstda-cookie-trigger {
    bottom: 16px !important;
    right: 16px !important;
    width: 44px !important;
    height: 44px !important;
  }
  #nstda-cookie-banner {
    left: 16px !important;
    right: 16px !important;
    bottom: 72px !important;
    width: auto !important;
    max-width: none !important;
    padding: 16px !important;
  }
  .cookie-content-wrap {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 10px !important;
  }
  .cookie-btn-wrap {
    justify-content: center !important;
    width: 100% !important;
  }
  .cookie-btn-wrap button {
    width: 100% !important;
  }
}
