/**
 * Cinematic single game hero — ParsiGame-style reference layout.
 */

.bc-cine-hero {
	position: relative;
	overflow: hidden;
	width: 100%;
	max-width: 100%;
	margin-inline: 0;
	margin-bottom: 0;
	border-radius: 0;
	color: #fff;
}

.bc-cine-hero__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	transform: scale(1.03);
	filter: blur(2px) saturate(1.05);
}

.bc-cine-hero__shade {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(to left, rgba(6, 10, 20, 0.2) 0%, rgba(6, 10, 20, 0.72) 42%, rgba(6, 10, 20, 0.92) 100%),
		linear-gradient(to bottom, rgba(6, 10, 20, 0.15) 0%, rgba(6, 10, 20, 0.82) 100%);
}

.bc-cine-hero__inner {
	--bc-cine-cover-w: 15rem;
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	max-width: 80rem;
	margin: 0 auto;
	padding: 1.75rem 1.25rem 2rem;
	min-height: clamp(22rem, 42vw, 32rem);
	direction: rtl;
}

@media (min-width: 768px) {
	.bc-cine-hero__inner {
		padding: 2rem 2rem 2.25rem;
		gap: 1.5rem;
	}
}

@media (min-width: 1024px) {
	.bc-cine-hero__inner {
		display: grid;
		grid-template-columns: var(--bc-cine-cover-w) minmax(0, 1fr);
		align-items: stretch;
		column-gap: 2.5rem;
		row-gap: 0;
		min-height: 0;
		padding: 2.25rem 2.5rem;
	}
}

.bc-cine-hero__cover {
	order: -1;
	width: min(100%, var(--bc-cine-cover-w));
	margin-inline: auto;
	flex-shrink: 0;
}

@media (min-width: 1024px) {
	.bc-cine-hero__cover {
		order: 0;
		grid-column: 1;
		grid-row: 1;
		width: var(--bc-cine-cover-w);
		height: calc(var(--bc-cine-cover-w) * 1.5);
		margin-inline: 0;
		justify-self: end;
		align-self: start;
	}
}

.bc-cine-hero__cover-img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 2 / 3;
	object-fit: cover;
	border-radius: 0.875rem;
	box-shadow:
		0 20px 45px rgba(0, 0, 0, 0.5),
		0 0 0 1px rgba(255, 255, 255, 0.08);
}

@media (min-width: 1024px) {
	.bc-cine-hero__cover-img {
		width: 100%;
		height: 100%;
		aspect-ratio: auto;
	}
}

.bc-cine-hero__cover-ph {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	aspect-ratio: 2 / 3;
	border-radius: 0.875rem;
	box-shadow:
		0 20px 45px rgba(0, 0, 0, 0.5),
		0 0 0 1px rgba(255, 255, 255, 0.08);
	color: rgba(255, 255, 255, 0.5);
}

@media (min-width: 1024px) {
	.bc-cine-hero__cover-ph {
		height: 100%;
		aspect-ratio: auto;
	}
}

