/* _content/MidnightShadows_Blazor/Components/AttackDrawer.razor.rz.scp.css */
.attack-close-btn[b-lmihahk3r8] {
	position: absolute;
	right: .5rem;
	top: 0;
	font-size: 24px;
	font-weight: bold;
	cursor: pointer;
	color: #f0e6dc;
	z-index: 21;
}

.attack-drawer[b-lmihahk3r8] {
	position: absolute;
	top: 0;
	width: 100%;
	background-color: black;
	border: 2px solid #ff4500;
	transform: translateY(100%);
	opacity: 0;
	transition: transform 0.5s ease-out, opacity 0.5s ease-out;
	box-shadow: 0 -5px 15px rgba(0,0,0,0.2);
	z-index: 0;
}

	.attack-drawer .choice:hover[b-lmihahk3r8] {
		background: rgba(255,255,255,.4);
	}

.attack-drawer-content[b-lmihahk3r8] {
	padding: 20px;
	text-align: left;
	position: relative;
}

.attack-drawer.open[b-lmihahk3r8] {
	transform: translateY(0);
	opacity: 1; /* Full opacity when open */
	z-index: 20;
}

.attack-drawer.open .choice[b-lmihahk3r8] {
	margin: .5rem 0;
	cursor: pointer;
}

@media (max-width: 1250px) {
	.attack-drawer[b-lmihahk3r8] {
		top: -1rem;
		bottom: -3rem;
		font-size: .8rem;
		position: absolute;
	}
}
/* _content/MidnightShadows_Blazor/Components/BackgroundAudio.razor.rz.scp.css */
@media (max-width: 1250px) {
	
	.volume-slider[b-n8vut6muoy] {
		display: none;
	}
}
/* _content/MidnightShadows_Blazor/Components/Dialogs/AvatarChooserDialog.razor.rz.scp.css */
.avatar-frame[b-exbwyefkol] {
	width: 400px;
	height: 400px;
	border-radius: 50%;
	overflow: hidden;
	position: relative;
	margin: 20px;
	/* Red theme */
	border: 5px solid #FF0000; /* Bright red border */
	box-shadow: 0 0 0 10px #FF4500, /* Tomato inner glow */
	0 0 0 15px #8B0000; /* Dark red outer frame */
}

	/*.avatar-frame::before {
		content: '';
		position: absolute;
		top: -10px;
		left: -10px;
		right: -10px;
		bottom: -10px;
		border-radius: 50%;
		background: linear-gradient(45deg, transparent, #FF0000, transparent);
		z-index: -1;
		animation: sparkle 2s infinite;
	}*/

	.avatar-frame img[b-exbwyefkol] {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

@keyframes sparkle-b-exbwyefkol {
	0% {
		transform: scale(0.98) rotate(0deg);
		opacity: 0.5;
	}

	50% {
		transform: scale(1) rotate(180deg);
		opacity: 1;
	}

	100% {
		transform: scale(0.98) rotate(360deg);
		opacity: 0.5;
	}
}


.avatar-chooser-container[b-exbwyefkol] {
	width: 100%;
	display: grid;
	grid-template-columns: 450px 1fr;
}









@media (max-width: 600px) {
	.avatar-chooser-container[b-exbwyefkol] {
		width: 100%;
		display: block;
	}

	.avatar-frame[b-exbwyefkol] {
		width: 90%;	
		height: auto;	
		margin: 1rem auto;
	}
}

/* _content/MidnightShadows_Blazor/Components/EnergyMeter.razor.rz.scp.css */
.energy-meter[b-ihzt7nu0xj] {
	width: 200px;
	height: 30px;
	background: linear-gradient(to right, #ff4500 0%, #ff4500 var(--energy-level), #000 var(--energy-level), #000 100%);
	border-radius: 15px;
	overflow: hidden;
	border: 3px solid #fff;
}

	.energy-meter[b-ihzt7nu0xj]::before {
		content: '';
		display: block;
		width: 100%;
		height: 100%;
		background: rgba(255, 255, 255, 0);
		border-radius: 15px;
	}

.energy-meter-label[b-ihzt7nu0xj] {
	font-variant: small-caps;
	text-align: center;
}

.energy-meter-wrapper[b-ihzt7nu0xj] {
	position: absolute;
	top: 1rem;
	right: 0;
}

@media (max-width: 1250px) {
	.energy-meter[b-ihzt7nu0xj] {
		width: 100px;
		height: 20px;
	}

	.energy-meter-wrapper[b-ihzt7nu0xj] {
		right: 1rem;
		top: -50px;
	}
}
/* _content/MidnightShadows_Blazor/Components/GameMap.razor.rz.scp.css */
.map[b-ifjpy5jo82] {
	display: grid;
	grid-template-columns: repeat(9, 1fr);
	grid-template-rows: repeat(5, 20px);
	grid-column-gap: 1px;
	grid-row-gap: 1px;
	border: 2px solid red;
	width: 100%;
	max-width: 250px;
	height: 110px;
	z-index: 50;
}

.map-item[b-ifjpy5jo82] {
	text-align: center;
	border-radius: 10px;
}

	.map-item.black[b-ifjpy5jo82] {
		background-color: black;
	}

	.map-item.current[b-ifjpy5jo82] {
		border: 2px solid #ff5122;
	}

	.map-item.forest[b-ifjpy5jo82] {
		background-color: #285b1a;
	}

	.map-item.grassland[b-ifjpy5jo82] {
		background-color: #689d63;
	}

		.map-item.grassland svg[b-ifjpy5jo82] {
			color: black !important;
		}

	.map-item.road[b-ifjpy5jo82] {
		background-color: white;
	}

	.map-item.town[b-ifjpy5jo82] {
		background-color: #838383;
	}

	.map-item.cave[b-ifjpy5jo82] {
		background-color: brown;
	}

.person-map-icon[b-ifjpy5jo82] {
	color: black;
}
/* _content/MidnightShadows_Blazor/Components/GameWindow.razor.rz.scp.css */
.game-window-narration-alert[b-5c6inna1xx] {
	position: absolute;
	z-index: 5 !important;
	width: 100%;
}

	.game-window-narration-alert .mud-alert-text-info[b-5c6inna1xx] {
		background-color: rgb(33 150 243 / 25%) !important;
		border-radius: 20px 20px 0 0 !important;
	}

.fade-in[b-5c6inna1xx] {
	transition: opacity 2s ease-in-out;
	opacity: 0;
}

.fade-in.active[b-5c6inna1xx] {
	opacity: 1;
}



	.other-players-wrapper[b-5c6inna1xx] {
		position: absolute;
		bottom: 0;
		left: 0;
		z-index: 30;
	}

.npc[b-5c6inna1xx] {
	position: absolute;
	z-index: 10;
	cursor: pointer;
}

#GameWindowImage[b-5c6inna1xx] {
	background-size: cover;
	background-position: center;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	border-radius: 20px;
}

#GameWindowWrapper[b-5c6inna1xx] {
	height: 100vh;
}

