/* /Components/Background.razor.rz.scp.css */
.background-video[b-umks0psig6] {
	object-fit: cover;
	z-index: -100;
	width: 100vw;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	transition: opacity 5s linear;
}

.hidden[b-umks0psig6] {
	opacity: 0;
}

.caption-container[b-umks0psig6] {
	position: fixed;
	bottom: 16px;
	left: 16px;
	background-color: rgba(0, 0, 0, 0.2);
	backdrop-filter: blur(12px);
	color: white;
	display: flex;
	align-items: center;
	gap: 16px;
	border-radius: 16px;
	font-size: 18px;
	padding: 4px;
	padding-left: 16px;
}

p[b-umks0psig6] {
	margin: 0;
}

.skip-button[b-umks0psig6] {
	background-color: white;
	color: black;
	font-weight: bold;
	cursor: pointer;
	border-radius: 12px;
	padding: 12px 16px;
	font-size: 16px;
}

.caption-container[b-umks0psig6],
.skip-button[b-umks0psig6] {
	font-family: "Noto Sans", sans-serif;
	line-height: 1;
}

.gradient-bg[b-umks0psig6] {
	width: 100vw;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -99;
	background: linear-gradient(135deg, #a28, #11a);
	animation: hueShift-b-umks0psig6 300s linear infinite;
	transition: opacity 5s linear;
	pointer-events: none;
}

@keyframes hueShift-b-umks0psig6 {
	0% {
		filter: hue-rotate(0deg);
	}
	100% {
		filter: hue-rotate(360deg);
	}
}
/* /Components/Card.razor.rz.scp.css */
.container[b-bjnz9h1asc] {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	font-size: min(10vh, 15vw);
	font-family: "ABeeZee";
	background-color: #eee;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
	pointer-events: none;
	user-select: none;
}
/* /Components/DeckCards.razor.rz.scp.css */
.card-stack-container[b-9y09b7rzwp] {
    position: absolute;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    pointer-events: none;
}

.card-wrapper[b-9y09b7rzwp] {
    position: absolute;
    width: 60vh;
    height: 32vh;
    max-width: 90%;
    max-height: 60%;
    top: 50%;
    left: 50%;
    cursor: pointer;
    transition: transform 0.3s ease-out;
    transform: 
        translate(-50%, -50%)
        translateY(calc(var(--stack-position, 0) * 12px))
        scale(calc(1 - var(--stack-position, 0) * 0.02));
}

.card-wrapper.falling[b-9y09b7rzwp] {
    animation: fall-away-b-9y09b7rzwp 0.5s cubic-bezier(0.5, 0, 1, 1) forwards;
    pointer-events: none;
}

.card-wrapper.rising[b-9y09b7rzwp] {
    transform: 
        translate(-50%, -50%) 
        translateY(calc((var(--stack-position, 0) - 1) * 12px)) 
        scale(calc(1 - (var(--stack-position, 0) - 1) * 0.02));
}

.card-wrapper:not(.top-card)[b-9y09b7rzwp] {
    pointer-events: none;
}

.card-wrapper.top-card[b-9y09b7rzwp] {
    pointer-events: auto;
}

@keyframes fall-away-b-9y09b7rzwp {
    0% {
        transform: translate(-50%, -50%) translateY(0) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) translateY(100vh) rotate(45deg);
    }
}

.progress-indicator[b-9y09b7rzwp] {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(12px);
    color: white;
    padding: 12px 16px;
    border-radius: 8px;
    font-family: "Noto Sans", system-ui, sans-serif;
    font-size: 16px;
    font-weight: 600;
    z-index: 1000;
}

.controls[b-9y09b7rzwp] {
    position: absolute;
    bottom: 20px;
    right: 20px;
}

.completion-message h2[b-9y09b7rzwp] {
    font-family: "Noto Sans", system-ui, sans-serif;
    font-size: 32px;
    margin-bottom: 20px;
    color: white;
}

.back-button[b-9y09b7rzwp] {
    display: flex;
    gap: 8px;
    align-items: center;
    border: 2px solid white;
    border-radius: 12px;
    background: transparent;
    color: white;
    font-family: "Noto Sans", system-ui, sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    padding: 12px 24px;
    transition: all 0.2s ease-out;
    cursor: pointer;
    margin: 0 auto;
}

.back-button:hover[b-9y09b7rzwp] {
    background-color: white;
    color: black;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.3);
}
/* /Components/DeckSelector.razor.rz.scp.css */
h2[b-fsnhskkz55] {
    color: white;
    font-family: "Noto Sans", sans-serif;
    line-height: 1;
}

.center-content[b-fsnhskkz55] {
    position: absolute;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 32px;
    pointer-events: none;
}

.deck-grid[b-fsnhskkz55] {
    display: flex;
    flex-wrap: wrap;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 32px;
    max-width: 1000px;
    justify-content: center;
    pointer-events: auto;
}

.deck-button-container[b-fsnhskkz55] {
    position: relative;
    pointer-events: auto;
}

.deck-button[b-fsnhskkz55] {
    width: 220px;
    height: 140px;
    border: none;
    background: transparent;
    cursor: pointer;
    transition: transform 0.15s ease-out;
    padding: 0;
    position: relative;
    pointer-events: auto;
}

.deck-button.selected[b-fsnhskkz55] {
    transform: scale(0.95);
}

.checkbox-indicator[b-fsnhskkz55] {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    z-index: 10;
    border: 2px solid white;
}

.card-stack[b-fsnhskkz55] {
    position: relative;
    width: 100%;
    height: 100%;
}

.card[b-fsnhskkz55] {
    position: absolute;
    width: 100%;
    height: 100%;
    box-shadow: 0 2px 16px 0 rgba(0,0,0,0.25);
    transition: transform 0.15s ease-out, box-shadow 0.15s ease-out;
}

.card-back[b-fsnhskkz55] {
    background: #ddd;
    transform: translate(0, 6px) rotate(1deg);
    z-index: 1;
}

.card-middle[b-fsnhskkz55] {
    background: #eee;
    transform: translate(0, 3px) rotate(-1deg);
    z-index: 2;
}

.card-front[b-fsnhskkz55] {
    background: white;
    transform: translate(0, 0) rotate(0deg);
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-family: "Noto Sans", system-ui, sans-serif;
    font-weight: 700;
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.3);
}

.deck-button:hover .card-front[b-fsnhskkz55],
.deck-button:focus .card-front[b-fsnhskkz55] {
    transform: translate(0, -4px) rotate(1deg);
}

.deck-button:hover .card-back[b-fsnhskkz55],
.deck-button:focus .card-back[b-fsnhskkz55] {
    transform: translate(-4px, 8px) rotate(1deg);
}

.deck-button:hover .card-middle[b-fsnhskkz55],
.deck-button:focus .card-middle[b-fsnhskkz55] {
    transform: translate(4px, 4px) rotate(-1deg);
}

.button-container[b-fsnhskkz55] {
    display: flex;
    gap: 16px;
}
/* /Components/IconButton.razor.rz.scp.css */
button[b-ktmkozywy1] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    background-color: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(12px);
    color: white;
    transition: all 0.1s ease-out;
    cursor: pointer;
    pointer-events: auto;
    font-size: 18px;
}

button:enabled:hover[b-ktmkozywy1] {
    background-color: white;
    color: black;
}
/* /Layout/MainLayout.razor.rz.scp.css */
