/* Cloudflare Verification Modal */
#cf-verify-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 99999;
  align-items: center;
  justify-content: center;
}

#cf-verify-modal.is-visible {
  display: flex;
}

.cf-modal-content {
  background: var(--color-fd-card, #fff);
  width: 90%;
  max-width: 500px;
  height: 80%;
  max-height: 600px;
  border-radius: var(--radius-lg, 8px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--color-fd-border, #e5e5e5);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  animation: fade-in 0.2s ease;
}

.cf-modal-header {
  padding: 12px 16px;
  border-bottom: 1px solid var(--color-fd-border, #e5e5e5);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cf-modal-title {
  font-weight: 600;
}

.cf-close-btn {
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
  color: var(--color-fd-muted-foreground);
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}

.cf-close-btn:hover {
  background: var(--color-fd-muted);
  color: var(--color-fd-foreground);
}

#cf-iframe {
  flex: 1;
  border: none;
  width: 100%;
  background: var(--color-fd-card, #fff);
}