@media (max-width: 1250px) {
	
	#GameWindowWrapper[b-5c6inna1xx] {
		height: inherit;
		padding-bottom: 100%;
	}
	
	#GameWindowImage[b-5c6inna1xx] {
		/*height: auto;*/
	}
}
/* _content/MidnightShadows_Blazor/Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-kupgkujhbq] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-kupgkujhbq] {
    flex: 1;
}

.sidebar[b-kupgkujhbq] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-kupgkujhbq] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-kupgkujhbq]  a, .top-row[b-kupgkujhbq]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-kupgkujhbq]  a:hover, .top-row[b-kupgkujhbq]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-kupgkujhbq]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 1250px) {
    .top-row[b-kupgkujhbq] {
        justify-content: space-between;
    }

    .top-row[b-kupgkujhbq]  a, .top-row[b-kupgkujhbq]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 1251px) {
    .page[b-kupgkujhbq] {
        flex-direction: row;
    }

    .sidebar[b-kupgkujhbq] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-kupgkujhbq] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-kupgkujhbq]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-kupgkujhbq], article[b-kupgkujhbq] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-kupgkujhbq] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    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-kupgkujhbq] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

/* _content/MidnightShadows_Blazor/Components/Layout/NavMenu.razor.rz.scp.css */
#logout-button[b-f19npm4ecl] {
	justify-content: normal !important;
}
	#logout-button:hover[b-f19npm4ecl] {
		color: inherit;
	}

