/* ============================================================
   CMDB Movie Page Redesign — movie-redesign.css
   Brand: --cmdb-bg:#09090F | --cmdb-panel:#121216
          --cmdb-primary:#FF005B | --cmdb-cyan:#00FFE0
============================================================ */

/* ── Layout wrapper ───────────────────────────────────────── */
.cmdb-movie-page {
	background: #09090F;
	color: #FFFFFF;
}

.cmdb-inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 24px;
}

.cmdb-section {
	padding: 72px 0;
	border-bottom: 1px solid rgba(255,255,255,0.06);
}

.cmdb-section__header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 40px;
	flex-wrap: wrap;
}

.cmdb-section-kicker {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #FF005B;
	margin-bottom: 6px;
}

.cmdb-section-title {
	font-size: clamp(22px, 3.5vw, 34px);
	font-weight: 800;
	line-height: 1.15;
	color: #FFFFFF;
	margin: 0;
}

/* ── Buttons ──────────────────────────────────────────────── */
.cmdb-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 22px;
	border-radius: 8px;
	border: none;
	cursor: pointer;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	transition: all 0.18s ease;
	white-space: nowrap;
	line-height: 1;
}

.cmdb-btn--primary {
	background: #FF005B;
	color: #fff;
}
.cmdb-btn--primary:hover {
	background: #e00050;
	transform: translateY(-1px);
	box-shadow: 0 6px 24px rgba(255,0,91,0.35);
	color: #fff;
}

.cmdb-btn--glass {
	background: rgba(255,255,255,0.08);
	color: #fff;
	border: 1px solid rgba(255,255,255,0.14);
	backdrop-filter: blur(8px);
}
.cmdb-btn--glass:hover {
	background: rgba(255,255,255,0.14);
	color: #fff;
	transform: translateY(-1px);
}

.cmdb-btn--icon {
	background: rgba(255,255,255,0.08);
	color: #fff;
	border: 1px solid rgba(255,255,255,0.14);
	padding: 12px;
	border-radius: 8px;
}
.cmdb-btn--icon:hover {
	background: rgba(255,255,255,0.16);
}

.cmdb-btn--full {
	width: 100%;
	justify-content: center;
}

.cmdb-btn--sm {
	padding: 7px 14px;
	font-size: 12px;
}

.cmdb-btn.is-saved {
	background: rgba(255,0,91,0.18);
	border-color: #FF005B;
	color: #FF005B;
}

/* ── Chips ────────────────────────────────────────────────── */
.cmdb-chip {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 5px 11px;
	border-radius: 20px;
	background: rgba(255,255,255,0.10);
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	line-height: 1;
}

.cmdb-chip--outline {
	background: transparent;
	border: 1px solid rgba(255,255,255,0.22);
}

.cmdb-chip--sm {
	padding: 3px 8px;
	font-size: 11px;
}

.cmdb-chip--gold {
	background: rgba(255,215,0,0.15);
	color: #FFD700;
}

/* ── Share dropdown (inherits from existing handler) ──────── */
.cmdb-share-wrap {
	position: relative;
}

.cmdb-share-wrap .share-dropdown {
	display: none;
	position: absolute;
	bottom: calc(100% + 8px);
	right: 0;
	background: #1e1e28;
	border: 1px solid rgba(255,255,255,0.12);
	border-radius: 10px;
	padding: 10px;
	display: none;
	gap: 10px;
	flex-direction: row;
	z-index: 100;
}

.cmdb-share-wrap .share-dropdown[style*="block"] {
	display: flex !important;
}

.cmdb-share-wrap .share-dropdown a {
	color: #9CA3AF;
	font-size: 16px;
	padding: 6px 8px;
	border-radius: 6px;
	text-decoration: none;
	transition: color 0.15s, background 0.15s;
}
.cmdb-share-wrap .share-dropdown a:hover {
	color: #fff;
	background: rgba(255,255,255,0.08);
}

