/* /Components/Dialogs/AvatarSelectionDialog.razor.rz.scp.css */
.avatar-picker[b-b5d8k64ult] {
	position: relative;
	padding: 0 0 8px;
}

.avatar-picker-preview[b-b5d8k64ult] {
	display: flex;
	justify-content: center;
	padding: 2px 0 14px;
}

.avatar-preview-image[b-b5d8k64ult],
.avatar-option[b-b5d8k64ult] {
	width: var(--avatar-option-size);
	height: var(--avatar-option-size);
	background-image: var(--avatar-bg-image);
	background-position: var(--avatar-bg-pos);
	background-size: calc(var(--avatar-option-size) * 5) calc(var(--avatar-option-size) * 5);
	border-radius: 50%;
}

.avatar-grid[b-b5d8k64ult] {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(76px, 1fr));
	gap: 10px;
	justify-items: center;
	max-height: min(58vh, 560px);
	overflow-y: auto;
	padding: 4px 2px 10px;
	overscroll-behavior: contain;
}

.avatar-option[b-b5d8k64ult] {
	appearance: none;
	border: 3px solid transparent;
	cursor: pointer;
	padding: 0;
	position: relative;
	transition: transform 120ms ease, box-shadow 120ms ease, border-color 120ms ease;
	touch-action: manipulation;
}

	.avatar-option:hover[b-b5d8k64ult] {
		transform: scale(1.06);
		box-shadow: 0 0 0 4px #ffd200;
	}

	.avatar-option:focus-visible[b-b5d8k64ult] {
		outline: 3px solid #ffd200;
		outline-offset: 3px;
	}

	.avatar-option.selected[b-b5d8k64ult] {
		border-color: #ffd200;
		box-shadow: 0 0 0 3px #102a71, 0 0 16px rgba(255, 210, 0, 0.6);
	}

		.avatar-option.selected .selected-avatar-check[b-b5d8k64ult] {
			position: absolute;
			right: -4px;
			bottom: -4px;
			background: #102a71;
			border-radius: 50%;
			color: #ffd200;
			display: grid;
			place-items: center;
		}

.avatar-picker-actions[b-b5d8k64ult] {
	display: flex;
	justify-content: flex-end;
	gap: 8px;
	width: 100%;
}

@media (max-width: 600px) {
	.avatar-picker[b-b5d8k64ult] {
		padding-bottom: 0;
	}

	.avatar-picker-preview[b-b5d8k64ult] {
		padding-bottom: 10px;
	}

	.avatar-grid[b-b5d8k64ult] {
		grid-template-columns: repeat(3, minmax(76px, 1fr));
		gap: 12px;
		max-height: calc(100dvh - 250px);
	}

	.avatar-picker-actions[b-b5d8k64ult] {
		position: sticky;
		bottom: 0;
		background: var(--mud-palette-surface);
		border-top: 1px solid var(--mud-palette-lines-default);
		padding-top: 10px;
	}
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-8c0rns3stf] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-8c0rns3stf] {
    flex: 1;
}

.sidebar[b-8c0rns3stf] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-8c0rns3stf] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-8c0rns3stf]  a, .top-row[b-8c0rns3stf]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-8c0rns3stf]  a:hover, .top-row[b-8c0rns3stf]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-8c0rns3stf]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

.game-container[b-8c0rns3stf] {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	z-index: -1; /* Keeps it behind all content */

	background-image: url('/images/stage.png');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

/* Ensure the main layout handles overflow if content is longer than the screen */
.main-content[b-8c0rns3stf] {
	position: relative;
	z-index: 1;
	min-height: 100vh;
}

@media (max-width: 640.98px) {
    .top-row[b-8c0rns3stf] {
        justify-content: space-between;
    }

    .top-row[b-8c0rns3stf]  a, .top-row[b-8c0rns3stf]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-8c0rns3stf] {
        flex-direction: row;
    }

    .sidebar[b-8c0rns3stf] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-8c0rns3stf] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-8c0rns3stf]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-8c0rns3stf], article[b-8c0rns3stf] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-8c0rns3stf] {
	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;
	color: black;
	font-size: 2rem;
}

	#blazor-error-ui .dismiss[b-8c0rns3stf] {
		cursor: pointer;
		position: absolute;
		right: 0.75rem;
		top: 0.5rem;
	}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-rf05h9ehuc] {
    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-rf05h9ehuc] {
    background-color: rgba(255, 255, 255, 0.5);
}

.top-row[b-rf05h9ehuc] {
    min-height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-rf05h9ehuc] {
    font-size: 1.1rem;
}

.bi[b-rf05h9ehuc] {
    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-rf05h9ehuc] {
    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-rf05h9ehuc] {
    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-rf05h9ehuc] {
    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");
}

.nav-item[b-rf05h9ehuc] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-rf05h9ehuc] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-rf05h9ehuc] {
        padding-bottom: 1rem;
    }

    .nav-item[b-rf05h9ehuc]  .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-rf05h9ehuc]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-rf05h9ehuc]  .nav-link:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

.nav-scrollable[b-rf05h9ehuc] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-rf05h9ehuc] {
    display: block;
}

@media (min-width: 641px) {
    .navbar-toggler[b-rf05h9ehuc] {
        display: none;
    }

    .nav-scrollable[b-rf05h9ehuc] {
        /* Never collapse the sidebar for wide screens */
        display: block;

        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-t151wjt44h],
.components-reconnect-repeated-attempt-visible[b-t151wjt44h],
.components-reconnect-failed-visible[b-t151wjt44h],
.components-pause-visible[b-t151wjt44h],
.components-resume-failed-visible[b-t151wjt44h],
.components-rejoining-animation[b-t151wjt44h] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-t151wjt44h],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-t151wjt44h],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-t151wjt44h],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-t151wjt44h],
#components-reconnect-modal.components-reconnect-retrying[b-t151wjt44h],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-t151wjt44h],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-t151wjt44h],
#components-reconnect-modal.components-reconnect-failed[b-t151wjt44h],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-t151wjt44h] {
    display: block;
}


