/**
 * OV RP增强设置 - 「游戏盲盒」整页样式（/xzknz）
 *
 * 版式复刻 XDGAME 盲盒机：左侧控制区 + 右侧揭晓区、结果 HUD、最近抽到、电子ED 版块。
 * 配色全部走 RiPro-V5 的 CSS 变量（--ri-*），因此亮色 / 暗色模式自动跟随主题，
 * 不写死深色主题，避免和主题的 [data-bs-theme] 打架。
 *
 * 所有选择器都带 .ovrpe-bb 前缀；需要覆盖主题 .card 的地方再用层级加权，
 * 不使用 !important。
 */

.ovrpe-bb {
	--ovrpe-bb-primary: var(--ri-primary, #3b6ff5);
	--ovrpe-bb-primary-dark: #335fd3;
	--ovrpe-bb-primary-soft: rgba(59, 111, 245, 0.1);
	--ovrpe-bb-radius: 0.75rem;
	--ovrpe-bb-surface: #fff;
	--ovrpe-bb-surface-2: var(--ri-tertiary-bg, #f8f9fb);
	--ovrpe-bb-line: var(--ri-border-color, rgba(0, 0, 0, 0.08));
	--ovrpe-bb-text: var(--ri-body-color, #4a4d59);
	--ovrpe-bb-strong: var(--ri-emphasis-color, #000);
	--ovrpe-bb-muted: var(--ri-secondary-color, rgba(74, 77, 89, 0.75));

	position: relative;
	isolation: isolate;
	color: var(--ovrpe-bb-text);
}

[data-bs-theme="dark"] .ovrpe-bb {
	--ovrpe-bb-surface: #21242b;
	--ovrpe-bb-surface-2: var(--ri-tertiary-bg, #15171d);
	--ovrpe-bb-primary-soft: rgba(91, 140, 255, 0.14);
}

/* 背景装饰：两团极淡的光晕，亮/暗色都成立 */
.ovrpe-bb-backdrop {
	position: absolute;
	z-index: -1;
	inset: 0 0 auto;
	height: 420px;
	overflow: hidden;
	pointer-events: none;
	background:
		radial-gradient(circle at 18% 0%, var(--ovrpe-bb-primary-soft), transparent 46%),
		radial-gradient(circle at 84% 12%, rgba(139, 92, 246, 0.1), transparent 42%);
}

.ovrpe-bb-backdrop > i {
	display: none;
}

/* ==================== 两栏骨架 ==================== */

.ovrpe-bb .ovrpe-bb-stage {
	display: grid;
	grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
	gap: 1.5rem;
	align-items: stretch;
}

/* ==================== 左侧：控制区 ==================== */

/* 用层级加权压过 [data-bs-theme=dark] .card 的底色 */
.ovrpe-bb .ovrpe-bb-stage .ovrpe-bb-intro {
	border: 0;
	border-radius: var(--ovrpe-bb-radius);
	background: linear-gradient(135deg, var(--ovrpe-bb-primary), var(--ovrpe-bb-primary-dark));
	color: #fff;
	box-shadow: 0 18px 44px -24px rgba(59, 111, 245, 0.85);
	overflow: hidden;
}

.ovrpe-bb .ovrpe-bb-stage .ovrpe-bb-intro .card-body {
	padding: 1.75rem;
}

.ovrpe-bb-status {
	display: inline-flex;
	align-items: center;
	margin-bottom: 1rem;
	padding: 0.35rem 0.7rem;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 50rem;
	background: rgba(255, 255, 255, 0.12);
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.75rem;
	font-weight: 600;
	line-height: 1.4;
}

.ovrpe-bb-status > i {
	width: 7px;
	height: 7px;
	margin-right: 0.5rem;
	border-radius: 50%;
	background: #56d59a;
	box-shadow: 0 0 0 4px rgba(86, 213, 154, 0.18);
}

.ovrpe-bb-status > b {
	margin-left: 0.5rem;
	padding: 0 0.45rem;
	border-radius: 50rem;
	background: rgba(255, 255, 255, 0.18);
	font-weight: 600;
}

.ovrpe-bb-kicker {
	display: block;
	margin-bottom: 0.4rem;
	color: rgba(255, 255, 255, 0.78);
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.08em;
}

.ovrpe-bb .ovrpe-bb-title {
	margin: 0;
	color: #fff;
	font-size: clamp(2rem, 3.4vw, 2.75rem);
	font-weight: 800;
	line-height: 1.16;
	letter-spacing: -0.02em;
}

.ovrpe-bb-copy {
	margin: 0.85rem 0 0;
	color: rgba(255, 255, 255, 0.86);
	font-size: 0.9375rem;
	line-height: 1.7;
}

.ovrpe-bb-note {
	margin: 0.5rem 0 0;
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.8125rem;
	line-height: 1.6;
}

.ovrpe-bb-note > i {
	margin-right: 0.35rem;
}

/* ── 分类 / 排除整合版本 ─────────────────────────────────── */

.ovrpe-bb-controls {
	margin-top: 1.5rem;
	padding: 0 1rem;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: var(--ovrpe-bb-radius);
	background: rgba(255, 255, 255, 0.1);
}

.ovrpe-bb-field,
.ovrpe-bb-switch {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 64px;
	margin: 0;
}

.ovrpe-bb-field {
	border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.ovrpe-bb-field > span,
.ovrpe-bb-switch strong {
	color: #fff;
	font-size: 0.875rem;
	font-weight: 600;
}

.ovrpe-bb-field select {
	width: 190px;
	height: 40px;
	padding: 0 0.75rem;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 0.5rem;
	background-color: rgba(9, 20, 40, 0.28);
	color: #fff;
	font-size: 0.8125rem;
	cursor: pointer;
}

.ovrpe-bb-field select:focus {
	border-color: #fff;
	box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
	outline: 0;
}

.ovrpe-bb-field select option {
	color: #20262e;
}

.ovrpe-bb-switch {
	position: relative;
	cursor: pointer;
}

.ovrpe-bb-switch-text {
	display: block;
}

.ovrpe-bb-switch small {
	display: block;
	margin-top: 0.15rem;
	color: rgba(255, 255, 255, 0.66);
	font-size: 0.75rem;
	line-height: 1.5;
}

.ovrpe-bb-switch input {
	position: absolute;
	width: 1px;
	height: 1px;
	opacity: 0;
	pointer-events: none;
}

.ovrpe-bb-switch > i {
	position: relative;
	flex: 0 0 42px;
	width: 42px;
	height: 24px;
	margin-left: 1rem;
	border-radius: 50rem;
	background: rgba(255, 255, 255, 0.32);
	transition: background-color 0.2s ease;
}

.ovrpe-bb-switch > i::after {
	position: absolute;
	top: 3px;
	left: 3px;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: #fff;
	content: "";
	transition: transform 0.2s ease;
}

.ovrpe-bb-switch input:checked + i {
	background: rgba(255, 255, 255, 0.85);
}

.ovrpe-bb-switch input:checked + i::after {
	background: var(--ovrpe-bb-primary);
	transform: translateX(18px);
}

.ovrpe-bb-switch input:focus-visible + i {
	outline: 2px solid #fff;
	outline-offset: 3px;
}

.ovrpe-bb-switch input:disabled + i {
	cursor: not-allowed;
	opacity: 0.4;
}

/* ── 抽签按钮 ─────────────────────────────────────────────── */

.ovrpe-bb-actions {
	margin-top: 1.25rem;
}

.ovrpe-bb-draw {
	display: flex;
	align-items: center;
	width: 100%;
	height: 64px;
	padding: 0 1rem;
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: var(--ovrpe-bb-radius);
	background: #fff;
	color: var(--ovrpe-bb-primary-dark);
	text-align: left;
	cursor: pointer;
	box-shadow: 0 14px 30px -18px rgba(9, 20, 40, 0.7);
	transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.ovrpe-bb-draw > i {
	display: grid;
	flex: 0 0 38px;
	width: 38px;
	height: 38px;
	margin-right: 0.75rem;
	border-radius: 0.65rem;
	background: var(--ovrpe-bb-primary-soft);
	color: var(--ovrpe-bb-primary);
	font-size: 1rem;
	place-items: center;
}

.ovrpe-bb-draw-copy {
	display: block;
	min-width: 0;
}

.ovrpe-bb-draw-copy strong,
.ovrpe-bb-draw-copy small {
	display: block;
}

.ovrpe-bb-draw-copy strong {
	font-size: 1.0625rem;
	font-weight: 800;
	line-height: 1.35;
}

.ovrpe-bb-draw-copy small {
	margin-top: 0.1rem;
	color: var(--ovrpe-bb-muted);
	font-size: 0.75rem;
	font-weight: 500;
}

.ovrpe-bb-draw:hover {
	transform: translateY(-2px);
	box-shadow: 0 20px 36px -18px rgba(9, 20, 40, 0.75);
}

.ovrpe-bb-draw:active {
	transform: translateY(0) scale(0.995);
}

.ovrpe-bb-draw:disabled {
	cursor: wait;
	opacity: 0.85;
	transform: none;
}

.ovrpe-bb-draw.is-loading > i {
	animation: ovrpe-bb-spin 0.8s linear infinite;
}

.ovrpe-bb-pool {
	display: flex;
	align-items: center;
	margin-top: 0.7rem;
	color: rgba(255, 255, 255, 0.75);
	font-size: 0.75rem;
}

.ovrpe-bb-pool::before {
	width: 6px;
	height: 6px;
	margin-right: 0.45rem;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.5);
	content: "";
}

.ovrpe-bb.is-drawing .ovrpe-bb-pool::before {
	background: #ffd166;
}

/* ==================== 右侧：揭晓区 ==================== */

.ovrpe-bb-reveal,
.ovrpe-bb-history,
.ovrpe-bb-fatigue {
	border-radius: var(--ovrpe-bb-radius);
}

.ovrpe-bb-reveal .card-body {
	padding: 1.25rem;
}

/* ── HUD 状态条 ───────────────────────────────────────────── */

.ovrpe-bb-hud {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.35rem 0.75rem;
	border: 1px solid var(--ovrpe-bb-line);
	border-radius: 0.5rem;
	background: var(--ovrpe-bb-surface-2);
	color: var(--ovrpe-bb-muted);
	font-size: 0.6875rem;
	font-weight: 600;
	line-height: 1.8;
}

.ovrpe-bb-hud > span {
	display: flex;
	align-items: center;
}

.ovrpe-bb-hud > span > i {
	width: 6px;
	height: 6px;
	margin-right: 0.45rem;
	border-radius: 50%;
	background: #56d59a;
}

.ovrpe-bb-hud > b {
	color: var(--ovrpe-bb-primary);
	font-weight: 600;
}

/* ── 待揭晓占位 ───────────────────────────────────────────── */

.ovrpe-bb-placeholder {
	display: flex;
	flex-direction: column;
	margin-top: 0.9rem;
}

.ovrpe-bb-ph-visual {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 260px;
	margin-top: 0.9rem;
	padding: 2rem 1rem;
	border: 1px dashed var(--ovrpe-bb-line);
	border-radius: 0.65rem;
	background: var(--ovrpe-bb-surface-2);
	text-align: center;
}

.ovrpe-bb-mark {
	display: grid;
	width: 62px;
	height: 62px;
	border: 1px solid var(--ovrpe-bb-line);
	border-radius: 1rem;
	background: var(--ovrpe-bb-surface);
	color: var(--ovrpe-bb-primary);
	font-size: 1.5rem;
	place-items: center;
}

.ovrpe-bb-ph-status {
	margin-top: 0.9rem;
	color: var(--ovrpe-bb-strong);
	font-size: 0.875rem;
	font-weight: 700;
}

.ovrpe-bb-ph-code {
	margin-top: 0.3rem;
	color: var(--ovrpe-bb-muted);
	font-size: 0.75rem;
}

.ovrpe-bb-placeholder.is-loading .ovrpe-bb-mark {
	border-color: var(--ovrpe-bb-primary);
	animation: ovrpe-bb-breathe 0.7s ease-in-out infinite alternate;
}

/* ── 结果卡片 ─────────────────────────────────────────────── */

.ovrpe-bb-result {
	margin-top: 0.9rem;
	border: 1px solid var(--ovrpe-bb-line);
	border-radius: 0.65rem;
	overflow: hidden;
}

.ovrpe-bb-result.is-revealed {
	animation: ovrpe-bb-reveal 0.5s cubic-bezier(0.2, 0.8, 0.25, 1) both;
}

.ovrpe-bb-cover {
	position: relative;
	aspect-ratio: 460 / 215;
	background: var(--ovrpe-bb-surface-2);
	overflow: hidden;
}

.ovrpe-bb-cover > img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ovrpe-bb-cover > img.is-compact {
	object-fit: contain;
	padding: 0.5rem;
}

.ovrpe-bb-cat {
	position: absolute;
	top: 0.65rem;
	left: 0.65rem;
	padding: 0.2rem 0.55rem;
	border-radius: 0.4rem;
	background: rgba(9, 20, 40, 0.62);
	color: #fff;
	font-size: 0.6875rem;
	font-weight: 600;
	backdrop-filter: blur(4px);
}

.ovrpe-bb-result-body {
	padding: 1.1rem 1.25rem 1.25rem;
}

.ovrpe-bb-verdict {
	display: inline-flex;
	align-items: center;
	color: #2f9e63;
	font-size: 0.75rem;
	font-weight: 700;
}

[data-bs-theme="dark"] .ovrpe-bb-verdict {
	color: #56d59a;
}

.ovrpe-bb-verdict > i {
	margin-right: 0.35rem;
}

.ovrpe-bb-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 1rem;
	margin-top: 0.5rem;
	color: var(--ovrpe-bb-muted);
	font-size: 0.75rem;
}

.ovrpe-bb-result h2 {
	display: -webkit-box;
	margin: 0.5rem 0 0;
	overflow: hidden;
	color: var(--ovrpe-bb-strong);
	font-size: 1.375rem;
	font-weight: 800;
	line-height: 1.4;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.ovrpe-bb-result p {
	display: -webkit-box;
	margin: 0.5rem 0 0;
	overflow: hidden;
	color: var(--ovrpe-bb-muted);
	font-size: 0.8125rem;
	line-height: 1.75;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.ovrpe-bb-result-actions {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	margin-top: 1.1rem;
}

.ovrpe-bb .ovrpe-bb-primary,
.ovrpe-bb .ovrpe-bb-secondary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.55rem 1.15rem;
	border: 1px solid transparent;
	border-radius: 0.5rem;
	font-size: 0.8125rem;
	font-weight: 600;
	line-height: 1.6;
	text-decoration: none;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease,
		border-color 0.2s ease, color 0.2s ease;
}

.ovrpe-bb .ovrpe-bb-primary > i,
.ovrpe-bb .ovrpe-bb-secondary > i {
	margin-right: 0.4rem;
}

.ovrpe-bb .ovrpe-bb-primary {
	background-color: var(--ovrpe-bb-primary);
	background-image: linear-gradient(135deg, var(--ovrpe-bb-primary), var(--ovrpe-bb-primary-dark));
	color: #fff;
	box-shadow: 0 6px 16px -6px rgba(59, 111, 245, 0.7);
}

.ovrpe-bb .ovrpe-bb-primary:hover,
.ovrpe-bb .ovrpe-bb-primary:focus {
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 10px 22px -8px rgba(59, 111, 245, 0.8);
}

.ovrpe-bb .ovrpe-bb-secondary {
	border-color: var(--ovrpe-bb-line);
	background: var(--ovrpe-bb-surface);
	color: var(--ovrpe-bb-text);
}

.ovrpe-bb .ovrpe-bb-secondary:hover,
.ovrpe-bb .ovrpe-bb-secondary:focus {
	border-color: var(--ovrpe-bb-primary);
	color: var(--ovrpe-bb-primary);
}

.ovrpe-bb .ovrpe-bb-primary:focus-visible,
.ovrpe-bb .ovrpe-bb-secondary:focus-visible,
.ovrpe-bb-draw:focus-visible {
	outline: 2px solid var(--ovrpe-bb-primary);
	outline-offset: 2px;
}

/* ==================== 最近抽到 ==================== */

.ovrpe-bb-history {
	margin-top: 1.5rem;
}

.ovrpe-bb-history-title {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	margin: 0 0 0.85rem;
	color: var(--ovrpe-bb-strong);
	font-size: 1rem;
	font-weight: 700;
}

.ovrpe-bb-history-title > span > i {
	margin-right: 0.4rem;
	color: var(--ovrpe-bb-primary);
}

.ovrpe-bb-history-title > small {
	color: var(--ovrpe-bb-muted);
	font-size: 0.75rem;
	font-weight: 500;
}

.ovrpe-bb-history-list {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.6rem;
}

.ovrpe-bb-history-item {
	display: flex;
	align-items: center;
	padding: 0.5rem;
	border: 1px solid var(--ovrpe-bb-line);
	border-radius: 0.6rem;
	background: var(--ovrpe-bb-surface);
	text-align: left;
	cursor: pointer;
	transition: border-color 0.2s ease, transform 0.2s ease;
}

.ovrpe-bb-history-item:hover {
	border-color: var(--ovrpe-bb-primary);
	transform: translateY(-2px);
}

.ovrpe-bb-history-item > img {
	width: 56px;
	height: 34px;
	margin-right: 0.6rem;
	border-radius: 0.35rem;
	object-fit: cover;
	flex: 0 0 56px;
}

.ovrpe-bb-history-item > span {
	min-width: 0;
}

.ovrpe-bb-history-item strong,
.ovrpe-bb-history-item small {
	display: block;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.ovrpe-bb-history-item strong {
	color: var(--ovrpe-bb-strong);
	font-size: 0.8125rem;
	font-weight: 600;
}

.ovrpe-bb-history-item small {
	margin-top: 0.1rem;
	color: var(--ovrpe-bb-muted);
	font-size: 0.6875rem;
}

/* ==================== 电子ED ==================== */

.ovrpe-bb-fatigue {
	margin-top: 1.5rem;
	scroll-margin-top: 90px;
}

.ovrpe-bb-fatigue .card-body {
	padding: 1.75rem;
}

.ovrpe-bb-fatigue-intro h2 {
	margin: 0.35rem 0 0;
	color: var(--ovrpe-bb-strong);
	font-size: 1.5rem;
	font-weight: 800;
}

.ovrpe-bb-fatigue-intro p {
	margin: 0.7rem 0 0;
	color: var(--ovrpe-bb-muted);
	font-size: 0.875rem;
	line-height: 1.85;
}

.ovrpe-bb-fatigue .ovrpe-bb-kicker {
	color: var(--ovrpe-bb-primary);
}

.ovrpe-bb-signs {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-top: 1rem;
}

.ovrpe-bb-signs > span {
	padding: 0.25rem 0.7rem;
	border: 1px solid var(--ovrpe-bb-line);
	border-radius: 50rem;
	background: var(--ovrpe-bb-surface-2);
	color: var(--ovrpe-bb-text);
	font-size: 0.75rem;
}

.ovrpe-bb-guide {
	margin-top: 1.5rem;
}

.ovrpe-bb-rule {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 0.5rem;
	padding: 0.9rem 1rem;
	border: 1px solid var(--ovrpe-bb-line);
	border-left: 3px solid var(--ovrpe-bb-primary);
	border-radius: 0.5rem;
	background: var(--ovrpe-bb-surface-2);
}

.ovrpe-bb-rule > strong {
	color: var(--ovrpe-bb-strong);
	font-size: 0.9375rem;
	font-weight: 700;
}

.ovrpe-bb-rule > span {
	color: var(--ovrpe-bb-muted);
	font-size: 0.8125rem;
	line-height: 1.7;
}

.ovrpe-bb-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0 1.75rem;
	margin: 1rem 0 0;
	padding: 0;
	list-style: none;
}

.ovrpe-bb-list > li {
	display: grid;
	grid-template-columns: 38px minmax(0, 1fr);
	gap: 0.75rem;
	padding: 0.9rem 0;
	border-top: 1px solid var(--ovrpe-bb-line);
}

.ovrpe-bb-list > li > b {
	color: var(--ovrpe-bb-primary);
	font-size: 0.75rem;
	font-weight: 700;
	line-height: 1.9;
}

.ovrpe-bb-list strong,
.ovrpe-bb-list span {
	display: block;
}

.ovrpe-bb-list strong {
	color: var(--ovrpe-bb-strong);
	font-size: 0.875rem;
	font-weight: 700;
	line-height: 1.9;
}

.ovrpe-bb-list span {
	margin-top: 0.2rem;
	color: var(--ovrpe-bb-muted);
	font-size: 0.8125rem;
	line-height: 1.75;
}

.ovrpe-bb-fatigue-note {
	margin: 1.25rem 0 0;
	color: var(--ovrpe-bb-muted);
	font-size: 0.8125rem;
	line-height: 1.8;
}

.ovrpe-bb-fatigue-note > i {
	margin-right: 0.35rem;
	color: var(--ovrpe-bb-primary);
}

/* ==================== 动画 ==================== */

@keyframes ovrpe-bb-spin {
	to {
		transform: rotate(360deg);
	}
}

@keyframes ovrpe-bb-breathe {
	from {
		transform: scale(1);
		box-shadow: 0 0 0 0 var(--ovrpe-bb-primary-soft);
	}
	to {
		transform: scale(1.06);
		box-shadow: 0 0 0 12px transparent;
	}
}

@keyframes ovrpe-bb-reveal {
	from {
		opacity: 0;
		transform: translateY(14px) scale(0.985);
	}
	to {
		opacity: 1;
		transform: none;
	}
}

/* ==================== 响应式 ==================== */

@media (max-width: 991.98px) {
	.ovrpe-bb .ovrpe-bb-stage {
		grid-template-columns: minmax(0, 1fr);
	}

	.ovrpe-bb .ovrpe-bb-stage .ovrpe-bb-intro .card-body {
		padding: 1.5rem;
	}

	.ovrpe-bb-list {
		grid-template-columns: minmax(0, 1fr);
	}
}

@media (max-width: 575.98px) {
	.ovrpe-bb-field {
		align-items: flex-start;
		flex-direction: column;
		justify-content: center;
		gap: 0.5rem;
		padding: 0.85rem 0;
	}

	.ovrpe-bb-field select {
		width: 100%;
	}

	.ovrpe-bb-switch {
		gap: 0.75rem;
		padding: 0.85rem 0;
	}

	.ovrpe-bb-switch > i {
		margin-left: 0.5rem;
	}

	.ovrpe-bb-result-actions {
		align-items: stretch;
		flex-direction: column;
	}

	.ovrpe-bb-history-list {
		grid-template-columns: minmax(0, 1fr);
	}

	.ovrpe-bb-fatigue .card-body,
	.ovrpe-bb-reveal .card-body {
		padding: 1.1rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.ovrpe-bb-draw,
	.ovrpe-bb-history-item,
	.ovrpe-bb .ovrpe-bb-primary {
		transition: none;
	}

	.ovrpe-bb-draw.is-loading > i,
	.ovrpe-bb-placeholder.is-loading .ovrpe-bb-mark,
	.ovrpe-bb-result.is-revealed {
		animation: none;
	}
}