/* ════════════════════════════════════════════════════════════
   § 1  CINEMATIC HERO
════════════════════════════════════════════════════════════ */
.cmdb-hero {
	position: relative;
	width: 100%;
	height: 80vh;
	min-height: 540px;
	max-height: 820px;
	display: flex;
	align-items: flex-end;
	background-size: cover;
	background-position: center 20%;
	overflow: hidden;
}

.cmdb-hero__video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
	opacity: 0;
	transition: opacity 0.6s ease;
}

.cmdb-hero__video.is-visible {
	opacity: 1;
}

.cmdb-hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 2;
	background:
		linear-gradient(90deg,
			rgba(9,9,15,0.97) 0%,
			rgba(9,9,15,0.80) 32%,
			rgba(9,9,15,0.30) 56%,
			rgba(9,9,15,0.00) 70%),
		linear-gradient(to top,
			rgba(9,9,15,1.00) 0%,
			rgba(9,9,15,0.70) 20%,
			rgba(9,9,15,0.00) 48%),
		linear-gradient(to bottom,
			rgba(9,9,15,0.60) 0%,
			rgba(9,9,15,0.00) 16%);
}

.cmdb-hero__inner {
	position: relative;
	z-index: 3;
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 24px 60px;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 32px;
}

.cmdb-hero__content {
	flex: 1;
	max-width: 620px;
}

.cmdb-hero__breadcrumb {
	margin-bottom: 16px;
}

.cmdb-hero__breadcrumb a,
.cmdb-hero__breadcrumb span {
	color: rgba(255,255,255,0.55);
	font-size: 12px;
	text-decoration: none;
}
.cmdb-hero__breadcrumb a:hover {
	color: #fff;
}

.cmdb-hero__kicker {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #FF005B;
	margin-bottom: 12px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.cmdb-hero__kicker a {
	color: inherit;
	text-decoration: none;
}
.cmdb-hero__kicker a:hover {
	color: #ff4080;
}

.cmdb-hero__title {
	font-size: clamp(30px, 5.5vw, 62px);
	font-weight: 900;
	line-height: 1.06;
	color: #fff;
	margin: 0 0 20px;
	text-shadow: 0 2px 24px rgba(0,0,0,0.6);
}

.cmdb-hero__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 28px;
}

.cmdb-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
}

/* Hero glassmorphism card */
.cmdb-hero__card {
	flex-shrink: 0;
	width: 220px;
	background: rgba(18,18,22,0.70);
	backdrop-filter: blur(18px) saturate(1.3);
	-webkit-backdrop-filter: blur(18px) saturate(1.3);
	border: 1px solid rgba(255,255,255,0.10);
	border-radius: 16px;
	padding: 24px 20px;
	display: flex;
	flex-direction: column;
	gap: 20px;
	align-items: center;
}

.cmdb-hero__score {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
}

.cmdb-hero__score .circle-container {
	width: 72px;
	height: 72px;
}

.cmdb-hero__score-label {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: #9CA3AF;
}

.cmdb-hero__stream-label {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: #9CA3AF;
	margin-bottom: 10px;
	text-align: center;
}

.cmdb-hero__stream-logos {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: center;
}

.cmdb-hero__stream-logos img {
	height: 28px;
	width: auto;
	filter: brightness(0.85);
	transition: filter 0.15s;
}
.cmdb-hero__stream-logos a:hover img {
	filter: brightness(1.1);
}

.cmdb-hero__more-link {
	font-size: 12px;
	color: #9CA3AF;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 6px;
	transition: color 0.15s;
}
.cmdb-hero__more-link:hover {
	color: #fff;
}

/* ════════════════════════════════════════════════════════════
   § 2  COMMUNITY SNAPSHOT
════════════════════════════════════════════════════════════ */
.cmdb-snapshot {
	padding: 48px 0;
	background: #121216;
	border-bottom: 1px solid rgba(255,255,255,0.06);
}

.cmdb-snapshot .cmdb-inner {
	display: flex;
	align-items: center;
	gap: 48px;
	flex-wrap: wrap;
}

.cmdb-snapshot__scores {
	display: flex;
	gap: 24px;
	flex-wrap: wrap;
}

