.player-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.boss-status-card {
  grid-column: 1 / -1;
}

.boss-placeholder {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  min-height: 120px;
  margin: var(--space-4) 0;
  padding: var(--space-4);
  font-weight: 800;
  background: linear-gradient(90deg, #f6fff7 0 22%, #dff5ff 22% 78%, #fff1c7 78% 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.boat-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--white);
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(32, 33, 36, 0.14);
}

@media (max-width: 760px) {
  .player-grid {
    grid-template-columns: 1fr;
  }

  .boss-placeholder {
    min-height: 96px;
    font-size: 0.9rem;
  }
}