.navbar-toggler[b-f19npm4ecl] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: white;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1);
}

.navbar-toggler:checked[b-f19npm4ecl] {
    background-color: rgba(255, 255, 255, 0.5);
}

.top-row[b-f19npm4ecl] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-f19npm4ecl] {
    font-size: 1.1rem;
}

.bi[b-f19npm4ecl] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-f19npm4ecl] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-f19npm4ecl] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-f19npm4ecl] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.bi-lock-nav-menu[b-f19npm4ecl] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath d='M8 1a2 2 0 0 1 2 2v4H6V3a2 2 0 0 1 2-2zm3 6V3a3 3 0 0 0-6 0v4a2 2 0 0 0-2 2v5a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2zM5 8h6a1 1 0 0 1 1 1v5a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1V9a1 1 0 0 1 1-1z'/%3E%3C/svg%3E");
}

.bi-person-nav-menu[b-f19npm4ecl] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-person' viewBox='0 0 16 16'%3E%3Cpath d='M8 8a3 3 0 1 0 0-6 3 3 0 0 0 0 6Zm2-3a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm4 8c0 1-1 1-1 1H3s-1 0-1-1 1-4 6-4 6 3 6 4Zm-1-.004c-.001-.246-.154-.986-.832-1.664C11.516 10.68 10.289 10 8 10c-2.29 0-3.516.68-4.168 1.332-.678.678-.83 1.418-.832 1.664h10Z'/%3E%3C/svg%3E");
}

.bi-person-badge-nav-menu[b-f19npm4ecl] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-person-badge' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 2a.5.5 0 0 0 0 1h3a.5.5 0 0 0 0-1h-3zM11 8a3 3 0 1 1-6 0 3 3 0 0 1 6 0z'/%3E%3Cpath d='M4.5 0A2.5 2.5 0 0 0 2 2.5V14a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V2.5A2.5 2.5 0 0 0 11.5 0h-7zM3 2.5A1.5 1.5 0 0 1 4.5 1h7A1.5 1.5 0 0 1 13 2.5v10.795a4.2 4.2 0 0 0-.776-.492C11.392 12.387 10.063 12 8 12s-3.392.387-4.224.803a4.2 4.2 0 0 0-.776.492V2.5z'/%3E%3C/svg%3E");
}

.bi-person-fill-nav-menu[b-f19npm4ecl] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-person-fill' viewBox='0 0 16 16'%3E%3Cpath d='M3 14s-1 0-1-1 1-4 6-4 6 3 6 4-1 1-1 1H3Zm5-6a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z'/%3E%3C/svg%3E");
}

.bi-arrow-bar-left-nav-menu[b-f19npm4ecl] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-arrow-bar-left' viewBox='0 0 16 16'%3E%3Cpath d='M12.5 15a.5.5 0 0 1-.5-.5v-13a.5.5 0 0 1 1 0v13a.5.5 0 0 1-.5.5ZM10 8a.5.5 0 0 1-.5.5H3.707l2.147 2.146a.5.5 0 0 1-.708.708l-3-3a.5.5 0 0 1 0-.708l3-3a.5.5 0 1 1 .708.708L3.707 7.5H9.5a.5.5 0 0 1 .5.5Z'/%3E%3C/svg%3E");
}

.nav-item[b-f19npm4ecl] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-f19npm4ecl] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-f19npm4ecl] {
        padding-bottom: 1rem;
    }

    .nav-item[b-f19npm4ecl]  .nav-link {
        color: #d7d7d7;
        background: none;
        border: none;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        width: 100%;
    }

.nav-item[b-f19npm4ecl]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

	.nav-item[b-f19npm4ecl]  a {
		text-decoration: none !important;
	}

.nav-item[b-f19npm4ecl]  .nav-link:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

.nav-scrollable[b-f19npm4ecl] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-f19npm4ecl] {
    display: block;
}