.bc-cine-hero__main {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

@media (min-width: 1024px) {
	.bc-cine-hero__main {
		grid-column: 2;
		grid-row: 1;
		min-height: calc(var(--bc-cine-cover-w) * 1.5);
		justify-content: space-between;
		gap: 0.75rem;
	}
}

/* Title block */
.bc-cine-hero__head {
	max-width: 42rem;
	margin-bottom: 0.625rem;
}

.bc-cine-hero__genres {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5rem;
	margin: 0 0 0.5rem;
	padding: 0;
	list-style: none;
}

.bc-cine-hero__genre-link {
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
	padding: 0.3125rem 0.6875rem;
	border: 1px solid rgba(96, 165, 250, 0.28);
	border-radius: 999px;
	background: rgba(15, 23, 42, 0.45);
	color: rgb(191 219 254);
	font-size: 0.75rem;
	font-weight: 600;
	line-height: 1.3;
	text-decoration: none;
	transition: background-color 0.15s, border-color 0.15s, color 0.15s;
}

.bc-cine-hero__genre-link:hover {
	border-color: rgba(96, 165, 250, 0.5);
	background: rgba(30, 58, 138, 0.45);
	color: #fff;
}

.bc-cine-hero__title {
	margin: 0;
	font-size: clamp(1.125rem, 2.2vw, 1.625rem);
	font-weight: 800;
	line-height: 1.4;
	color: #fff;
	letter-spacing: -0.01em;
}

/* Glance table */
.bc-cine-hero__glance-table {
	width: 100%;
	border-collapse: collapse;
	margin: 0 0 1rem;
}

.bc-cine-hero__glance-table td {
	padding: 0;
	vertical-align: middle;
}

.bc-cine-hero__glance-table td + td {
	border-inline-start: 1px solid rgba(255, 255, 255, 0.14);
}

.bc-cine-hero__glance-item {
	display: inline-flex;
	align-items: center;
	gap: 0.4375rem;
	padding: 0 1rem;
	font-size: 0.8125rem;
	color: rgba(255, 255, 255, 0.88);
	white-space: nowrap;
}

.bc-cine-hero__glance-table td:first-child .bc-cine-hero__glance-item {
	padding-inline-start: 0;
}

.bc-cine-hero__glance-item--updated {
	color: rgba(255, 255, 255, 0.82);
}

.bc-cine-hero__updated-badge {
	font-size: 0.6875rem;
	font-weight: 700;
	color: rgb(74 222 128);
}

/* Meta cards row */
.bc-cine-hero__meta-cards {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.75rem;
	margin: 0 0 1.25rem;
	padding: 0;
}

.bc-cine-hero__meta-card {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	min-width: 0;
	padding: 0.875rem 1rem;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 0.875rem;
	background: rgba(15, 23, 42, 0.52);
	backdrop-filter: blur(8px);
}

.bc-cine-hero__meta-card-icon {
	display: inline-flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	width: 2.25rem;
	height: 2.25rem;
	border-radius: 0.625rem;
	background: rgba(255, 255, 255, 0.06);
	color: rgba(255, 255, 255, 0.9);
}

.bc-cine-hero__meta-card-body {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	min-width: 0;
	flex: 1;
}

.bc-cine-hero__meta-card-label {
	margin: 0;
	font-size: 0.6875rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.78);
	line-height: 1.3;
}

.bc-cine-hero__meta-card-value {
	margin: 0;
	font-size: 0.8125rem;
	font-weight: 700;
	color: #fff;
	line-height: 1.45;
}

.bc-cine-hero__meta-card-value--ellipsis {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

@media (min-width: 768px) {
	.bc-cine-hero__head {
		margin-bottom: 0.75rem;
	}

	.bc-cine-hero__glance-table {
		margin-bottom: 1.125rem;
	}

	.bc-cine-hero__meta-cards {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 0.875rem;
		margin-bottom: 1.5rem;
	}
}

@media (min-width: 1024px) {
	.bc-cine-hero__head,
	.bc-cine-hero__glance-table,
	.bc-cine-hero__meta-cards {
		margin-bottom: 0;
	}

	.bc-cine-hero__meta-cards {
		gap: 0.625rem;
	}

	.bc-cine-hero__meta-card {
		padding: 0.6875rem 0.75rem;
	}

	.bc-cine-hero__meta-card-icon {
		width: 2rem;
		height: 2rem;
	}

	.bc-cine-hero__toolbar {
		margin-top: 0;
		padding-top: 0;
	}
}

/* Toolbar — download, actions, scores in one row */
.bc-cine-hero__toolbar {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: stretch;
	gap: 0.625rem;
	margin-top: 0;
	padding-top: 0;
	overflow: visible;
}

.bc-cine-hero__download {
	display: inline-flex;
	align-items: center;
	flex: 1 1 auto;
	gap: 1rem;
	min-height: 5.25rem;
	min-width: 16rem;
	max-width: none;
	padding: 1rem 1.5rem;
	border-radius: 0.875rem;
	text-decoration: none;
	color: #fff;
	background: linear-gradient(135deg, rgb(59 130 246) 0%, rgb(37 99 235) 50%, rgb(29 78 216) 100%);
	box-shadow:
		0 10px 30px rgba(37, 99, 235, 0.38),
		0 0 0 1px rgba(255, 255, 255, 0.12) inset;
	transition: transform 0.15s, box-shadow 0.15s;
}

.bc-cine-hero__download:hover {
	transform: translateY(-2px);
	box-shadow:
		0 16px 40px rgba(37, 99, 235, 0.5),
		0 0 0 1px rgba(255, 255, 255, 0.16) inset;
	color: #fff;
}

.bc-cine-hero__download-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3.25rem;
	height: 3.25rem;
	border-radius: 0.875rem;
	background: rgba(255, 255, 255, 0.18);
}

.bc-cine-hero__download-text {
	display: flex;
	flex-direction: column;
	gap: 0.125rem;
	text-align: start;
}

