	margin: 0 auto 28px;
	padding: 10px;
	color: var(--vrp-text);
	background:
		radial-gradient(circle at 10% 4%, rgba(0, 245, 200, .12), transparent 30%),
		radial-gradient(circle at 70% 0%, rgba(0, 111, 255, .12), transparent 34%),
		linear-gradient(180deg, #020813 0%, #000712 100%);
	border-radius: 18px;
}
#profileview.vrp-profile-page,
#profileview.vrp-profile-page * { box-sizing: border-box; }
#profileview.vrp-profile-page a { text-decoration: none; }
#profileview.vrp-profile-page a:hover { text-decoration: none; }

#profileview .vrp-profile-hero {
	position: relative;
	min-height: 252px;
	padding: 26px 28px;
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	gap: 22px;
	overflow: hidden;
	border: 1px solid rgba(79, 116, 156, .48);
	border-radius: 14px;
	background:
		linear-gradient(90deg, rgba(2, 12, 26, .34) 0%, rgba(4, 11, 25, .95) 64%, rgba(1, 10, 22, .98) 100%),
		linear-gradient(180deg, rgba(0, 0, 0, .08), rgba(0, 0, 0, .56)),
		var(--vrp-cover-image) center / cover no-repeat,
		linear-gradient(135deg, #031329, #051a34);
	box-shadow: inset 0 0 0 1px rgba(255,255,255,.02), 0 22px 50px rgba(0,0,0,.42);
}
#profileview .vrp-profile-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(0,245,200,.12), transparent 32%, transparent 64%, rgba(0,245,200,.08)),
		repeating-linear-gradient(90deg, rgba(255,255,255,.035) 0 1px, transparent 1px 64px);
	pointer-events: none;
}
#profileview .vrp-profile-hero-pattern {
	position: absolute;
	right: 105px;
	top: 20px;
	width: 260px;
	height: 210px;
	opacity: .34;
	filter: drop-shadow(0 0 24px rgba(0,245,200,.25));
}
#profileview .vrp-profile-hero-pattern::before,
#profileview .vrp-profile-hero-pattern::after {
	content: "";
	position: absolute;
	inset: 20px 50px;
	border: 10px solid rgba(0, 245, 200, .28);
	border-bottom-width: 28px;
	clip-path: polygon(50% 0, 95% 28%, 79% 100%, 50% 82%, 21% 100%, 5% 28%);
}
#profileview .vrp-profile-hero-pattern::after {
	inset: 58px 84px 22px;
	border-color: rgba(0, 167, 255, .18);
	transform: rotate(180deg);
}
#profileview .vrp-profile-hero-left,
#profileview .vrp-profile-hero-right {
	position: relative;
	z-index: 1;
}
#profileview .vrp-profile-hero-left {
	display: flex;
	align-items: center;
	gap: 34px;
	min-width: 0;
}
#profileview .vrp-profile-avatar-wrap {
	position: relative;
	width: 176px;
	height: 176px;
	flex: 0 0 176px;
}
#profileview .vrp-profile-avatar {
	width: 176px;
	height: 176px;
	padding: 5px;
	border-radius: 999px;
	background: linear-gradient(145deg, #fff, #cfd7e5);
	box-shadow: 0 0 0 1px rgba(255,255,255,.36), 0 18px 42px rgba(0,0,0,.42), 0 0 26px rgba(0,245,200,.18);
	overflow: hidden;
}
#profileview .vrp-profile-avatar img,
#profileview .vrp-profile-avatar img.avatar {
	display: block;
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	object-fit: cover;
	border-radius: 999px;
}
#profileview .vrp-profile-avatar-fallback {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	border-radius: 999px;
	background: #111827;
	color: #fff;
	font-size: 64px;
	font-weight: 900;
}
#profileview .vrp-profile-online-dot {
	position: absolute;
	right: 6px;
	bottom: 24px;
	width: 28px;
	height: 28px;
	border-radius: 999px;
	border: 4px solid #061225;
	box-shadow: 0 0 18px rgba(0, 245, 200, .75);
	background: #7b8798;
}
#profileview .vrp-profile-online-dot.is-online { background: #00d98b; }
#profileview .vrp-profile-online-dot.is-offline { background: #718096; box-shadow: 0 0 12px rgba(113,128,150,.35); }
#profileview .vrp-profile-main-info { min-width: 0; }
#profileview .vrp-profile-main-info h1 {
	margin: 0 0 10px;
	font-size: clamp(30px, 4vw, 44px);
	line-height: 1;
	font-weight: 900;
	letter-spacing: -.035em;
	color: #fff;
	text-shadow: 0 0 24px rgba(0,0,0,.65);
}
#profileview .vrp-profile-role {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	min-height: 32px;
	padding: 0 18px;
	border-radius: 12px;
	border: 1px solid rgba(0,245,200,.48);
	background: rgba(0,245,200,.08);
	color: #39ffd8;
	font-weight: 800;
	box-shadow: inset 0 0 22px rgba(0,245,200,.05);
}
#profileview .vrp-profile-role.is-admin {
	border-color: rgba(255, 36, 79, .75);
	background: rgba(255,36,79,.08);
	color: #ff2b55;
	box-shadow: inset 0 0 20px rgba(255,36,79,.08), 0 0 18px rgba(255,36,79,.08);
}
#profileview .vrp-profile-role b { font-size: 15px; line-height: 1; }
#profileview .vrp-profile-meta {
	list-style: none;
	margin: 18px 0 0;
	padding: 0;
	display: grid;
	gap: 10px;
	color: #d7e2f2;
	font-size: 15px;
}
#profileview .vrp-profile-meta li {
	display: flex;
	align-items: center;
	gap: 10px;
	min-width: 0;
}
#profileview .vrp-profile-meta li > span {
	width: 22px;
	text-align: center;
	color: #d9e6f5;
	filter: drop-shadow(0 0 8px rgba(0,245,200,.25));
}
#profileview .vrp-profile-meta i {
	display: inline-flex;
	width: 12px;
	height: 12px;
	border-radius: 999px;
	background: #00dd8a;
	box-shadow: 0 0 14px rgba(0,221,138,.72);
}
#profileview .vrp-profile-hero-right {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	justify-content: space-between;
	gap: 18px;
	min-width: 210px;
}
#profileview .vrp-profile-edit-btn,
#profileview .vrp-profile-hero-like {
	border: 1px solid rgba(0,245,200,.72);
	border-radius: 10px;
	background: rgba(2, 18, 34, .72);
	box-shadow: inset 0 0 22px rgba(0,245,200,.06), 0 0 18px rgba(0,245,200,.10);
	color: #fff !important;
}
#profileview .vrp-profile-edit-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	min-height: 50px;
	padding: 0 22px;
	font-weight: 800;
}
#profileview .vrp-profile-edit-btn span { color: var(--vrp-neon); }
#profileview .vrp-profile-hero-like {
	display: grid;
	grid-template-columns: 54px auto;
	grid-template-rows: auto auto;
	align-items: center;
	min-width: 202px;
	padding: 22px 24px;
}
#profileview .vrp-profile-hero-like > span {
	grid-row: 1 / 3;
	font-size: 28px;
	color: var(--vrp-neon);
	filter: drop-shadow(0 0 18px rgba(0,245,200,.9));
}
#profileview .vrp-profile-hero-like strong,
#profileview .vrp-profile-stat-card strong {
	color: #fff;
	font-size: 23px;
	line-height: 1;
	font-weight: 900;
}
#profileview .vrp-profile-hero-like em,
#profileview .vrp-profile-stat-card em {
	font-style: normal;
	color: var(--vrp-muted);
	font-size: 14px;
}