@media (min-width: 1250px) {
    .navbar-toggler[b-f19npm4ecl] {
        display: none;
    }

    .nav-scrollable[b-f19npm4ecl] {
        /* Never collapse the sidebar for wide screens */
        display: block;

        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}


/* GROK STYLES */



/* Dark and Mysterious NavMenu */

/* Base styles */
.nav-menu[b-f19npm4ecl] {
	background-color: #1a1a1a; /* Deep, dark background */
	color: #d3d3d3; /* Light gray text for contrast */
	border-right: 2px solid #4d0000; /* Blood red border */
}

	/* Nav items */
	.nav-menu .nav-item[b-f19npm4ecl] {
		transition: all 0.3s ease; /* Smooth transition for hover effects */
	}

		.nav-menu .nav-item:hover[b-f19npm4ecl] {
			background-color: #333; /* Slightly lighter for hover effect */
		}

		.nav-menu .nav-item.active[b-f19npm4ecl] {
			background-color: #4d0000; /* Active item in blood red */
		}

	/* Links */
	.nav-menu .nav-link[b-f19npm4ecl] {
		color: #d3d3d3; /* Light gray */
	}

		.nav-menu .nav-link:hover[b-f19npm4ecl] {
			color: #ff4500; /* Orange for a fiery effect on hover */
		}

	/* Submenu */
	.nav-menu .dropdown-menu[b-f19npm4ecl] {
		background-color: #2a2a2a; /* Darker than the main menu */
	}

	.nav-menu .dropdown-item[b-f19npm4ecl] {
		color: #d3d3d3; /* Light gray */
	}

		.nav-menu .dropdown-item:hover[b-f19npm4ecl] {
			background-color: #4d0000; /* Blood red on hover */
			color: #fff; /* White text for contrast */
		}

	/* For that extra spooky effect */
	.nav-menu[b-f19npm4ecl]::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		opacity: 0.1; /* Subtle spooky background */
		z-index: -1;
	}

/* Add some creepy shadows */
.nav-menu[b-f19npm4ecl] {
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.5); /* Deep shadow */
}

/* For a bit of horror */
@keyframes eeriePulse-b-f19npm4ecl {
	0% {
		box-shadow: 0 0 10px #4d0000;
	}

	50% {
		box-shadow: 0 0 20px #4d0000;
	}

	100% {
		box-shadow: 0 0 10px #4d0000;
	}
}

.nav-menu[b-f19npm4ecl] {
	animation: eeriePulse-b-f19npm4ecl 3s infinite; /* Pulsing shadow for that eerie vibe */
}
/* _content/MidnightShadows_Blazor/Components/MonsterTile.razor.rz.scp.css */
.monster-sprite[b-l3jrnpcxcj] {
	opacity: 0;
	z-index: 10;
	position: absolute;
	width: 50%;
	height: 50%;
	margin: auto;
	display: flex;
	justify-content: center; /* Center horizontally */
	align-items: center;
}

	.monster-sprite.small[b-l3jrnpcxcj] {
		width: 50%;
		height: 50%;
	}

	.monster-sprite.tall[b-l3jrnpcxcj] {
		width: 50%;
		height: 100%;
	}

	.monster-sprite.wide[b-l3jrnpcxcj] {
		width: 100%;
		height: 50%;
	}

	.monster-sprite.large[b-l3jrnpcxcj] {
		width: 100%;
		height: 100%;
	}

	.monster-sprite img[b-l3jrnpcxcj] {
		/*height: 100%;*/
		max-width: 100%;
	}

.show-monster[b-l3jrnpcxcj] {
	opacity: 1;
}

#GameWindowWrapper[b-l3jrnpcxcj] {
	width: 100%;
	position: relative;
	height: 100vh;
}

#Monster1[b-l3jrnpcxcj] {
	bottom: 0;
	left: 0;
}

#Monster2[b-l3jrnpcxcj] {
	bottom: 0;
	right: 0;
}

#Monster3[b-l3jrnpcxcj] {
	top: 0;
	left: 0;
}

#Monster4[b-l3jrnpcxcj] {
	top: 0;
	right: 0;
}

