/* /Components/Admin/DPad.razor.rz.scp.css */
.DPad[b-vxeywote4j] {
	display: inline-grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: repeat(2, 1fr);
	grid-gap: 1px;
	background-color: #ccc;
	border: 1px solid #ccc;
}
/* /Components/Admin/IconButton.razor.rz.scp.css */
.icon-button[b-fuovg3ue0a] {
	background: none;
	border: none;
	cursor: pointer;
	padding: 0.5rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.icon-button:hover[b-fuovg3ue0a] {
	opacity: 0.7;
}
/* /Components/Admin/MasterDetail.razor.rz.scp.css */
.MasterDetail[b-25mignlrn3] {
	display: grid;
	grid-template-areas: 'master detail';
	grid-template-columns: auto 1fr;
	gap: 1rem;
}

.MasterDetail--master[b-25mignlrn3] {
	grid-area: master;
	
}

.MasterDetail--detail[b-25mignlrn3] {
	grid-area: detail;
}
/* /Components/Admin/Modal.razor.rz.scp.css */
.modal-backdrop[b-f0xh4gzp3i] {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.5);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1000;
}

.modal-content[b-f0xh4gzp3i] {
	background: white;
	padding: 2rem;
	border-radius: 8px;
	min-width: 300px;
	max-width: 90vw;
	max-height: 90vh;
	overflow: auto;
	color: black;
}
/* /Components/Admin/RoomEditor.razor.rz.scp.css */
.EditRoomForm[b-y02o9con2a] {
	border: 1px solid #ccc;
}

	.EditRoomForm > *[b-y02o9con2a] {
		padding: 0.5rem;
	}

.input-wrap[b-y02o9con2a] {
}

	.input-wrap > *[b-y02o9con2a] {
		display: block;
	}

	.input-wrap:nth-child(2n)[b-y02o9con2a] {
		background-color: #efefef;
	}

.map[b-y02o9con2a] {
	--bgColor: #444;
	--rowsAndColumns: 5;
	--tile-size: 5rem;
	background-color: var(--bgColor);
	width: max-content;
	color: white;
	padding: 1rem;
}

	.map .rooms[b-y02o9con2a] {
		display: inline-grid;
		grid-template-rows: repeat(var(--rowsAndColumns), 1fr);
		grid-template-columns: repeat(var(--rowsAndColumns), 1fr);
		gap: 0;
		color: var(--bgColor);
	}

.Exits[b-y02o9con2a] {
	display: inline-grid;
	grid-template-areas:
		"NW	N	NE"
		"W	.	E"
		"SW	S	SE"
}

.error-message[b-y02o9con2a] {
	color: #c0392b;
}
/* /Components/Admin/Tile.razor.rz.scp.css */
.Tile[b-uddh5hqvfe] {
	position: relative;
	text-align: center;
	user-select: none;
	overflow: hidden;
}

.Tile--selected[b-uddh5hqvfe] {
	outline: 2px solid yellow;
	outline-offset: -2px;
}

.Tile--selected .Tile__terrain[b-uddh5hqvfe] {
	border-radius: 20px;
}

.Tile--empty[b-uddh5hqvfe] {
	text-align: center;
	color: #ccc;
	font-style: italic;
}

.Tile--empty .Tile__terrain[b-uddh5hqvfe] {
	background-color: black;
	width: var(--tile-size, 4rem);
	height: var(--tile-size, 4rem);
	outline: 1px dashed #888;
	outline-offset: -2px;
	opacity: 0.35;
}

.Tile__terrain[b-uddh5hqvfe] {
	position: relative;
	overflow: hidden;
}

	.Tile__terrain img[b-uddh5hqvfe] {
		width: var(--tile-size, 4rem);
		height: var(--tile-size, 4rem);
		object-fit: cover;
		display: block;
	}

.Tile button[b-uddh5hqvfe] {
	font-size: 80%;
	padding: 0.1rem 0.3rem;
	border-radius: 5px;
}
/* /Components/Admin/WorldOverview.razor.rz.scp.css */
.WorldOverview[b-bmupa26elt] {
	--tile-size: 1.25rem;
	background-color: #444;
	color: white;
	padding: 1rem;
	max-height: 40rem;
	overflow: auto;
	width: max-content;
	max-width: 100%;
}

