* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif, Consolas;
}

body {
	background: #000000; /* linear-gradient(135deg, #000000, #000000, #000000); */
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-top: 60px;
	color: #fff;
}

.header {
	text-align: center;
	margin-bottom: 50px;
	padding: 0 20px;
}

.header h1 {
	font-size: 3.2rem;
	margin-bottom: 20px;
	text-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
	background: linear-gradient(45deg, #175d3b, #55cc44);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	animation: gradientShift 5s infinite alternate;
}

@keyframes gradientShift {
	0% {
		background-position: 0% 50%;
	}

	100% {
		background-position: 100% 50%;
	}
}

.header p {
	font-size: 1.3rem;
	max-width: 700px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.9);
	background: rgba(0, 0, 0, 0.2);
	padding: 15px 25px;
	border-radius: 15px;
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
}

.header .highlight {
	color: #ffd166;
	font-weight: bold;
}

.card-column .highlight {
	color: #55cc44;
	font-weight: bold;
}

/* navigator bar */
.navbar {
	background: rgba(255, 255, 255, 0.1);
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
	border-radius: 60px;
	padding: 18px 35px;
	box-shadow:
		0 12px 35px rgba(0, 0, 0, 0.25),
		inset 0 4px 15px rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.15);
	margin-bottom: 60px;
	max-width: 95%;
	width: fit-content;
}

/* navigator menu */
.nav-menu {
	display: flex;
	list-style: none;
	justify-content: center;
	gap: 25px;
	flex-wrap: wrap;
}

/* navigator */
.nav-item {
	position: relative;
	padding: 15px 30px;
	border-radius: 40px;
	cursor: pointer;
	font-weight: 600;
	font-size: 1.2rem;
	color: rgba(255, 255, 255, 0.92);
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
	text-align: center;
	min-width: 100px;
	overflow: hidden;
	z-index: 1;
	transition:
		transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
		color 0.3s ease 0.1s;
}

/* hover - CSS only */
.nav-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(45deg, #ff8a00, #da1b60, #8e2de2);
	z-index: -1;
	opacity: 0;
	transition: opacity 0.5s ease, transform 0.6s ease;
	transform: scale(0.8);
	border-radius: 40px;
}

.nav-item:hover::before {
	opacity: 1;
	transform: scale(1);
}

