/* ── Banner ──────────────────────────────────────────────────── */
.rc-cc-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  background: #0F172A;
  border-top: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 -8px 32px rgba(0,0,0,.35);

  /* Slide-in animation */
  transform: translateY(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1), opacity .35s ease;
  opacity: 0;
}

.rc-cc-banner.rc-cc-visible {
  transform: translateY(0);
  opacity: 1;
}

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

/* ── Icon ────────────────────────────────────────────────────── */
.rc-cc-icon {
  flex-shrink: 0;
  color: #2563EB;
  display: flex;
  align-items: center;
}

/* ── Text ────────────────────────────────────────────────────── */
.rc-cc-content {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  flex: 1 1 400px;
  min-width: 0;
}

.rc-cc-text {
  min-width: 0;
}

.rc-cc-title {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 600;
  color: #F9FAFB;
  letter-spacing: -.01em;
}

.rc-cc-message {
  margin: 0;
  color: #9CA3AF;
  font-size: 13px;
  line-height: 1.65;
}

.rc-cc-link {
  color: #60A5FA;
  text-decoration: none;
  font-weight: 500;
  transition: color .15s;
}
.rc-cc-link:hover { color: #93C5FD; text-decoration: underline; }

/* ── Buttons ─────────────────────────────────────────────────── */
.rc-cc-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  align-items: center;
}

.rc-cc-btn {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: all .18s ease;
  letter-spacing: -.01em;
}

.rc-cc-btn--primary {
  background: #2563EB;
  color: #fff;
}
.rc-cc-btn--primary:hover {
  background: #1D4ED8;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37,99,235,.4);
}

.rc-cc-btn--ghost {
  background: rgba(255,255,255,.07);
  color: #D1D5DB;
  border: 1px solid rgba(255,255,255,.1);
}
.rc-cc-btn--ghost:hover {
  background: rgba(255,255,255,.12);
  color: #F9FAFB;
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 640px) {
  .rc-cc-inner {
    padding: 16px 16px 20px;
    gap: 16px;
  }
  .rc-cc-icon { display: none; }
  .rc-cc-content { flex: 1 1 100%; }
  .rc-cc-actions {
    width: 100%;
    flex-direction: column-reverse;
    gap: 8px;
  }
  .rc-cc-btn { width: 100%; text-align: center; padding: 11px 20px; }
}