#profileview .vrp-profile-stats {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 14px;
	margin: 18px 0;
}
#profileview .vrp-profile-stat-card {
	min-height: 78px;
	display: grid;
	grid-template-columns: 56px auto;
	grid-template-rows: auto auto;
	align-items: center;
	padding: 16px 24px;
	border: 1px solid rgba(75, 111, 151, .46);
	border-radius: 12px;
	background: linear-gradient(180deg, rgba(5,19,38,.92), rgba(2,12,27,.96));
	box-shadow: inset 0 0 0 1px rgba(255,255,255,.015), 0 16px 36px rgba(0,0,0,.26);
	color: var(--vrp-text) !important;
	transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
#profileview .vrp-profile-stat-card:hover,
#profileview .vrp-profile-stat-card.is-active {
	border-color: rgba(0,245,200,.72);
	box-shadow: inset 0 0 28px rgba(0,245,200,.07), 0 0 22px rgba(0,245,200,.10), 0 16px 36px rgba(0,0,0,.3);
	transform: translateY(-1px);
}
#profileview .vrp-profile-stat-card > span {
	grid-row: 1 / 3;
	font-size: 27px;
	text-align: center;
	color: var(--vrp-neon);
	filter: drop-shadow(0 0 16px rgba(0,245,200,.78));
}