.nav-item:hover {
	transform: translateY(-5px);
	color: #fff;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

/* navigator hover indicator */
.hover-indicator {
	position: absolute;
	bottom: 8px;
	left: 50%;
	height: 4px;
	width: 0;
	background: #0077ff;
	border-radius: 2px;
	transform: translateX(-50%);
	transition: width 0.4s ease;
	z-index: 2;
}

.nav-item:hover .hover-indicator {
	width: 70%;
}

/* content card */
.card {
	background: rgba(255, 255, 255, 0.1);
	-webkit-backdrop-filter: blur(15px);
	backdrop-filter: blur(15px);
	border-radius: 25px;
	padding: 35px;
	max-width: 800px;
	width: 90%;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
	border: 1px solid rgba(255, 255, 255, 0.15);
	margin-bottom: 40px;
}

.card-wider {
	background: rgba(255, 255, 255, 0.1);
	-webkit-backdrop-filter: blur(15px);
	backdrop-filter: blur(15px);
	border-radius: 25px;
	padding: 35px;
	max-width: 1180px;
	width: 90%;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
	border: 1px solid rgba(255, 255, 255, 0.15);
	margin-bottom: 40px;
}

.card h2 {
	text-align: center;
	margin-bottom: 30px;
	font-size: 2.2rem;
	color: #ffd166;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
}

.card-content {
	display: grid;
	grid-template-columns: 1fr;
	gap: 30px;
}

.card-column {
	background: rgba(255, 255, 255, 0.08);
	border-radius: 20px;
	padding: 25px;
	transition: transform 0.4s ease;
}

.card-column:hover {
	transform: translateY(-8px);
	background: rgba(255, 255, 255, 0.12);
}

.card-column h3 {
	color: #55cc44;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 1.5rem;
}

.card-column p {
	line-height: 1.8;
	margin-bottom: 15px;
	font-size: 1.15rem;
}

.footer {
	margin-top: 30px;
	text-align: center;
	color: rgba(255, 255, 255, 0.7);
	font-size: 1.1rem;
	padding: 25px;
	width: 100%;
	background: rgba(0, 0, 0, 0.15);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* index style */
.no-underline {
	text-decoration: none !important;
}

.mail-address {
	color: #55cc44;
	text-align: center;
}

.quote {
	font-style: italic;
	padding: 20px;
	border-left: 4px solid #ffd166;
	background: rgba(0, 0, 0, 0.15);
	margin: 20px 0;
	border-radius: 0 10px 10px 0;
}

.signature {
	text-align: right;
	font-weight: bold;
	margin-top: 30px;
	color: #ffd166;
	font-style: italic;
}

.stats-container {
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	margin: 30px 0;
}

.stat-item {
	text-align: center;
	padding: 20px;
	flex: 1;
	min-width: 200px;
}

.stat-number {
	font-size: 2.5rem;
	font-weight: bold;
	color: #55cc44;
	margin-bottom: 10px;
}

.stat-label {
	font-size: 1.1rem;
	color: rgba(255, 255, 255, 0.8);
}

/* form style */
.form-container {
	display: flex;
	flex-direction: column;
	gap: 25px;
	max-width: 500px;
	margin: 0 auto;
}

.form-group {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.form-label {
	font-size: 1.2rem;
	font-weight: 500;
	display: flex;
	align-items: center;
	gap: 10px;
}

.form-input {
	padding: 16px 20px;
	border-radius: 15px;
	border: none;
	background: rgba(255, 255, 255, 0.12);
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
	color: white;
	font-size: 1.1rem;
	border: 1px solid rgba(255, 255, 255, 0.15);
	transition: all 0.3s ease;
}

.form-input:focus {
	outline: none;
	background: rgba(255, 255, 255, 0.18);
	box-shadow: 0 0 0 3px rgba(142, 45, 226, 0.3);
}

.form-input::placeholder {
	color: rgba(255, 255, 255, 0.6);
}

.form-button {
	padding: 16px 30px;
	border-radius: 40px;
	border: none;
	background: linear-gradient(45deg, #ff8a00, #da1b60);
	color: white;
	font-size: 1.2rem;
	font-weight: 600;
	cursor: pointer;
	margin-top: 15px;
	transition: all 0.3s ease;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.form-button::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(45deg, #8e2de2, #4a00e0);
	z-index: -1;
	opacity: 0;
	transition: opacity 0.5s ease;
	border-radius: 40px;
}

.form-button:hover::before {
	opacity: 1;
}

.form-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.form-links {
	display: flex;
	justify-content: space-between;
	margin-top: 10px;
}

.form-link {
	color: #ffd166;
	text-decoration: none;
	font-size: 1.1rem;
	transition: all 0.3s ease;
}

.form-link:hover {
	text-decoration: underline;
	color: #ff8a00;
}

/* message display */
.message {
	padding: 15px 25px;
	border-radius: 15px;
	margin-bottom: 25px;
	text-align: center;
	font-size: 1.1rem;
	font-weight: 500;
	display: none;
}

.success {
	background: rgba(40, 167, 69, 0.2);
	border: 1px solid rgba(40, 167, 69, 0.5);
	color: #d4edda;
}

.error {
	background: rgba(220, 53, 69, 0.2);
	border: 1px solid rgba(220, 53, 69, 0.5);
	color: #f8d7da;
}

/* user info area */
.user-info {
	text-align: center;
	padding: 20px;
	background: rgba(255, 255, 255, 0.08);
	border-radius: 20px;
	margin-bottom: 30px;
}

.user-info h3 {
	font-size: 1.5rem;
	margin-bottom: 15px;
	color: #ffd166;
}

.user-info p {
	font-size: 1.2rem;
	margin-bottom: 10px;
}

/* status */
.status-indicator {
	display: inline-block;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	margin-right: 8px;
}

.online {
	background-color: #4caf50;
	box-shadow: 0 0 8px rgba(76, 175, 80, 0.7);
}

.offline {
	background-color: #f44336;
}

/* TOTP form style */
.totp-container {
	display: flex;
	flex-direction: column;
	gap: 30px;
	max-width: 600px;
	margin: 0 auto;
}

.totp-buttons {
	display: flex;
	gap: 20px;
	justify-content: center;
	margin-top: 15px;
}

.totp-button {
	padding: 16px 25px;
	border-radius: 40px;
	border: none;
	background: linear-gradient(45deg, #ff8a00, #da1b60);
	color: white;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
	position: relative;
	overflow: hidden;
	z-index: 1;
	min-width: 160px;
}

.totp-button::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(45deg, #8e2de2, #4a00e0);
	z-index: -1;
	opacity: 0;
	transition: opacity 0.5s ease;
	border-radius: 40px;
}

.totp-button:hover::before {
	opacity: 1;
}

.totp-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

#disable-totp {
	background: linear-gradient(45deg, #f44336, #d32f2f);
}

#disable-totp::before {
	background: linear-gradient(45deg, #b71c1c, #7f0000);
}

/* qr code section */
.qr-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 25px;
	margin-top: 30px;
	padding: 30px;
	background: rgba(0, 0, 0, 0.15);
	border-radius: 20px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.qr-placeholder {
	width: 250px;
	height: 250px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 15px;
	color: rgba(255, 255, 255, 0.5);
	font-size: 1.1rem;
	text-align: center;
	padding: 20px;
}

.qr-placeholder i {
	font-size: 4rem;
	margin-bottom: 15px;
	color: rgba(255, 255, 255, 0.3);
}

#qr-code {
	max-width: 250px;
	border-radius: 15px;
	border: 5px solid rgba(255, 255, 255, 0.2);
	display: none;
}

/* scan guide */
.scan-guide {
	width: 100%;
	padding: 25px;
	background: rgba(0, 0, 0, 0.2);
	border-radius: 15px;
	margin-top: 20px;
}

.scan-guide h3 {
	margin-bottom: 20px;
	color: #ffd166;
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 1.5rem;
}

.guide-content {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.guide-section {
	background: rgba(255, 255, 255, 0.08);
	padding: 15px;
	border-radius: 12px;
}

.guide-section h4 {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 10px;
	color: #4fc3f7;
}

.guide-section ul {
	padding-left: 25px;
	margin-top: 10px;
}

.guide-section li {
	margin-bottom: 8px;
	line-height: 1.6;
}

.warning-box {
	background: rgba(255, 87, 34, 0.2);
	border-left: 4px solid #ff5722;
	padding: 15px;
	margin-top: 20px;
	border-radius: 0 8px 8px 0;
}

.download-button {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-top: 20px;
	padding: 14px 30px;
	border-radius: 40px;
	background: linear-gradient(45deg, #4caf50, #2e7d32);
	color: white;
	font-size: 1.1rem;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.download-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
	background: linear-gradient(45deg, #66bb6a, #388e3c);
}

/* contest */
.contest-list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 25px;
	margin-top: 20px;
}

.contest-item {
	background: rgba(255, 255, 255, 0.08);
	border-radius: 20px;
	padding: 25px;
	transition: all 0.3s ease;
	border: 1px solid rgba(255, 255, 255, 0.1);
	position: relative;
	overflow: hidden;
}

.contest-item:hover {
	background: rgba(255, 255, 255, 0.12);
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.contest-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}

.contest-id {
	background: linear-gradient(45deg, #ff8a00, #e52e71);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	font-size: 1.2rem;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.contest-title {
	flex: 1;
	margin-left: 20px;
	font-size: 1.4rem;
	font-weight: 600;
	cursor: pointer;
	transition: color 0.3s ease;
}

.contest-title:hover {
	color: #ffd166;
	text-decoration: underline;
}

.contest-actions {
	display: flex;
	gap: 15px;
	justify-content: flex-end;
}

.contest-btn {
	padding: 12px 25px;
	border-radius: 40px;
	border: none;
	background: linear-gradient(45deg, #4a00e0, #8e2de2);
	color: white;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	gap: 8px;
}

.contest-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.contest-btn.download {
	background: linear-gradient(45deg, #00b09b, #96c93d);
}

.contest-btn.answersheet {
	background: linear-gradient(45deg, #ff8a00, #da1b60);
}

/* loading anim */
.loader {
	text-align: center;
	padding: 40px;
}

.spinner {
	width: 50px;
	height: 50px;
	border: 5px solid rgba(255, 255, 255, 0.1);
	border-top: 5px solid #ffd166;
	border-radius: 50%;
	animation: spin 1s linear infinite;
	margin: 0 auto 20px;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

/* interactive */
@media (max-width: 900px) {
	.card-content {
		grid-template-columns: 1fr;
	}

	.navbar {
		border-radius: 30px;
		padding: 15px;
	}

	.nav-menu {
		gap: 15px;
	}

	.nav-item {
		padding: 12px 20px;
		font-size: 1.1rem;
		min-width: 80px;
	}

	.header h1 {
		font-size: 2.5rem;
	}

	.answer-sheets-container {
		grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	}

	.totp-buttons {
		flex-direction: column;
	}

	.totp-button {
		width: 100%;
	}
}

@media (max-width: 600px) {
	.header h1 {
		font-size: 2rem;
	}

	.header p {
		font-size: 1.1rem;
	}

	.nav-menu {
		flex-direction: column;
		align-items: center;
	}

	.answer-sheets-container {
		grid-template-columns: 1fr;
	}
	
	.card {
		padding: 25px 20px;
	}

	.qr-placeholder,
	#qr-code {
		width: 200px;
		height: 200px;
	}
}

/* answer sheet */
.answer-sheets-container {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 30px;
	margin-top: 20px;
}

/* answer sheet item */
.sheet-item {
	position: relative;
	background: rgba(255, 255, 255, 0.08);
	border-radius: 15px;
	overflow: hidden;
	transition: all 0.3s ease;
	height: 350px;
	display: flex;
	flex-direction: column;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.sheet-item:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
	background: rgba(255, 255, 255, 0.12);
}

.sheet-preview {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	position: relative;
	overflow: hidden;
}

.sheet-thumbnail {
	width: 100%;
	height: 100%;
	object-fit: contain;
	border-radius: 8px;
	background-color: rgba(60, 60, 60, 0.9);
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.empty-sheet {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	background: rgba(255, 255, 255, 0.05);
	border: 2px dashed rgba(255, 255, 255, 0.3);
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.empty-sheet:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: #ffd166;
}

.add-icon {
	font-size: 3rem;
	color: rgba(255, 255, 255, 0.5);
	margin-bottom: 15px;
	transition: all 0.3s ease;
}

.empty-sheet:hover .add-icon {
	color: #ffd166;
	transform: scale(1.2);
}

.sheet-info {
	padding: 15px;
	background: rgba(0, 0, 0, 0.2);
	text-align: center;
	font-weight: 600;
	font-size: 1.1rem;
}

/* button */
.sheet-actions {
	position: absolute;
	top: 15px;
	right: 15px;
	display: flex;
	gap: 10px;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.sheet-item:hover .sheet-actions {
	opacity: 1;
}

.action-btn {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-size: 1.2rem;
	transition: all 0.3s ease;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.action-btn:hover {
	transform: scale(1.1);
}

.view-btn {
	background: linear-gradient(45deg, #4a00e0, #8e2de2);
	color: white;
}

.discard-btn {
	background: linear-gradient(45deg, #ff416c, #ff4b2b);
	color: white;
}

/* submit */
.submit-container {
	text-align: center;
	margin-top: 40px;
}

.submit-btn {
	padding: 16px 50px;
	border-radius: 50px;
	border: none;
	background: linear-gradient(45deg, #00b09b, #96c93d);
	color: white;
	font-size: 1.3rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.submit-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(45deg, #0f3bbe, #38ef7d);
	z-index: -1;
	opacity: 0;
	transition: opacity 0.5s ease;
	border-radius: 50px;
}

.submit-btn:hover::before {
	opacity: 1;
}

.submit-btn:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.stop-btn {
	padding: 16px 50px;
	border-radius: 50px;
	border: none;
	background: linear-gradient(45deg, #db0f12, #e1b71d);
	color: white;
	font-size: 1.3rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.stop-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(45deg, #6004c2, #e80303);
	z-index: -1;
	opacity: 0;
	transition: opacity 0.5s ease;
	border-radius: 50px;
}

.stop-btn:hover::before {
	opacity: 1;
}

.stop-btn:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

/* model frame */
.modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	min-width: 100%;
	min-height: 100%;
	background: rgba(0, 0, 0, 0.8);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	z-index: 1000;
	align-items: center;
	justify-content: center;
}

.modal-content {
	background: rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	padding: 30px;
	max-width: 90%;
	max-height: 90%;
	overflow: auto;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
	border: 1px solid rgba(255, 255, 255, 0.15);
	position: relative;
}

.modal-img {
	max-width: 100%;
	max-height: 100vh;
	display: block;
	margin: 0 auto;
	border-radius: 10px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.close-modal {
	position: absolute;
	top: 15px;
	right: 15px;
	background: rgba(255, 255, 255, 0.1);
	border: none;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	color: white;
	font-size: 1.5rem;
	cursor: pointer;
	transition: all 0.3s ease;
}

.close-modal:hover {
	background: rgba(255, 0, 0, 0.3);
	transform: rotate(90deg);
}

/* load anim */
.loader {
	text-align: center;
	padding: 40px;
}

.spinner {
	width: 50px;
	height: 50px;
	border: 5px solid rgba(255, 255, 255, 0.1);
	border-top: 5px solid #ffd166;
	border-radius: 50%;
	animation: spin 1s linear infinite;
	margin: 0 auto 20px;
}

/* score input */
.score-container {
	background: rgba(0, 0, 0, 0.25);
	border-radius: 15px;
	padding: 25px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	margin-bottom: 25px;
}

.score-input-group {
	display: flex;
	align-items: center;
	gap: 15px;
}

.score-label {
	font-size: 1.3rem;
	font-weight: 600;
}

.score-input {
	padding: 15px 20px;
	width: 150px;
	border-radius: 50px;
	border: none;
	background: rgba(255, 255, 255, 0.12);
	color: white;
	font-size: 1.4rem;
	font-weight: 600;
	text-align: center;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
	transition: all 0.3s ease;
}

.score-input:focus {
	outline: none;
	background: rgba(255, 255, 255, 0.18);
	box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.5);
}

/* score table */
.score-table-container {
	overflow-x: auto;
	margin-top: 30px;
	border-radius: 20px;
	background: rgba(0, 0, 0, 0.15);
	padding: 20px;
}

.score-table {
	width: 100%;
	border-collapse: collapse;
	border-radius: 15px;
	overflow: hidden;
}

.score-table th {
	background: rgba(0, 0, 0, 0.25);
	padding: 18px 15px;
	font-weight: 600;
	text-align: center;
	border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.score-table td {
	padding: 15px;
	text-align: center;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.score-table img {
	max-width: 180px;
	display: block;
	margin: 0 auto;
}

.score-table tr:last-child td {
	border-bottom: none;
}

.score-table tr:hover {
	background: rgba(255, 255, 255, 0.05);
}

.question-header {
	min-width: 80px;
}

.score-cell {
	font-weight: 600;
}

.not-graded {
	color: rgba(255, 255, 255, 0.4);
	font-style: italic;
}

.total-score {
	background: rgba(255, 255, 255, 0.1);
	font-weight: bold;
	color: #ffd166;
}

/* judge list */
.judge-list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 25px;
	margin-top: 20px;
}

.judge-item {
	background: rgba(255, 255, 255, 0.08);
	border-radius: 20px;
	padding: 25px;
	transition: all 0.3s ease;
	border: 1px solid rgba(255, 255, 255, 0.1);
	position: relative;
	overflow: hidden;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 20px;
}

.judge-item:hover {
	background: rgba(255, 255, 255, 0.12);
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.judge-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(45deg, #4a00e0, #8e2de2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.8rem;
	flex-shrink: 0;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.judge-info {
	flex: 1;
}

.judge-title {
	font-size: 1.4rem;
	font-weight: 600;
	margin-bottom: 8px;
}

.judge-meta {
	display: flex;
	gap: 25px;
	font-size: 1.1rem;
	color: rgba(255, 255, 255, 0.8);
}

.judge-meta span {
	display: flex;
	align-items: center;
	gap: 8px;
}

.judge-arrow {
	font-size: 1.8rem;
	color: rgba(255, 255, 255, 0.7);
	transition: transform 0.3s ease;
}

.judge-item:hover .judge-arrow {
	transform: translateX(8px);
	color: #ffd166;
}