.bc-cine-hero__download-text strong {
	font-size: 1.0625rem;
	font-weight: 800;
	line-height: 1.3;
}

.bc-cine-hero__download-text small {
	font-size: 0.8125rem;
	font-weight: 600;
	opacity: 0.92;
	line-height: 1.3;
}

.bc-cine-hero__action-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	flex-shrink: 0;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 0.875rem;
	background: rgba(15, 23, 42, 0.58);
	backdrop-filter: blur(8px);
	color: rgba(255, 255, 255, 0.92);
	font-size: 0.8125rem;
	font-weight: 600;
	line-height: 1.3;
	text-decoration: none;
	cursor: pointer;
	transition: background-color 0.15s, border-color 0.15s, transform 0.15s;
}

.bc-cine-hero__action-btn--icon {
	flex: 0 0 5.25rem;
	width: 5.25rem;
	min-height: 5.25rem;
	padding: 0;
	border-radius: 0.75rem;
}

.bc-cine-hero__action-btn:hover {
	background: rgba(30, 41, 59, 0.72);
	border-color: rgba(255, 255, 255, 0.16);
	color: #fff;
}

.bc-cine-hero__action-btn--icon:hover {
	transform: translateY(-1px);
}

/* Toolbar tooltips */
.bc-cine-hero__has-tooltip {
	position: relative;
}

.bc-cine-hero__tooltip {
	position: absolute;
	bottom: calc(100% + 0.5rem);
	left: 50%;
	z-index: 6;
	padding: 0.3125rem 0.625rem;
	border-radius: 0.375rem;
	background: rgba(0, 0, 0, 0.88);
	color: #fff;
	font-size: 0.6875rem;
	font-weight: 600;
	line-height: 1.35;
	white-space: nowrap;
	pointer-events: none;
	opacity: 0;
	transform: translateX(-50%) translateY(4px);
	transition: opacity 0.15s, transform 0.15s;
}

.bc-cine-hero__tooltip::after {
	content: '';
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	border: 5px solid transparent;
	border-top-color: rgba(0, 0, 0, 0.88);
}

.bc-cine-hero__has-tooltip:hover .bc-cine-hero__tooltip,
.bc-cine-hero__has-tooltip:focus-visible .bc-cine-hero__tooltip {
	opacity: 1;
	transform: translateX(-50%) translateY(0);
}

/* Share popup modal */
.bc-share-modal {
	position: fixed;
	inset: 0;
	z-index: 100;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
}

.bc-share-modal[hidden] {
	display: none;
}

.bc-share-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.65);
	backdrop-filter: blur(4px);
}

.bc-share-modal__dialog {
	position: relative;
	width: min(100%, 20rem);
	padding: 1.5rem 1.25rem 1.25rem;
	border-radius: 1rem;
	background: rgba(15, 23, 42, 0.96);
	color: #fff;
	text-align: center;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.bc-share-modal__close {
	position: absolute;
	top: 0.75rem;
	inset-inline-end: 0.75rem;
	border: 0;
	padding: 0.25rem;
	background: transparent;
	color: rgba(255, 255, 255, 0.82);
	cursor: pointer;
}

.bc-share-modal__close:hover {
	color: #fff;
}

.bc-share-modal__title {
	margin: 0 0 1.25rem;
	font-size: 1rem;
	font-weight: 700;
}

.bc-share-modal__icons {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem;
}

.bc-share-modal__icon {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3.25rem;
	height: 3.25rem;
	border-radius: 9999px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(255, 255, 255, 0.06);
	color: #fff;
	text-decoration: none;
	transition: transform 0.15s, background-color 0.15s, border-color 0.15s;
}

.bc-share-modal__icon:hover,
.bc-share-modal__icon:focus-visible {
	transform: translateY(-2px);
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.22);
	color: #fff;
}

.bc-share-modal__icon--telegram {
	color: #29b6f6;
}

.bc-share-modal__icon--x {
	color: #e2e8f0;
}

.bc-share-modal__icon--whatsapp {
	color: #25d366;
}

.bc-share-modal__tooltip {
	position: absolute;
	bottom: calc(100% + 0.5rem);
	left: 50%;
	transform: translateX(-50%) translateY(4px);
	padding: 0.3125rem 0.625rem;
	border-radius: 0.375rem;
	background: rgba(0, 0, 0, 0.88);
	color: #fff;
	font-size: 0.6875rem;
	font-weight: 600;
	line-height: 1.3;
	white-space: nowrap;
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.15s, transform 0.15s;
}

