#cc-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1e1e1e;
  color: #f0f0f0;
  padding: 20px 24px calc(20px + env(safe-area-inset-bottom, 0px)) 24px;
  z-index: 99999;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.5);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 14px;
}

.cc-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cc-text {
  flex: 1;
  min-width: 200px;
}

.cc-text strong {
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
  color: #fff;
}

.cc-text p {
  margin: 0;
  color: #bbb;
  line-height: 1.5;
}

.cc-text a {
  color: #a78bfa;
  text-decoration: underline;
}

.cc-btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cc-btns button {
  padding: 10px 22px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
}

.cc-btns button:hover {
  opacity: 0.85;
}

#cc-accept {
  background: #7c3aed;
  color: #fff;
}

#cc-decline {
  background: #3a3a3a;
  color: #f0f0f0;
  border: 1px solid #555;
}

#cc-privacy-link {
  position: fixed;
  bottom: 6px;
  right: 14px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  background: rgba(0, 0, 0, 0.35);
  padding: 4px 10px;
  border-radius: 6px;
  z-index: 9998;
  transition: color 0.2s, background 0.2s;
}

#cc-privacy-link:hover {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(0, 0, 0, 0.6);
}