#profileview .vrp-profile-dashboard {
	display: grid;
	grid-template-columns: 270px 300px minmax(480px, 1fr) 300px;
	gap: 14px;
	align-items: start;
}
#profileview .vrp-profile-panel,
#profileview .vrp-profile-nav {
	border: 1px solid rgba(75, 111, 151, .42);
	border-radius: 12px;
	background: linear-gradient(180deg, rgba(4, 17, 35, .93), rgba(1, 13, 27, .97));
	box-shadow: inset 0 0 0 1px rgba(255,255,255,.015), 0 16px 36px rgba(0,0,0,.28);
}
#profileview .vrp-profile-nav { padding: 12px; min-height: 532px; }
#profileview .vrp-profile-nav nav { display: grid; gap: 5px; }
#profileview .vrp-profile-nav a {
	display: flex;
	align-items: center;
	gap: 13px;
	min-height: 44px;
	padding: 0 16px;
	border-radius: 8px;
	color: #cfd9e8 !important;
	font-size: 15px;
	font-weight: 700;
	border: 1px solid transparent;
}
#profileview .vrp-profile-nav a span {
	width: 22px;
	text-align: center;
	color: var(--vrp-neon);
	filter: drop-shadow(0 0 8px rgba(0,245,200,.55));
}
#profileview .vrp-profile-nav a.is-current,
#profileview .vrp-profile-nav a:hover {
	border-color: rgba(0,245,200,.62);
	background: rgba(0,245,200,.09);
	color: #fff !important;
}
#profileview .vrp-profile-nav a.is-disabled { opacity: .48; pointer-events: none; }
#profileview .vrp-profile-panel { padding: 20px; }
#profileview .vrp-profile-panel h2,
#profileview .vrp-profile-panel-head h2 {
	margin: 0;
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 17px;
	font-weight: 900;
	letter-spacing: .035em;
	text-transform: uppercase;
	color: #f7fbff;
}
#profileview .vrp-profile-panel h2 > span,
#profileview .vrp-profile-panel-head h2 > span { color: var(--vrp-neon); filter: drop-shadow(0 0 12px rgba(0,245,200,.8)); }

#profileview .vrp-profile-account { min-height: 532px; }
#profileview .vrp-profile-account-list { margin-top: 22px; }
#profileview .vrp-profile-account-list > div {
	display: grid;
	grid-template-columns: 118px minmax(0, 1fr);
	gap: 16px;
	padding: 17px 0;
	border-bottom: 1px solid rgba(122, 151, 181, .14);
	align-items: center;
}
#profileview .vrp-profile-account-list span {
	color: #d2dceb;
	font-size: 14px;
	font-weight: 700;
}
#profileview .vrp-profile-account-list strong,
#profileview .vrp-profile-account-list a {
	color: #eaf2ff !important;
	font-size: 14px;
	font-weight: 700;
	word-break: break-word;
}
#profileview .vrp-profile-account-list a { color: var(--vrp-neon) !important; }

