#burt-cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #0F172A;
  color: #fff;
  padding: 14px 24px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.3);
}
#burt-cookie-banner p {
  margin: 0;
  flex: 1;
  min-width: 200px;
  color: #CBD5E1;
}
#burt-cookie-banner a {
  color: #2DD4BF;
  text-decoration: underline;
}
.burt-consent-btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}
#burt-consent-manage {
  background: transparent;
  border: 1px solid #475569;
  color: #CBD5E1;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
  font-family: inherit;
  white-space: nowrap;
}
#burt-consent-accept {
  background: #2DD4BF;
  border: none;
  color: #0F172A;
  padding: 8px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  font-family: inherit;
  white-space: nowrap;
}
#burt-consent-manage:focus-visible,
#burt-consent-accept:focus-visible {
  outline: 2px solid #2DD4BF;
  outline-offset: 2px;
}
@media (max-width: 600px) {
  #burt-cookie-banner { flex-direction: column; align-items: flex-start; }
}