.bc-share-modal__tooltip::after {
	content: '';
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	border: 5px solid transparent;
	border-top-color: rgba(0, 0, 0, 0.88);
}

.bc-share-modal__icon:hover .bc-share-modal__tooltip,
.bc-share-modal__icon:focus-visible .bc-share-modal__tooltip {
	opacity: 1;
	transform: translateX(-50%) translateY(0);
}

/* Score cards — horizontal rectangles in toolbar */
.bc-cine-hero__score-card {
	display: flex;
	flex: 0 0 13.5rem;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	width: 13.5rem;
	min-width: 13.5rem;
	max-width: 13.5rem;
	height: 5.25rem;
	padding: 0 1.125rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 0.75rem;
	background: rgba(15, 23, 42, 0.58);
	backdrop-filter: blur(8px);
	overflow: visible;
}

.bc-cine-hero__score-card--user {
	flex: 0 0 13.5rem;
	width: 13.5rem;
	min-width: 13.5rem;
	max-width: 13.5rem;
	padding: 0;
	border: 0;
	background: transparent;
}

.bc-cine-hero__score-card-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	width: 100%;
	height: 5.25rem;
	padding: 0 1.125rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 0.75rem;
	background: rgba(15, 23, 42, 0.58);
	backdrop-filter: blur(8px);
	cursor: pointer;
	transition: background-color 0.15s, border-color 0.15s;
}

.bc-cine-hero__score-card-inner:hover {
	background: rgba(30, 41, 59, 0.72);
	border-color: rgba(255, 255, 255, 0.16);
}

.bc-cine-hero__score-card-info {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 0.125rem;
	min-width: 0;
}

.bc-cine-hero__score-card-title {
	font-size: 0.6875rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.78);
	line-height: 1.2;
	white-space: nowrap;
}

.bc-cine-hero__score-num {
	font-size: 3.125rem;
	font-weight: 800;
	line-height: 1;
	letter-spacing: -0.03em;
}

.bc-cine-hero__score-num--meta {
	color: rgb(74 222 128);
}

.bc-cine-hero__score-num--user {
	color: rgb(96 165 250);
}

.bc-cine-hero__score-card .bc-score-ring__value {
	display: none;
}

/* Score rings */
.bc-score-ring {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	overflow: visible;
}

.bc-score-ring--md {
	width: 3.5rem;
	height: 3.5rem;
}

.bc-score-ring--lg {
	width: 4.75rem;
	height: 4.75rem;
}

.bc-cine-hero__score-card .bc-score-ring--md {
	width: 3.25rem;
	height: 3.25rem;
}

.bc-score-ring--sm {
	width: 3rem;
	height: 3rem;
}

.bc-score-ring svg {
	width: 100%;
	height: 100%;
	transform: rotate(-90deg);
	overflow: visible;
}

.bc-score-ring__track {
	fill: none;
	stroke: rgba(255, 255, 255, 0.12);
	stroke-width: 3;
}

.bc-score-ring__fill {
	fill: none;
	stroke-width: 3;
	stroke-linecap: round;
}

.bc-score-ring--meta .bc-score-ring__fill {
	stroke: rgb(74 222 128);
	opacity: 0.95;
}

.bc-score-ring--user .bc-score-ring__fill {
	stroke: rgb(96 165 250);
	opacity: 0.95;
	transition: stroke-dasharray 0.45s ease;
}

.bc-score-ring--empty .bc-score-ring__track {
	stroke: rgba(255, 255, 255, 0.08);
}

.bc-score-ring__value {
	position: absolute;
	font-weight: 700;
	line-height: 1;
	color: #fff;
}

.bc-score-ring--lg .bc-score-ring__value {
	font-size: 0.9375rem;
}

.bc-score-ring--md .bc-score-ring__value {
	font-size: 0.8125rem;
}

.bc-score-ring--sm .bc-score-ring__value {
	font-size: 0.75rem;
}

.bc-score-ring--empty .bc-score-ring__value {
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.45);
}

/* Rating modal */
.bc-rating-modal {
	position: fixed;
	inset: 0;
	z-index: 100;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
}

.bc-rating-modal[hidden] {
	display: none;
}

.bc-rating-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(2, 6, 23, 0.72);
	backdrop-filter: blur(6px);
}