#profileview .vrp-profile-characters { min-height: 532px; }
#profileview .vrp-profile-panel-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 16px;
}
#profileview .vrp-profile-panel-head > a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 36px;
	padding: 0 13px;
	border: 1px solid rgba(0,245,200,.58);
	border-radius: 8px;
	background: rgba(0,245,200,.06);
	color: #bffcf1 !important;
	font-size: 12px;
	font-weight: 800;
}
#profileview .vrp-profile-character-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}
#profileview .vrp-profile-character-card {
	display: grid;
	grid-template-columns: 92px minmax(0, 1fr);
	gap: 12px;
	min-height: 118px;
	padding: 12px;
	border: 1px solid rgba(78, 115, 154, .44);
	border-radius: 11px;
	background: linear-gradient(180deg, rgba(5,19,39,.94), rgba(2,13,28,.98));
	box-shadow: inset 0 0 22px rgba(0,245,200,.025);
}
#profileview .vrp-profile-character-visual {
	position: relative;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	min-height: 96px;
	border-radius: 10px;
	background: radial-gradient(circle at 50% 70%, rgba(0,245,200,.10), transparent 62%);
	overflow: hidden;
}
#profileview .vrp-profile-character-visual span {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	padding: 5px 9px;
	border-radius: 999px;
	background: rgba(15, 31, 54, .95);
	color: #e9f2ff;
	font-size: 11px;
	font-weight: 900;
}
#profileview .vrp-profile-character-visual img {
	display: block;
	max-width: 74px;
	max-height: 105px;
	object-fit: contain;
	filter: drop-shadow(0 12px 13px rgba(0,0,0,.45));
}
#profileview .vrp-profile-character-info { min-width: 0; }
#profileview .vrp-profile-character-info header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	margin-bottom: 8px;
}
#profileview .vrp-profile-character-info header strong {
	min-width: 0;
	color: #fff;
	font-size: 15px;
	font-weight: 900;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
#profileview .vrp-profile-character-info header em {
	flex: 0 0 auto;
	padding: 5px 8px;
	border-radius: 999px;
	font-style: normal;
	font-size: 11px;
	font-weight: 900;
	color: #d8e4f4;
	background: rgba(89, 112, 140, .18);
}
#profileview .vrp-profile-character-info header em.online { background: rgba(0,217,139,.16); color: #16ffae; }
#profileview .vrp-profile-character-info header em.offline { background: rgba(128,145,170,.17); color: #dbe6f5; }
#profileview .vrp-profile-character-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-bottom: 8px;
}
#profileview .vrp-profile-character-tags span {
	padding: 5px 8px;
	border-radius: 7px;
	background: rgba(141, 159, 184, .14);
	color: #e3edf9;
	font-size: 11px;
	font-weight: 800;
}
#profileview .vrp-profile-character-meter { margin-top: 6px; }
#profileview .vrp-profile-character-meter div {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 8px;
	margin-bottom: 4px;
}
#profileview .vrp-profile-character-meter span,
#profileview .vrp-profile-character-meter b {
	color: #dce8f6;
	font-size: 12px;
	font-weight: 800;
}
#profileview .vrp-profile-character-meter i {
	display: block;
	height: 6px;
	border-radius: 999px;
	background: rgba(122, 144, 174, .30);
	overflow: hidden;
}
#profileview .vrp-profile-character-meter u {
	display: block;
	height: 100%;
	border-radius: inherit;
	background: linear-gradient(90deg, #05e27c, #00c96b);
	box-shadow: 0 0 10px rgba(0, 217, 108, .65);
}
#profileview .vrp-profile-character-meter u.armour { background: linear-gradient(90deg, #37d4ff, #298cff); box-shadow: 0 0 10px rgba(45,151,255,.55); }
#profileview .vrp-profile-character-alert,
#profileview .vrp-profile-empty {
	grid-column: 1 / -1;
	padding: 14px;
	border: 1px solid rgba(255,255,255,.08);
	border-radius: 10px;
	background: rgba(255,255,255,.04);
	color: var(--vrp-muted);
	font-weight: 700;
}
#profileview .vrp-profile-character-alert { margin-bottom: 12px; color: #f4d47d; background: rgba(244, 212, 125, .07); border-color: rgba(244, 212, 125, .20); }
#profileview .vrp-profile-empty.small { padding: 10px; font-size: 12px; }
#profileview .vrp-profile-full-link,
#profileview .vrp-profile-side-link {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	margin-top: 14px;
	padding: 0 14px;
	border: 1px solid rgba(80, 115, 153, .44);
	border-radius: 8px;
	background: rgba(5, 23, 45, .72);
	color: #cbd8ea !important;
	font-weight: 800;
	font-size: 13px;
}
#profileview .vrp-profile-full-link span,
#profileview .vrp-profile-side-link span { margin-left: auto; color: #fff; }
#profileview .vrp-profile-full-link:hover,
#profileview .vrp-profile-side-link:hover { border-color: rgba(0,245,200,.56); color: #fff !important; }

