.top-row {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 700px;
  max-height: 120px;
  margin-bottom: 20px;
}
.infected-tagged { display: flex; gap: 15px; }

.pile {
  width: 60px;
  height: 87px;
  background: rgba(255,255,255,0.1);
  border: 3px solid #fff;
  border-radius: 8px;
  position: relative;
  box-shadow: 0 5px 15px rgba(0,0,0,0.4);
}

.card {
  width: 60px;
  height: 87px;
  background: white;
  border: 2px solid #222;
  border-radius: 8px;
  position: absolute;
  top: 0;
  left: 0;
  box-shadow: 3px 3px 10px rgba(0,0,0,0.6);
  cursor: pointer;
  user-select: none;
  overflow: hidden;
  font-family: Arial, sans-serif;
}

.card.back {
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
}

.card-face {
  position: relative;
  width: 100%;
  height: 100%;
  color: #111;
}

.top-left, .bottom-right {
  position: absolute;
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
}

.top-left {
  top: 6px;
  left: 6px;
  text-align: left;
}

.bottom-right {
  bottom: 6px;
  right: 6px;
  text-align: right;
  transform: rotate(180deg);
}

.red { color: #e11d48; }
.black { color: #111; }

.tableau {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.column {
  width: 67px;
  min-height: 400px;
  position: relative;
}
