.strim-consent {
  position: fixed;
  z-index: 100000;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px 14px calc(12px + env(safe-area-inset-bottom, 0px));
  pointer-events: none;
}
.strim-consent[hidden] {
  display: none !important;
}
.strim-consent__panel {
  pointer-events: auto;
  max-width: 920px;
  margin: 0 auto;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: rgba(10, 16, 32, 0.96);
  color: #e2e8f0;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  font-family: Manrope, system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.5;
}
.strim-consent__title {
  font-weight: 700;
  font-size: 15px;
  margin: 0 0 6px;
}
.strim-consent__text {
  margin: 0 0 12px;
  color: #94a3b8;
  font-size: 13px;
}
.strim-consent__text a {
  color: #93c5fd;
  text-decoration: underline;
}
.strim-consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.strim-consent__btn {
  cursor: pointer;
  border-radius: 10px;
  padding: 10px 16px;
  font-weight: 700;
  font-size: 13px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: rgba(255, 255, 255, 0.06);
  color: #e2e8f0;
}
.strim-consent__btn--primary {
  border-color: rgba(96, 165, 250, 0.55);
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #fff;
}
.strim-consent__btn:hover {
  filter: brightness(1.06);
}
