.cc-banner{
  position:fixed;
  bottom:20px;
  left:20px;
  right:20px;
  z-index:99999;
  display:flex;
  justify-content:center;
}

.cc-box p {
  max-width:900px;
  background:#111;
  color:#fff;
  padding:20px;
  border-radius:14px;
  box-shadow:0 10px 40px rgba(0,0,0,.3);
  font-size:10px;
}

.cc-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:15px;
}

.cc-btn{
  padding:10px 16px;
  border:none;
  border-radius:8px;
  cursor:pointer;
  background:#333;
  color:#fff;
}

.cc-btn primary{
  background:#4f7cff;
}

.cc-btn.ghost{
  background:transparent;
  border:1px solid #555;
}

.cc-modal{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.6);
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:100000;
}

.cc-modal-box{
  background:#fff;
  color:#111;
  padding:25px;
  border-radius:12px;
  width:400px;
}

.hidden{
  display:none;
}

.cc-modal-box label{
  display:block;
  margin:10px 0;
}