.card-content {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.card-content dd,
.editable-dd {
  margin-left: 0.7rem;
  margin-bottom: 0.6rem;
  font-size: 0.8rem;
  font-family: 'Turret Road', 'Courier New', monospace;
  color: #ff0000;
  line-height: 1.4;
}
.card-content dt,
.editable-dt {
  background: #ff0000;
  color: black;
  font-weight: bold;
  width: fit-content;
  padding: 0.2rem 0.5rem;
  font-size: 0.8rem;
  margin-bottom: 0.3rem;
  font-family: 'Turret Road', 'Courier New', monospace;
  cursor: text;
  outline: none;
}
.editable-dt:empty:before {
  content: "Click to edit title";
  color: #440000;
  font-style: italic;
}
.fake-screenshot {
  background: #373737;
  border: 1px solid #ff0000;
  padding: 0.5rem;
  margin: 0.3rem 0;
  font-family: 'Open Sans', 'Segoe UI', sans-serif;
  font-size: 0.9rem;
  color: #ffffff;
  min-height: 100px;
  outline: none;
  cursor: text;
  white-space: pre-wrap;
  word-wrap: break-word;
  word-break: break-word;
  line-height: 1.4;
  position: relative;
}
.fake-screenshot:empty:before {
  content: "✧ click here to write your own reception (looks like a real screenshot) ✧";
  color: #cccccc;
  font-style: normal;
  font-family: 'Open Sans', sans-serif;
}
.editable-dd {
  cursor: text;
  outline: none;
}
.drag-col {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.card {
  height: auto;
  display: flex;
  flex-direction: column;
}
.card-content img {
  max-width: 100%;
  height: auto;
  border: 1px solid #ff0000;
}
.toolbar {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 0.6rem;
  gap: 0.6rem;
}
.reset-btn {
  background: black;
  color: #ff0000;
  border: 1.5px solid #ff0000;
  padding: 0.2rem 0.6rem;
  font-size: 0.65rem;
  font-family: 'Turret Road', monospace;
  font-weight: bold;
  cursor: pointer;
}
.reset-btn:hover {
  background: #ff0000;
  color: black;
  box-shadow: 0 0 5px red;
}
.flicker-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: rgba(0,0,0,0.7);
  z-index: 10;
  pointer-events: none;
}