@media (max-width: 1250px) {
	.monster-sprite:hover[b-l3jrnpcxcj] {
		background: rgba(255,255,255,0.2);
	}
}
/* _content/MidnightShadows_Blazor/Components/NpcDialogTree.razor.rz.scp.css */
[b-y9jnug1ci9] .activated {
	background: rgb(128, 128, 128, 0.3);
	border: 1px solid red !important;
}

.initial-row[b-y9jnug1ci9] {
	padding: 1rem; 
	margin: 1rem;
	border: 1px solid white;
	white-space: nowrap;
	overflow-x: scroll;
}

[b-y9jnug1ci9] .player-response-option {
	border: 1px solid orange;
	padding: 1rem;
	margin: 1rem;
	position: relative;
}

[b-y9jnug1ci9] .script-box {
	border: 1px solid orange;
	padding: 1rem;
	display: inline-block;
	max-width: 600px;
	cursor: pointer;
	margin: 1rem;
	vertical-align: top;
	white-space: pre-line;
	position: relative !important;
}

[b-y9jnug1ci9].script-row {
	text-align: left;
	white-space: nowrap;
	overflow-x: scroll;
}

[b-y9jnug1ci9] .spacer-column {
	min-height: 100px;
	text-align: left;
}
/* _content/MidnightShadows_Blazor/Components/Onboarding.razor.rz.scp.css */
@media (max-width: 600px) {
	.available-avatar-wrapper[b-cavvhgl0us] {
		text-align: center;
	}
}
/* _content/MidnightShadows_Blazor/Components/Pages/NpcAdmin.razor.rz.scp.css */
/* _content/MidnightShadows_Blazor/Components/Pages/Play.razor.rz.scp.css */
:root[b-s0zki55ug4] {
	--energy-level: 50%; /* Default energy level */
}

.action-commands[b-s0zki55ug4] {
	margin: 2rem 1rem 1rem 1rem;
	position: relative;
}

.action-icon[b-s0zki55ug4] {
	display: flex;
	cursor: pointer;
	margin: 2rem 0;
	z-index: 10;
	position: relative;
}

.action-icon.disabled[b-s0zki55ug4] {
	opacity: .2;
	cursor: inherit;
}

.active-icon[b-s0zki55ug4] {
	filter: invert(50%) sepia(100%) saturate(10000%) hue-rotate(35deg)
}

.arrow-container[b-s0zki55ug4] {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(3, 1fr);
	grid-column-gap: 0px;
	grid-row-gap: 0px;
	width: 75px;
	height: 75px;
	z-index: 10;
	position: relative;
}

	.arrow-container .up[b-s0zki55ug4] {
		grid-area: 1 / 1 / 2 / 3;
		height: 32px;
	}

	.arrow-container .right[b-s0zki55ug4] {
		grid-area: 2 / 2 / 3 / 3;
		height: 32px;
	}

	.arrow-container .down[b-s0zki55ug4] {
		grid-area: 3 / 1 / 4 / 3;
		height: 32px;
	}

	.arrow-container .left[b-s0zki55ug4] {
		grid-area: 2 / 1 / 3 / 2;
		height: 32px;
	}

.arrow[b-s0zki55ug4] {
	width: 100%; /* Ensure the image fills the grid cell */
	height: 100%;
	object-fit: contain; /* Keeps aspect ratio */
	cursor: pointer;
	transition: filter 0.3s ease;
}

	.arrow:hover[b-s0zki55ug4] {
		filter: brightness(0) saturate(100%) invert(54%) sepia(89%) saturate(2532%) hue-rotate(356deg) brightness(104%) contrast(101%);
	}

	.arrow.disabled[b-s0zki55ug4] {
		filter: invert(0.5);
		cursor: inherit;
	}

.audio-player-wrapper[b-s0zki55ug4] {
	position: absolute;
	bottom: 0;
	width: 200px;
	max-width: 100%;
}