.WorldOverview__grid[b-bmupa26elt] {
	display: inline-grid;
	grid-auto-rows: var(--tile-size, 1.25rem);
	gap: 1px;
}

/* Softer "you are here" highlight than the zoomed editor's selection color - this is
   just an indicator here, not an active selection, so it shouldn't compete for attention. */
.WorldOverview[b-bmupa26elt]  .Tile--selected {
	background-color: rgba(255, 230, 0, 0.25) !important;
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-b67vb60hzx] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-b67vb60hzx] {
    flex: 1;
}

.content[b-b67vb60hzx] {
    padding-top: 1.1rem;
}

.sidebar[b-b67vb60hzx] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-b67vb60hzx] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-b67vb60hzx]  a, .top-row[b-b67vb60hzx]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-b67vb60hzx]  a:hover, .top-row[b-b67vb60hzx]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-b67vb60hzx]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-b67vb60hzx] {
        justify-content: space-between;
    }

    .top-row[b-b67vb60hzx]  a, .top-row[b-b67vb60hzx]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-b67vb60hzx] {
        flex-direction: row;
    }

    .sidebar[b-b67vb60hzx] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-b67vb60hzx] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-b67vb60hzx]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-b67vb60hzx], article[b-b67vb60hzx] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-b67vb60hzx] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-b67vb60hzx] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.NavMenu[b-hl0b3t4tov] {
	--color: white;
	--padding: 0.75rem;
	color: var(--color);
	display: flex;
	flex-direction: column;
}

	.NavMenu .spacer[b-hl0b3t4tov] {
		flex: 1;
	}

h1[b-hl0b3t4tov], h2[b-hl0b3t4tov], h3[b-hl0b3t4tov] {
	background-color: rgba(255, 255, 255, 0.1);
	padding: 0.5rem var(--padding);
	margin: 0;
	font-size: 0.875rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05rem;
}

a.brand[b-hl0b3t4tov] {
	font-size: 2rem;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	text-decoration: none;
	color: var(--color);
	padding: 1rem var(--padding);
}

[b-hl0b3t4tov] a {
	display: flex;
	gap: 1rem;
	align-items: center;
	justify-content: flex-start;
	text-decoration: none;
	color: var(--color);
	padding: 1rem var(--padding);
	font-size: 1rem;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

	[b-hl0b3t4tov] a:hover {
		background-color: rgba(255, 255, 255, 0.15);
		text-decoration: underline;
	}

	[b-hl0b3t4tov] a.active {
		background-color: rgba(255, 255, 255, 0.25);
		font-weight: 600;
	}

.logout-link[b-hl0b3t4tov] {
	background: none;
	border: none;
	color: var(--color);
	padding: 0;
	font-size: 1rem;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	cursor: pointer;
	text-decoration: none;
}

	.logout-link:hover[b-hl0b3t4tov] {
		text-decoration: underline;
	}

p[b-hl0b3t4tov] {
	margin: 0.25rem 0;
	padding: 0 var(--padding);
}

nav[b-hl0b3t4tov] {
	display: flex;
	flex-direction: column;
}
/* /Components/Layout/PlayLayout.razor.rz.scp.css */
.page[b-9i8iqk4zpi] {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main[b-9i8iqk4zpi] {
    flex: 1;
    display: flex;
}

.content[b-9i8iqk4zpi] {
    flex: 1;
}

#blazor-error-ui[b-9i8iqk4zpi] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-9i8iqk4zpi] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-vqoj99lxxt],
.components-reconnect-repeated-attempt-visible[b-vqoj99lxxt],
.components-reconnect-failed-visible[b-vqoj99lxxt],
.components-pause-visible[b-vqoj99lxxt],
.components-resume-failed-visible[b-vqoj99lxxt],
.components-rejoining-animation[b-vqoj99lxxt] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-vqoj99lxxt],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-vqoj99lxxt],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-vqoj99lxxt],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-vqoj99lxxt],
#components-reconnect-modal.components-reconnect-retrying[b-vqoj99lxxt],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-vqoj99lxxt],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-vqoj99lxxt],
#components-reconnect-modal.components-reconnect-failed[b-vqoj99lxxt],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-vqoj99lxxt] {
    display: block;
}