.cmdb-score-card {
	background: rgba(255,255,255,0.04);
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 12px;
	padding: 20px 24px;
	min-width: 140px;
}

.cmdb-score-card__num {
	font-size: 36px;
	font-weight: 900;
	line-height: 1;
	color: #fff;
}

.cmdb-score-card__num span {
	font-size: 16px;
	font-weight: 400;
	color: #9CA3AF;
}

.cmdb-score-card__label {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #9CA3AF;
	margin: 6px 0 10px;
}

.cmdb-score-card__sub {
	font-size: 11px;
	color: #6B7280;
	margin-top: 6px;
}

.cmdb-score-bar {
	height: 4px;
	background: rgba(255,255,255,0.10);
	border-radius: 2px;
	overflow: hidden;
}

.cmdb-score-bar__fill {
	height: 100%;
	background: linear-gradient(90deg, #FF005B, #FF8A00);
	border-radius: 2px;
	transition: width 0.8s cubic-bezier(0.4,0,0.2,1);
}

.cmdb-score-bar__fill--user {
	background: linear-gradient(90deg, #7C3AED, #00FFE0);
}

.cmdb-score-card--cmdb .cmdb-score-card__num { color: #FF005B; }
.cmdb-score-card--user .cmdb-score-card__num  { color: #00FFE0; }

.cmdb-snapshot__react-block {
	flex: 1;
	min-width: 260px;
}

.cmdb-snapshot__react-label {
	font-size: 14px;
	color: #9CA3AF;
	margin-bottom: 14px;
}

.cmdb-snapshot__react-label strong {
	color: #fff;
}

/* Emoji reactions shared styles */
.cmdb-reactions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.cmdb-reaction {
	background: rgba(255,255,255,0.05);
	border: 1px solid rgba(255,255,255,0.10);
	border-radius: 10px;
	padding: 10px 14px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	cursor: pointer;
	transition: all 0.18s ease;
	min-width: 68px;
}

.cmdb-reaction:hover {
	background: rgba(255,255,255,0.10);
	border-color: rgba(255,255,255,0.22);
	transform: translateY(-2px);
}

.cmdb-reaction.is-active {
	background: rgba(255,0,91,0.15);
	border-color: #FF005B;
}

.cmdb-reaction__emoji {
	font-size: 22px;
	line-height: 1;
}

.cmdb-reaction__label {
	font-size: 10px;
	font-weight: 600;
	color: #9CA3AF;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.cmdb-reaction__count {
	font-size: 14px;
	font-weight: 700;
	color: #fff;
}

.cmdb-reactions--lg .cmdb-reaction {
	min-width: 86px;
	padding: 16px 18px;
}
.cmdb-reactions--lg .cmdb-reaction__emoji { font-size: 28px; }

/* ════════════════════════════════════════════════════════════
   § 3  MOVIE OVERVIEW
════════════════════════════════════════════════════════════ */

.cmdb-overview { padding: 3% 0;}
.cmdb-overview .cmdb-inner {
	display: grid;
	grid-template-columns: 240px 1fr;
	gap: 56px;
	align-items: start;
}

.cmdb-overview__left {
	display: flex;
	flex-direction: column;
	gap: 14px;
	position: sticky;
	top: 85px;
}

.cmdb-poster {
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}

.cmdb-poster img {
	display: block;
	width: 100%;
	height: auto;
}

.cmdb-overview__synopsis {
	font-size: 16px;
	line-height: 1.75;
	color: #D1D5DB;
	margin-bottom: 28px;
}

/* Quick Facts */
.cmdb-facts {
	display: flex;
	flex-direction: column;
	gap: 0;
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 12px;
	overflow: hidden;
	margin-bottom: 32px;
}

.cmdb-fact {
	display: grid;
	grid-template-columns: 130px 1fr;
	gap: 12px;
	align-items: center;
	padding: 14px 18px;
	border-bottom: 1px solid rgba(255,255,255,0.06);
}

.cmdb-fact:last-child {
	border-bottom: none;
}

.cmdb-fact:nth-child(even) {
	background: rgba(255,255,255,0.02);
}

.cmdb-fact__label {
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #6B7280;
	display: flex;
	align-items: center;
	gap: 6px;
}

.cmdb-fact__value {
	font-size: 14px;
	color: #E5E7EB;
}

.cmdb-fact__value a {
	color: #00FFE0;
	text-decoration: none;
}
.cmdb-fact__value a:hover {
	text-decoration: underline;
}

.cmdb-fact__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

/* Streaming */
.cmdb-streaming-wrap {
	margin-bottom: 32px;
}

.cmdb-streaming-wrap__heading {
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #9CA3AF;
	margin: 0 0 12px;
	display: flex;
	align-items: center;
	gap: 8px;
}

/* Fandom Meter™ */
.cmdb-fandom-meter {
	margin-bottom: 32px;
}

.cmdb-fandom-meter__heading {
	font-size: 14px;
	font-weight: 800;
	color: #FF8A00;
	margin: 0 0 16px;
	display: flex;
	align-items: center;
	gap: 8px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.cmdb-meter-row {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 12px;
}

.cmdb-meter-row__label {
	font-size: 12px;
	font-weight: 600;
	color: #9CA3AF;
	width: 138px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	gap: 6px;
}

.cmdb-meter-row__track {
	flex: 1;
	height: 6px;
	background: rgba(255,255,255,0.08);
	border-radius: 3px;
	overflow: hidden;
}

.cmdb-meter-row__fill {
	height: 100%;
	background: linear-gradient(90deg, #FF005B, #FF8A00);
	border-radius: 3px;
	width: 0;
	transition: width 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

.cmdb-meter-row__score {
	font-size: 13px;
	font-weight: 700;
	color: #FF8A00;
	width: 20px;
	text-align: right;
	flex-shrink: 0;
}

/* Social follow */
.cmdb-social-block {
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 12px;
	padding: 20px 22px;
	background: rgba(255,255,255,0.02);
}

.cmdb-social-block__label {
	font-size: 13px;
	color: #9CA3AF;
	margin-bottom: 14px;
	line-height: 1.5;
}

.cmdb-social-block__links {
	display: flex;
	gap: 10px;
}

.cmdb-social-block__links a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(255,255,255,0.07);
	color: #9CA3AF;
	font-size: 14px;
	text-decoration: none;
	transition: all 0.18s ease;
}
.cmdb-social-block__links a:hover {
	background: #FF005B;
	color: #fff;
	transform: translateY(-2px);
}

/* ════════════════════════════════════════════════════════════
   § 4  CAST GRID
════════════════════════════════════════════════════════════ */
.cmdb-cast-section {
	background: #0d0d12;
}

.cmdb-cast-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
	gap: 20px;
}

.cmdb-cast-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-decoration: none;
	gap: 10px;
}

.cmdb-cast-card:hover .cmdb-cast-card__name {
	color: #FF005B;
}

.cmdb-cast-card__img {
	position: relative;
	width: 100%;
	aspect-ratio: 1/1;
	border-radius: 50%;
	overflow: hidden;
	border: 2px solid rgba(255,255,255,0.08);
	transition: border-color 0.18s ease;
}

.cmdb-cast-card:hover .cmdb-cast-card__img {
	border-color: #FF005B;
}

.cmdb-cast-card__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
}

.cmdb-cast-card__hover {
	position: absolute;
	inset: 0;
	background: rgba(255,0,91,0.6);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 18px;
	opacity: 0;
	transition: opacity 0.18s ease;
	border-radius: 50%;
}

.cmdb-cast-card:hover .cmdb-cast-card__hover {
	opacity: 1;
}

.cmdb-cast-card__name {
	font-size: 13px;
	font-weight: 700;
	color: #E5E7EB;
	text-align: center;
	transition: color 0.18s ease;
	line-height: 1.3;
}

.cmdb-cast-card__role {
	font-size: 11px;
	color: #6B7280;
	text-align: center;
	line-height: 1.3;
}

/* ════════════════════════════════════════════════════════════
   § 5  TRAILER HUB
════════════════════════════════════════════════════════════ */
.cmdb-trailers {
	background: #09090F;
}

.cmdb-trailers__embed-wrap {
	position: relative;
	padding-top: 56.25%;
	border-radius: 12px;
	overflow: hidden;
	background: #000;
	margin-bottom: 28px;
	box-shadow: 0 12px 48px rgba(0,0,0,0.5);
}

.cmdb-trailers__embed {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

/* Gallery */
.cmdb-gallery {
	position: relative;
	display: flex;
	align-items: center;
	gap: 0;
}

.cmdb-gallery__track {
	display: flex;
	gap: 12px;
	overflow-x: auto;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	flex: 1;
	padding: 4px 0;
}

.cmdb-gallery__track::-webkit-scrollbar {
	display: none;
}

.cmdb-gallery__item {
	flex-shrink: 0;
	width: 220px;
	aspect-ratio: 16/9;
	border-radius: 8px;
	overflow: hidden;
	cursor: pointer;
}

.cmdb-gallery__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.25s ease;
}

.cmdb-gallery__item:hover img {
	transform: scale(1.04);
}

.cmdb-gallery__arrow {
	flex-shrink: 0;
	background: rgba(255,255,255,0.08);
	border: 1px solid rgba(255,255,255,0.12);
	color: #fff;
	border-radius: 8px;
	padding: 12px;
	cursor: pointer;
	transition: background 0.15s;
	z-index: 2;
}

.cmdb-gallery__arrow:hover {
	background: rgba(255,255,255,0.16);
}

/* ════════════════════════════════════════════════════════════
   § 6  CMDB REVIEW
════════════════════════════════════════════════════════════ */
.cmdb-review {
	background: #0d0d12;
}

.cmdb-review__inner {
	max-width: 860px;
}

.cmdb-review__score-badge {
	display: inline-block;
	background: linear-gradient(135deg, #FF005B, #FF8A00);
	color: #fff;
	font-size: 18px;
	font-weight: 900;
	padding: 4px 14px;
	border-radius: 8px;
	margin-left: 14px;
	vertical-align: middle;
}

.cmdb-review__ring {
	flex-shrink: 0;
}

.cmdb-review__ring .circle-container {
	width: 80px;
	height: 80px;
}

.cmdb-review__body {
	font-size: 17px;
	line-height: 1.85;
	color: #D1D5DB;
	margin-top: 32px;
}

.cmdb-review__body h2,
.cmdb-review__body h3 {
	font-size: clamp(18px, 2.5vw, 24px);
	font-weight: 800;
	color: #fff;
	margin: 32px 0 12px;
}

.cmdb-review__body p {
	margin-bottom: 20px;
}

/* Trivia */
.cmdb-trivia {
	margin-top: 48px;
	padding: 28px 32px;
	background: rgba(255,215,0,0.05);
	border: 1px solid rgba(255,215,0,0.20);
	border-radius: 12px;
}

.cmdb-trivia__heading {
	font-size: 16px;
	font-weight: 800;
	color: #FFD700;
	margin: 0 0 16px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.cmdb-trivia__body {
	font-size: 15px;
	line-height: 1.75;
	color: #D1D5DB;
}

/* ════════════════════════════════════════════════════════════
   § 7  COMMUNITY REACTIONS & COMMENTS
════════════════════════════════════════════════════════════ */
.cmdb-community {
	background: #09090F;
}

.cmdb-community__comments {
	margin-top: 48px;
}

.cmdb-community__empty {
	text-align: center;
	color: #6B7280;
	font-size: 15px;
	padding: 40px 0;
}

/* Override WP comment form to match dark theme */
#commentform input[type="text"],
#commentform input[type="email"],
#commentform input[type="url"],
#commentform textarea {
	background: #121216;
	border: 1px solid rgba(255,255,255,0.12);
	border-radius: 8px;
	color: #fff;
	padding: 12px 16px;
	width: 100%;
	font-size: 14px;
}

#commentform input[type="submit"] {
	background: #FF005B;
	border: none;
	color: #fff;
	border-radius: 8px;
	padding: 12px 28px;
	font-weight: 700;
	cursor: pointer;
	transition: background 0.18s;
}
#commentform input[type="submit"]:hover {
	background: #e00050;
}

.comment-list .comment {
	border-bottom: 1px solid rgba(255,255,255,0.06);
	padding: 20px 0;
}

/* ════════════════════════════════════════════════════════════
   § 8  RELATED SHELF
════════════════════════════════════════════════════════════ */
.cmdb-related {
	background: #0d0d12;
}

.cmdb-related__shelf {
	display: flex;
	gap: 16px;
	overflow-x: auto;
	padding-bottom: 12px;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: thin;
	scrollbar-color: rgba(255,255,255,0.15) transparent;
}

.cmdb-related__shelf::-webkit-scrollbar {
	height: 4px;
}
.cmdb-related__shelf::-webkit-scrollbar-thumb {
	background: rgba(255,255,255,0.15);
	border-radius: 2px;
}

.cmdb-related-card {
	flex-shrink: 0;
	width: 300px;
	height: 360px;;
	border-radius: 10px;
	overflow: hidden;
	text-decoration: none;
	background: #121216;
	border: 1px solid rgba(255,255,255,0.07);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	position: relative;
}

.cmdb-related-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(0,0,0,0.5);
}

.cmdb-related-card__img {
	position: relative;
	width: 100%;
	overflow: hidden;
	height: 100%;
}

.cmdb-related-card__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.cmdb-related-card:hover .cmdb-related-card__img img {
	transform: scale(1.05);
}

.cmdb-related-card__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(9,9,15,0.8) 0%, transparent 55%);
}

