body.adole {
	background: #1d142f;
	color: #f3eafc;
	font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
	padding: 2rem 1rem;
	text-align: center;
	padding-top: 6rem;
}

.adole-container {
	max-width: 800px;
	margin: auto;
	background-color: rgba(255, 255, 255, 0.03);
	border-radius: 20px;
	padding: 2rem;
	box-shadow: 0 10px 40px rgba(200, 170, 255, 0.15);
	border: 1px solid #372a5f;
	backdrop-filter: blur(10px);
}

.adole-title {
	font-size: 2rem;
	color: #e3d6ff;
	margin-bottom: 1rem;
}

.adole-input-area {
	display: grid;
	min-width: 0;
	grid-template-columns: 1fr auto;
	width: 100%;
	max-width: 600px;
	margin: 0 auto 1rem;
	box-shadow: 0 4px 12px rgba(168, 115, 255, 0.15);
	border-radius: 12px;
	overflow: hidden;
}

.adole-input-area input {
	width: 100%;
	min-width: 0;
	padding: 1rem 1.2rem;
	font-size: 1rem;
	border: none;
	background-color: #291f3f;
	color: #fff;
	outline: none;
	border-radius: 0;
}

.adole-input-area button {
	background: #291f3f;
	border: none;
	color: #a873ff;
	font-weight: bold;
	font-size: 1.2rem;
	cursor: pointer;
	transition: background 0.3s ease, transform 0.2s ease;
	border-left: 1px solid #6f4da8;
	min-width: 3rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.adole-input-area button:hover {
	color: #6f4da8;
}

.adole-input-area button:active {
	transform: scale(0.97);
}

.guess-header,
.guess-line.guess {
	display: flex;
	justify-content: center;
	gap: 0.5rem;
	margin-bottom: 0.5rem;
}

.guess-header {
	margin-top: 2rem;
}

.header-cell {
	min-width: 90px;
	height: 3rem;
	background: transparent;
	color: #bca6ff;
	font-weight: bold;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.85rem;
	border-radius: 8px;
}

.cell {
	width: 90px;
	height: 90px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	font-size: 0.85rem;
	font-weight: bold;
	color: #fff;
	text-align: center;
	transition: transform 0.2s ease;
}

.cell.correct {
	background-color: #4caf50;
	color: #000;
}

.cell.close {
	background-color: #ffb300;
	color: #000;
}

.cell.wrong {
	background-color: #e53935;
	color: #fff;
}

.wrong-title {
	display: block;
	background-color: #e53935;
	color: #fff;
	font-weight: bold;
	border-radius: 8px;
	padding: 0.5rem 1rem;
	margin: 0.5rem auto;
	max-width: 400px;
	text-align: center;
}

.menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: rgba(20, 19, 37, 0.9);
	backdrop-filter: blur(12px);
	z-index: 999;
	box-shadow: 0 0 16px rgba(145, 193, 231, 0.3);
	border-bottom: 1px solid #2c2e47;
	padding: 1rem 0;
}

.menu ul {
	display: flex;
	justify-content: center;
	align-items: center;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 2.5rem;
}

.menu li a {
	color: #caf6fe;
	text-decoration: none;
	font-weight: 700;
	font-size: 1.1rem;
	letter-spacing: 0.5px;
	padding: 0.5rem 1rem;
	border-radius: 6px;
	transition: color 0.3s ease, background 0.3s ease, text-shadow 0.3s ease;
}

.menu li a:hover {
	color: #ffffff;
	text-shadow: 0 0 10px #91c1e7;
	background: rgba(255, 255, 255, 0.05);
}

.cell[data-arrow="up"]::before,
.cell[data-arrow="down"]::before {
	content: "▲";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 5rem;
	color: rgba(0, 0, 0, 0.3);
	z-index: 0;
	pointer-events: none;
}

.cell[data-arrow="down"]::before {
	content: "▼";
}

