body {
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 20px;
  background-color: #f4f4f4;
}

.hockey-family {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.hockey-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.hockey-player-box {
  flex: 1 1 300px;
  max-width: 380px;
  min-width: 100px;
  height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(180deg, #ffffff 80%, rgba(255, 255, 255, 0.6));
  border: 2px solid #0055a5;
  border-radius: 8px;
  padding: 10px;
  text-align: center;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.hockey-player-box h3 {
  margin: 0;
  font-size: 16px;
  color: #002f6c;
}

.hockey-player-box .content {
  flex-grow: 1;
  position: relative;
  font-size: 14px;
  color: #333;
  overflow: hidden;
  text-align: left;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 70%, rgba(0, 0, 0, 0));
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 70%, rgba(0, 0, 0, 0));
}

.hockey-player-box footer {
  text-align: center;
}

.hockey-player-box a {
  display: inline-block;
  padding: 5px 10px;
  background-color: #d32f2f;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-size: 14px;
}