.cmdb-related-card__info {
	padding: 10px 12px 12px;
	position: absolute;
    bottom: 0;
}

.cmdb-related-card__title {
	font-size: 13px;
	font-weight: 700;
	color: #fff;
	margin: 0 0 8px;
	line-height: 1.3;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.cmdb-related-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
}

/* ════════════════════════════════════════════════════════════
   § 9  COSPLAY CORNER
════════════════════════════════════════════════════════════ */
.cmdb-cosplay {
	background: #09090F;
}

.cmdb-cosplay__cta-card {
	text-align: center;
	padding: 64px 40px;
	border: 2px dashed rgba(255,255,255,0.12);
	border-radius: 16px;
	background: rgba(255,255,255,0.02);
}

.cmdb-cosplay__cta-icon {
	font-size: 52px;
	margin-bottom: 16px;
	line-height: 1;
}

.cmdb-cosplay__cta-heading {
	font-size: clamp(18px, 2.5vw, 24px);
	font-weight: 800;
	color: #fff;
	margin: 0 0 12px;
}

.cmdb-cosplay__cta-body {
	font-size: 15px;
	color: #9CA3AF;
	max-width: 460px;
	margin: 0 auto 28px;
	line-height: 1.65;
}

/* ════════════════════════════════════════════════════════════
   § 10  COLLECTIBLES
════════════════════════════════════════════════════════════ */
.cmdb-collectibles {
	background: #0d0d12;
}