.bc-rating-modal__dialog {
	position: relative;
	width: min(100%, 24rem);
	padding: 1.5rem 1.375rem 1.375rem;
	border-radius: 1.125rem;
	background: rgba(15, 23, 42, 0.97);
	color: #fff;
	text-align: center;
	box-shadow:
		0 28px 70px rgba(0, 0, 0, 0.55),
		0 0 0 1px rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.bc-rating-modal__close {
	position: absolute;
	top: 0.75rem;
	inset-inline-end: 0.75rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 0;
	padding: 0.25rem;
	background: transparent;
	color: rgba(255, 255, 255, 0.72);
	cursor: pointer;
	transition: color 0.15s;
}

.bc-rating-modal__close:hover {
	color: #fff;
}

.bc-rating-modal__panel[hidden] {
	display: none;
}

.bc-rating-modal__head {
	margin-bottom: 1.125rem;
}

.bc-rating-modal__badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	margin-bottom: 0.75rem;
	border-radius: 0.875rem;
	background: linear-gradient(135deg, rgba(59, 130, 246, 0.28), rgba(37, 99, 235, 0.12));
	border: 1px solid rgba(96, 165, 250, 0.28);
	color: rgb(147 197 253);
}

.bc-rating-modal__title {
	margin: 0 0 0.375rem;
	font-size: 1.125rem;
	font-weight: 800;
	line-height: 1.35;
}

.bc-rating-modal__subtitle {
	margin: 0;
	font-size: 0.8125rem;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.75);
}

.bc-rating-modal__score-box {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.25rem;
	margin-bottom: 1.125rem;
	padding: 1rem 1.25rem;
	border-radius: 1rem;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.bc-rating-modal__score {
	font-size: 3.75rem;
	font-weight: 800;
	line-height: 1;
	letter-spacing: -0.04em;
	color: rgb(96 165 250);
	text-shadow: 0 0 28px rgba(96, 165, 250, 0.35);
}

.bc-rating-modal__score-of {
	font-size: 0.75rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.72);
}

.bc-rating-modal__slider-wrap {
	margin-bottom: 1.125rem;
	direction: rtl;
}

.bc-rating-modal__slider {
	--rating-pct: 50%;
	-webkit-appearance: none;
	appearance: none;
	width: 100%;
	height: 0.5rem;
	margin: 0;
	border-radius: 999px;
	direction: rtl;
	background: linear-gradient(
		to left,
		rgb(59 130 246) 0%,
		rgb(96 165 250) var(--rating-pct),
		rgba(255, 255, 255, 0.12) var(--rating-pct),
		rgba(255, 255, 255, 0.12) 100%
	);
	cursor: pointer;
}

.bc-rating-modal__slider:focus-visible {
	outline: 2px solid rgb(96 165 250);
	outline-offset: 4px;
}

.bc-rating-modal__slider::-webkit-slider-thumb {
	-webkit-appearance: none;
	width: 1.25rem;
	height: 1.25rem;
	border: 2px solid #fff;
	border-radius: 999px;
	background: rgb(59 130 246);
	box-shadow: 0 4px 14px rgba(37, 99, 235, 0.45);
}

.bc-rating-modal__slider::-moz-range-thumb {
	width: 1.25rem;
	height: 1.25rem;
	border: 2px solid #fff;
	border-radius: 999px;
	background: rgb(59 130 246);
	box-shadow: 0 4px 14px rgba(37, 99, 235, 0.45);
}

.bc-rating-modal__slider-labels {
	display: flex;
	justify-content: space-between;
	margin-top: 0.5rem;
	font-size: 0.6875rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.72);
	direction: rtl;
}

.bc-install-guide__content {
	margin-top: 1rem;
	text-align: start;
	direction: rtl;
	max-height: min(70vh, 36rem);
	overflow: auto;
	padding-inline: 0.25rem;
}

.bc-install-guide__content > *:first-child {
	margin-top: 0;
}

.bc-rating-modal__alert {
	display: flex;
	align-items: flex-start;
	gap: 0.625rem;
	margin-bottom: 1rem;
	padding: 0.75rem 0.875rem;
	border-radius: 0.75rem;
	text-align: start;
}

.bc-rating-modal__alert[hidden] {
	display: none;
}

.bc-rating-modal__alert--error {
	background: rgba(239, 68, 68, 0.12);
	border: 1px solid rgba(248, 113, 113, 0.28);
	color: #fecaca;
}

.bc-rating-modal__alert-icon {
	display: inline-flex;
	flex-shrink: 0;
	margin-top: 0.0625rem;
	color: rgb(248 113 113);
}