#components-reconnect-modal[b-vqoj99lxxt] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-vqoj99lxxt 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-vqoj99lxxt 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-vqoj99lxxt 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-vqoj99lxxt]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-vqoj99lxxt 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-vqoj99lxxt {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-vqoj99lxxt {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-vqoj99lxxt {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-vqoj99lxxt] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-vqoj99lxxt] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-vqoj99lxxt] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-vqoj99lxxt] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-vqoj99lxxt] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-vqoj99lxxt] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-vqoj99lxxt] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-vqoj99lxxt 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-vqoj99lxxt] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-vqoj99lxxt {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Pages/CharacterCreate.razor.rz.scp.css */
.character-create-container[b-84x30svlw3] {
	display: flex;
	flex-direction: column;
	padding: 2rem;
	max-width: 500px;
	margin: 0 auto;
}

h2[b-84x30svlw3] {
	margin-top: 0;
	margin-bottom: 1rem;
	font-size: 2rem;
	border-bottom: 2px solid rgba(0, 0, 0, 0.15);
	padding-bottom: 1rem;
}

.input-wrap[b-84x30svlw3] {
	margin-bottom: 1rem;
}

	.input-wrap label[b-84x30svlw3] {
		display: block;
		margin-bottom: 0.25rem;
	}

.stat-row[b-84x30svlw3] {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 0.5rem;
}

	.stat-input[b-84x30svlw3] {
		display: flex;
		align-items: center;
		gap: 0.5rem;
	}

	.stat-input input[b-84x30svlw3] {
		width: 3rem;
		text-align: center;
	}

	.stat-input button[b-84x30svlw3] {
		width: 1.75rem;
		height: 1.75rem;
		line-height: 1;
		border: 1px solid #888;
		border-radius: 4px;
		background: #e9e9e9;
		color: #222;
		font-size: 1rem;
		font-weight: 700;
		cursor: pointer;
	}

		.stat-input button:hover:not(:disabled)[b-84x30svlw3] {
			background: #d5d5d5;
		}

		.stat-input button:disabled[b-84x30svlw3] {
			opacity: 0.35;
			cursor: default;
		}

