.opentt-featured-player-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
  text-decoration: none;
  color: inherit;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(8, 30, 82, 0.45) 0%, rgba(3, 14, 40, 0.7) 100%);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.opentt-featured-player-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.32);
  background: linear-gradient(180deg, rgba(8, 30, 82, 0.55) 0%, rgba(3, 14, 40, 0.82) 100%);
}

.opentt-featured-player-photo {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  overflow: hidden;
  display: block;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.opentt-featured-player-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.opentt-featured-player-name {
  font-size: 1.7rem;
  line-height: 1.1;
  font-weight: 700;
  text-align: center;
  color: #fff;
}

.opentt-featured-player-club {
  color: rgba(223, 234, 255, 0.92);
  font-size: 0.98rem;
  text-align: center;
}

.opentt-featured-player-stats {
  margin-top: 6px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.opentt-featured-player-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 8px 6px;
  background: rgba(0, 0, 0, 0.16);
}

.opentt-featured-player-stat strong {
  font-size: 1rem;
  line-height: 1;
  color: #fff;
}

.opentt-featured-player-stat small {
  font-size: 0.76rem;
  color: rgba(217, 228, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

@media (max-width: 640px) {
  .opentt-featured-player-card {
    padding: 14px;
  }

  .opentt-featured-player-photo {
    width: 96px;
    height: 96px;
  }

  .opentt-featured-player-name {
    font-size: 1.45rem;
  }
}

