.ccc-banner{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #101828;
  color: #fff;
  z-index: 99999;
  padding: 12px 16px;
  box-shadow: 0 -2px 10px rgba(0,0,0,.2);
  font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
}
.ccc-inner{
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
}
.ccc-text{
  flex: 1;
  font-size: 14px;
  line-height: 1.4;
}
#ccc-learn-more{
  color: #84caff;
  margin-left: 8px;
  text-decoration: underline;
}
.ccc-actions{ display:flex; gap:8px; }
.ccc-btn{
  border: 0;
  padding: 10px 14px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
}
.ccc-btn-primary{ background:#22c55e; color:#0b1a10; }
.ccc-btn-ghost{ background:transparent; color:#fff; border:1px solid rgba(255,255,255,.35); }
@media (max-width:640px){
  .ccc-inner{ flex-direction: column; align-items: stretch; }
  .ccc-actions{ justify-content: flex-end; }
}
