#fcc-root { display: none; }

.fcc-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  z-index: 99999;
  background: #111;
  color: #fff;
  border-radius: 14px;
  padding: 14px 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  justify-content: space-between;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.fcc-bottom { bottom: 16px; }
.fcc-top { top: 16px; }

.fcc-content { max-width: 900px; }
.fcc-title { font-weight: 700; font-size: 14px; margin-bottom: 6px; }
.fcc-text { font-size: 13px; line-height: 1.35; opacity: .92; }

.fcc-links { margin-top: 8px; display: flex; gap: 12px; flex-wrap: wrap; }
.fcc-link { color: #fff; text-decoration: underline; font-size: 13px; opacity: .9; }
.fcc-link:hover { opacity: 1; }

.fcc-actions { display: flex; gap: 10px; flex-shrink: 0; }
.fcc-btn {
  appearance: none;
  border: 0;
  border-radius: 10px;
  padding: 10px 12px;
  font-weight: 700;
  cursor: pointer;
  font-size: 13px;
}

.fcc-accept { background: #fff; color: #111; }
.fcc-reject { background: rgba(255,255,255,.15); color: #fff; }

@media (max-width: 720px) {
  .fcc-banner { flex-direction: column; }
  .fcc-actions { width: 100%; }
  .fcc-btn { width: 100%; }
}