.cc-wrap{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px;
  z-index: 9999;
}
.cc-card{
  max-width: 980px;
  margin: 0 auto;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 28px rgba(0,0,0,.12);
  padding: 14px;
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}
html.dark .cc-card{
  background: rgba(20,24,32,.92);
  border-color: rgba(255,255,255,.10);
  box-shadow: 0 14px 28px rgba(0,0,0,.35);
}
.cc-text{
  min-width: 0;
}
.cc-title{
  font-weight: 900;
  font-size: 14px;
  margin-bottom: 4px;
}
.cc-desc{
  font-size: 12.5px;
  line-height: 1.45;
  opacity: .9;
}
.cc-desc a{
  text-decoration: underline;
}
.cc-actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cc-btn{
  border-radius: 12px;
  padding: 10px 12px;
  font-weight: 900;
  font-size: 12.5px;
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(255,255,255,.85);
  cursor: pointer;
}
html.dark .cc-btn{
  border-color: rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: #fff;
}
.cc-btn:active{
  transform: translateY(1px);
}
.cc-accept{
  border: 0;
  background: linear-gradient(135deg, rgba(56,190,239,1), rgba(42,167,255,1));
  color: #071019;
}
html.dark .cc-accept{
  color: #071019;
}
@media (max-width: 760px){
  .cc-card{
    flex-direction: column;
    align-items: stretch;
  }
  .cc-actions{
    justify-content: stretch;
  }
  .cc-btn{
    width: 100%;
  }
}