.drag-col {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.card {
  height: auto;
  display: flex;
  flex-direction: column;
}
.card-content {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.card-content p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.4;
}
.oneway-card.flicker-off {
  display: none;
}
.oneway-card {
  background: #0a0000;
  border: 2px solid #ff0000;
  box-shadow: 0 0 6px rgba(255,0,0,0.3);
  position: relative;
}
.oneway-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(0deg, rgba(255,0,0,0.08) 0px, rgba(255,0,0,0.08) 2px, transparent 2px, transparent 6px);
  pointer-events: none;
  z-index: 1;
}
.glitch-handle {
  background: #2a0000;
  border-bottom: 1px dashed #ff6666;
  text-shadow: 0 0 1px #ff0000;
  letter-spacing: 3px;
}
.glitch-text {
  font-family: 'Courier New', monospace;
  font-size: 0.9rem;
  color: #ff6666;
  word-break: break-all;
}