.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-head {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.opentt-featured-player-meta {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.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 {
  position: relative;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  overflow: visible;
  display: block;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.opentt-featured-player-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  overflow: hidden;
  pointer-events: none;
}

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

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

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

.opentt-featured-player-club-badge {
  position: absolute;
  right: -5px;
  bottom: -5px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(3, 14, 40, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
  padding: 4px;
}

.opentt-featured-player-club-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.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-head {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
  }

  .opentt-featured-player-meta {
    align-items: flex-start;
    justify-content: center;
    gap: 2px;
    text-align: left;
    min-width: 0;
  }

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

  .opentt-featured-player-name {
    align-items: flex-start;
    font-size: 1.45rem;
    text-align: left;
  }

  .opentt-featured-player-club {
    text-align: left;
  }
}
