diff --git a/css/styles.css b/css/styles.css index 5d97e4c..256f7a1 100644 --- a/css/styles.css +++ b/css/styles.css @@ -1295,12 +1295,36 @@ body[data-lang="en"] .hide-de { display: none !important; } .user-detail-modal { max-width: 520px; } .user-detail-content { padding: 16px; } .user-detail-avatar { - width: 64px; - height: 64px; + width: 96px; + height: 96px; border-radius: 50%; margin: 0 auto 16px; overflow: hidden; + background: linear-gradient(135deg, #1877f2, #42b0ff); border: 3px solid #e7f3ff; + box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1); + display: flex; + align-items: center; + justify-content: center; +} +.user-detail-avatar img { + width: 100%; + height: 100%; + object-fit: cover; + display: block; + border-radius: 50%; +} +.user-detail-avatar .user-avatar-text { + width: 100%; + height: 100%; + border-radius: 50%; + background: transparent; + color: #fff; + display: flex; + align-items: center; + justify-content: center; + font-size: 36px; + font-weight: 600; } .user-detail-header { text-align: center; margin-bottom: 16px; } .user-detail-name-rank { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 8px; }