.avatar-icon[b-s0zki55ug4] {
	width: 150px;
	position: fixed;
	bottom: 0;
	right: 0;
	border-radius: 50%; /* Makes the div circular */
	overflow: hidden; /* Hides any part of the image outside the circle */
	position: relative; /* For absolute positioning of the frame */
	/* Spooky red color scheme */
	background: #1a0000; /* Very dark red background */
	border: 2px solid #8b0000; /* Dark red border */
	box-shadow: 0 0 20px #ff0000, 0 0 20px 5px #ff0000;
	margin: 1rem;
	display: inline-block;
	cursor: pointer;
}

	.avatar-icon img[b-s0zki55ug4] {
		width: 100%; /* Image fills the div */
		height: auto; /* Maintain aspect ratio */
		display: block; /* Removes any extra space below the image */
	}

img.arrow.up[b-s0zki55ug4] {
	margin-bottom: -6px;
}

img.arrow.down[b-s0zki55ug4] {
	margin-top: -6px;
}

.bottom-padding[b-s0zki55ug4] {
	height: 0vh;
}

.commands-container[b-s0zki55ug4] {
	padding: 80px 1rem 0 1rem;
	position: relative;
}

.fade-in-delay[b-s0zki55ug4] {
	opacity: 0; /* Start invisible */
	animation: fadeIn-b-s0zki55ug4 2s ease-in 5s forwards; /* Animation settings */
}

.game-container[b-s0zki55ug4] {
	box-sizing: border-box;
	position: relative;
	border: 2px solid #4d0000;
	border-radius: 20px;
	z-index: 0;
}

.island-animation[b-s0zki55ug4] {
	animation: growAndSpin-b-s0zki55ug4 5s ease-out forwards; /* Adjust the 2s for duration */
	width: auto; /* Assuming you want the image to scale to its natural width */
	height: auto; /* Same for height, or set a specific size if needed */
	display: block; /* To ensure the image behaves as expected with transforms */
	margin: auto; /* Center the image if it's not full width */
	transform-origin: center center; /* Makes sure the rotation is around the center of the image */
}

.island-intro-continue-button[b-s0zki55ug4] {
	z-index: 200;
	position: absolute;
	bottom: 300px;
	left: 0;
	width: 100%;
	text-align: center;
}

	.island-intro-continue-button .button-wrapper[b-s0zki55ug4] {
		width: 200px;
		text-align: center;
		margin: 0 auto;
	}

.island-intro-image img[b-s0zki55ug4] {
	width: 1000px; /* Set your desired width */
	height: 1000px; /* Should be the same as width to ensure it's a circle */
	border-radius: 50%; /* This makes the image circular */
	overflow: hidden;
}

.island-intro-island-name[b-s0zki55ug4] {
	position: absolute;
	top: 200px;
	left: 0px;
	width: 1024px;
	text-align: center;
	z-index: 100;
	font-size: 3rem;
	font-weight: bold;
	text-shadow: 0px 0px 20px black;
}

.play-container[b-s0zki55ug4] {
	display: grid;
	grid-template-columns: 1024px 1fr;
	grid-template-rows: 1fr;
	grid-column-gap: 0px;
	grid-row-gap: 0px;
}

