/* ================= COOKIE BAR (wie vorher besser) ================= */
.cookie-bar{
  position: fixed;
  left: 12px;
  right: 12px;

  /* sitzt sauber über Player */
  bottom: calc(var(--playerH) + 14px);

  background: rgba(20,28,47,.88);
  border: 1px solid var(--line);
  padding: 12px 14px;
  border-radius: 14px;

  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;

  z-index: 4000;
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 34px rgba(0,0,0,.35);
}

.cookie-bar span{
  font-size: 12px;
  color: #c7d0e2;
  line-height: 1.2;
}

/* OK Button */
.cookie-bar button{
  background: var(--blue);
  border: none;
  color: #fff;
  padding: 8px 16px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
}

/* Optional: Close X (falls du ihn nutzt) */
.cookie-close{
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(15,23,42,.75);
  color: #c7d0e2;
  cursor: pointer;
  display: inline-flex;
  align-items:center;
  justify-content:center;
  font-size: 16px;
  line-height: 1;
}}}}