@charset "utf-8";

#profile {
	background: var(--white);
	border-top: 2px solid var(--pk1);
	border-bottom: 2px solid var(--pk1);
}
.profile-grid {
	display: grid;
	grid-template-columns: 260px 1fr;
	gap: 52px;
	align-items: start;
}
.prof-card {
	background: linear-gradient(160deg, var(--pk0) 0%, var(--pk1) 100%);
	border-radius: var(--radius);
	padding: 28px 20px;
	text-align: center;
	border: 2px solid var(--pk1);
	box-shadow: var(--shadow-sm);
	position: relative;
	overflow: hidden;
}
.prof-card::before {
	content: '🪽';
	position: absolute;
	font-size: 5rem;
	opacity: .08;
	bottom: -10px;
	right: -8px;
	transform: rotate(15deg);
	pointer-events: none;
}
.prof-avatar {
	width: 140px;
	height: 140px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--pk2), var(--pk3));
	margin: 0 auto 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 3rem;
	box-shadow: 0 0 0 5px var(--white), 0 0 0 9px var(--pk1), var(--glow);
	overflow: hidden;
	position: relative;
}
.prof-avatar img {
	width: 100%;
	height: 100%;
	margin-left: 65px;
	object-fit: cover;
	object-position: top;
}
.prof-halo {
	position: absolute;
	top: -18px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 1.4rem;
	animation: haloSpin 5s linear infinite;
	text-shadow: 0 0 8px var(--gold);
}
.prof-name {
	font-size: 1.22rem;
	font-weight: 900;
	color: var(--text);
	margin-bottom: 2px;
}
.prof-spell {
	font-size: .78rem;
	font-weight: 700;
	color: var(--text3);
	letter-spacing: .12em;
	margin-bottom: 2px;
}
.prof-tagline-card {
	font-size: .76rem;
	font-weight: 700;
	color: var(--pk4);
	margin-bottom: 14px;
	font-family: var(--fn-jp);
}
.oshi-mark {
	font-size: 1.5rem;
	margin-bottom: 12px;
}
.ptags {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	justify-content: center;
}
.ptag {
	background: var(--white);
	border: 1.5px solid var(--pk2);
	color: var(--pk4);
	font-size: .7rem;
	font-weight: 800;
	padding: 4px 12px;
	border-radius: 20px;
}
/* Profile right wrapper with standing art bg */
.prof-right {
	position: relative;
	overflow: hidden;
}
.prof-right-standingart {
	position: absolute; 
	top: 0;
	right: -20px;
	width: 400px; 
	height: 100%;
	pointer-events: none; 
	z-index: 0;
	display: flex; 
	align-items: flex-end; 
	justify-content: flex-end;
}
.prof-right-standingart img {
	width: 100%; 
	height: auto;
	object-fit:contain; 
	object-position: bottom right;
	opacity: .6;
	display: none; /* set src and remove this to show */
	filter: saturate(1.1);
	/* fade out top edge so it blends into bg */
	//-webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 40%, rgba(0, 0, 0, 0) 100%);
	//mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 40%, rgba(0, 0, 0, 0) 100%);
}
.prof-right-standingart-ph {
	/* placeholder shimmer shown when no image */
	position: absolute; 
	inset: 0;
	display: flex; 
	align-items: center; 
	justify-content: flex-end; 
	padding-right: 12px;
	pointer-events: none;
	opacity: .06;
	font-size: 14rem; 
	line-height: 1;
	overflow: hidden;
}
.prof-right-content {
	position: relative;
	z-index: 1;
}
.prof-bio{
	font-size: .92rem;
	line-height: 2;
	color: var(--text2);
	font-family: var(--fn-jp);
	margin-bottom: 28px;
}

/* Status right — standing art (same spec as prof-right) */
.status-right {
	position: relative;
}
.status-right-standingart {
	position: absolute; 
	top: 0; 
	right: -150px;
	width: 500px; 
	height: 100%;
	pointer-events: none; 
	z-index: 2;
	display: flex; 
	align-items: flex-end; 
	justify-content: flex-end;
}
.status-right-standingart img {
	width: 100%; 
	height: auto;
	object-fit: contain; 
	object-position: bottom right;
	opacity: .5;
	display: none;
	filter: saturate(1.1);
	//-webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 40%, rgba(0, 0, 0, 0) 100%);
	//mask-image:linear-gradient(to top, rgba(0, 0, 0, 1) 40%, rgba(0, 0, 0, 0) 100%);
}
.status-right-standingart-ph {
	position: absolute; 
	inset: 0;
	display: flex; 
	align-items: center; 
	justify-content: flex-end; 
	padding-right: 12px;
	pointer-events: none;
	opacity: .06;
	font-size: 14rem; 
	line-height: 1;
	overflow: hidden;
}
.status-right-content {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.stats {
	display: flex;
	gap:14px;
	margin-bottom: 28px;
	flex-wrap: wrap;
}
.stat {
	flex: 1;
	min-width: 86px;
	background: var(--pk0);
	border: 2px solid var(--pk1);
	border-radius: var(--radius-sm);
	padding: 13px 8px;
	text-align: center;
}
.stat-n {
	font-size: 1.5rem;
	font-weight: 900;
	color: var(--pk4);
	line-height: 1;
}
.stat-l {
	font-size: .64rem;
	font-weight: 700;
	color: var(--text3);
	letter-spacing: .08em;
	margin-top: 4px;
}
.info-list{
	display: flex;
	flex-direction: column;
	gap: 9px;
}
.info-row {
	display: flex;
	align-items: baseline;
	gap: 10px;
	font-size: .86rem;
}
.info-k {
	min-width: 76px;
	font-size: .67rem;
	font-weight: 800;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--text3);
	background: var(--pk0);
	border-radius: 20px;
	padding: 3px 9px;
	text-align: center;
	flex-shrink: 0;
}
.info-v {
	color: var(--text2);
	font-weight: 600;
	font-family: var(--fn-jp);
}

/* Hashtags */
.hashtag-wrap {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	margin-top: 4px;
}
.htag {
	background: linear-gradient(135deg, var(--pk1), var(--pk0));
	border: 1.5px solid var(--pk2);
	color: var(--pk4);
	font-size: .72rem;
	font-weight: 800;
	padding: 4px 12px;
	border-radius: 20px;
	cursor: default;
	transition: background .2s,transform .15s;
}
.htag:hover {
	background: var(--pk1);
	transform: translateY(-2px);
}

.htag a {
	text-decoration: none;
	color: inherit;
}