#profileview .vrp-profile-right { display: grid; gap: 14px; }
#profileview .vrp-profile-badges { min-height: 188px; }
#profileview .vrp-profile-badge-list {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
	margin-top: 20px;
}
#profileview .vrp-profile-badge-list div {
	display: grid;
	justify-items: center;
	gap: 7px;
	min-width: 0;
}
#profileview .vrp-profile-badge-list i {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 58px;
	height: 58px;
	font-style: normal;
	font-size: 29px;
	font-weight: 900;
	clip-path: polygon(50% 0, 88% 16%, 100% 56%, 75% 100%, 25% 100%, 0 56%, 12% 16%);
	border: 1px solid rgba(255,255,255,.28);
	color: #fff;
}
#profileview .vrp-profile-badge-list .founder i { background: radial-gradient(circle at 50% 35%, rgba(0,245,200,.28), rgba(0,148,120,.38)); box-shadow: 0 0 20px rgba(0,245,200,.32); }
#profileview .vrp-profile-badge-list .active i { background: radial-gradient(circle at 50% 35%, rgba(66,181,255,.35), rgba(21,91,234,.45)); box-shadow: 0 0 20px rgba(0,133,255,.32); }
#profileview .vrp-profile-badge-list .support i { background: radial-gradient(circle at 50% 35%, rgba(187,104,255,.35), rgba(89,42,190,.46)); box-shadow: 0 0 20px rgba(154,80,255,.32); }
#profileview .vrp-profile-badge-list span {
	max-width: 82px;
	color: #cbd8e8;
	font-size: 12px;
	font-weight: 800;
	text-align: center;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
#profileview .vrp-profile-visitors { min-height: 330px; }
#profileview .vrp-profile-visitor-list {
	display: grid;
	gap: 9px;
	margin-top: 18px;
}
#profileview .vrp-profile-visitor {
	display: grid;
	grid-template-columns: 40px minmax(0, 1fr);
	align-items: center;
	gap: 11px;
	color: #fff !important;
}
#profileview .vrp-profile-visitor-avatar {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 999px;
	overflow: hidden;
	background: rgba(255,255,255,.12);
	box-shadow: 0 0 0 1px rgba(255,255,255,.18);
}
#profileview .vrp-profile-visitor-avatar img,
#profileview .vrp-profile-visitor-avatar img.avatar {
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	object-fit: cover;
	border-radius: 999px;
}
#profileview .profile-visitor-fallback {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	font-size: 12px;
	font-weight: 900;
	color: #fff;
}
#profileview .vrp-profile-visitor strong {
	display: grid;
	min-width: 0;
	font-size: 13px;
	font-weight: 850;
	color: #f2f7ff;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
