/* ============================================================
   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;
	}

	.cmdb-score-card--cmdb {display: none}

	/* 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: 40vh 16px 0 16px;
		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;
	}
}

/* CMDB community interaction fixes */
.cmdb-rating-picker {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 6px;
    margin-top: 12px;
}
.cmdb-rating-picker__btn {
    border: 1px solid rgba(255,255,255,.16);
    background: rgba(255,255,255,.06);
    color: #fff;
    border-radius: 999px;
    min-height: 30px;
    cursor: pointer;
    font-weight: 800;
}
.cmdb-rating-picker__btn:hover,
.cmdb-rating-picker__btn.is-active {
    background: #00FFE0;
    color: #050510;
    border-color: #00FFE0;
}
.cmdb-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 18px;
    background: rgba(0,0,0,.72);
    backdrop-filter: blur(12px);
}
.cmdb-modal.is-open { display: flex; }
.cmdb-modal__panel {
    width: min(460px, 100%);
    max-height: 92vh;
    overflow: auto;
    position: relative;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 24px;
    padding: 24px;
    background: #090912;
    color: #fff;
    box-shadow: 0 28px 90px rgba(0,0,0,.55);
}
.cmdb-modal__panel--wide { width: min(640px, 100%); }
.cmdb-modal__close {
    position: absolute;
    top: 12px;
    right: 14px;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.08);
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}
.cmdb-modal__actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; }
.cmdb-cosplay-modal form { display: grid; gap: 12px; margin-top: 16px; }
.cmdb-cosplay-modal label { display: grid; gap: 6px; font-weight: 800; color: rgba(255,255,255,.82); }
.cmdb-cosplay-modal input,
.cmdb-cosplay-modal textarea {
    width: 100%;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 14px;
    padding: 12px 14px;
    background: rgba(255,255,255,.06);
    color: #fff;
}
.cmdb-form-status a { color: #00FFE0; font-weight: 900; }
.cmdb-related-card__reason,
.cmdb-related-card__score {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 5px 9px;
    background: rgba(255,255,255,.08);
    color: rgba(255,255,255,.8);
    font-size: 12px;
    font-weight: 800;
}
@media (max-width: 680px) {
    .cmdb-rating-picker { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 4px; }
    .cmdb-rating-picker__btn { min-height: 28px; font-size: 12px; padding: 0; }
    .cmdb-modal { align-items: flex-end; padding: 0; }
    .cmdb-modal__panel { width: 100%; max-height: 88vh; border-radius: 24px 24px 0 0; padding: 22px 18px; }
    .cmdb-modal__actions .cmdb-btn { flex: 1 1 100%; justify-content: center; }
}

.cmdb-snapshot {
    padding: 10px 0 30px 0;
}
.cmdb-section-title, .cmdb-section-kicker, .cmdb-section__header div:first-child {max-width: 75%;}
.cmdb-review__score-badge {display: none;}

.cmdb-cosplay__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.cmdb-cosplay-card {
	overflow: hidden;
	border: 1px solid rgba(255,255,255,.12);
	border-radius: 24px;
	background: rgba(255,255,255,.055);
	box-shadow: 0 18px 60px rgba(0,0,0,.28);
}

.cmdb-cosplay-card__image {
	aspect-ratio: 4 / 5;
	background: rgba(255,255,255,.06);
}

.cmdb-cosplay-card__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.cmdb-cosplay-card__placeholder {
	display: grid;
	place-items: center;
	height: 100%;
	font-size: 44px;
}

.cmdb-cosplay-card__body {
	display: grid;
	gap: 8px;
	padding: 16px;
}

.cmdb-cosplay-card__body h3 {
	margin: 0;
	font-size: 18px;
	color: #fff;
}

.cmdb-cosplay-card__body p {
	margin: 0;
	color: rgba(255,255,255,.72);
	line-height: 1.5;
}

.cmdb-cosplay-card__handle {
	font-weight: 800;
	color: #ffd166;
}

@media (max-width: 900px) {
	.cmdb-cosplay__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
	.cmdb-cosplay__grid { grid-template-columns: 1fr; }
}

/* ==========================================================
   CMDB Cosplayer community v3
   ========================================================== */
.cmdb-cosplay-card__body h3 a {
	color: inherit;
	text-decoration: none;
}
.cmdb-cosplay-card__body h3 a:hover { color: #00FFE0; }
.cmdb-cosplay-card__links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
	margin-top: 10px;
}
.cmdb-cosplay-card__handle,
.cmdb-cosplay-card__profile {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	border: 1px solid rgba(255,255,255,.14);
	background: rgba(255,255,255,.06);
	border-radius: 999px;
	padding: 7px 10px;
	font-size: 12px;
	font-weight: 900;
	color: rgba(255,255,255,.86);
	text-decoration: none;
}
.cmdb-cosplay-card__handle:hover,
.cmdb-cosplay-card__profile:hover {
	border-color: rgba(0,255,224,.45);
	color: #00FFE0;
}
.cmdb-cosplay-love {
	display: flex;
	gap: 8px;
	margin-top: 14px;
}
.cmdb-cosplay-love button {
	appearance: none;
	border: 1px solid rgba(255,255,255,.12);
	background: rgba(255,255,255,.07);
	color: #fff;
	border-radius: 999px;
	padding: 8px 11px;
	font-weight: 900;
	cursor: pointer;
	transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.cmdb-cosplay-love button:hover {
	transform: translateY(-1px);
	border-color: rgba(255,0,91,.45);
}
.cmdb-cosplay-love button.is-active {
	background: linear-gradient(135deg, rgba(255,0,91,.28), rgba(0,255,224,.16));
	border-color: rgba(255,255,255,.26);
}
.cmdb-profile-page {
	background: #05070d;
	color: #fff;
	min-height: 70vh;
	padding: clamp(34px, 6vw, 86px) 16px;
}
.cmdb-profile-wrap {
	max-width: 1120px;
	margin: 0 auto;
}
.cmdb-profile-hero,
.cmdb-aira-push,
.cmdb-profile-form,
.cmdb-profile-gallery {
	border: 1px solid rgba(255,255,255,.12);
	background: radial-gradient(circle at top left, rgba(255,0,91,.18), transparent 34%), rgba(255,255,255,.045);
	border-radius: 28px;
	padding: clamp(22px, 4vw, 42px);
	box-shadow: 0 30px 90px rgba(0,0,0,.25);
	margin-bottom: 22px;
}
.cmdb-profile-hero {
	display: flex;
	gap: 24px;
	align-items: center;
}
.cmdb-profile-hero h1 {
	margin: 4px 0 8px;
	font-size: clamp(34px, 5vw, 62px);
	line-height: .95;
}
.cmdb-profile-hero p { color: rgba(255,255,255,.72); max-width: 680px; }
.cmdb-profile-avatar {
	border-radius: 28px;
	border: 1px solid rgba(255,255,255,.16);
	box-shadow: 0 22px 55px rgba(0,0,0,.35);
}
.cmdb-profile-links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 18px;
}
.cmdb-profile-links a,
.cmdb-profile-form + a {
	border: 1px solid rgba(255,255,255,.14);
	background: rgba(255,255,255,.07);
	color: #fff;
	text-decoration: none;
	border-radius: 999px;
	padding: 10px 14px;
	font-weight: 900;
}
.cmdb-profile-stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	margin: 0 0 22px;
}
.cmdb-profile-stat {
	border: 1px solid rgba(255,255,255,.1);
	background: rgba(255,255,255,.045);
	border-radius: 22px;
	padding: 18px;
}
.cmdb-profile-stat strong {
	display: block;
	font-size: 34px;
	line-height: 1;
	color: #00FFE0;
}
.cmdb-profile-stat span {
	display: block;
	font-weight: 950;
	margin-top: 8px;
}
.cmdb-profile-stat small {
	display: block;
	color: rgba(255,255,255,.58);
	margin-top: 4px;
}
.cmdb-profile-gallery h2,
.cmdb-aira-push h2 { margin-top: 0; }
.cmdb-profile-form {
	display: grid;
	gap: 14px;
	max-width: 720px;
}
.cmdb-profile-form label {
	display: grid;
	gap: 7px;
	font-weight: 900;
	color: rgba(255,255,255,.78);
}
.cmdb-profile-form input {
	width: 100%;
	border: 1px solid rgba(255,255,255,.14);
	background: rgba(255,255,255,.07);
	color: #fff;
	border-radius: 14px;
	padding: 13px 14px;
}
.cmdb-profile-notice {
	background: rgba(0,255,224,.12);
	border: 1px solid rgba(0,255,224,.24);
	border-radius: 16px;
	padding: 13px 16px;
	margin-bottom: 16px;
	font-weight: 900;
}
.cmdb-aira-push {
	background: radial-gradient(circle at top right, rgba(0,255,224,.14), transparent 30%), rgba(255,255,255,.045);
}
@media (max-width: 760px) {
	.cmdb-profile-hero { align-items: flex-start; flex-direction: column; }
	.cmdb-profile-stats { grid-template-columns: 1fr; }
}

