/* =========================================
   LEVELS PAGE
========================================= */

.levels-page-new{
	width:min(1470px,92vw);
	margin:0 auto;
	padding:30px 0 30px;
}

/* =========================================
   HERO
========================================= */

.levels-page-hero{
	text-align:center;
	margin-bottom:46px;
}

.levels-page-hero h1{
	margin:0;
	font-size:clamp(64px,8vw,120px);
	line-height:.9;
	text-transform:uppercase;
}

.levels-page-hero p{
	max-width:760px;
	margin:18px auto 0;
	color:#aaa;
	font-size:20px;
	line-height:1.45;
}

/* =========================================
   TABLE PANEL
========================================= */

.levels-table-panel{
	padding:26px;
	border:1px solid rgba(255,255,255,.12);
	border-radius:24px;

	background:
		linear-gradient(
			180deg,
			rgba(255,255,255,.045),
			rgba(255,255,255,.018)
		);

	box-shadow:0 24px 60px rgba(0,0,0,.35);
}

/* =========================================
   HEAD
========================================= */

.levels-table-head{
	display:flex;
	align-items:center;
	justify-content:space-between;
	gap:20px;
	margin-bottom:22px;
}

.levels-table-head h3{
	margin:0;
	font-size:36px;
	font-weight:1000;
	text-transform:uppercase;
}

.levels-table-head span{
	display:block;
	margin-top:6px;
	color:#888;
	font-size:14px;
	text-transform:uppercase;
}

/* =========================================
   TABLE
========================================= */

.levels-table{
	display:grid;
	gap:10px;
}

/* =========================================
   ROW
========================================= */

.levels-row{
	display:grid;
	grid-template-columns:260px 160px 1fr 120px;
	align-items:center;
	gap:22px;

	min-height:78px;
	padding:14px 18px;

	border:1px solid rgba(255,255,255,.08);
	border-radius:16px;

	background:rgba(255,255,255,.025);

	transition:.18s ease;
}

.levels-row:hover{
	transform:translateY(-1px);

	border-color:rgba(255,196,0,.25);
	background:rgba(255,196,0,.045);
}

/* =========================================
   LEVEL
========================================= */

.levels-row__level strong{
	display:block;

	color:#ffc400;
	font-size:34px;
	font-weight:1000;
	line-height:.95;
	letter-spacing:-1px;
}

.levels-row__level span{
	display:block;
	margin-top:6px;

	color:#fff;
	font-size:15px;
	font-weight:900;
	text-transform:uppercase;
}

/* =========================================
   XP
========================================= */

.levels-row__xp{
	color:#fff;
	font-size:22px;
	font-weight:1000;
	white-space:nowrap;
}

/* =========================================
   PROGRESS
========================================= */

.levels-row__progress{
	display:grid;
	grid-template-columns:1fr 54px;
	align-items:center;
	gap:14px;
}

.levels-progress{
	height:12px;
	overflow:hidden;
	border-radius:999px;
	background:rgba(255,255,255,.08);
}

.levels-progress b{
	display:block;
	height:100%;
	border-radius:inherit;

	background:
		linear-gradient(
			90deg,
			#ffc400,
			#ff8a00
		);

	box-shadow:
		0 0 16px rgba(255,196,0,.45);
}

.levels-row__progress small{
	color:#888;
	font-size:13px;
	font-weight:900;
	text-align:right;
}

/* =========================================
   STATUS
========================================= */

.levels-row__status{
	display:flex;
	justify-content:flex-end;
}

.level-status{
	display:inline-flex;
	align-items:center;
	justify-content:center;

	min-width:92px;
	height:36px;
	padding:0 14px;

	border-radius:999px;

	background:rgba(255,255,255,.06);
	border:1px solid rgba(255,255,255,.08);

	color:#888;
	font-size:12px;
	font-weight:1000;
	text-transform:uppercase;
	letter-spacing:.04em;
}

.level-status--done,
.level-status--current{
	background:rgba(255,196,0,.14);
	border-color:rgba(255,196,0,.45);

	color:#ffc400;

	box-shadow:
		0 0 18px rgba(255,196,0,.12);
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:900px){

	.levels-row{
		grid-template-columns:1fr;
		gap:12px;
	}

	.levels-row__status{
		justify-content:flex-start;
	}

	.levels-row__progress{
		grid-template-columns:1fr 48px;
	}

}

@media(max-width:640px){
	
	.levels-table-panel
 {
 
    border-radius: 18px;
}

.levels-page-new {

    padding: 20px 0 30px;
}

	.levels-table-panel{
		padding:16px;
	}

	.levels-table-head h3{
		font-size:20px;
	}

    .levels-row {
        position: relative;
        padding: 10px 10px 15px 10px;
    }
    
	.levels-row__level strong{
		font-size:18px;
	}
	
	.levels-row__level span {
    margin-top: 4px;
    font-size: 12px;
}

.levels-row__progress small {
    display: none;
}

    .levels-row__status {
        justify-content: flex-start;
        position: absolute;
        right: 10px;
        bottom: 8px;
    }
    
    .level-status {
    min-width: 55px;
    height: 27px;
    padding: 0 4px;
    border-radius: 10px;
    font-size: 9px;
    }

.levels-row__xp {
        font-size: 18px;
        position: absolute;
        right: 15px;
        top: 15px;
    }

}