.ability-row[b-84x30svlw3] {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.points-remaining[b-84x30svlw3] {
	font-weight: normal;
	margin-left: 0.5rem;
}

.points-remaining--invalid[b-84x30svlw3] {
	color: #c0392b;
}

.hint[b-84x30svlw3] {
	color: rgba(0, 0, 0, 0.6);
	font-size: 0.9rem;
}

.error-message[b-84x30svlw3] {
	color: #c0392b;
}

button[type="submit"][b-84x30svlw3] {
	padding: 0.75rem 1.5rem;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	border: none;
	border-radius: 4px;
	font-weight: 600;
}

	button[type="submit"]:disabled[b-84x30svlw3] {
		opacity: 0.5;
	}
/* /Components/Pages/Characters.razor.rz.scp.css */
.characters-container[b-l2jt657rgp] {
	display: flex;
	flex-direction: column;
	padding: 2rem;
	max-width: 1200px;
	margin: 0 auto;
}

.character-selection[b-l2jt657rgp] {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin: 2rem 0;
}

.character-panel[b-l2jt657rgp] {
	border: 2px solid rgba(255, 255, 255, 0.2);
	border-radius: 8px;
	padding: 1.5rem;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
	text-align: center;
	transition: all 0.3s ease;
	min-height: 150px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

	.character-panel:hover[b-l2jt657rgp] {
		border-color: rgba(255, 255, 255, 0.4);
		background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
		box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
	}

	.character-panel h3[b-l2jt657rgp] {
		margin: 0 0 1rem 0;
		font-size: 1.25rem;
	}

	.character-panel p[b-l2jt657rgp] {
		margin: 0.5rem 0;
	}

	.character-panel .character-action[b-l2jt657rgp] {
		display: inline-block;
		padding: 0.75rem 1.5rem;
		margin-top: 1rem;
		margin-right: 0.5rem;
		background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
		color: white;
		border: none;
		text-decoration: none;
		border-radius: 4px;
		transition: all 0.2s ease;
		font-weight: 600;
		font-size: 1rem;
		font-family: inherit;
		cursor: pointer;
	}

		.character-panel .character-action:last-child[b-l2jt657rgp] {
			margin-right: 0;
		}

		.character-panel .character-action:hover[b-l2jt657rgp] {
			transform: translateY(-2px);
			box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
			text-decoration: none;
		}

	.character-panel .character-action:active[b-l2jt657rgp] {
		transform: translateY(0);
	}

h2[b-l2jt657rgp] {
	margin-top: 0;
	margin-bottom: 1rem;
	font-size: 2rem;
	border-bottom: 2px solid rgba(255, 255, 255, 0.2);
	padding-bottom: 1rem;
}
/* /Components/Pages/Game/FavorBar.razor.rz.scp.css */
.FavorBar[b-q9kfj3o8a0] {
	position: relative;
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	width: 70px;
}

.FavorBar__icon[b-q9kfj3o8a0] {
	width: 36px;
	height: 36px;
	margin-bottom: -18px;
	z-index: 1;
}

.FavorBar__fill[b-q9kfj3o8a0] {
	transform-box: fill-box;
	transform-origin: center bottom;
	transform: scaleY(var(--fill-ratio));
	transition: transform 0.3s ease;
}

.FavorBar__label[b-q9kfj3o8a0] {
	margin-top: 0.25rem;
	font-size: 0.8rem;
	color: #e8dfb0;
}
/* /Components/Pages/Game/HealthBar.razor.rz.scp.css */
.HealthBar[b-aq46rf884k] {
	position: relative;
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	width: 70px;
}

.HealthBar__icon[b-aq46rf884k] {
	width: 36px;
	height: 36px;
	margin-bottom: -18px;
	z-index: 1;
}

.HealthBar__fill[b-aq46rf884k] {
	transform-box: fill-box;
	transform-origin: center bottom;
	transform: scaleY(var(--fill-ratio));
	transition: transform 0.3s ease;
}

.HealthBar__label[b-aq46rf884k] {
	margin-top: 0.25rem;
	font-size: 0.8rem;
	color: #e8dfb0;
}
/* /Components/Pages/Game/MiniMap.razor.rz.scp.css */
.MiniMap[b-r08fzf20qu] {
	--rowsAndColumns: 5;
	--tile-size: 64px;
	color: white;
	width: max-content;
}

.MiniMap__Rooms[b-r08fzf20qu] {
	display: grid;
	grid-template-rows: repeat(var(--rowsAndColumns), 1fr);
	grid-template-columns: repeat(var(--rowsAndColumns), 1fr);
	gap: 1px;
}
/* /Components/Pages/Game/Tile.razor.rz.scp.css */
.Tile[b-du1ngtkom1] {
	position: relative;
	text-align: center;
	user-select: none;
	overflow: hidden;
}

.Tile--clickable[b-du1ngtkom1] {
	cursor: pointer;
}

	.Tile--clickable:hover[b-du1ngtkom1] {
		outline: 2px solid greenyellow;
		outline-offset: -2px;
	}

.Tile--empty .Tile__terrain[b-du1ngtkom1] {
	background-color: black;
}

.Tile__terrain[b-du1ngtkom1] {
	position: relative;
	overflow: hidden;
	width: var(--tile-size, 64px);
	height: var(--tile-size, 64px);
}

	.Tile__terrain img[b-du1ngtkom1] {
		width: 100%;
		height: 100%;
		display: block;
	}

.Tile button[b-du1ngtkom1] {
	font-size: 80%;
	padding: 0.1rem 0.3rem;
	border-radius: 5px;
}
/* /Components/Pages/Guide.razor.rz.scp.css */
.guide-page[b-ulwkf9n90s] {
	background-color: #eee;
	margin: -1.1rem -1.5rem 0;
	padding: 1.1rem 1.5rem 1px;
	min-height: 100vh;
}

@media (min-width: 641px) {
	.guide-page[b-ulwkf9n90s] {
		margin: -1.1rem -1.5rem 0 -2rem;
		padding: 1.1rem 1.5rem 1px 2rem;
	}
}

.guide-container[b-ulwkf9n90s] {
	padding: 2rem;
	max-width: 900px;
	margin: 0 auto;
}

h2[b-ulwkf9n90s] {
	margin-top: 0;
	margin-bottom: 1.5rem;
	font-size: 2rem;
	border-bottom: 2px solid rgba(0, 0, 0, 0.15);
	padding-bottom: 1rem;
}

.guide-section[b-ulwkf9n90s] {
	margin-bottom: 2.5rem;
}

	.guide-section h3[b-ulwkf9n90s] {
		font-size: 1.35rem;
		margin-bottom: 0.75rem;
	}

	.guide-section p[b-ulwkf9n90s] {
		line-height: 1.6;
		margin: 0.75rem 0;
	}

.hint[b-ulwkf9n90s] {
	color: rgba(0, 0, 0, 0.6);
	font-size: 0.9rem;
}

.attribute-list dt[b-ulwkf9n90s] {
	font-weight: 700;
	margin-top: 0.75rem;
}

.attribute-list dd[b-ulwkf9n90s] {
	margin: 0.2rem 0 0 0;
	line-height: 1.5;
}

code[b-ulwkf9n90s] {
	background: rgba(0, 0, 0, 0.06);
	border-radius: 4px;
	padding: 0.1rem 0.35rem;
	font-size: 0.9em;
}

.command-table[b-ulwkf9n90s] {
	width: 100%;
	border-collapse: collapse;
	margin-top: 0.75rem;
}

	.command-table th[b-ulwkf9n90s], .command-table td[b-ulwkf9n90s] {
		text-align: left;
		padding: 0.6rem 0.75rem;
		border-bottom: 1px solid rgba(0, 0, 0, 0.1);
		vertical-align: top;
	}

	.command-table th[b-ulwkf9n90s] {
		font-size: 0.85rem;
		text-transform: uppercase;
		letter-spacing: 0.03rem;
		color: rgba(0, 0, 0, 0.55);
	}

	.command-table td:first-child[b-ulwkf9n90s] {
		white-space: nowrap;
		font-weight: 600;
	}
/* /Components/Pages/Lore.razor.rz.scp.css */
.lore-page[b-845ia1rs36] {
	background-color: #eee;
	margin: -1.1rem -1.5rem 0;
	padding: 1.1rem 1.5rem 1px;
	min-height: 100vh;
}

@media (min-width: 641px) {
	.lore-page[b-845ia1rs36] {
		margin: -1.1rem -1.5rem 0 -2rem;
		padding: 1.1rem 1.5rem 1px 2rem;
	}
}

.lore-container[b-845ia1rs36] {
	padding: 2rem;
	max-width: 900px;
	margin: 0 auto;
}

h2[b-845ia1rs36] {
	margin-top: 0;
	margin-bottom: 1.5rem;
	font-size: 2rem;
	border-bottom: 2px solid rgba(0, 0, 0, 0.15);
	padding-bottom: 1rem;
}

.lore-section[b-845ia1rs36] {
	margin-bottom: 2.5rem;
}

	.lore-section h3[b-845ia1rs36] {
		font-size: 1.35rem;
		margin-bottom: 0.75rem;
	}

	.lore-section p[b-845ia1rs36] {
		line-height: 1.6;
		margin: 0.75rem 0;
	}

.lineage-grid[b-845ia1rs36], .figure-grid[b-845ia1rs36] {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1.25rem;
	margin-top: 1rem;
}

.lineage-card[b-845ia1rs36], .figure-card[b-845ia1rs36] {
	border: 1px solid rgba(0, 0, 0, 0.15);
	border-radius: 8px;
	padding: 1.25rem;
	background: linear-gradient(135deg, rgba(102, 126, 234, 0.06), rgba(118, 75, 162, 0.03));
}

	.lineage-card h4[b-845ia1rs36], .figure-card h4[b-845ia1rs36] {
		margin: 0 0 0.25rem 0;
		font-size: 1.1rem;
	}

.lineage-tag[b-845ia1rs36] {
	margin: 0 0 0.5rem 0 !important;
	font-size: 0.85rem;
	font-style: italic;
	color: rgba(0, 0, 0, 0.55);
}

.figure-list dt[b-845ia1rs36] {
	font-weight: 700;
	margin-top: 1.25rem;
	font-size: 1.05rem;
}

.figure-list dd[b-845ia1rs36] {
	margin: 0.35rem 0 0 0;
	line-height: 1.6;
	color: rgba(0, 0, 0, 0.85);
}
/* /Components/Pages/Play.razor.rz.scp.css */
.game-container[b-yxfldkh149] {
	display: flex;
	flex-direction: column;
	height: 100vh;
	background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
	color: #e0e0e0;
	font-family: 'Courier New', monospace;
}

.game-header[b-yxfldkh149] {
	padding: 1.5rem;
	border-bottom: 2px solid rgba(255, 255, 255, 0.2);
	background: rgba(0, 0, 0, 0.3);
}

	.game-header h2[b-yxfldkh149] {
		margin: 0 0 0.5rem 0;
		color: #fff;
	}

	.game-header p[b-yxfldkh149] {
		margin: 0;
		font-size: 0.9rem;
		color: #aaa;
	}

.game-content[b-yxfldkh149] {
	display: grid;
	grid-template-columns: 200px 1fr 250px;
	gap: 1rem;
	padding: 1rem;
	flex: 1;
	overflow: hidden;
}

.left-panel[b-yxfldkh149],
.right-panel[b-yxfldkh149] {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	overflow-y: auto;
}

.main-game[b-yxfldkh149] {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	overflow: hidden;
}

.panel-box[b-yxfldkh149] {
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 4px;
	padding: 1rem;
	background: rgba(0, 0, 0, 0.4);
	backdrop-filter: blur(10px);
}

.StatsPanel[b-yxfldkh149] {
	position: relative;
	border: none;
	background: none;
	backdrop-filter: none;
	padding: 0;
	min-height: 320px;
}

	.StatsPanel__frame[b-yxfldkh149],
	.StatsPanel[b-yxfldkh149]  .PanelFrame {
		position: absolute;
		inset: 0;
		width: 100%;
		height: 100%;
	}

	.StatsPanel__content[b-yxfldkh149] {
		position: relative;
		z-index: 1;
		padding: 3.5rem 1rem 1rem;
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 0.5rem;
		text-align: center;
	}

	.StatsPanel__bars[b-yxfldkh149] {
		display: flex;
		flex-direction: row;
		gap: 0.75rem;
	}

	.panel-box h4[b-yxfldkh149] {
		margin: 0 0 0.75rem 0;
		color: #4db8ff;
		font-size: 0.95rem;
		text-transform: uppercase;
		letter-spacing: 0.05rem;
		border-bottom: 1px solid rgba(77, 184, 255, 0.3);
		padding-bottom: 0.5rem;
	}

	.panel-box p[b-yxfldkh149] {
		margin: 0.25rem 0;
		font-size: 0.85rem;
		color: #aaa;
	}

.RoomCharacters[b-yxfldkh149] {
	margin: 0;
	padding-left: 1.1rem;
	font-size: 0.85rem;
	color: #aaa;
}

.RoomName[b-yxfldkh149] {
	font-weight: 600;
	color: #e0e0e0;
}

.Abilities[b-yxfldkh149] {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

	.Abilities__icon[b-yxfldkh149] {
		width: 4.5rem;
		height: 4.5rem;
		display: block;
	}

.game-output[b-yxfldkh149] {
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 4px;
	padding: 1rem;
	background: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(10px);
	flex: 1;
	overflow-y: auto;
	display: flex;
	flex-direction: column;
}

	.game-output h4[b-yxfldkh149] {
		margin: 0 0 0.75rem 0;
		color: #4db8ff;
		font-size: 0.95rem;
		text-transform: uppercase;
		letter-spacing: 0.05rem;
	}

	.game-output-header[b-yxfldkh149] {
		display: flex;
		align-items: center;
		justify-content: space-between;
	}

		.game-output-header h4[b-yxfldkh149] {
			margin: 0 0 0.75rem 0;
		}

	.SearchToggle[b-yxfldkh149] {
		background: none;
		border: none;
		cursor: pointer;
		font-size: 1rem;
		line-height: 1;
		padding: 0.25rem;
		margin-bottom: 0.5rem;
		opacity: 0.7;
	}

		.SearchToggle:hover[b-yxfldkh149] {
			opacity: 1;
		}

	.SearchInput[b-yxfldkh149] {
		width: 100%;
		box-sizing: border-box;
		padding: 0.5rem;
		margin-bottom: 0.5rem;
		border: 1px solid rgba(77, 184, 255, 0.3);
		border-radius: 4px;
		background: rgba(0, 0, 0, 0.4);
		color: #fff;
		font-family: 'Courier New', monospace;
		font-size: 0.9rem;
	}

		.SearchInput:focus[b-yxfldkh149] {
			outline: none;
			border-color: #4db8ff;
			box-shadow: 0 0 8px rgba(77, 184, 255, 0.3);
		}

	.game-output p[b-yxfldkh149] {
		margin: 0.5rem 0;
		line-height: 1.6;
		color: #ddd;
	}

	.game-log-entry[b-yxfldkh149] {
		margin: 0.35rem 0;
		line-height: 1.6;
		color: #ddd;
	}

	.game-log-entry--narration[b-yxfldkh149] {
		font-style: italic;
		font-size: 1rem;
		color: #e8dfb0;
	}

	.game-log-entry--speech[b-yxfldkh149] {
		color: #7fd6c2;
	}

	.game-log-entry--combat[b-yxfldkh149] {
		font-weight: 600;
		color: #ff8a5c;
	}

	.game-log-entry--movement[b-yxfldkh149] {
		font-size: 0.85rem;
		color: #999;
	}

	.game-log-entry--item[b-yxfldkh149] {
		color: #e0c368;
	}

	.game-log-entry--system[b-yxfldkh149] {
		font-size: 0.85rem;
		color: #4db8ff;
	}

	.game-log-entry--help[b-yxfldkh149] {
		font-family: 'Courier New', monospace;
		font-size: 0.85rem;
		color: #aaa;
		padding-left: 1rem;
	}

	.game-log-entry--client[b-yxfldkh149] {
		font-style: italic;
		color: #888;
	}

		.game-log-entry--client[b-yxfldkh149]::before {
			content: ">> ";
		}

.game-input[b-yxfldkh149] {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 0.5rem;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 4px;
	padding: 0.75rem;
	background: rgba(0, 0, 0, 0.4);
	backdrop-filter: blur(10px);
}

	.game-input input[b-yxfldkh149] {
		padding: 0.75rem;
		border: 1px solid rgba(77, 184, 255, 0.3);
		border-radius: 4px;
		background: rgba(0, 0, 0, 0.6);
		color: #fff;
		font-family: 'Courier New', monospace;
		font-size: 0.95rem;
	}

		.game-input input:focus[b-yxfldkh149] {
			outline: none;
			border-color: #4db8ff;
			box-shadow: 0 0 8px rgba(77, 184, 255, 0.3);
		}

		.game-input input:disabled[b-yxfldkh149] {
			opacity: 0.5;
			cursor: not-allowed;
		}

	.game-input button[b-yxfldkh149] {
		padding: 0.75rem 1.5rem;
		border: 1px solid rgba(77, 184, 255, 0.3);
		border-radius: 4px;
		background: linear-gradient(135deg, rgba(77, 184, 255, 0.2), rgba(77, 184, 255, 0.1));
		color: #4db8ff;
		font-weight: 600;
		cursor: pointer;
		transition: all 0.2s ease;
		font-family: 'Courier New', monospace;
	}

		.game-input button:hover:not(:disabled)[b-yxfldkh149] {
			background: linear-gradient(135deg, rgba(77, 184, 255, 0.4), rgba(77, 184, 255, 0.2));
			box-shadow: 0 0 12px rgba(77, 184, 255, 0.4);
		}

		.game-input button:disabled[b-yxfldkh149] {
			opacity: 0.5;
			cursor: not-allowed;
		}

.game-footer[b-yxfldkh149] {
	padding: 1rem;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	background: rgba(0, 0, 0, 0.3);
	display: flex;
	gap: 1rem;
}

	.game-footer button[b-yxfldkh149] {
		padding: 0.75rem 1.5rem;
		border: 1px solid rgba(77, 184, 255, 0.3);
		border-radius: 4px;
		background: linear-gradient(135deg, rgba(77, 184, 255, 0.2), rgba(77, 184, 255, 0.1));
		color: #4db8ff;
		font-weight: 600;
		cursor: pointer;
		transition: all 0.2s ease;
	}

		.game-footer button:hover[b-yxfldkh149] {
			background: linear-gradient(135deg, rgba(77, 184, 255, 0.4), rgba(77, 184, 255, 0.2));
			box-shadow: 0 0 12px rgba(77, 184, 255, 0.4);
		}

/* Scrollbar styling */
[b-yxfldkh149]::-webkit-scrollbar {
	width: 8px;
}

[b-yxfldkh149]::-webkit-scrollbar-track {
	background: transparent;
}

[b-yxfldkh149]::-webkit-scrollbar-thumb {
	background: rgba(77, 184, 255, 0.3);
	border-radius: 4px;
}

	[b-yxfldkh149]::-webkit-scrollbar-thumb:hover {
		background: rgba(77, 184, 255, 0.5);
	}

/* Responsive design */
@media (max-width: 1200px) {
	.game-content[b-yxfldkh149] {
		grid-template-columns: 150px 1fr 200px;
		gap: 0.5rem;
		padding: 0.5rem;
	}
}

@media (max-width: 768px) {
	.game-content[b-yxfldkh149] {
		grid-template-columns: 1fr;
		grid-template-rows: auto 1fr auto;
	}

	.left-panel[b-yxfldkh149],
	.right-panel[b-yxfldkh149] {
		display: none;
	}

	.game-header[b-yxfldkh149],
	.game-footer[b-yxfldkh149] {
		padding: 1rem;
	}
}
/* /Components/Shared/TileExits.razor.rz.scp.css */
/* Exits are full circles centered on the tile's edges and corners, overlapping the
   tile so that adjacent tiles sharing an exit render a single circle between them.
   Requires the host tile to set overflow:hidden so the halves outside its bounds
   are clipped, and to sit in a zero-gap grid so the circles actually meet. */
.Tile__exit[b-4okq06ctln] {
	--ExitSize: 0.75rem;
	position: absolute;
	width: var(--ExitSize);
	height: var(--ExitSize);
	z-index: 110;
	border-radius: 50%;
	transform: translate(-50%, -50%);
}

.Tile__exit--open[b-4okq06ctln] {
	/* Protanopia‑friendly: open exits – blue */
background-color: #1E90FF;
}

.Tile__exit--close[b-4okq06ctln] {
	/* Protanopia‑friendly: closed exits – light purple */
background-color:#9370DB;
}

.Tile__exit--left[b-4okq06ctln] {
	left: 0;
	top: 50%;
}

.Tile__exit--right[b-4okq06ctln] {
	left: 100%;
	top: 50%;
}

.Tile__exit--top[b-4okq06ctln] {
	left: 50%;
	top: 0;
}

.Tile__exit--bottom[b-4okq06ctln] {
	left: 50%;
	top: 100%;
}

.Tile__exit--nw[b-4okq06ctln] {
	left: 0;
	top: 0;
}

.Tile__exit--ne[b-4okq06ctln] {
	left: 100%;
	top: 0;
}

.Tile__exit--sw[b-4okq06ctln] {
	left: 0;
	top: 100%;
}

.Tile__exit--se[b-4okq06ctln] {
	left: 100%;
	top: 100%;
}
