@charset "utf-8";

.status-layout {
	display: grid;
	grid-template-columns: 380px 1fr;
	gap: 32px;
	align-items: start;
	margin-top: 32px;
}
.status-left {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
}

/* Level badge */
.vt-level {
	display: flex;
	align-items: center;
	gap: 10px;
	background: linear-gradient(135deg, var(--pk1) 0%, var(--gold2) 100%);
	border: 2px solid var(--gold);
	border-radius: var(--radius);
	padding: 12px 24px;
	box-shadow: 0 4px 16px rgba(249, 200, 74, .28), var(--shadow-sm);
	width: 100%;
	justify-content: center;
}
.vt-level-icon{
	font-size: 1.6rem;
	animation: haloSpin 6s linear infinite;
}
.vt-level-text {
	font-size: 1.05rem;
	font-weight: 900;
	color:var(--text);
	letter-spacing: .04em;
}
.vt-level-text span {
	color: var(--pk4);
	font-size: 1.4rem;
}

/* Radar wrap — larger, overflow visible so LB vertex pokes out */
.radar-wrap {
	position: relative;
	width: 340px;
	height: 340px;
	background: linear-gradient(135deg, var(--pk0) 0%, rgba(255, 240, 248, .6) 100%);
	border-radius: 50%;
	border: 2px solid var(--pk1);
	box-shadow: var(--shadow-sm), 0 0 0 8px rgba(255, 227, 239,.35);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: visible;
}
.radar-svg {
	display: block;
	overflow: visible;
}

/* Stat labels around the chart */
.radar-labels {
	position: absolute;
	inset: 0;
	pointer-events: none;
	overflow:visible;
}
.rlabel {
	position: absolute;
	transform: translate(-50%, -50%);
	font-size: .67rem;
	font-weight: 800;
	color: var(--text2);
	background: rgba(255, 255, 255, .9);
	border: 1.5px solid var(--pk2);
	border-radius: 20px;
	padding: 3px 9px;
	white-space: nowrap;
	backdrop-filter: blur(3px);
}
.rlabel .rv {
	color: var(--pk4);
	font-weight: 900;
}

/* Limit break label */
.rlabel-lb {
	border-color: var(--gold)!important;
	background: linear-gradient(135deg, rgba(255, 255, 255, .95), var(--gold2))!important;
	box-shadow: 0 0 10px rgba(249, 200, 74, .5),var(--shadow-sm);
	animation: lbLabelPulse 1.8s ease-in-out infinite;
}
.lb-val {
	color: #c87000!important;
	font-size: .82rem;
}
@keyframes lbLabelPulse{
	0%,
	100% {
		box-shadow: 0 0 8px rgba(249, 200, 74, .4), var(--shadow-sm);
	}
	50%	{
		box-shadow:0 0 18px rgba(249, 200, 74, .8), 0 0 30px rgba(245, 80, 138, .3);}
}

/* Stat bars list */
.stat-bars {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.sbar-row {
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.sbar-header {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
}
.sbar-name {
	font-size: .76rem;
	font-weight: 800;
	color: var(--text2);
}
.sbar-val {
	font-size: .76rem;
	font-weight: 900;
	color: var(--pk4);
}
.sbar-track {
	height: 7px;
	background: var(--pk1);
	border-radius: 4px;
	overflow: hidden;
}
.sbar-fill{
	height: 100%;
	border-radius: 4px;
	width: 0;
	background: linear-gradient(90deg, var(--pk2), var(--pk4));
	transition: width 1.1s cubic-bezier(.22, 1, .36, 1);
}
/* LB bar */
.sbar-track-lb {
	background: linear-gradient(90deg, var(--pk1), var(--gold2));
	box-shadow: 0 0 6px rgba(249, 200, 74, .35);
}
.sbar-fill-lb {
	animation: lbBarShimmer 2s linear infinite;
}
@keyframes lbBarShimmer {
	0% {
		filter: brightness(1);
	}
	50% {
		filter: brightness(1.25) saturate(1.3);
	}
	100% {
		filter: brightness(1);
	}
}

/* Floating hearts around LB vertex */
@keyframes lbHeartFloat {
	0% {
		opacity: 0;
		transform: translateY(0) scale(.6) rotate(-10deg);
	}
	20% {
		opacity: 1;
		transform: translateY(-8px) scale(1) rotate(5deg);
	}
	80% {
		opacity: .8;
		transform: translateY(-22px) scale(1.1) rotate(-5deg);
	}
	100%{
		opacity: 0;
		transform: translateY(-34px) scale(.7) rotate(10deg);
	}
}

/* Right side free text area */
.status-right {
	display: flex;
	flex-direction: column;
	gap:20px;
}
.status-free-card {
	background: var(--white);
	border: 2px solid var(--pk1);
	border-radius: var(--radius);
	padding: 24px 22px;
	box-shadow: var(--shadow-sm);
	font-family: var(--fn-jp);
	font-size: .9rem;
	line-height: 1.9;
	color: var(--text2);
	position: relative;
	overflow: hidden;
}
.status-free-card::before {
	content: '✨';
	position: absolute;
	font-size: 5rem;
	opacity: .06;
	bottom: -8px;
	right: 4px;
	pointer-events: none;
}
.status-free-title {
	font-size: .7rem;
	font-weight: 800;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--text3);
	background: var(--pk0);
	border-radius: 20px;
	padding: 4px 12px;
	display: inline-block;
	margin-bottom: 12px;
}

@media(max-width:768px) {
	.status-layout {
		grid-template-columns: 1fr;
	}
	.status-left {
		width: 100%;
	}
	.radar-wrap {
		width: 280px;
		height: 280px;
	}
	.status-right-standingart {
		display: none;
	}
}