#components-reconnect-modal[b-t151wjt44h] {
    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-t151wjt44h 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-t151wjt44h 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-t151wjt44h 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-t151wjt44h]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-t151wjt44h 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-t151wjt44h {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-t151wjt44h {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-t151wjt44h {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-t151wjt44h] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-t151wjt44h] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-t151wjt44h] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-t151wjt44h] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-t151wjt44h] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-t151wjt44h] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-t151wjt44h] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-t151wjt44h 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-t151wjt44h] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-t151wjt44h {
    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/Game.razor.rz.scp.css */
.avatar-selection-panel[b-9a720lie41] {
	align-items: center;
	background: rgba(16, 42, 113, 0.12);
	border: 2px solid rgba(16, 42, 113, 0.22);
	border-radius: 8px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 16px;
	padding: 14px;
}

.avatar-selection-preview[b-9a720lie41] {
	background: rgba(255, 255, 255, 0.74);
	border-radius: 50%;
	box-shadow: inset 0 0 0 3px rgba(255, 210, 0, 0.55);
	padding: 8px;
}

@media (max-width: 600px) {
	.avatar-selection-panel[b-9a720lie41]  .mud-button-root {
		min-height: 48px;
		width: 100%;
	}

	.join-game-panel > .mud-button-root[b-9a720lie41] {
		min-height: 48px;
	}
}
/* /Components/Pages/Home.razor.rz.scp.css */
.home-content[b-l03znd7ern] {
	display: grid;
	gap: 24px;
	grid-template-columns: minmax(240px, 320px) minmax(320px, 680px);
	justify-content: center;
	margin: 180px auto 32px;
	padding: 0 16px;
}

.home-actions[b-l03znd7ern],
.public-games[b-l03znd7ern] {
	background: rgba(0, 0, 0, 0.92);
	border: 2px solid rgba(255, 210, 0, 0.7);
	color: white;
}

.home-actions[b-l03znd7ern] {
	height: fit-content;
}

.public-games-heading[b-l03znd7ern],
.public-game-card[b-l03znd7ern] {
	align-items: center;
	display: flex;
	gap: 16px;
	justify-content: space-between;
}

.public-game-list[b-l03znd7ern] {
	display: grid;
	gap: 12px;
	margin-top: 16px;
}

.public-game-card[b-l03znd7ern] {
	background: rgba(16, 42, 113, 0.72);
	border-color: rgba(255, 210, 0, 0.55);
	padding: 14px 16px;
}

.public-game-details[b-l03znd7ern] {
	min-width: 0;
}

.versus[b-l03znd7ern] {
	color: #ffd200;
	font-size: 0.8em;
}

@media (max-width: 760px) {
	.home-content[b-l03znd7ern] {
		grid-template-columns: minmax(0, 520px);
		margin-top: 120px;
	}

	.public-game-card[b-l03znd7ern] {
		align-items: stretch;
		flex-direction: column;
	}

	.public-game-card[b-l03znd7ern]  .mud-button-root {
		min-height: 48px;
		width: 100%;
	}
}
/* /Components/Pages/Play.razor.rz.scp.css */
.toolbar-wrapper[b-bh5ta6xxuy] {
	position: fixed !important;
	left: auto !important;
	top: 0; right: 0;
	padding: 1rem;
	width: fit-content;
	z-index: 20;
}

.scoreboard-panel[b-bh5ta6xxuy] {
	position: sticky;
	top: 0;
	z-index: 15;
	width: min(92vw, 760px);
	margin: 0.75rem auto 1rem;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: stretch;
	background: #001f3f;
	border: 4px solid #ffd700;
	border-radius: 8px;
	box-shadow: 0 0 16px rgba(255, 215, 0, 0.38), inset 0 0 12px rgba(0, 0, 0, 0.5);
	color: white;
	overflow: hidden;
}

.scoreboard-team[b-bh5ta6xxuy] {
	min-width: 0;
	padding: 10px 14px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	font-weight: 800;
}

.scoreboard-team span[b-bh5ta6xxuy] {
	overflow-wrap: anywhere;
}

.scoreboard-team strong[b-bh5ta6xxuy] {
	color: #ffd700;
	font-family: 'Arial Black', 'Impact', sans-serif;
	font-size: 1.45rem;
	line-height: 1;
}

.scoreboard-round[b-bh5ta6xxuy] {
	padding: 10px 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #8b0000;
	border-left: 3px solid #ffd700;
	border-right: 3px solid #ffd700;
	color: white;
	font-family: 'Arial Black', 'Impact', sans-serif;
	font-size: 0.9rem;
	text-align: center;
	text-transform: uppercase;
	white-space: nowrap;
}

.pregame-game-code[b-bh5ta6xxuy] {
	margin-top: 4px;
	font-size: 1.1rem;
	letter-spacing: 0.08em;
}

.player-name-wrapper[b-bh5ta6xxuy] {
	display: flex;
	align-items: center;
	gap: 8px; /* adjust spacing between avatar and name as needed */
}

	.player-name-wrapper .player-name[b-bh5ta6xxuy] {
		display: inline-block;
	}

.lobby-player-controls[b-bh5ta6xxuy] {
	background: rgba(255, 255, 255, 0.9);
	border: 3px solid #ffd700;
	border-radius: 8px;
}

.lobby-player-controls-text[b-bh5ta6xxuy] {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	font-weight: 800;
}

.lobby-player-controls-text strong[b-bh5ta6xxuy],
.captain-badge[b-bh5ta6xxuy] {
	padding: 3px 8px;
	background: #ffd700;
	border: 2px solid #001f3f;
	border-radius: 999px;
	color: #001f3f;
	font-family: 'Arial Black', 'Impact', sans-serif;
	font-size: 0.7rem;
	line-height: 1;
	text-transform: uppercase;
	white-space: nowrap;
}

.lobby-player-actions[b-bh5ta6xxuy] {
	margin-top: 12px;
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.captain-player .player-name[b-bh5ta6xxuy] {
	color: #001f3f;
	font-weight: 900;
}

.buzzer[b-bh5ta6xxuy] {
	width: 100%;
	margin: auto;
	max-width: 600px;
	cursor: pointer;
	filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.5));
	transition: all 0.1s ease-in-out;
}

	.buzzer:active[b-bh5ta6xxuy] {
		transform: translateY(4px) scale(0.96);
		/* COMBINED FILTER: Glow + Brightness adjustment */
		filter: brightness(1.5) contrast(1.2) drop-shadow(0px 0px 20px rgba(255, 0, 0, 1));
	}

