#cookie-banner{
  position:fixed;
  left:24px;
  right:24px;
  bottom:24px;
  z-index:9999;
  max-width:980px;
  margin:0 auto;
  background:rgba(7,5,26,.92);
  border:1px solid rgba(255,255,255,.10);
  backdrop-filter:blur(24px) saturate(1.4);
  -webkit-backdrop-filter:blur(24px) saturate(1.4);
  box-shadow:0 8px 40px rgba(0,0,0,.44), inset 0 1.5px 0 rgba(255,255,255,.07);
  border-radius:18px;
  padding:18px;
  color:#F0ECF8;
  font-family:'Plus Jakarta Sans',system-ui,sans-serif;
  display:none;
}

#cookie-banner.show{
  display:block;
  animation:cookieUp .35s ease;
}

@keyframes cookieUp{
  from{opacity:0;transform:translateY(18px)}
  to{opacity:1;transform:translateY(0)}
}

.cookie-wrap{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.cookie-title{
  font-size:11px;
  font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:#E8711A;
}

.cookie-text{
  font-size:13px;
  line-height:1.75;
  color:rgba(240,236,248,.82);
}

.cookie-text a{
  color:#E8711A;
  text-decoration:none;
}

.cookie-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.cookie-btn{
  border:none;
  cursor:pointer;
  border-radius:999px;
  padding:12px 18px;
  font-size:11px;
  font-weight:700;
  letter-spacing:.10em;
  text-transform:uppercase;
  transition:transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
  font-family:'Plus Jakarta Sans',system-ui,sans-serif;
}

.cookie-btn:hover{
  transform:scale(1.04) translateY(-2px);
}

.cookie-btn-primary{
  color:#fff;
  background:linear-gradient(135deg,#E8711A,#C04090,#6B32C8);
  box-shadow:0 6px 26px rgba(192,64,144,.35);
}

.cookie-btn-primary:hover{
  box-shadow:0 10px 34px rgba(192,64,144,.48);
}

.cookie-btn-secondary{
  color:#F0ECF8;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
}

.cookie-btn-secondary:hover{
  background:rgba(255,255,255,.10);
  border-color:rgba(255,255,255,.18);
}

@media (min-width: 760px){
  .cookie-wrap{
    flex-direction:row;
    align-items:end;
    justify-content:space-between;
    gap:20px;
  }

  .cookie-content{
    flex:1;
    min-width:0;
  }

  .cookie-actions{
    justify-content:flex-end;
    flex-shrink:0;
  }
}