.bb-title-page .bb-title {
	display: flex;
	gap: 2rem;
	max-width: 960px;
	margin: 2rem auto;
	padding: 0 1rem;
	flex-wrap: wrap;
}

.bb-title-poster img {
	width: 260px;
	max-width: 100%;
	border-radius: 8px;
	display: block;
}

.bb-title-info {
	flex: 1;
	min-width: 260px;
}

.bb-title-heading {
	margin: 0 0 0.25rem;
}

.bb-title-year {
	font-weight: 400;
	opacity: 0.7;
}

.bb-title-meta {
	opacity: 0.75;
	margin-top: 0;
}

.bb-aggregate {
	margin: 1rem 0;
	font-size: 1.1rem;
}

.bb-rating-widget {
	margin-top: 1.5rem;
	padding-top: 1rem;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.bb-rating-scale {
	display: flex;
	gap: 0.35rem;
	flex-wrap: wrap;
	margin: 0.5rem 0 1rem;
}

.bb-rating-btn {
	width: 2.25rem;
	height: 2.25rem;
	border-radius: 6px;
	border: 1px solid rgba(0, 0, 0, 0.2);
	background: transparent;
	cursor: pointer;
	font-weight: 600;
}

.bb-rating-btn.is-selected {
	background: #222;
	color: #fff;
	border-color: #222;
}

.bb-watched-toggle {
	padding: 0.5rem 1rem;
	border-radius: 6px;
	border: 1px solid rgba(0, 0, 0, 0.2);
	background: transparent;
	cursor: pointer;
}

.bb-watched-toggle.is-watched {
	background: #2a8a4a;
	color: #fff;
	border-color: #2a8a4a;
}

.bb-rating-status {
	min-height: 1.2em;
	font-size: 0.9rem;
	opacity: 0.75;
}

.bb-search {
	max-width: 640px;
	margin: 1.5rem auto;
	padding: 0 1rem;
}

.bb-search-input {
	width: 100%;
	padding: 0.75rem 1rem;
	font-size: 1.1rem;
	border-radius: 8px;
	border: 1px solid rgba(0, 0, 0, 0.2);
	box-sizing: border-box;
}

.bb-search-results {
	margin-top: 1rem;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.bb-search-result {
	display: flex;
	gap: 0.75rem;
	align-items: center;
	padding: 0.5rem;
	border-radius: 6px;
	cursor: pointer;
	border: 1px solid transparent;
}

.bb-search-result:hover {
	background: rgba(0, 0, 0, 0.04);
	border-color: rgba(0, 0, 0, 0.1);
}

.bb-search-result img {
	width: 46px;
	border-radius: 4px;
}

.bb-search-result-year,
.bb-search-result-type {
	opacity: 0.6;
	font-size: 0.85rem;
}

.bb-title-grid,
.bb-my-ratings-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
	gap: 1rem;
	max-width: 960px;
	margin: 1.5rem auto;
	padding: 0 1rem;
}

.bb-title-card,
.bb-my-ratings-item {
	text-decoration: none;
	color: inherit;
	display: block;
}

.bb-title-card img,
.bb-my-ratings-item img {
	width: 100%;
	border-radius: 8px;
	display: block;
}

.bb-title-card-name {
	display: block;
	margin-top: 0.35rem;
	font-weight: 600;
}

.bb-my-ratings-rating {
	font-weight: 600;
}

.bb-discover {
	max-width: 960px;
	margin: 1.5rem auto;
	padding: 0 1rem;
}

.bb-discover-section {
	margin-bottom: 2.5rem;
}

.bb-discover-row {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 1rem;
	margin-top: 1rem;
}

.bb-discover-card {
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 8px;
	padding: 0.5rem;
	transition: opacity 0.2s ease;
}

.bb-discover-card.is-saving {
	opacity: 0.5;
}

.bb-discover-card.is-decided {
	opacity: 0.7;
}

.bb-discover-poster-wrap {
	position: relative;
}

.bb-discover-card img {
	width: 100%;
	border-radius: 6px;
	display: block;
}

.bb-watched-badge {
	position: absolute;
	bottom: 8px;
	right: 8px;
	width: 32px;
	height: 32px;
	padding: 0;
	border: none;
	border-radius: 50%;
	background: #fff;
	color: #000;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
	transition: background-color 0.15s ease, color 0.15s ease;
}

.bb-watched-badge:hover,
.bb-watched-badge.is-watched {
	background: #90ee90;
	color: #000;
}

.bb-watched-badge:disabled {
	cursor: default;
}

.bb-watched-tooltip {
	position: absolute;
	bottom: calc(100% + 8px);
	right: 0;
	background: rgba(0, 0, 0, 0.85);
	color: #fff;
	padding: 0.25rem 0.5rem;
	border-radius: 4px;
	font-size: 0.75rem;
	white-space: nowrap;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.15s ease;
}

.bb-watched-badge:hover .bb-watched-tooltip {
	opacity: 1;
}

.bb-discover-card-title {
	font-weight: 600;
	font-size: 0.9rem;
	margin: 0.5rem 0;
	min-height: 2.4em;
}

.bb-discover-card-actions {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}

.bb-discover-btn {
	padding: 0.4rem 0.5rem;
	font-size: 0.8rem;
	border-radius: 6px;
	border: 1px solid rgba(0, 0, 0, 0.2);
	background: transparent;
	cursor: pointer;
}

.bb-discover-btn-watchlist:hover {
	background: #2a5d8a;
	color: #fff;
	border-color: #2a5d8a;
}

.bb-discover-btn-not_interested:hover {
	background: #8a2a2a;
	color: #fff;
	border-color: #8a2a2a;
}

.bb-discover-btn-maybe_later:hover {
	background: #8a6d2a;
	color: #fff;
	border-color: #8a6d2a;
}

.bb-discover-card-status {
	font-size: 0.85rem;
	opacity: 0.75;
	margin: 0;
}

@media (max-width: 640px) {
	.bb-discover-row {
		grid-template-columns: repeat(2, 1fr);
	}
}

.bb-media-list {
	max-width: 640px;
	margin: 1.5rem auto;
	padding: 0 1rem;
	list-style: none;
	columns: 2;
	column-gap: 2rem;
}

.bb-media-list li {
	break-inside: avoid;
	padding: 0.35rem 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.bb-media-list a {
	text-decoration: none;
	color: inherit;
}

.bb-media-list a:hover {
	text-decoration: underline;
}

@media (max-width: 640px) {
	.bb-media-list {
		columns: 1;
	}
}