.faceoff-active-player[b-bh5ta6xxuy] {
	font-size: 2rem;
	font-weight: bold;
	margin: 1rem;
	text-align: center;
	color: #fff;
	text-shadow: 2px 2px 0 #001f3f, 0 0 12px #00ccff;
}

.answer-textbox[b-bh5ta6xxuy] {
	width: min(92vw, 560px);
	margin: 1.25rem auto;
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 0.75rem;
	align-items: start;
}

.submitted-answer-panel[b-bh5ta6xxuy] {
	width: min(92vw, 620px);
	margin: 1rem auto;
	padding: 16px 18px;
	background: linear-gradient(to bottom, #5d0012, #9c1028);
	border: 5px solid #ffd700;
	border-radius: 8px;
	box-shadow: 0 0 22px rgba(255, 215, 0, 0.5), inset 0 0 15px rgba(0, 0, 0, 0.55);
	color: white;
	text-align: center;
}

.submitted-answer-player[b-bh5ta6xxuy] {
	font-family: 'Arial Black', 'Impact', sans-serif;
	font-size: 0.95rem;
	text-transform: uppercase;
	text-shadow: 2px 2px 0 #000;
}

.submitted-answer-text[b-bh5ta6xxuy] {
	margin-top: 8px;
	color: #ffd700;
	font-family: 'Arial Black', 'Impact', sans-serif;
	font-size: 1.65rem;
	line-height: 1.15;
	text-transform: uppercase;
	text-shadow: 2px 2px 0 #000, 0 0 10px #ff4444;
	overflow-wrap: anywhere;
}

.faceoff-countdown[b-bh5ta6xxuy] {
	width: min(90vw, 520px);
	margin: 0.25rem auto 1.25rem;
	padding: 12px 14px;
	background: #001f3f;
	border: 4px solid #ffd700;
	border-radius: 8px;
	box-shadow: 0 0 18px rgba(0, 204, 255, 0.45), inset 0 0 12px rgba(0, 0, 0, 0.55);
}

.faceoff-countdown-label[b-bh5ta6xxuy] {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	color: white;
	font-family: 'Arial Black', 'Impact', sans-serif;
	font-size: 1rem;
	text-transform: uppercase;
}

.faceoff-countdown-track[b-bh5ta6xxuy] {
	height: 16px;
	margin-top: 10px;
	background: rgba(255, 255, 255, 0.18);
	border: 2px solid rgba(255, 255, 255, 0.4);
	border-radius: 999px;
	overflow: hidden;
}

.faceoff-countdown-fill[b-bh5ta6xxuy] {
	height: 100%;
	width: 100%;
	background: linear-gradient(90deg, #16c784, #ffd700, #d71920);
	transform-origin: left center;
	animation: faceoff-countdown-drain-b-bh5ta6xxuy 10s linear forwards;
}

@keyframes faceoff-countdown-drain-b-bh5ta6xxuy {
	from {
		transform: scaleX(1);
	}

	to {
		transform: scaleX(0);
	}
}

.play-pass-panel[b-bh5ta6xxuy] {
	width: min(92vw, 680px);
	margin: 1.5rem auto;
	padding: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	background: linear-gradient(to bottom, #001f3f, #003366);
	border: 5px solid #ffd700;
	border-radius: 8px;
	box-shadow: 0 0 20px rgba(255, 215, 0, 0.45), inset 0 0 15px rgba(0, 0, 0, 0.5);
}

.play-pass-title[b-bh5ta6xxuy] {
	margin-bottom: 14px;
	color: white;
	font-family: 'Arial Black', 'Impact', sans-serif;
	font-size: 1.5rem;
	text-align: center;
	text-transform: uppercase;
	text-shadow: 2px 2px 0 #000, 0 0 10px #00ccff;
}

.play-pass-actions[b-bh5ta6xxuy] {
	display: flex;
	justify-content: center;
	gap: 12px;
	flex-wrap: wrap;
}

.round-turn-panel[b-bh5ta6xxuy] {
	width: min(92vw, 720px);
	margin: 1.5rem auto;
	padding: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	background: linear-gradient(to bottom, #001f3f, #003366);
	border: 5px solid #ffd700;
	border-radius: 8px;
	box-shadow: 0 0 20px rgba(255, 215, 0, 0.45), inset 0 0 15px rgba(0, 0, 0, 0.5);
}

.steal-panel[b-bh5ta6xxuy] {
	background: linear-gradient(to bottom, #5d0012, #9c1028);
}

.round-turn-content[b-bh5ta6xxuy] {
	flex: 1;
	min-width: 0;
	text-align: center;
}

.round-turn-title[b-bh5ta6xxuy] {
	color: white;
	font-family: 'Arial Black', 'Impact', sans-serif;
	font-size: 1.45rem;
	text-transform: uppercase;
	text-shadow: 2px 2px 0 #000, 0 0 10px #00ccff;
}

.round-turn-subtitle[b-bh5ta6xxuy] {
	margin-top: 4px;
	color: #ffd700;
	font-size: 1.1rem;
	font-weight: 700;
}

.turn-countdown[b-bh5ta6xxuy] {
	margin: 14px auto 8px;
	width: min(100%, 480px);
}

.turn-countdown-label[b-bh5ta6xxuy] {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	color: white;
	font-family: 'Arial Black', 'Impact', sans-serif;
	font-size: 0.95rem;
	text-transform: uppercase;
}

.turn-countdown-track[b-bh5ta6xxuy] {
	height: 16px;
	margin-top: 8px;
	background: rgba(255, 255, 255, 0.18);
	border: 2px solid rgba(255, 255, 255, 0.4);
	border-radius: 999px;
	overflow: hidden;
}

.turn-countdown-fill[b-bh5ta6xxuy] {
	height: 100%;
	width: 100%;
	background: linear-gradient(90deg, #16c784, #ffd700, #d71920);
	transform-origin: left center;
}

.team-play-countdown-fill[b-bh5ta6xxuy] {
	animation: turn-countdown-drain-b-bh5ta6xxuy 20s linear forwards;
}

.steal-countdown-fill[b-bh5ta6xxuy] {
	animation: turn-countdown-drain-b-bh5ta6xxuy 30s linear forwards;
}

.timer-paused[b-bh5ta6xxuy] {
	animation-play-state: paused;
	filter: saturate(0.75);
}

@keyframes turn-countdown-drain-b-bh5ta6xxuy {
	from {
		transform: scaleX(1);
	}

	to {
		transform: scaleX(0);
	}
}

.strike-count[b-bh5ta6xxuy] {
	color: white;
	font-weight: 800;
}

.suggestions-panel[b-bh5ta6xxuy] {
	width: min(92vw, 560px);
	margin: 0.75rem auto 1rem;
	padding: 14px;
	background: #001f3f;
	border: 4px solid #ffd700;
	border-radius: 8px;
	box-shadow: 0 0 18px rgba(0, 204, 255, 0.35), inset 0 0 12px rgba(0, 0, 0, 0.55);
}

.suggestions-title[b-bh5ta6xxuy] {
	margin-bottom: 10px;
	color: white;
	font-family: 'Arial Black', 'Impact', sans-serif;
	text-align: center;
	text-transform: uppercase;
}

.suggestion-row[b-bh5ta6xxuy] {
	display: grid;
	grid-template-columns: minmax(90px, 140px) 1fr;
	gap: 10px;
	align-items: center;
	padding: 8px 0;
	color: white;
	border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.suggestion-row span[b-bh5ta6xxuy] {
	color: #ffd700;
	font-weight: 800;
	overflow-wrap: anywhere;
}

.suggestion-row strong[b-bh5ta6xxuy] {
	overflow-wrap: anywhere;
}

.suggestion-input[b-bh5ta6xxuy] {
	grid-template-columns: 1fr;
}

.game-over-panel[b-bh5ta6xxuy] {
	width: min(92vw, 620px);
	margin: 1.5rem auto;
	padding: 22px;
	background: linear-gradient(to bottom, #001f3f, #003366);
	border: 5px solid #ffd700;
	border-radius: 8px;
	text-align: center;
	color: white;
	box-shadow: 0 0 20px rgba(255, 215, 0, 0.45), inset 0 0 15px rgba(0, 0, 0, 0.5);
}

.game-over-title[b-bh5ta6xxuy] {
	font-family: 'Arial Black', 'Impact', sans-serif;
	font-size: 1.7rem;
	text-transform: uppercase;
	text-shadow: 2px 2px 0 #000, 0 0 10px #00ccff;
}

.game-over-scores[b-bh5ta6xxuy] {
	margin-top: 12px;
	display: grid;
	gap: 8px;
	font-size: 1.25rem;
	font-weight: 800;
}

.round-results-panel[b-bh5ta6xxuy] {
	width: min(92vw, 680px);
	margin: 1.5rem auto;
	padding: 22px;
	background: linear-gradient(to bottom, #001f3f, #003366);
	border: 5px solid #ffd700;
	border-radius: 8px;
	text-align: center;
	color: white;
	box-shadow: 0 0 20px rgba(255, 215, 0, 0.45), inset 0 0 15px rgba(0, 0, 0, 0.5);
}

.round-results-title[b-bh5ta6xxuy] {
	font-family: 'Arial Black', 'Impact', sans-serif;
	font-size: 1.55rem;
	text-transform: uppercase;
	text-shadow: 2px 2px 0 #000, 0 0 10px #00ccff;
}

.round-results-winner[b-bh5ta6xxuy] {
	margin-top: 10px;
	color: #ffd700;
	font-size: 1.25rem;
	font-weight: 900;
}

.round-results-scores[b-bh5ta6xxuy] {
	margin: 14px auto;
	display: grid;
	gap: 8px;
	font-size: 1.1rem;
	font-weight: 800;
}

.round-results-next[b-bh5ta6xxuy] {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-weight: 800;
	text-transform: uppercase;
}

/* --------------------family-feud-question--------------------------*/

[b-bh5ta6xxuy] .family-feud-question {
	width: 90%;
	max-width: 700px;
	margin: 30px auto;
	padding: 30px 20px;
	background: linear-gradient(to bottom, #001f3f, #003366);
	border: 6px solid #ffd700;
	border-radius: 16px;
	box-shadow: 0 0 20px rgba(255, 215, 0, 0.5), inset 0 0 15px rgba(0, 0, 0, 0.5);
	text-align: center;
	font-family: 'Arial Black', 'Impact', sans-serif;
	color: white;
	text-transform: uppercase;
	letter-spacing: 3px;
	font-size: 2.0rem;
	line-height: 1.3;
	text-shadow: 0 0 8px #00ccff, 0 0 16px #00ccff, 2px 2px 0 #000;
	position: relative;
}

	[b-bh5ta6xxuy] .family-feud-question::before {
		content: '';
		position: absolute;
		top: -8px;
		left: -8px;
		right: -8px;
		bottom: -8px;
		border: 3px solid #00ccff;
		border-radius: 24px;
		box-shadow: 0 0 30px #00ccff;
		opacity: 0.35;
		pointer-events: none;
	}

/* Tablet (up to 1024px) */
@media (max-width: 1024px) {
	[b-bh5ta6xxuy] .family-feud-question {
		padding: 35px 25px;
		border: 5px solid #ffd700;
		border-radius: 14px;
		font-size: 2.0rem;
		letter-spacing: 2.5px;
	}

		[b-bh5ta6xxuy] .family-feud-question::before {
			top: -7px;
			left: -7px;
			right: -7px;
			bottom: -7px;
			border: 2.5px solid #00ccff;
			border-radius: 20px;
		}
}

/* Mobile landscape and smaller tablets (up to 768px) */
@media (max-width: 768px) {
	.toolbar-wrapper[b-bh5ta6xxuy] {
		top: 0.75rem;
		right: calc(4vw + 0.25rem);
		padding: 0;
	}

	.scoreboard-panel[b-bh5ta6xxuy] {
		grid-template-columns: 1fr;
		grid-template-areas:
			"round"
			"team-one"
			"team-two";
		position: static;
	}

	.scoreboard-team:first-child[b-bh5ta6xxuy] {
		grid-area: team-one;
	}

	.scoreboard-team:last-child[b-bh5ta6xxuy] {
		grid-area: team-two;
	}

	.scoreboard-round[b-bh5ta6xxuy] {
		grid-area: round;
		border-left: 0;
		border-right: 0;
		border-bottom: 3px solid #ffd700;
	}

	.scoreboard-team strong[b-bh5ta6xxuy] {
		font-size: 1.25rem;
	}

	[b-bh5ta6xxuy] .family-feud-question {
		padding: 30px 20px;
		border: 4px solid #ffd700;
		border-radius: 12px;
		font-size: 1.2rem;
		letter-spacing: 2px;
	}

		[b-bh5ta6xxuy] .family-feud-question::before {
			top: -6px;
			left: -6px;
			right: -6px;
			bottom: -6px;
			border: 2px solid #00ccff;
			border-radius: 18px;
			box-shadow: 0 0 25px #00ccff;
		}
}

/* Mobile portrait (up to 480px) */
@media (max-width: 480px) {
	[b-bh5ta6xxuy] .family-feud-question {
		width: 95%;
		padding: 10px 15px;
		border: 3px solid #ffd700;
		border-radius: 10px;
		font-size: .8rem;
		letter-spacing: 1.5px;
	}

		[b-bh5ta6xxuy] .family-feud-question::before {
			top: -5px;
			left: -5px;
			right: -5px;
			bottom: -5px;
			border: 2px solid #00ccff;
			border-radius: 15px;
			box-shadow: 0 0 20px #00ccff;
		}
}


/* ----------------------------family-feud-buzzer-alert---------------------------------- */


.family-feud-buzzer-alert[b-bh5ta6xxuy] {
	width: 90%;
	max-width: 700px;
	margin: 30px auto;
	padding: 40px 30px;
	background: linear-gradient(to bottom, #8b0000, #c41e3a);
	border: 6px solid #ffd700;
	border-radius: 16px;
	box-shadow: 0 0 20px rgba(255, 215, 0, 0.6), inset 0 0 15px rgba(0, 0, 0, 0.6);
	text-align: center;
	font-family: 'Arial Black', 'Impact', sans-serif;
	color: white;
	text-transform: uppercase;
	letter-spacing: 3px;
	font-size: 3rem;
	line-height: 1.3;
	text-shadow: 0 0 12px #ff0000, 0 0 24px #ff0000, 3px 3px 0 #000;
	position: relative;
	animation: pulse-b-bh5ta6xxuy 1.5s infinite alternate;
}

	.family-feud-buzzer-alert[b-bh5ta6xxuy]::before {
		content: '';
		position: absolute;
		top: -8px;
		left: -8px;
		right: -8px;
		bottom: -8px;
		border: 3px solid #ff4444;
		border-radius: 24px;
		box-shadow: 0 0 40px #ff0000;
		opacity: 0.5;
		pointer-events: none;
	}

@keyframes pulse-b-bh5ta6xxuy {
	0% {
		transform: scale(1);
	}

	100% {
		transform: scale(1.05);
	}
}

/* Tablet (up to 1024px) */
@media (max-width: 1024px) {
	.family-feud-buzzer-alert[b-bh5ta6xxuy] {
		padding: 35px 25px;
		border: 5px solid #ffd700;
		border-radius: 14px;
		font-size: 2.6rem;
		letter-spacing: 2.5px;
	}

		.family-feud-buzzer-alert[b-bh5ta6xxuy]::before {
			top: -7px;
			left: -7px;
			right: -7px;
			bottom: -7px;
			border: 2.5px solid #ff4444;
			border-radius: 20px;
		}
}

/* Mobile landscape and smaller tablets (up to 768px) */
@media (max-width: 768px) {
	.family-feud-buzzer-alert[b-bh5ta6xxuy] {
		padding: 30px 20px;
		border: 4px solid #ffd700;
		border-radius: 12px;
		font-size: 2.2rem;
		letter-spacing: 2px;
	}

		.family-feud-buzzer-alert[b-bh5ta6xxuy]::before {
			top: -6px;
			left: -6px;
			right: -6px;
			bottom: -6px;
			border: 2px solid #ff4444;
			box-shadow: 0 0 30px #ff0000;
		}
}

/* Mobile portrait (up to 480px) */
@media (max-width: 480px) {
	.family-feud-buzzer-alert[b-bh5ta6xxuy] {
		width: 95%;
		padding: 20px 15px;
		border: 3px solid #ffd700;
		border-radius: 10px;
		font-size: 1.8rem;
		letter-spacing: 1.5px;
	}

		.family-feud-buzzer-alert[b-bh5ta6xxuy]::before {
			top: -5px;
			left: -5px;
			right: -5px;
			bottom: -5px;
			border: 2px solid #ff4444;
			box-shadow: 0 0 25px #ff0000;
		}
}

/* ---------------------------------------------------------------- */
/* /Components/UI/AnswerBoard.razor.rz.scp.css */
.close-button[b-9qxztz5iwp] {
	position: absolute;
	top: 0;
	right: 0;
	padding: 1rem;
	z-index: 10001;
}

/* ---------- Board Layout ---------- */
.ff-board[b-9qxztz5iwp] {
	--bg: #07101e;
	--panel: #0b1d38;
	--trim: #ffcc33;
	--text: #eaf2ff;
	--shadow: rgba(0,0,0,.55);
	--flip-ms: 720ms;
	max-width: 980px;
	margin: 0 auto;
	padding: 18px 18px 22px;
	background: radial-gradient(120% 120% at 50% 20%, #163a6b 0%, var(--bg) 55%, #040a14 100%);
	border-radius: 18px;
	box-shadow: 0 24px 60px var(--shadow);
	border: 2px solid rgba(255,204,51,.35);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10000;

	display: flex;
    flex-direction: column;
    height: 92dvh; /* Scale board to 92% of the available screen height */
    max-width: 1200px; /* Wider for 2-column layout */
    margin: 0 auto;
    padding: 12px;
    box-sizing: border-box;
}

.ff-header[b-9qxztz5iwp] {
	flex: 0 0 auto;
	padding: 4px 10px;
	margin-bottom: 8px;
	/*padding: 8px 10px 14px;
	border-bottom: 1px solid rgba(255,255,255,.12);
	margin-bottom: 14px;*/
}

.ff-title[b-9qxztz5iwp] {
	font-weight: 800;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: var(--trim);
	text-shadow: 0 1px 0 rgba(0,0,0,.6);
	font-size: 14px;
}

.ff-question[b-9qxztz5iwp] {
	margin-top: 6px;
	color: var(--text);
	font-size: 22px;
	line-height: 1.2;
	font-weight: 700;
	text-shadow: 0 2px 0 rgba(0,0,0,.35);
}

.ff-grid[b-9qxztz5iwp] {
	/*display: grid;
	grid-template-columns: 1fr;
	gap: 10px;*/

	flex: 1 1 auto;
	display: grid;
	/* Two columns: 1-5 on left, 6-10 on right */
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(5, 1fr);
	grid-auto-flow: column;
	gap: 8px;
	min-height: 0; /* Important for flex-shrink behavior */
}

/* ---------- Rows ---------- */
.ff-row[b-9qxztz5iwp] {
	display: grid;
	grid-template-columns: 44px 1fr 60px; /*grid-template-columns: 64px 1fr 108px;*/
	align-items: stretch;
	gap: 4px;	/*gap: 10px;*/
	padding: 0;
	border: 0;
	border-radius: 14px;
	background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
	box-shadow: inset 0 0 0 1px rgba(255,255,255,.10), 0 10px 24px rgba(0,0,0,.32);
	cursor: default;
	overflow: hidden;
}

	.ff-row:disabled[b-9qxztz5iwp] {
		opacity: 1;
	}

	/* Optional click reveal feel (if AllowClickReveal=true) */
	.ff-row:not(:disabled)[b-9qxztz5iwp] {
		cursor: pointer;
	}

		.ff-row:not(:disabled):hover[b-9qxztz5iwp] {
			box-shadow: inset 0 0 0 1px rgba(255,255,255,.18), 0 12px 28px rgba(0,0,0,.40);
		}

	/* Hide the number plate if there is no answer data */
	.ff-row:has(.ff-answer:empty)[b-9qxztz5iwp] {
		visibility: hidden;
	}

/* ---------- Number Plate ---------- */
.ff-num[b-9qxztz5iwp] {
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 14px;
	background: linear-gradient(180deg, rgba(255,204,51,.30), rgba(255,204,51,.06));
	border: 1px solid rgba(255,204,51,.35);
}

.ff-num-inner[b-9qxztz5iwp] {
	width: 44px;
	height: 44px;
	border-radius: 999px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 900;
	color: #06101f;
	background: radial-gradient(circle at 30% 30%, #ffe38c 0%, #ffcc33 55%, #d39a07 100%);
	box-shadow: 0 8px 16px rgba(0,0,0,.40);
}

/* ---------- Flip Card (Answer + Points) ---------- */
.ff-card[b-9qxztz5iwp] {
	position: relative;
	perspective: 1100px;
	border-radius: 14px;
	/*overflow: hidden;*/
	transform-style: preserve-3d;
	min-height: 44px;
	width: 100%;
	transition: transform var(--flip-ms) cubic-bezier(.2, .8, .2, 1);
}

.ff-card--points[b-9qxztz5iwp] {
	border-radius: 14px;
}

.ff-face[b-9qxztz5iwp] {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	backface-visibility: hidden;
	transform-style: preserve-3d;
	z-index: 2;
}

/* Front = hidden cover */
.ff-front[b-9qxztz5iwp] {
	background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
}

.ff-front-fill[b-9qxztz5iwp] {
	width: 100%;
	height: 100%;
	background: radial-gradient(100% 120% at 50% 10%, rgba(255,204,51,.20), rgba(255,204,51,0) 60%), linear-gradient(90deg, rgba(255,255,255,.10), rgba(255,255,255,0) 40%, rgba(255,255,255,.08));
	filter: saturate(1.1);
}

/* Back = revealed content */
.ff-back[b-9qxztz5iwp] {
	transform: rotateX(180deg);
	z-index: 1;
	background: radial-gradient(120% 160% at 50% 0%, rgba(255,204,51,.18), rgba(255,204,51,0) 52%), linear-gradient(180deg, rgba(15,40,78,.95), rgba(6,16,31,.92));
	border: 1px solid rgba(255,255,255,.10);
}

.ff-answer[b-9qxztz5iwp] {
	color: var(--text);
	font-weight: 800;
	font-size: 20px;
	letter-spacing: .02em;
	text-shadow: 0 2px 0 rgba(0,0,0,.35);
	padding: 0 16px;
	text-align: left;
	width: 100%;
}

.ff-points[b-9qxztz5iwp] {
	padding: 10px 10px 10px 0;
	display: flex;
}

	.ff-points .ff-card[b-9qxztz5iwp] {
		width: 100%;
	}

.ff-points-value[b-9qxztz5iwp] {
	font-weight: 900;
	color: var(--trim);
	font-size: 22px;
	text-shadow: 0 2px 0 rgba(0,0,0,.35);
}

/* Default (hidden): show front, hide back */
.ff-row.is-hidden .ff-card[b-9qxztz5iwp] {
	transform: rotateX(0deg);
	/*transition: transform var(--flip-ms) cubic-bezier(.2,.8,.2,1);
	transform-style: preserve-3d;*/
}

/* Revealed: flip to back */
.ff-row.is-revealed .ff-card[b-9qxztz5iwp] {
	transform: rotateX(180deg);
	/*transition: transform var(--flip-ms) cubic-bezier(.2,.8,.2,1);
	transform-style: preserve-3d;*/
}

/* Add a little “pop” highlight on reveal */
.ff-row.is-revealed[b-9qxztz5iwp] {
	animation: ff-pop-b-9qxztz5iwp 320ms ease-out;
}

@keyframes ff-pop-b-9qxztz5iwp {
	0% {
		transform: scale(1);
	}

	45% {
		transform: scale(1.012);
	}

	100% {
		transform: scale(1);
	}
}

/* Responsive */
@media (max-width: 640px) {
	.ff-question[b-9qxztz5iwp] {
		font-size: 18px;
	}

	.ff-row[b-9qxztz5iwp] {
		grid-template-columns: 56px 1fr 90px;
		gap: 8px;
	}

	.ff-answer[b-9qxztz5iwp] {
		font-size: 18px;
	}

	.ff-points-value[b-9qxztz5iwp] {
		font-size: 20px;
	}
}

/* ---------- Responsive Adjustments ---------- */
@media (max-width: 768px) {
	.ff-board[b-9qxztz5iwp] {
		height: 98dvh; /* Use more screen on mobile */
		padding: 6px;
	}

	.ff-row[b-9qxztz5iwp] {
		grid-template-columns: 36px 1fr 50px;
	}

	.ff-answer[b-9qxztz5iwp] {
		font-size: 14px;
	}

	.ff-points-value[b-9qxztz5iwp] {
		font-size: 16px;
	}

	.ff-num-inner[b-9qxztz5iwp] {
		width: 30px;
		height: 30px;
		font-size: 12px;
	}
}

/* Force single column only on very narrow portrait phones if needed */
@media (max-width: 400px) {
	.ff-grid[b-9qxztz5iwp] {
		grid-template-columns: 1fr;
		grid-template-rows: repeat(10, 1fr);
	}
}
/* /Components/UI/LogoDiv.razor.rz.scp.css */
.feud-sign-wrapper[b-iybx7373uy] {
	background: rgba(0,0,0,0);
	display: flex;
	justify-content: center;
	align-items: center;
	height: 200px;
	font-family: Impact, Arial Black, sans-serif;
}

.feud-sign[b-iybx7373uy] {
	position: relative;
	padding: 2rem 4rem;
	border-radius: 80px;
	background: #1a1a1a;
}

.logo-text[b-iybx7373uy] {
	color: gold;
	font-size: 2rem;
	text-shadow: 0 0 6px #ff7100, 0 0 14px #ff0000;
	position: relative;
	z-index: 1;
}

.bulbs[b-iybx7373uy] {
	position: absolute;
	inset: -20px;
	pointer-events: none;
}

.bulb[b-iybx7373uy] {
	position: absolute;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: #ffeb3b;
	box-shadow: 0 0 6px #ff0, 0 0 12px #f90;
	opacity: 0.2;
	animation: chase-b-iybx7373uy 1.6s linear infinite;
}

	/* top row */
	.bulb:nth-child(1)[b-iybx7373uy] {
		top: 0;
		left: 12%;
		animation-delay: 0s;
	}

	.bulb:nth-child(2)[b-iybx7373uy] {
		top: 0;
		left: 25%;
		animation-delay: .08s;
	}

	.bulb:nth-child(3)[b-iybx7373uy] {
		top: 0;
		left: 38%;
		animation-delay: .16s;
	}

	.bulb:nth-child(4)[b-iybx7373uy] {
		top: 0;
		left: 50%;
		animation-delay: .24s;
	}

	.bulb:nth-child(5)[b-iybx7373uy] {
		top: 0;
		left: 62%;
		animation-delay: .32s;
	}

	.bulb:nth-child(6)[b-iybx7373uy] {
		top: 0;
		left: 75%;
		animation-delay: .40s;
	}

	.bulb:nth-child(7)[b-iybx7373uy] {
		top: 0;
		left: 88%;
		animation-delay: .48s;
	}

	/* right */
	.bulb:nth-child(8)[b-iybx7373uy] {
		top: 20%;
		right: 0;
		animation-delay: .56s;
	}

	.bulb:nth-child(9)[b-iybx7373uy] {
		top: 50%;
		right: 0;
		animation-delay: .64s;
	}

	.bulb:nth-child(10)[b-iybx7373uy] {
		top: 80%;
		right: 0;
		animation-delay: .72s;
	}

	/* bottom */
	.bulb:nth-child(11)[b-iybx7373uy] {
		bottom: 0;
		left: 88%;
		animation-delay: .80s;
	}

	.bulb:nth-child(12)[b-iybx7373uy] {
		bottom: 0;
		left: 75%;
		animation-delay: .88s;
	}

	.bulb:nth-child(13)[b-iybx7373uy] {
		bottom: 0;
		left: 62%;
		animation-delay: .96s;
	}

	.bulb:nth-child(14)[b-iybx7373uy] {
		bottom: 0;
		left: 50%;
		animation-delay: 1.04s;
	}

	.bulb:nth-child(15)[b-iybx7373uy] {
		bottom: 0;
		left: 38%;
		animation-delay: 1.12s;
	}

	.bulb:nth-child(16)[b-iybx7373uy] {
		bottom: 0;
		left: 25%;
		animation-delay: 1.20s;
	}

	.bulb:nth-child(17)[b-iybx7373uy] {
		bottom: 0;
		left: 12%;
		animation-delay: 1.28s;
	}

	/* left */
	.bulb:nth-child(18)[b-iybx7373uy] {
		top: 80%;
		left: 0;
		animation-delay: 1.36s;
	}

	.bulb:nth-child(19)[b-iybx7373uy] {
		top: 50%;
		left: 0;
		animation-delay: 1.44s;
	}

	.bulb:nth-child(20)[b-iybx7373uy] {
		top: 20%;
		left: 0;
		animation-delay: 1.52s;
	}

@keyframes chase-b-iybx7373uy {
	0% {
		opacity: 0.2;
	}

	20% {
		opacity: 1;
	}

	40% {
		opacity: 0.2;
	}

	100% {
		opacity: 0.2;
	}
}
/* /Components/UI/StrikeOverlay.razor.rz.scp.css */
.answer[b-ke3dql1pbs] {
	width: 100%;
	max-width: 700px;
	margin: 30px auto;
	padding: 30px 20px;
	background: linear-gradient(to bottom, #001f3f, #003366);
	border: 6px solid #ffd700;
	border-radius: 16px;
	box-shadow: 0 0 20px rgba(255, 215, 0, 0.5), inset 0 0 15px rgba(0, 0, 0, 0.5);
	text-align: center;
	font-family: 'Arial Black', 'Impact', sans-serif;
	color: white;
	text-transform: uppercase;
	letter-spacing: 3px;
	font-size: 2.0rem;
	line-height: 1.3;
	text-shadow: 0 0 8px #00ccff, 0 0 16px #00ccff, 2px 2px 0 #000;
	position: relative;
	display: block;
}

/* The container that covers the whole screen */
.strike-overlay-container[b-ke3dql1pbs] {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.3); /* Slight dimming of background */
	z-index: 9999; /* Ensure it is on top of EVERYTHING */
	display: flex;
	justify-content: center; /* Center Horizontally */
	align-items: center; /* Center Vertically */
	gap: 2rem; /* Space between multiple Xs */
	pointer-events: none; /* Let clicks pass through if the user clicks fast */
	border: 4px solid red;
}

/* The X graphic */
.strike-x[b-ke3dql1pbs] {
	width: 200px;
	height: 200px;
	filter: drop-shadow(0px 0px 10px rgba(0,0,0,0.8)); /* Heavy shadow for pop */
	animation: strike-pulse-b-ke3dql1pbs 0.5s ease-out infinite;
}

	/* The SVG path styling */
	/*.strike-x path {
		stroke: #ff0000;
		stroke-width: 15;
		stroke-linecap: round;
		fill: none;
	}*/

/* The 'Outer' part of the X (The Outline) */
.x-outline[b-ke3dql1pbs] {
	stroke: #800000; /* Dark Red / Maroon for the border */
	stroke-width: 22; /* Thicker than the inner line */
	stroke-linecap: round;
	fill: none;
}

/* The 'Inner' part of the X (The Fill) */
.x-fill[b-ke3dql1pbs] {
	stroke: #ff0000; /* Bright Red */
	stroke-width: 12;
	stroke-linecap: round;
	fill: none;
}

/* The Pulse Animation */
@keyframes strike-pulse-b-ke3dql1pbs {
	0% {
		transform: scale(0.5);
		opacity: 0;
	}

	50% {
		transform: scale(1.2);
		opacity: 1;
	}

	100% {
		transform: scale(1.0);
		opacity: 1;
	}
}
/* /Components/UI/UserAvatar.razor.rz.scp.css */
.avatar[b-qz2xyd2s0x] {
	width: var(--avatar-size);
	height: var(--avatar-size);
	background-size: calc(var(--avatar-size) * 5) calc(var(--avatar-size) * 5);
	background-position: var(--avatar-bg-pos);
	background-image: var(--avatar-bg-image);
	border-radius: 50%;
	flex-shrink: 0;
}

.avatar-selectable[b-qz2xyd2s0x] {
	cursor: pointer;
	transition: transform 120ms ease, box-shadow 120ms ease;
}

	.avatar-selectable:hover[b-qz2xyd2s0x] {
		transform: scale(1.04);
		box-shadow: 0 0 0 4px #ffd200;
	}

	.avatar-selectable:focus-visible[b-qz2xyd2s0x] {
		outline: 3px solid #ffd200;
		outline-offset: 4px;
	}

@media (max-width: 768px) {
	.avatar[b-qz2xyd2s0x] {
		/*transform: scale(0.5);
		transform-origin: top left;*/
	}
}