.cmdb-collectibles__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.cmdb-collect-card {
	background: #121216;
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 14px;
	padding: 28px 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	text-align: center;
	transition: border-color 0.18s ease, transform 0.18s ease;
}

.cmdb-collect-card:hover {
	border-color: rgba(255,0,91,0.35);
	transform: translateY(-4px);
}

.cmdb-collect-card__icon {
	font-size: 36px;
	line-height: 1;
}

.cmdb-collect-card__label {
	font-size: 14px;
	font-weight: 700;
	color: #E5E7EB;
}

/* ════════════════════════════════════════════════════════════
   § 11  RELATED NEWS
════════════════════════════════════════════════════════════ */
.cmdb-news {
	background: #09090F;
}

.cmdb-news__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.cmdb-news-card {
	display: flex;
	flex-direction: column;
	border-radius: 12px;
	overflow: hidden;
	background: #121216;
	border: 1px solid rgba(255,255,255,0.07);
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cmdb-news-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(0,0,0,0.5);
}

.cmdb-news-card__img {
	position: relative;
	width: 100%;
	aspect-ratio: 16/9;
	overflow: hidden;
	flex-shrink: 0;
}

.cmdb-news-card__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.cmdb-news-card:hover .cmdb-news-card__img img {
	transform: scale(1.04);
}