.cell {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.cell .cell-text {
	position: relative;
	z-index: 2;
}

.input-error {
	border-color: #e53935 !important;
	background-color: #3a1a1f !important;
}

#victory-screen {
	background-color: #2e194f;
	border-radius: 16px;
	padding: 2rem;
	margin-top: 2rem;
	text-align: center;
	color: #fff;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

#victory-screen.hidden {
	display: none;
}

#victory-screen h1 {
	font-size: 2rem;
	margin-top: 1rem;
	color: #a873ff;
}

#countdown-container {
	margin-top: 1rem;
	text-align: center;
	background-color: #2b1f42;
	padding: 1rem;
	border-radius: 10px;
	color: #fff;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

#countdown-container.hidden {
	display: none;
}

#countdown-timer {
	font-size: 2rem;
	color: #ffb300;
}

#language-selector {
	background-color: #291f3f;
	color: #e3d6ff;
	border: 1px solid #6f4da8;
	padding: 0.6rem 1rem;
	border-radius: 8px;
	font-size: 1rem;
	font-weight: bold;
	outline: none;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
	box-shadow: 0 2px 6px rgba(168, 115, 255, 0.2);
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	position: relative;
	background-image: url("data:image/svg+xml,%3Csvg fill='lavender' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 0.75rem center;
	background-size: 1rem;
	padding-right: 2rem;
}

#language-selector:hover {
	border-color: #a873ff;
	box-shadow: 0 0 8px rgba(168, 115, 255, 0.3);
}

#language-selector:focus {
	border-color: #ffb300;
	box-shadow: 0 0 10px rgba(255, 179, 0, 0.4);
}

#share-button {
	background-color: #1da1f2;
	color: white;
	border: none;
	padding: 0.75rem 1.5rem;
	border-radius: 8px;
	font-size: 1rem;
	cursor: pointer;
	font-weight: bold;
	transition: background 0.3s ease;
}

#share-button:hover {
	background-color: #0d8ddb;
}

#share-result.hidden {
	display: none;
}

@media (max-width: 600px) {
	.guess-header {
		display: none;
	}

	.guess-line.guess {
		display: block;
		text-align: left;
		background-color: rgba(255, 255, 255, 0.05);
		border: 1px solid rgba(168, 115, 255, 0.2);
		border-radius: 16px;
		margin: 1.5rem 0;
		padding: 1.2rem 1rem;
		box-shadow: 0 0 10px rgba(168, 115, 255, 0.05);
	}

	.guess-line .cell {
		display: flex;
		align-items: flex-start;
		margin-bottom: 0.6rem;
		padding: 0.5rem 0;
		height: auto;
		width: 100%;
		background: none;
		border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
		font-size: 0.95rem;
		color: #f0eaff;
	}

	.guess-line .cell:first-child {
		margin-top: -0.5rem;
	}

	.guess-line .cell:last-child {
		border-bottom: none;
		margin-bottom: -0.5rem;
	}

	.guess-line .cell .cell-text::before {
		content: attr(data-label) ": ";
		font-weight: bold;
		color: #a873ff;
	}

	.guess-line .cell.correct .cell-text::before {
		color: #4caf50;
	}

	.guess-line .cell.close .cell-text::before {
		color: #ffb300;
	}

	.guess-line .cell.wrong .cell-text::before {
		color: #e53935;
	}

	.guess-line .cell[data-arrow="up"]::after {
 	 	content: "▲";
  		margin-left: 0.3rem;
	}

	.guess-line .cell[data-arrow="down"]::after {
  		content: "▼";
  		margin-left: 0.3rem;
	}

	.guess-line .cell::after {
		content: "";
	}

	.cell .cell-text {
		display: inline;
		line-height: 1.4;
	}

	.guess-line .cell[data-arrow="up"]::before,
	.guess-line .cell[data-arrow="down"]::before {
		content: none;
	}
}