#profileview .vrp-profile-visitor em {
	font-style: normal;
	font-size: 12px;
	font-weight: 700;
	color: #aab8ca;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

@media (max-width: 1480px) {
	#profileview .vrp-profile-dashboard { grid-template-columns: 250px 280px minmax(420px, 1fr); }
	#profileview .vrp-profile-right { grid-column: 1 / -1; grid-template-columns: 1fr 1fr; }
	#profileview .vrp-profile-nav,
	#profileview .vrp-profile-account,
	#profileview .vrp-profile-characters { min-height: auto; }
}
@media (max-width: 1100px) {
	#profileview .vrp-profile-hero { flex-direction: column; }
	#profileview .vrp-profile-hero-right { flex-direction: row; align-items: center; min-width: 0; }
	#profileview .vrp-profile-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	#profileview .vrp-profile-stat-card:last-child { grid-column: 1 / -1; }
	#profileview .vrp-profile-dashboard { grid-template-columns: 1fr; }
	#profileview .vrp-profile-right { grid-template-columns: 1fr; }
	#profileview .vrp-profile-nav { min-height: auto; }
	#profileview .vrp-profile-nav nav { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 760px) {
	#profileview.vrp-profile-page { padding: 6px; }
	#profileview .vrp-profile-hero { padding: 20px; }
	#profileview .vrp-profile-hero-left { flex-direction: column; align-items: flex-start; gap: 18px; }
	#profileview .vrp-profile-avatar-wrap,
	#profileview .vrp-profile-avatar { width: 132px; height: 132px; flex-basis: 132px; }
	#profileview .vrp-profile-online-dot { bottom: 12px; }
	#profileview .vrp-profile-hero-right { flex-direction: column; align-items: stretch; }
	#profileview .vrp-profile-hero-like { min-width: 0; }
	#profileview .vrp-profile-stats { grid-template-columns: 1fr; }
	#profileview .vrp-profile-stat-card:last-child { grid-column: auto; }
	#profileview .vrp-profile-nav nav { grid-template-columns: 1fr; }
	#profileview .vrp-profile-character-grid { grid-template-columns: 1fr; }
	#profileview .vrp-profile-character-card { grid-template-columns: 82px minmax(0, 1fr); }
	#profileview .vrp-profile-panel-head { align-items: flex-start; flex-direction: column; }
	#profileview .vrp-profile-account-list > div { grid-template-columns: 1fr; gap: 6px; }
}

/* Native v16 profile adjustments retained for compatibility. */
body.forum-dark.vrp-native.action_profile #profileview.vrp-profile-native-v16 {
    width: min(1120px, calc(100vw - 36px));
    margin: 36px auto 52px;
}
body.forum-dark.vrp-native.action_profile #profileview .vf-avatar-xl,
body.forum-dark.vrp-native.action_profile #profileview .vf-avatar-xl img {
    width: 160px !important;
    height: 160px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
}
body.forum-dark.vrp-native.action_profile #profileview .vrp-profile-role {
    background: rgba(0,245,200,.10) !important;
}
body.forum-dark.vrp-native.action_profile #profileview .vrp-profile-avatar .vf-avatar { display:flex !important; align-items:center !important; justify-content:center !important; }
body.forum-dark.vrp-native.action_profile #profileview .vrp-profile-visitor-avatar .vf-avatar,
body.forum-dark.vrp-native.action_profile #profileview .vrp-profile-visitor-avatar .vf-avatar img {
    width: 44px !important; height: 44px !important; border-radius: 50% !important; object-fit: cover !important;
}
body.forum-dark.vrp-native.action_profile #profileview .vrp-profile-account-list strong { overflow-wrap:anywhere; }
