.cc-wrapper {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

.cc-card {
  background: #111;
  color: #fff;
  max-width: 640px;
  width: 100%;
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.cc-header {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.cc-body {
  font-size: 14px;
  opacity: 0.85;
  margin-bottom: 18px;
  line-height: 1.5;
}

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

.cc-btn {
  flex: 1;
  padding: 10px 14px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: 0.2s ease;
}

.cc-accept { background: #2ecc71; color: #000; }
.cc-analytics { background: #3498db; color: #fff; }
.cc-reject { background: #444; color: #fff; }

.cc-btn:hover { transform: translateY(-1px); opacity: 0.9; }

.cc-links {
  margin-top: 14px;
  font-size: 12px;
  opacity: 0.7;
  display: flex;
  gap: 14px;
}

.cc-links a {
  color: #bbb;
  text-decoration: none;
}

.cc-links a:hover {
  text-decoration: underline;
}
