/*B"H
Boruch Hashem
Blessed is He
The Awtsmoos creates menu and settings surfaces anew. Awtsmoos.com keeps
layered controls focused, readable, and free from legacy translated animation.
*/
#start-menu {
	position: fixed;
	left: 50%;
	right: auto;
	bottom: calc(var(--geo-dock-height) + 26px);
	width: min(860px, calc(100vw - 28px));
	max-height: min(76vh, 720px);
	transform: translateX(-50%);
	transform-origin: center bottom;
	animation: none;
	overflow: hidden;
	border: 1px solid var(--geo-border);
	border-radius: var(--geo-radius-lg);
	background: rgba(8, 14, 35, 0.96);
	box-shadow: var(--geo-shadow);
	backdrop-filter: blur(30px) saturate(165%);
}
.shell-panel {
	position: fixed;
	z-index: 1800;
	top: calc(var(--geo-topbar-height) + 14px);
	right: 16px;
	width: min(340px, calc(100vw - 28px));
	padding: 14px;
	border: 1px solid var(--geo-border);
	border-radius: var(--geo-radius-md);
	background: rgba(8, 14, 35, 0.96);
	box-shadow: var(--geo-shadow);
	backdrop-filter: blur(28px) saturate(160%);
}
.shell-setting-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
}
.shell-setting {
	display: grid;
	place-items: center;
	gap: 6px;
	min-height: 76px;
	padding: 10px;
	border: 1px solid var(--geo-border);
	border-radius: 14px;
	color: var(--geo-text);
	background: var(--geo-surface-soft);
	cursor: pointer;
}
.shell-setting[aria-pressed="true"] {
	border-color: var(--geo-border-bright);
	background: rgba(77, 233, 220, 0.2);
}
.shell-panel[hidden] {
	display: none;
}
