.container {
	background: white;
	padding: 2.5rem;
	border-radius: 1rem;
	box-shadow: 0 20px 25px -5px gray;
	margin: 1rem;
	width: 50%;
}

.lang-picker {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-bottom: 20px;
}

.lang-btn {
	font-size: 24px;
	cursor: pointer;
	border: 2px solid transparent;
	background: none;
	padding: 5px;
	border-radius: 8px;
	transition: all 0.2s;
}

.lang-btn.active {
	border-color: var(--primary);
	background: #eef2ff;
	transform: scale(1.1);
}

h1 {
	color: var(--primary);
	font-size: 1.8rem;
	margin-top: 0;
	text-align: center;
}

#game-screen {
	display: none;
	margin: 0.2rem;
	position: relative;
}

#lives {
	font-size: 28px;
	margin-bottom: 10px;
}

#score {
	font-size: 1.1rem;
	font-weight: bold;
	color: #64748b;
	margin-bottom: 20px;
}

#question {
	font-size: 3rem;
	margin-top: 1.5rem;
	margin-bottom: 1.5rem;
	font-weight: 800;
	color: #334155;
	text-align: center;
}

.options-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	margin-bottom: 20px;
}

.option-btn {
	padding: 0.5rem;
	font-size: 1.4rem;
	border: 2px solid #e2e8f0;
	border-radius: 16px;
	cursor: pointer;
	transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	font-weight: bold;
}

.option-btn:hover {
	border-color: black;
	background: green;
}

.btn-main {
	background-color: orange;
	padding: 14px 28px;
	font-size: 1.1rem;
	color: white;
	border: none;
	border-radius: 12px;
	cursor: pointer;
	font-weight: 600;
	box-shadow: 0 4px 6px -1px rgba(99, 102, 241, 0.4);
}

.overlay {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background: red;
	display: none;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	color: white;
	z-index: 100;
	backdrop-filter: blur(8px);
}

#feedback-text {
	font-size: 1rem;
	margin: 0.5rem;
	text-align: center;
}

@keyframes correct {

	0%,
	100% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.1);
	}
}

.correct-anim {
	animation: correct 0.4s ease;
	color: var(--success) !important;
}

#ui-subtitle {
	text-align: center;
}

#start-screen {
	text-align: center;
}

#lives {
	text-align: right;
	font-size: 1rem;
}

#score-label {
	text-align: right;
	font-size: 1rem;
}

#ui-feedback-title {
	margin: 0.5rem;
}