.bc-rating-modal__alert-text {
	margin: 0;
	font-size: 0.8125rem;
	font-weight: 600;
	line-height: 1.45;
}

.bc-rating-modal__submit {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 3rem;
	padding: 0.75rem 1.25rem;
	border: 0;
	border-radius: 0.75rem;
	font-size: 0.9375rem;
	font-weight: 700;
	color: #fff;
	background: linear-gradient(135deg, rgb(59 130 246) 0%, rgb(37 99 235) 55%, rgb(29 78 216) 100%);
	box-shadow: 0 10px 24px rgba(37, 99, 235, 0.32);
	cursor: pointer;
	transition: transform 0.15s, box-shadow 0.15s, opacity 0.15s;
}

.bc-rating-modal__submit:hover:not(:disabled) {
	transform: translateY(-1px);
	box-shadow: 0 14px 32px rgba(37, 99, 235, 0.42);
}

.bc-rating-modal__submit:disabled {
	opacity: 0.72;
	cursor: not-allowed;
}

.bc-rating-modal__submit-loading {
	width: 1.125rem;
	height: 1.125rem;
	border: 2px solid rgba(255, 255, 255, 0.35);
	border-top-color: #fff;
	border-radius: 999px;
	animation: bc-rating-spin 0.7s linear infinite;
}

.bc-rating-modal__submit.is-loading [data-rating-submit-text] {
	opacity: 0;
}

.bc-rating-modal__submit.is-loading [data-rating-submit-loading] {
	position: absolute;
	display: block;
}

@keyframes bc-rating-spin {
	to {
		transform: rotate(360deg);
	}
}

.bc-rating-modal__state-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 4.5rem;
	height: 4.5rem;
	margin: 0.25rem auto 1rem;
	border-radius: 999px;
}

.bc-rating-modal__state-icon--success {
	background: rgba(34, 197, 94, 0.14);
	border: 1px solid rgba(74, 222, 128, 0.28);
	color: rgb(74 222 128);
	box-shadow: 0 0 40px rgba(34, 197, 94, 0.18);
}

.bc-rating-modal__state-title {
	margin: 0 0 0.5rem;
	font-size: 1.125rem;
	font-weight: 800;
	line-height: 1.35;
}

.bc-rating-modal__state-text {
	margin: 0 0 1.25rem;
	font-size: 0.875rem;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.78);
}

.bc-rating-modal__done {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 8.5rem;
	min-height: 2.75rem;
	padding: 0.625rem 1.25rem;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 0.75rem;
	background: rgba(255, 255, 255, 0.06);
	color: #fff;
	font-size: 0.875rem;
	font-weight: 600;
	cursor: pointer;
	transition: background-color 0.15s, border-color 0.15s;
}

.bc-rating-modal__done:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.18);
}

@media (max-width: 767px) {
	.bc-cine-hero__glance-table {
		display: block;
		overflow-x: auto;
		overscroll-behavior-x: contain;
	}

	.bc-cine-hero__glance-table tbody,
	.bc-cine-hero__glance-table tr {
		display: block;
	}

	.bc-cine-hero__glance-table tr {
		display: flex;
		flex-wrap: nowrap;
		min-width: max-content;
	}

	.bc-cine-hero__glance-table td {
		border-inline-start: 0;
	}

	.bc-cine-hero__glance-table td + td .bc-cine-hero__glance-item {
		border-inline-start: 1px solid rgba(255, 255, 255, 0.14);
	}

	.bc-cine-hero__meta-cards {
		display: flex;
		overflow-x: auto;
		overscroll-behavior-x: contain;
		scroll-snap-type: x mandatory;
		padding-bottom: 0.25rem;
	}

	.bc-cine-hero__meta-card {
		flex: 0 0 min(78vw, 14rem);
		scroll-snap-align: start;
	}

	.bc-cine-hero__toolbar {
		overflow-x: auto;
		overscroll-behavior-x: contain;
		-webkit-overflow-scrolling: touch;
		max-width: 100%;
	}

	.bc-cine-hero__download {
		flex: 1 1 auto;
		min-width: 14rem;
	}

	.bc-cine-hero__score-card,
	.bc-cine-hero__score-card--user,
	.bc-cine-hero__score-card-inner {
		flex: 0 0 11.5rem;
		width: 11.5rem;
		min-width: 11.5rem;
		max-width: 11.5rem;
	}
}

.bc-single-game > .mx-auto {
	padding-top: 1.75rem;
}
