@charset "UTF-8";

.view-content-text{
	position:relative;
	background: var(--colorwhite);
	border-radius: var(--radius);
	padding: var(--size-25);
	border: 1px solid var(--borderColor);
	overflow:hidden;
}

.view-content-text::before{
	content:'';
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:5px;
	background:linear-gradient( 90deg, #009d6d, #00d4aa);
}

.view-content-text::after{
	content:'ANALYSIS';
	position:absolute;
	top: 15px;
	right: 20px;
	font-size: 2.7rem;
	font-weight:900;
	color: rgb(0 0 0 / 5%);;
	pointer-events:none;
}

.view-content-title {
	margin-bottom: var(--size-15);
	font-weight: 700;
	font-size: clamp(14px,3vw,20px);
}

.predict-box{
	padding: var(--size-15) var(--size-25);
	background: var(--colorwhite);
	border-radius: var(--radius);
	border:1px solid var(--borderColor);
	margin-top: var(--size-15)
}

.predict-title{
	font-size:18px;
	font-weight:700;
	margin-bottom:10px;
}

.predict-match{
	margin-bottom:15px;
	font-weight:600;
}

.predict-team{
	margin-bottom:10px;
}

.predict-gauge{
	position:relative;
	width:100%;
	height:40px;
	background:#e5e7eb;
	border-radius:999px;
	overflow:hidden;
}

.predict-gauge-con {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--size-1);
}