/* CMDB Creator Profile v4 — geek/gamer/cosplay profile layer */
.cmdb-profile-page {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(circle at 14% 0%, rgba(0,255,224,.18), transparent 32%),
		radial-gradient(circle at 88% 12%, rgba(255,0,91,.2), transparent 34%),
		linear-gradient(180deg, #050710 0%, #090714 52%, #05070d 100%);
	color: #fff;
	min-height: 100vh;
	padding: clamp(24px, 5vw, 72px) 16px;
	isolation: isolate;
}
.cmdb-profile-page:before {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
	background-size: 46px 46px;
	mask-image: linear-gradient(to bottom, rgba(0,0,0,.8), transparent 80%);
	z-index: -3;
}
.cmdb-profile-bg-orb {
	position: absolute;
	width: 420px;
	height: 420px;
	border-radius: 999px;
	filter: blur(44px);
	opacity: .45;
	z-index: -2;
	pointer-events: none;
}
.cmdb-profile-bg-orb--one { left: -180px; top: 180px; background: rgba(0,255,224,.18); }
.cmdb-profile-bg-orb--two { right: -180px; bottom: 140px; background: rgba(255,0,91,.18); }
.cmdb-profile-wrap {
	max-width: 1180px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}
.cmdb-profile-hero,
.cmdb-aira-push,
.cmdb-profile-form,
.cmdb-profile-gallery,
.cmdb-profile-vibe > div,
.cmdb-profile-empty {
	border: 1px solid rgba(255,255,255,.12);
	background:
		linear-gradient(135deg, rgba(255,255,255,.09), rgba(255,255,255,.035)),
		rgba(9,10,24,.72);
	border-radius: 34px;
	box-shadow: 0 34px 100px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.08);
	backdrop-filter: blur(18px);
}
.cmdb-profile-hero {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) 280px;
	gap: clamp(18px, 4vw, 34px);
	align-items: center;
	padding: clamp(22px, 4vw, 46px);
	margin-bottom: 18px;
	position: relative;
	overflow: hidden;
}
.cmdb-profile-hero:after {
	content: "";
	position: absolute;
	right: -80px;
	top: -120px;
	width: 320px;
	height: 320px;
	background: radial-gradient(circle, rgba(0,255,224,.2), transparent 68%);
	pointer-events: none;
}
.cmdb-profile-avatar-wrap { position: relative; width: fit-content; }
.cmdb-profile-avatar {
	width: clamp(104px, 13vw, 150px) !important;
	height: clamp(104px, 13vw, 150px) !important;
	border-radius: 32px;
	border: 1px solid rgba(255,255,255,.22);
	box-shadow: 0 24px 65px rgba(0,0,0,.45), 0 0 0 8px rgba(255,255,255,.04);
	object-fit: cover;
}
.cmdb-profile-status {
	position: absolute;
	left: 50%;
	bottom: -12px;
	transform: translateX(-50%);
	white-space: nowrap;
	border: 1px solid rgba(0,255,224,.3);
	background: #07121b;
	color: #00FFE0;
	border-radius: 999px;
	padding: 7px 11px;
	font-size: 11px;
	font-weight: 950;
	text-transform: uppercase;
	letter-spacing: .08em;
}
.cmdb-profile-hero-copy h1 {
	margin: 6px 0 10px;
	font-size: clamp(42px, 6vw, 86px);
	line-height: .88;
	letter-spacing: -.06em;
	max-width: 760px;
}
.cmdb-profile-hero-copy p {
	max-width: 680px;
	font-size: clamp(16px, 1.45vw, 19px);
	color: rgba(255,255,255,.73);
	line-height: 1.65;
	margin: 0;
}
.cmdb-profile-hero-card {
	border: 1px solid rgba(255,255,255,.12);
	background: radial-gradient(circle at top left, rgba(255,0,91,.22), transparent 45%), rgba(255,255,255,.06);
	border-radius: 24px;
	padding: 20px;
	position: relative;
	z-index: 1;
}
.cmdb-profile-hero-card strong { display: block; font-size: 18px; line-height: 1.1; }
.cmdb-profile-hero-card span { display: block; color: rgba(255,255,255,.66); margin-top: 8px; line-height: 1.45; }
.cmdb-profile-links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 22px;
}
.cmdb-profile-links a,
.cmdb-profile-copy,
.cmdb-profile-actions .cmdb-btn {
	appearance: none;
	border: 1px solid rgba(255,255,255,.14);
	background: rgba(255,255,255,.08);
	color: #fff;
	text-decoration: none;
	border-radius: 999px;
	padding: 11px 15px;
	font-weight: 950;
	cursor: pointer;
	transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.cmdb-profile-links a:hover,
.cmdb-profile-copy:hover,
.cmdb-profile-actions .cmdb-btn:hover {
	transform: translateY(-2px);
	border-color: rgba(0,255,224,.45);
	background: rgba(0,255,224,.1);
}
.cmdb-profile-stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	margin: 0 0 18px;
}
.cmdb-profile-stat {
	border: 1px solid rgba(255,255,255,.1);
	background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.035));
	border-radius: 26px;
	padding: 20px;
	position: relative;
	overflow: hidden;
}
.cmdb-profile-stat:after {
	content: "";
	position: absolute;
	right: -45px;
	top: -45px;
	width: 120px;
	height: 120px;
	border-radius: 999px;
	background: rgba(0,255,224,.07);
}
.cmdb-profile-stat em { font-style: normal; font-size: 22px; display: inline-block; margin-bottom: 12px; }
.cmdb-profile-stat strong {
	display: block;
	font-size: clamp(36px, 5vw, 56px);
	line-height: .85;
	letter-spacing: -.04em;
	color: #00FFE0;
}
.cmdb-profile-stat span { display: block; font-weight: 950; margin-top: 12px; font-size: 16px; }
.cmdb-profile-stat small { display: block; color: rgba(255,255,255,.58); margin-top: 4px; line-height: 1.4; }
.cmdb-profile-vibe {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	margin: 0 0 18px;
}
.cmdb-profile-vibe > div { padding: 24px; }
.cmdb-profile-vibe span { font-size: 26px; }
.cmdb-profile-vibe h2,
.cmdb-profile-gallery h2,
.cmdb-aira-push h2,
.cmdb-profile-form h2 { margin: 8px 0 8px; letter-spacing: -.04em; }
.cmdb-profile-vibe p,
.cmdb-profile-gallery p,
.cmdb-aira-push p,
.cmdb-profile-form p { color: rgba(255,255,255,.66); line-height: 1.6; }
.cmdb-profile-gallery { padding: clamp(20px, 4vw, 34px); margin-bottom: 18px; }
.cmdb-profile-section-head {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 18px;
	margin-bottom: 18px;
}
.cmdb-profile-section-head p { max-width: 320px; margin: 0; }
.cmdb-cosplay__grid--profile { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cmdb-cosplay-card--profile {
	border-radius: 28px;
	background: rgba(255,255,255,.055);
	transition: transform .18s ease, border-color .18s ease;
}
.cmdb-cosplay-card--profile:hover { transform: translateY(-5px); border-color: rgba(0,255,224,.32); }
.cmdb-cosplay-card--profile .cmdb-cosplay-card__image { border-radius: 24px 24px 0 0; }
.cmdb-profile-empty { padding: 26px; }
.cmdb-profile-empty strong { display: block; font-size: 24px; }
.cmdb-profile-edit-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
	gap: 18px;
	align-items: stretch;
	margin-bottom: 18px;
}
.cmdb-profile-form {
	padding: clamp(20px, 3vw, 34px);
	display: grid;
	gap: 14px;
	max-width: none;
}
.cmdb-profile-form label {
	display: grid;
	gap: 8px;
	font-weight: 950;
	color: rgba(255,255,255,.78);
}
.cmdb-profile-form input {
	width: 100%;
	border: 1px solid rgba(255,255,255,.14);
	background: rgba(0,0,0,.24);
	color: #fff;
	border-radius: 16px;
	padding: 14px 15px;
	outline: none;
}
.cmdb-profile-form input:focus { border-color: rgba(0,255,224,.48); box-shadow: 0 0 0 4px rgba(0,255,224,.08); }
.cmdb-profile-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 6px; }
.cmdb-profile-notice {
	background: rgba(0,255,224,.12);
	border: 1px solid rgba(0,255,224,.24);
	border-radius: 18px;
	padding: 14px 16px;
	margin-bottom: 18px;
	font-weight: 950;
}
.cmdb-aira-push {
	padding: clamp(22px, 4vw, 38px);
	background:
		radial-gradient(circle at top right, rgba(0,255,224,.18), transparent 35%),
		linear-gradient(135deg, rgba(255,0,91,.14), rgba(255,255,255,.04)),
		rgba(9,10,24,.82);
}
.cmdb-aira-push--public {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 22px;
}
.cmdb-aira-push--side { height: 100%; }
.cmdb-aira-badge {
	display: inline-flex;
	border: 1px solid rgba(0,255,224,.28);
	background: rgba(0,255,224,.1);
	color: #00FFE0;
	font-weight: 950;
	border-radius: 999px;
	padding: 8px 12px;
	margin-bottom: 12px;
}
.cmdb-aira-push ul { margin: 16px 0 20px; padding-left: 18px; color: rgba(255,255,255,.72); line-height: 1.8; }
@media (max-width: 980px) {
	.cmdb-profile-hero { grid-template-columns: auto minmax(0, 1fr); }
	.cmdb-profile-hero-card { grid-column: 1 / -1; }
	.cmdb-cosplay__grid--profile { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.cmdb-profile-edit-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
	.cmdb-profile-page { padding: 18px 12px 78px; }
	.cmdb-profile-hero { grid-template-columns: 1fr; border-radius: 28px; }
	.cmdb-profile-hero-copy h1 { font-size: clamp(38px, 13vw, 62px); }
	.cmdb-profile-stats,
	.cmdb-profile-vibe,
	.cmdb-cosplay__grid--profile { grid-template-columns: 1fr; }
	.cmdb-profile-section-head,
	.cmdb-aira-push--public { align-items: flex-start; flex-direction: column; }
	.cmdb-profile-links a,
	.cmdb-profile-copy { width: 100%; justify-content: center; text-align: center; }
}

/* ============================================================
   CMDB Profile v5 — Gamer / Cosplay / Community Identity
   Matches CMDB movie redesign palette: black, magenta, cyan, review orange
============================================================ */
.cmdb-profile-v5-page{
  min-height:fit-content !important;background:#09090F;color:#fff;position:relative;overflow:auto;padding:clamp(18px,3vw,34px) 0 80px;
  background:
    radial-gradient(circle at 18% 10%, rgba(255,0,91,.20), transparent 30%),
    radial-gradient(circle at 82% 0%, rgba(0,255,224,.13), transparent 28%),
    linear-gradient(180deg,#09090F 0%,#0d0d12 48%,#07070b 100%);
}
.cmdb-profile-v5-page *{box-sizing:border-box}
.cmdb-profile-v5-noise{position:absolute;inset:0;pointer-events:none;opacity:.28;background-image:linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),linear-gradient(90deg,rgba(255,255,255,.025) 1px, transparent 1px);background-size:44px 44px;mask-image:linear-gradient(#000,transparent 88%)}
.cmdb-profile-v5-wrap{width:min(1420px,calc(100% - 32px));margin:0 auto;position:relative;z-index:1}
.cmdb-profile-v5-hero,.cmdb-profile-v5-panel,.cmdb-profile-v5-aira,.cmdb-profile-v5-stat{background:linear-gradient(180deg,rgba(18,18,22,.94),rgba(11,11,16,.92));border:1px solid rgba(255,255,255,.09);box-shadow:0 26px 90px rgba(0,0,0,.42);backdrop-filter:blur(18px)}
.cmdb-profile-v5-hero{border-radius: 10px;overflow:hidden;margin-bottom:18px;position:relative}
.cmdb-profile-v5-hero:before{content:"";position:absolute;inset:0;background:linear-gradient(135deg,rgba(255,0,91,.10),transparent 45%,rgba(0,255,224,.09));pointer-events:none}
.cmdb-profile-v5-cover{height:250px;position:relative;overflow:hidden;background:#111}
.cmdb-profile-v5-cover:before{content:"";position:absolute;inset:0;background:radial-gradient(circle at 70% 40%,rgba(255,0,91,.42),transparent 28%),radial-gradient(circle at 25% 40%,rgba(0,255,224,.22),transparent 26%),linear-gradient(135deg,#101018,#1c1022 38%,#071c22);filter:saturate(1.2)}
.cmdb-profile-v5-cover:after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,transparent 20%,rgba(9,9,15,.96) 100%)}
.cmdb-profile-v5-cover-art{position:absolute;right:32px;bottom:26px;z-index:1;text-align:right;text-transform:uppercase;letter-spacing:.16em;color:rgba(255,255,255,.8)}
.cmdb-profile-v5-cover-art span{display:block;font-size:clamp(42px,8vw,94px);font-weight:1000;line-height:.85;letter-spacing:-.08em;background:linear-gradient(135deg,#fff,#FF005B 42%,#00FFE0);-webkit-background-clip:text;color:transparent;opacity:.85;padding: 0 10px 0 0}
.cmdb-profile-v5-cover-art b{font-size:11px;color:rgba(255,255,255,.62)}
.cmdb-profile-v5-hero-main{position:relative;z-index:2;display:grid;grid-template-columns:auto minmax(0,1fr) auto;gap:22px;align-items:end;padding:0 clamp(18px,3vw,34px) 24px;margin-top:-74px}
.cmdb-profile-v5-avatar{width:150px;height:150px;border-radius:10px;padding:5px;background:linear-gradient(135deg,#FF005B,#FF8A00 46%,#00FFE0);position:relative;box-shadow:0 18px 46px rgba(0,0,0,.45)}
.cmdb-profile-v5-avatar img{width:100%;height:100%;object-fit:cover;border-radius:10px;display:block;background:#111}
.cmdb-profile-v5-avatar span{position:absolute;right:7px;bottom:7px;width:20px;height:20px;border-radius:50%;background:#00FFE0;border:4px solid #09090F;box-shadow:0 0 18px rgba(0,255,224,.85)}
.cmdb-profile-v5-title h1{font-size:clamp(42px,6vw,82px);line-height:.88;margin:0 0 10px;font-weight:1000;letter-spacing:-.07em;color:#fff;text-transform:none}
.cmdb-profile-v5-role{font-weight:900;color:rgba(255,255,255,.76);margin:0 0 10px}
.cmdb-profile-v5-title blockquote{margin:0;color:rgba(255,255,255,.66);font-size:15px;line-height:1.55;max-width:680px;border-left:3px solid #FF005B;padding-left:14px}
.cmdb-profile-v5-actions{display:flex;gap:9px;align-items:center;justify-content:flex-end;flex-wrap:wrap;min-width:250px}
.cmdb-profile-v5-actions a,.cmdb-profile-v5-actions button,.cmdb-profile-copy{appearance:none;border:1px solid rgba(255,255,255,.12);background:rgba(255,255,255,.07);color:#fff;text-decoration:none;border-radius:999px;padding:11px 15px;font-size:13px;font-weight:900;cursor:pointer;transition:.18s ease}
.cmdb-profile-v5-actions a:hover,.cmdb-profile-v5-actions button:hover,.cmdb-profile-copy:hover{transform:translateY(-2px);border-color:rgba(255,0,91,.48);box-shadow:0 12px 30px rgba(255,0,91,.16);color:#fff}
.cmdb-profile-v5-editlink{background:linear-gradient(135deg,#FF005B,#FF8A00)!important;border-color:transparent!important}
.cmdb-profile-v5-level{position:relative;z-index:2;margin:0 clamp(18px,3vw,34px) 30px;padding:18px;border:1px solid rgba(255,255,255,.08);background:rgba(0,0,0,.22);border-radius:10px;display:grid;grid-template-columns:auto 1fr auto;gap:16px;align-items:center}
.cmdb-profile-v5-level strong{font-size:20px;display:block}.cmdb-profile-v5-level span,.cmdb-profile-v5-level small{color:rgba(255,255,255,.62);font-weight:800}.cmdb-profile-v5-levelbar{height:12px;border-radius:999px;background:rgba(255,255,255,.08);overflow:hidden}.cmdb-profile-v5-levelbar i{display:block;height:100%;border-radius:999px;background:linear-gradient(90deg,#FF005B,#FF8A00,#00FFE0);box-shadow:0 0 24px rgba(255,0,91,.5)}
.cmdb-profile-v5-stats{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px;margin-bottom:18px}.cmdb-profile-v5-stat{border-radius:10px;padding:20px;position:relative;overflow:hidden}.cmdb-profile-v5-stat:after{content:"";position:absolute;right:-30px;top:-30px;width:90px;height:90px;border-radius:50%;background:rgba(255,0,91,.10)}.cmdb-profile-v5-stat em{font-style:normal;display:inline-flex;align-items:center;justify-content:center;min-width:42px;height:42px;border-radius:10px;background:rgba(255,255,255,.07);font-size:18px;font-weight:1000}.cmdb-profile-v5-stat strong{display:block;font-size:clamp(28px,4vw,44px);line-height:1;margin-top:16px;font-weight:1000;letter-spacing:-.05em}.cmdb-profile-v5-stat span{display:block;margin-top:8px;font-weight:950}.cmdb-profile-v5-stat small{display:block;margin-top:4px;color:rgba(255,255,255,.55)}
.cmdb-profile-v5-grid{display:grid;grid-template-columns:minmax(0,1fr) 460px;gap:18px;align-items:start}.cmdb-profile-v5-main,.cmdb-profile-v5-side{display:grid;gap:18px}.cmdb-profile-v5-side{position:sticky;top:18px}.cmdb-profile-v5-panel{border-radius:10px;padding:clamp(20px,3vw,30px);overflow:hidden}.cmdb-profile-v5-panel-head{display:flex;justify-content:space-between;align-items:flex-end;gap:20px;margin-bottom:22px}.cmdb-profile-v5-panel h2,.cmdb-profile-v5-aira h2{margin:4px 0 0;font-size:clamp(24px,3vw,36px);line-height:1;font-weight:1000;letter-spacing:-.05em}.cmdb-profile-v5-panel p,.cmdb-profile-v5-aira p{color:rgba(255,255,255,.64);line-height:1.6;margin:0}.cmdb-profile-v5-timeline{display:grid;gap:10px}.cmdb-profile-v5-feeditem{display:flex;gap:12px;align-items:center;padding:14px;border-radius:10px;background:rgba(255,255,255,.045);border:1px solid rgba(255,255,255,.06)}.cmdb-profile-v5-feeditem span{width:40px;height:40px;display:grid;place-items:center;border-radius:10px;background:linear-gradient(135deg,rgba(255,0,91,.22),rgba(0,255,224,.10))}.cmdb-profile-v5-feeditem p{margin:0}.cmdb-profile-v5-feeditem a{color:#fff;font-weight:950;text-decoration:none}.cmdb-profile-v5-feeditem a:hover{color:#00FFE0}
.cmdb-profile-v5-posters{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px}.cmdb-profile-v5-poster{position:relative;min-height:240px;border-radius:10px;overflow:hidden;background:linear-gradient(135deg,rgba(255,0,91,.25),rgba(0,255,224,.14));display:flex;align-items:center;justify-content:center;text-decoration:none;color:#fff;border:1px solid rgba(255,255,255,.09);transition:.18s ease}.cmdb-profile-v5-poster:hover{transform:translateY(-5px);border-color:rgba(0,255,224,.38);box-shadow:0 20px 50px rgba(0,0,0,.35)}.cmdb-profile-v5-poster img{width:100%;height:100%;object-fit:cover;position:absolute;inset:0}.cmdb-profile-v5-poster:after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,transparent 44%,rgba(0,0,0,.84))}.cmdb-profile-v5-poster b{position:absolute;left:10px;bottom:10px;z-index:1;padding:7px 10px;border-radius:999px;background:linear-gradient(135deg,#FF005B,#FF8A00);font-size:12px}.cmdb-profile-v5-poster span{position:relative;z-index:1;text-align:center;padding:18px;font-weight:950}
.cmdb-profile-v5-badge-grid{display:grid;gap:10px}.cmdb-profile-v5-badge{display:grid;grid-template-columns:44px 1fr;gap:10px;align-items:center;padding:13px;border-radius:10px;background:rgba(255,255,255,.045);border:1px solid rgba(255,255,255,.06)}.cmdb-profile-v5-badge i{font-style:normal;width:44px;height:44px;display:grid;place-items:center;border-radius:10px;background:rgba(255,0,91,.14);font-size:22px;grid-row:span 2}.cmdb-profile-v5-badge strong{font-size:15px}.cmdb-profile-v5-badge span{color:rgba(255,255,255,.58);font-size:12px;margin-top:-8px}
.cmdb-profile-v5-aira{border-radius:10px;padding:24px;background:linear-gradient(135deg,rgba(255,0,91,.16),rgba(255,138,0,.10) 48%,rgba(0,255,224,.08)),rgba(18,18,22,.94)}.cmdb-profile-v5-aira .cmdb-btn{margin-top:18px}.cmdb-profile-v5-empty{border:1px dashed rgba(255,255,255,.14);border-radius:10px;padding:22px;background:rgba(255,255,255,.035)}.cmdb-profile-v5-empty strong{display:block;font-size:20px;margin-bottom:6px}.cmdb-profile-notice{margin:0 0 18px;padding:14px 18px;border-radius:10px;background:rgba(0,255,224,.10);border:1px solid rgba(0,255,224,.25);color:#fff;font-weight:900}
.cmdb-profile-v5-edit .cmdb-profile-form{background:transparent;border:0;padding:0;box-shadow:none}.cmdb-profile-form-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}.cmdb-profile-form label{display:grid;gap:8px;color:rgba(255,255,255,.68);font-weight:900}.cmdb-profile-form input{width:100%;border-radius:10px;border:1px solid rgba(255,255,255,.12);background:rgba(0,0,0,.24);color:#fff;padding:14px 15px;outline:0}.cmdb-profile-form input:focus{border-color:rgba(0,255,224,.5);box-shadow:0 0 0 4px rgba(0,255,224,.08)}.cmdb-profile-actions{display:flex;flex-wrap:wrap;gap:10px;margin-top:16px}
.cmdb-profile-v5-cosplay .cmdb-cosplay__grid--profile{grid-template-columns:repeat(3,minmax(0,1fr))}.cmdb-profile-v5-cosplay .cmdb-cosplay-card--profile{border-radius:10px;background:rgba(255,255,255,.045);border:1px solid rgba(255,255,255,.08);overflow:hidden}.cmdb-profile-v5-cosplay .cmdb-cosplay-card__image{aspect-ratio:4/5;overflow:hidden}.cmdb-profile-v5-cosplay .cmdb-cosplay-card__image img{width:100%;height:100%;object-fit:cover}.cmdb-profile-v5-cosplay .cmdb-cosplay-card__body{padding:16px}.cmdb-profile-v5-cosplay .cmdb-cosplay-card__body h3{margin:0 0 8px;font-size:17px}.cmdb-cosplay-love{display:flex;gap:8px;flex-wrap:wrap}.cmdb-cosplay-love button{border:1px solid rgba(255,255,255,.12);background:rgba(255,255,255,.07);color:#fff;border-radius:999px;padding:8px 12px;font-weight:900;cursor:pointer}.cmdb-cosplay-love button.is-active,.cmdb-cosplay-love button:hover{background:linear-gradient(135deg,#FF005B,#FF8A00);border-color:transparent}
@media (max-width:1100px){.cmdb-profile-v5-grid{grid-template-columns:1fr}.cmdb-profile-v5-side{position:static}.cmdb-profile-v5-stats{grid-template-columns:repeat(2,minmax(0,1fr))}.cmdb-profile-v5-hero-main{grid-template-columns:auto 1fr}.cmdb-profile-v5-actions{grid-column:1/-1;justify-content:flex-start}.cmdb-profile-v5-posters{grid-template-columns:repeat(4,minmax(0,1fr))}}
@media (max-width:760px){.cmdb-profile-v5-wrap{width:min(100% - 24px,1320px)}.cmdb-profile-v5-cover{height:190px}.cmdb-profile-v5-cover-art{right:18px;bottom:18px}.cmdb-profile-v5-hero-main{display:block;margin-top:-58px}.cmdb-profile-v5-avatar{width:118px;height:118px;border-radius:10px;margin-bottom:14px}.cmdb-profile-v5-avatar img{border-radius:19px}.cmdb-profile-v5-title h1{font-size:clamp(42px,14vw,62px)}.cmdb-profile-v5-actions{justify-content:flex-start;margin-top:16px}.cmdb-profile-v5-actions a,.cmdb-profile-v5-actions button{flex:1;text-align:center;justify-content:center}.cmdb-profile-v5-level{grid-template-columns:1fr;margin-top:4px}.cmdb-profile-v5-stats,.cmdb-profile-v5-posters,.cmdb-profile-form-grid,.cmdb-profile-v5-cosplay .cmdb-cosplay__grid--profile{grid-template-columns:1fr}.cmdb-profile-v5-panel-head{display:block}.cmdb-profile-v5-poster{min-height:360px}}

/* ── Community comment form (movie/series pages) ── */
.cmdb-comment-form-wrap{display:flex;gap:14px;align-items:flex-start;margin-top:24px;padding-top:24px;border-top:1px solid rgba(255,255,255,.07)}
.cmdb-comment-form-avatar{flex-shrink:0}.cmdb-comment-form-avatar img{width:40px;height:40px;border-radius:12px;object-fit:cover;display:block}
.cmdb-comment-form{flex:1;display:flex;flex-direction:column;gap:10px}
.cmdb-comment-textarea{width:100%;background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.12);border-radius:14px;color:#fff;padding:14px 16px;font:inherit;font-size:14px;resize:vertical;outline:none;transition:border-color .15s}
.cmdb-comment-textarea:focus{border-color:rgba(0,255,224,.45);box-shadow:0 0 0 3px rgba(0,255,224,.08)}
.cmdb-comment-form-actions{display:flex;align-items:center;justify-content:space-between;gap:12px}
.cmdb-comment-form-user{font-size:12px;color:rgba(255,255,255,.5);font-weight:800}
.cmdb-comment-form-user strong{color:rgba(255,255,255,.8)}
.cmdb-comment-status{font-size:13px;font-weight:800;margin:0;min-height:18px}
.cmdb-comment-status.is-ok{color:#00FFE0}.cmdb-comment-status.is-err{color:#FF005B}
.cmdb-community__empty{text-align:center;padding:24px;color:rgba(255,255,255,.5);margin:0}
@media(max-width:600px){.cmdb-comment-form-wrap{flex-direction:column}.cmdb-comment-form-avatar{display:none}}
