.cookie-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  backdrop-filter: blur(4px);
}
.cookie-box {
  width: 90%;
  max-width: 460px;
  background: #111;
  color: #fff;
  padding: 24px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.cookie-box h3 {
  margin: 0 0 10px 0;
  font-size: 18px;
}
.cookie-box p {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,0.75);
  margin-bottom: 18px;
}
.cookie-buttons {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}
.cookie-buttons button {
  padding: 10px 14px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 13px;
}
#cookie-accept {
  background: #d10000;
  color: white;
}
#cookie-reject {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
}