.predict-fill-win,
.predict-fill-uo {
	position:absolute;
	left:0;
	top:0;
	height:100%;
}
.predict-fill-win {
	background: linear-gradient(90deg, #89ffdb, #11c18e);
}
.predict-fill-uo {
	background: linear-gradient(90deg, #fbecaf, #ff8e8e);
}

.predict-text{
	position:absolute;
	inset:0;
	display:flex;
	align-items:center;
	justify-content:center;
	font-weight:700;
	color:#111;
	z-index:2;
}

.recent-match-section{
	display:grid;
	grid-template-columns:1fr 1fr;
	gap:12px;
	margin-top: var(--size-15);
	text-align: center;
}

.recent-match-box{
	background:#fff;
	border:1px solid #e5e7eb;
	border-radius:12px;
	padding:14px;
}

.recent-match-title{
	font-size:14px;
	font-weight:700;
	margin-bottom: 0.5rem;
}

.recent-form{
	display:flex;
	justify-content: center;
	gap:6px;
}

.winlose-form{
	width:32px;
	height:32px;
	border-radius:8px;
	display:flex;
	align-items:center;
	justify-content:center;
	font-size:13px;
	font-weight:700;
	color:#fff;
	box-shadow:0 2px 6px rgba(0,0,0,.08);
}

.winlose-form.W{
	background:#16a34a;
}

.winlose-form.D{
	background:#f59e0b;
}

.winlose-form.L{
	background:#ef4444;
}

.starter-box{
	margin-bottom: var(--size-1);;
	padding:12px;
	border-radius: var(--radius);
	background: var(--colorgray-bg);
	border:1px solid #e5e7eb;
}

.starter-label{
	font-size:12px;
	color: var(--con-sub);
	margin-bottom:6px;
	font-weight:600;
}

.starter-name{
	font-size:14px;
	font-weight:700;
	line-height:1.5;
	word-break:keep-all;
}

.sub-text-box {
	margin-top: var(--size-25);
}

.bottom-text-box{
	margin-top: var(--size-15);
	padding: var(--size-25);
	background:#fff8e8;
	border:1px solid #ffd76a;
	border-left:5px solid #ffe1a3;
	border-radius: var(--radius);
	box-shadow:0 2px 8px rgba(0,0,0,.05);
}

.summary-title{
	font-size:15px;
	font-weight:700;
	color:#b26a00;
	margin-bottom: var(--size-1);
}

.notice-box{
	margin-top: var(--size-15);
	padding:16px;
	background:#fff8e8;
	border:1px solid #ffe1a3;
	border-radius:12px;
}

.notice-title{
	font-size:15px;
	font-weight:700;
	color:#d97706;
	margin-bottom:10px;
}

.notice-item{
	position:relative;
	padding-left:12px;
	margin-bottom:6px;
	font-size:13px;
	line-height:1.6;
	color:#555;
}

.notice-item:last-child{
	margin-bottom:0;
}

.notice-item::before{
	content:"•";
	position:absolute;
	left:0;
	top:0;
	color:#f59e0b;
	font-weight:700;
}

.final-result-box{
	position:relative;
	margin-bottom: var(--size-15);
	padding: var(--size-15);
	border-radius: var(--radius);
	border:1px solid var(--borderColor);
	overflow:hidden;

	background:
		radial-gradient(circle at center,rgba(255,255,255,.03) 1px,transparent 1px),
		repeating-linear-gradient(
			90deg,
			#181818 0,
			#181818 2px,
			#111 2px,
			#111 4px
		);

	background-size:12px 12px,auto;

	box-shadow:inset 0 1px 0 rgba(255,255,255,.08), inset 0 -15px 30px rgba(0,0,0,.5), 0 5px 20px rgba(0,0,0,.2);
}

.final-result-box:before{
	content:'';
	position:absolute;
	inset:0;
	background:linear-gradient(180deg,rgba(255,255,255,.06),transparent 20%);
	pointer-events:none;
}

.final-result-header{
	text-align:center;
	font-size:13px;
	font-weight:700;
	letter-spacing:2px;
	color:#9ca3af;
	margin-bottom:10px;
}

.final-result-winner{
	text-align:center;
	font-size:24px;
	font-weight:800;
	color:#fff;
	margin-bottom:18px;
	text-shadow:0 0 8px rgba(255,255,255,.2);
}

.final-scoreboard{
	display:flex;
	align-items:center;
	justify-content:center;
	gap:15px;
}

.team-side{
	flex:1;
	text-align:center;
}

.team-name{
	font-size:14px;
	font-weight:700;
	color:#9ca3af;
	margin-bottom:8px;
}

.team-score{
	position:relative;
	font-size:64px;
	font-weight:900;
	line-height:1;
	color:#e5e7eb;
}

.team-score.winner{
	color: var(--colorwhite);
	text-shadow:0 0 5px rgba(57,255,117,.9),0 0 10px rgba(57,255,117,.8),0 0 20px rgba(57,255,117,.7),0 0 35px rgba(57,255,117,.5);
}

.team-score.winner:after{
	content:'';
	position:absolute;
	left:50%;
	top:50%;
	width:120px;
	height:120px;
	transform:translate(-50%,-50%);
	background:radial-gradient(circle,rgba(57,255,117,.25) 0%,rgba(57,255,117,.1) 50%,transparent 70%);
	filter:blur(20px);
	z-index:-1;
}

.score-divider{
	font-size:42px;
	font-weight:900;
	color:#6b7280;
}

.predict-hit-box {
	position: relative;
}
.predict-hit-box img {
	position: absolute;
	bottom: -50px;
	right: -30px;
	max-width: 150px;
}

@media(max-width:768px){
	.recent-match-section{
		grid-template-columns:1fr;
	}
}

@media (max-width:1200px) {
	.view-content-text {
		padding: var(--size-25) var(--size-15);
	}
	.view-content-text::after {
		font-size: var(--size-2);
		top: 8px;
		right: 8px;
		color: rgb(0 0 0 / 3%);
	}

	.predict-box {
		padding: var(--size-15);
	}
	.predict-title {
		font-size: 16px;
	}
	.predict-text {
		font-size: 10px;
	}

	.bottom-text-box {
		padding: var(--size-15);
	}

	.predict-hit-box img {
		bottom: 98px;
		right: -18px;
		max-width: 100px;
	}

	.sub-text-box {
		padding: 0 0.5rem;
	}
}
