/* Cookie Popup — Serene */
.cookie-popup {
  position:fixed; bottom:0; left:0; right:0;
  background:rgba(22,22,32,0.92); backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  border-top:1px solid rgba(255,255,255,0.06); padding:16px 28px;
  display:flex; align-items:center; justify-content:center; gap:20px;
  z-index:10000; flex-wrap:wrap;
  animation:cu 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
}
@keyframes cu { from{transform:translateY(100%);opacity:0} to{transform:translateY(0);opacity:1} }
.cookie-popup p { color:#5A5A68; font-size:12px; margin:0; max-width:520px; line-height:1.6; font-family:'Sora',sans-serif; }
.cookie-popup a { color:#5CC8AA; }
.cookie-popup .cookie-accept {
  background:#5CC8AA; color:#0F0F12; border:none; padding:8px 20px;
  border-radius:10px; font-weight:600; font-size:12px;
  font-family:'Sora',sans-serif; cursor:pointer; transition:all 0.4s;
}
.cookie-popup .cookie-accept:hover { background:#7ADAC0; }
.cookie-popup.hidden { animation:cd 0.3s forwards; }
@keyframes cd { to{transform:translateY(100%);opacity:0} }