.cmdb-news-card__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(18,18,22,0.85) 0%, transparent 50%);
}

.cmdb-news-card__body {
	padding: 16px 18px 20px;
	display: flex;
	flex-direction: column;
	gap: 6px;
	flex: 1;
}

.cmdb-news-card__date {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #FF005B;
}

.cmdb-news-card__title {
	font-size: 15px;
	font-weight: 700;
	color: #fff;
	margin: 0;
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	z-index: 2;
}

.cmdb-news-card__excerpt {
	font-size: 13px;
	color: #9CA3AF;
	line-height: 1.55;
	margin: 0;
	z-index: 2;
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════════════ */

/* Tablet */
@media (max-width: 1024px) {
	.cmdb-collectibles__grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.cmdb-news__grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.cmdb-cast-grid {
		grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
	}
}

/* Mobile */
@media (max-width: 920px) {
	.cmdb-inner {
		padding: 0 16px;
	}
	.cmdb-section {
		padding: 48px 0;
	}

	/* Hero */
	.cmdb-hero {
		height: auto;
		min-height: 90vh;
		max-height: none;
		align-items: center;
	}
	.cmdb-hero__inner {
		flex-direction: column;
		align-items: flex-start;
		padding: 100px 16px 40px;
		gap: 24px;
	}
	.cmdb-hero__content {
		max-width: 100%;
	}
	.cmdb-hero__card {
		width: 100%;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: center;
	}

	/* Overview */
	.cmdb-overview .cmdb-inner {
		grid-template-columns: 1fr;
		gap: 32px;
	}
	.cmdb-overview__left {
		position: static;
		display: grid;
		grid-template-columns: 160px 1fr;
		gap: 16px;
		align-items: start;
	}
	.cmdb-poster {
		grid-row: span 2;
	}

	/* Snapshot */
	.cmdb-snapshot .cmdb-inner {
		flex-direction: column;
		gap: 24px;
	}
	.cmdb-snapshot__scores {
		width: 100%;
		justify-content: space-between;
	}
	.cmdb-score-card {
		flex: 1;
		min-width: 0;
		padding: 14px 12px;
	}
	.cmdb-score-card__num { font-size: 26px; }

	/* Collectibles */
	.cmdb-collectibles__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	/* News */
	.cmdb-news__grid {
		grid-template-columns: 1fr;
	}

	/* Cast */
	.cmdb-cast-grid {
		grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
		gap: 14px;
	}

	/* Actions */
	.cmdb-hero__actions {
		width: 100%;
	}
	.cmdb-hero__actions .cmdb-btn:first-child {
		flex: 1;
		justify-content: center;
	}

	/* Facts */
	.cmdb-fact {
		grid-template-columns: 110px 1fr;
	}
}

@media (max-width: 540px) {
	.cmdb-collectibles__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}
	.cmdb-collect-card {
		padding: 20px 14px;
	}
	.cmdb-reactions {
		gap: 7px;
	}
	.cmdb-reaction {
		min-width: 56px;
		padding: 8px 10px;
	}
	.cmdb-reaction__emoji { font-size: 18px; }
	.cmdb-reactions--lg .cmdb-reaction {
		min-width: 60px;
		padding: 10px 12px;
	}
	.cmdb-reactions--lg .cmdb-reaction__emoji { font-size: 22px; }
	.cmdb-overview__left {
		grid-template-columns: 1fr;
	}
	.cmdb-poster {
		max-width: 200px;
		margin: 0 auto;
	}
	.cmdb-section__header {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
	}
}