.welcome-message[b-s0zki55ug4] {
	background: #333;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

	.welcome-message h1[b-s0zki55ug4] {
		color: #ff6347;
		text-shadow: 2px 2px 4px #000000;
	}

	.welcome-message p[b-s0zki55ug4] {
		line-height: 1.6;
	}

@media (max-width: 1250px) {
	.action-commands[b-s0zki55ug4] {
		margin: 1rem;
		position: absolute;
		top: 0;
		right: 0;
		width: calc(100vw - 150px);
	}

	.action-icon[b-s0zki55ug4] {
		display: inline-block;
		margin: 0 1rem 0 0;
	}

	.action-icon img[b-s0zki55ug4] {
		width: 32px;
	}

	[b-s0zki55ug4] .mud-menu.avatar-menu {
		top: -200px !important;
		right: 20px !important;
	}

	.audio-player-wrapper[b-s0zki55ug4] {
		top: -60px;
		left: 90px;
		width: 100px;
	}
	
	.avatar-icon[b-s0zki55ug4] {
		width: 55px;
		
		/* position: absolute; */
		height: 55px;
	}

	.commands-container[b-s0zki55ug4] {
		padding: 1rem;
		position: fixed;
		bottom: 0;
		left: 0;
		border-top: 2px solid #ff4500;
		width: 100%;
		background:rgb(0 0 0 / 36%) 
	}
	
	.game-container[b-s0zki55ug4] {
		width: 100%;
		height: 100vh;
	}

	.island-intro-image img[b-s0zki55ug4] {
		width: 99%; /* Set your desired width */
		height: auto;
	}

	.island-intro-continue-button[b-s0zki55ug4] {
		bottom: 50px;
	}

	.island-intro-island-name[b-s0zki55ug4] {
		top: 50px;
		width: 100%;
		font-size: 1.5rem;
	}

	.play-container[b-s0zki55ug4] {
		display: block;
	}
}

@media(min-height: 600px) and (max-width: 1250px) {
	.bottom-padding[b-s0zki55ug4] {
		height: 30vh;
	}

	.commands-container[b-s0zki55ug4] {
		height: 20vh;
		background-color: rgba(0,0,0,0.35);
	}

	.game-container[b-s0zki55ug4] {
		height: inherit;
	}
}


@keyframes growAndSpin-b-s0zki55ug4 {
	0% {
		transform: scale(0.1) rotate(0deg);
		opacity: 0;
	}

	100% {
		transform: scale(1) rotate(1080deg); /* 3 full rotations = 3 * 360deg */
	opacity: 1;
}
}

@keyframes fadeIn-b-s0zki55ug4 {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}
/* _content/MidnightShadows_Blazor/Components/Pages/Sandbox.razor.rz.scp.css */
.explosion[b-v2qlbbo1yv] {
	position: relative;
	/*width: 100px;
	height: 100px;*/
}

	.explosion[b-v2qlbbo1yv]::before,
	.explosion[b-v2qlbbo1yv]::after {
		content: '';
		position: absolute;
		top: 50%;
		left: 50%;
		border-radius: 50%;
		transform: translate(-50%, -50%);
		animation: explode-b-v2qlbbo1yv 1s ease-out forwards;
	}

	.explosion[b-v2qlbbo1yv]::before {
		width: 120px;
		height: 120px;
		background: radial-gradient(circle at center, red, yellow, transparent);
	}

	.explosion[b-v2qlbbo1yv]::after {
		width: 30px;
		height: 30px;
		background: radial-gradient(circle at center, orange, yellow, transparent);
		animation-delay: 0.2s;
	}

@keyframes explode-b-v2qlbbo1yv {
	0% {
		opacity: 1;
		transform: translate(-50%, -50%) scale(0);
	}

	50% {
		opacity: 0.5;
		transform: translate(-50%, -50%) scale(1.5);
	}

	100% {
		opacity: 0;
		transform: translate(-50%, -50%) scale(3);
	}
}




.slash-container[b-v2qlbbo1yv] {
	position: relative;
	width: 200px;
	height: 200px;
	background: #f0f0f0;
	overflow: hidden;
}

.slash[b-v2qlbbo1yv] {
	position: absolute;
	width: 150px;
	height: 2px;
	background: #ff0000;
	transform-origin: left center;
	animation: slash-b-v2qlbbo1yv 0.5s ease-out forwards;
}

@keyframes slash-b-v2qlbbo1yv {
	0% {
		transform: rotate(0deg) scaleX(0);
		opacity: 0;
	}

	50% {
		transform: rotate(45deg) scaleX(1);
		opacity: 1;
	}

	100% {
		transform: rotate(90deg) scaleX(0.5);
		opacity: 0;
	}
}

/* Optional: Add a 'cut' effect on the element */
.slash-container[b-v2qlbbo1yv]::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(45deg, transparent 49%, rgba(255, 0, 0, 0.5) 50%, transparent 51%);
	opacity: 0;
	animation: cut-b-v2qlbbo1yv 0.5s ease-out forwards;
}

@keyframes cut-b-v2qlbbo1yv {
	0% {
		opacity: 0;
	}

	50% {
		opacity: 0.5;
	}

	100% {
		opacity: 0;
	}
}
/* _content/MidnightShadows_Blazor/Components/ProfileViewer.razor.rz.scp.css */


.vitals[b-glkbkydnnm] {
	display: inline-block;
	height: 100%;
	vertical-align: top;
}

