@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:wght@600;700&display=swap');

:root {
	--acans-red: #ee1f2f;
	--acans-red-dark: #c90f1e;
	--acans-ink: #17191d;
	--acans-muted: #6f737b;
	--acans-line: #e8e9ec;
	--acans-soft: #f7f7f8;
	--acans-shadow: 0 20px 55px rgba(21, 24, 30, .10);
}

.acans-profile-modern-root {
	position: relative !important;
	left: 50% !important;
	transform: translateX(-50%) !important;
	width: min(1280px, calc(100vw - 34px)) !important;
	max-width: none !important;
	margin: 36px 0 70px !important;
	font-family: "DM Sans", Arial, sans-serif !important;
	color: var(--acans-ink);
	overflow: visible !important;
}

.acans-profile-modern-root > .um-form {
	max-width: none !important;
	width: 100% !important;
	background: transparent !important;
}

/* Eski profil görünümünü gizler; admin dişli alanı JS ile yeni tasarıma taşınır. */
.acans-profile-modern-root > .um-form > .um-cover,
.acans-profile-modern-root > .um-form > .um-header,
.acans-profile-modern-root > .um-form > .um-profile-navbar,
.acans-profile-modern-root > .um-form > .um-profile-nav,
.acans-profile-modern-root > .um-form > .um-profile-body,
.acans-profile-modern-root > .um-form > .um-profile-menu {
	display: none !important;
}

.acans-profile-shell,
.acans-profile-shell * {
	box-sizing: border-box;
}

.acans-profile-shell {
	position: relative;
	width: 100%;
	padding: 0 6px;
}

.acans-profile-admin-slot {
	position: absolute;
	top: 60px;
	right: 18px;
	z-index: 1000;
	min-width: 46px;
	min-height: 46px;
}

.acans-profile-admin-slot:empty {
	display: none;
}

.acans-profile-admin-slot .um-profile-edit {
	position: relative !important;
	top: auto !important;
	right: auto !important;
	left: auto !important;
	margin: 0 !important;
	z-index: 1000 !important;
}

.acans-profile-admin-slot .um-profile-edit-a {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 46px !important;
	height: 46px !important;
	border-radius: 50% !important;
	background: #fff !important;
	color: var(--acans-ink) !important;
	border: 1px solid var(--acans-line) !important;
	box-shadow: 0 10px 25px rgba(24, 27, 33, .14) !important;
	font-size: 21px !important;
	transition: .2s ease !important;
}

.acans-profile-admin-slot .um-profile-edit-a:hover {
	color: var(--acans-red) !important;
	transform: rotate(20deg);
}

.acans-profile-admin-slot .um-dropdown {
	top: 54px !important;
	right: 0 !important;
	left: auto !important;
	min-width: 235px !important;
	z-index: 99999 !important;
	border-radius: 12px !important;
	overflow: hidden !important;
	box-shadow: 0 18px 50px rgba(10, 13, 18, .20) !important;
}

.acans-profile-breadcrumb {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 24px;
	font-size: 13px;
	color: #8a8e96;
}

.acans-profile-breadcrumb a {
	color: #757981;
	text-decoration: none;
}

.acans-profile-breadcrumb strong {
	color: var(--acans-red);
	font-weight: 600;
}

.acans-profile-hero {
	display: grid;
	grid-template-columns: minmax(0, .94fr) minmax(0, 1.06fr);
	gap: 60px;
	align-items: start;
}

.acans-profile-visual {
	min-width: 0;
}

.acans-main-photo-wrap {
	position: relative;
	overflow: hidden;
	border-radius: 20px;
	background: #ececee;
	box-shadow: var(--acans-shadow);
	aspect-ratio: 4 / 5;
}

.acans-main-photo {
	display: block !important;
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	object-position: center top;
	margin: 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	transition: opacity .18s ease, transform .4s ease;
}

.acans-main-photo.is-changing {
	opacity: .35;
	transform: scale(.985);
}

.acans-photo-badge {
	position: absolute;
	left: 18px;
	bottom: 18px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 9px 13px;
	border-radius: 999px;
	color: #fff;
	background: rgba(15, 17, 21, .78);
	backdrop-filter: blur(10px);
	font-size: 12px;
	font-weight: 700;
}

.acans-photo-badge svg,
.acans-btn svg,
.acans-text-link svg,
.acans-gallery-item span svg {
	width: 17px;
	height: 17px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.acans-profile-thumbs {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 12px;
	margin-top: 16px;
}

.acans-profile-thumb {
	appearance: none;
	display: block;
	padding: 0;
	border: 2px solid transparent;
	border-radius: 13px;
	overflow: hidden;
	background: #eee;
	aspect-ratio: 1 / 1;
	cursor: pointer;
	transition: .2s ease;
}

.acans-profile-thumb:hover {
	transform: translateY(-2px);
}

.acans-profile-thumb.is-active {
	border-color: var(--acans-red);
	box-shadow: 0 8px 20px rgba(238, 31, 47, .18);
}

.acans-profile-thumb img {
	display: block !important;
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	margin: 0 !important;
	border: 0 !important;
}

.acans-profile-summary {
	padding: 8px 0 0;
}

.acans-profile-kicker,
.acans-section-eyebrow {
	display: inline-block;
	color: var(--acans-red);
	font-size: 11px;
	line-height: 1;
	font-weight: 700;
	letter-spacing: .13em;
	text-transform: uppercase;
}

.acans-profile-kicker {
	padding: 8px 12px;
	border: 1px solid rgba(238, 31, 47, .25);
	border-radius: 7px;
	background: #fff8f8;
}

.acans-profile-summary h1 {
	margin: 16px 0 4px !important;
	font-family: "Playfair Display", Georgia, serif !important;
	font-size: clamp(42px, 5vw, 72px) !important;
	line-height: 1.03 !important;
	letter-spacing: -.035em !important;
	color: #15171b !important;
	font-weight: 700 !important;
}

.acans-profile-role {
	margin: 0 0 26px !important;
	color: var(--acans-red) !important;
	font-size: 20px !important;
	font-weight: 500 !important;
}

.acans-profile-highlights {
	display: flex;
	flex-wrap: wrap;
	gap: 24px 34px;
	padding: 0 0 24px;
	border-bottom: 1px solid var(--acans-line);
}

.acans-profile-highlights > div {
	display: flex;
	align-items: center;
	gap: 10px;
	min-width: 120px;
}

.acans-profile-highlights svg {
	width: 25px;
	height: 25px;
	fill: none;
	stroke: #34373d;
	stroke-width: 1.65;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.acans-profile-highlights span {
	display: grid;
	gap: 2px;
}

.acans-profile-highlights small {
	color: #91949a;
	font-size: 11px;
	line-height: 1;
}

.acans-profile-highlights strong {
	color: #24272c;
	font-size: 14px;
	line-height: 1.2;
	font-weight: 700;
}

.acans-profile-intro {
	margin: 24px 0 22px;
	max-width: 650px;
	color: #5f636b;
	font-size: 15px;
	line-height: 1.85;
}

.acans-profile-intro p {
	margin: 0 !important;
}

.acans-profile-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 26px;
}

.acans-btn {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	gap: 9px;
	min-height: 48px;
	padding: 0 20px;
	border-radius: 9px;
	text-decoration: none !important;
	font-size: 14px;
	font-weight: 700;
	transition: .2s ease;
}

.acans-btn-primary {
	color: #fff !important;
	background: linear-gradient(135deg, var(--acans-red), var(--acans-red-dark));
	box-shadow: 0 12px 28px rgba(238, 31, 47, .23);
}

.acans-btn-primary:hover {
	color: #fff !important;
	transform: translateY(-2px);
	box-shadow: 0 16px 34px rgba(238, 31, 47, .30);
}

.acans-btn-light {
	color: #25282d !important;
	background: #fff;
	border: 1px solid #d9dade;
}

.acans-btn-light:hover {
	border-color: var(--acans-red);
	color: var(--acans-red) !important;
}

.acans-profile-facts {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	padding: 10px 20px;
	border: 1px solid #ededee;
	border-radius: 15px;
	background: #fff;
	box-shadow: 0 14px 40px rgba(24, 27, 33, .07);
}

.acans-profile-fact {
	display: grid;
	grid-template-columns: 28px 1fr auto;
	align-items: center;
	gap: 9px;
	min-height: 50px;
	padding: 8px 4px;
	border-bottom: 1px solid #eeeeef;
}

.acans-profile-fact:nth-last-child(-n+2) {
	border-bottom: 0;
}

.acans-profile-fact:nth-child(odd) {
	padding-right: 18px;
	border-right: 1px solid #eeeeef;
}

.acans-profile-fact:nth-child(even) {
	padding-left: 18px;
}

.acans-fact-icon {
	display: flex;
	color: #8a8e95;
}

.acans-fact-icon svg {
	width: 19px;
	height: 19px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.6;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.acans-fact-label {
	color: #8a8e95;
	font-size: 12px;
}

.acans-profile-fact strong {
	color: #292c31;
	font-size: 13px;
	font-weight: 700;
	text-align: right;
}

.acans-profile-about {
	display: grid;
	grid-template-columns: 1.05fr .85fr .9fr;
	gap: 36px;
	margin-top: 58px;
	padding: 34px;
	border: 1px solid #e8e9eb;
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 12px 40px rgba(26, 29, 34, .05);
}

.acans-about-copy,
.acans-about-features {
	min-width: 0;
}

.acans-about-features {
	padding: 6px 34px;
	border-left: 1px solid var(--acans-line);
	border-right: 1px solid var(--acans-line);
}

.acans-profile-about h2,
.acans-profile-gallery h2 {
	margin: 8px 0 16px !important;
	font-family: "Playfair Display", Georgia, serif !important;
	color: var(--acans-ink) !important;
	font-size: 31px !important;
	line-height: 1.15 !important;
}

.acans-profile-about h3 {
	margin: 0 0 18px !important;
	color: #26292e !important;
	font-size: 19px !important;
}

.acans-about-copy p {
	color: #666a72;
	font-size: 14px;
	line-height: 1.8;
}

.acans-text-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 8px;
	color: var(--acans-red) !important;
	text-decoration: none !important;
	font-size: 13px;
	font-weight: 700;
}

.acans-about-features ul {
	display: grid;
	gap: 13px;
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
}

.acans-about-features li {
	position: relative;
	padding-left: 24px;
	color: #5f636a;
	font-size: 14px;
}

.acans-about-features li::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	color: #fff;
	background: var(--acans-red);
	font-size: 10px;
	font-weight: 800;
}

.acans-profile-quote {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 220px;
	margin: 0 !important;
	padding: 30px;
	border: 0 !important;
	border-radius: 15px;
	color: #fff;
	background:
		radial-gradient(circle at 100% 0, rgba(238,31,47,.20), transparent 42%),
		linear-gradient(145deg, #1c2025, #111317);
	box-shadow: 0 18px 38px rgba(17, 19, 23, .18);
}

.acans-profile-quote > span {
	color: var(--acans-red);
	font-family: Georgia, serif;
	font-size: 66px;
	line-height: .6;
}

.acans-profile-quote p {
	margin: 20px 0 16px !important;
	color: #f3f3f4 !important;
	font-size: 17px;
	line-height: 1.55;
}

.acans-profile-quote cite {
	color: #aeb1b7;
	font-size: 12px;
	font-style: normal;
}

.acans-profile-gallery {
	margin-top: 48px;
	scroll-margin-top: 30px;
}

.acans-section-heading {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 18px;
}

.acans-section-heading > span {
	color: #92959b;
	font-size: 13px;
}

.acans-gallery-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.acans-gallery-item {
	position: relative;
	appearance: none;
	display: block;
	overflow: hidden;
	padding: 0;
	border: 0;
	border-radius: 15px;
	background: #ebebed;
	aspect-ratio: 4 / 5;
	cursor: zoom-in;
	box-shadow: 0 10px 30px rgba(24, 27, 33, .08);
}

.acans-gallery-item img {
	display: block !important;
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	object-position: center top;
	margin: 0 !important;
	border: 0 !important;
	transition: transform .4s ease;
}

.acans-gallery-item:hover img {
	transform: scale(1.04);
}

.acans-gallery-item > span {
	position: absolute;
	left: 50%;
	bottom: 16px;
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 8px 12px;
	border-radius: 999px;
	color: #fff;
	background: rgba(18, 20, 24, .75);
	backdrop-filter: blur(8px);
	font-size: 11px;
	font-weight: 700;
	opacity: 0;
	transform: translate(-50%, 8px);
	transition: .25s ease;
}

.acans-gallery-item:hover > span {
	opacity: 1;
	transform: translate(-50%, 0);
}

.acans-profile-lightbox {
	position: fixed;
	inset: 0;
	z-index: 999999;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 34px;
	background: rgba(7, 8, 10, .92);
	backdrop-filter: blur(10px);
}

.acans-profile-lightbox.is-open {
	display: flex;
}

.acans-profile-lightbox img {
	display: block !important;
	max-width: min(760px, 78vw) !important;
	max-height: 78vh !important;
	width: auto !important;
	height: auto !important;
	object-fit: contain !important;
	margin: 0 !important;
	border-radius: 13px;
	box-shadow: 0 24px 65px rgba(0,0,0,.42);
}

.acans-lightbox-close {
	position: absolute;
	top: 20px;
	right: 24px;
	appearance: none;
	width: 46px;
	height: 46px;
	padding: 0;
	border: 1px solid rgba(255,255,255,.24);
	border-radius: 50%;
	color: #fff;
	background: rgba(255,255,255,.08);
	font-size: 30px;
	line-height: 1;
	cursor: pointer;
}

body.acans-lightbox-open {
	overflow: hidden;
}

@media (max-width: 1050px) {
	.acans-profile-hero {
		gap: 35px;
	}
	.acans-profile-about {
		grid-template-columns: 1fr 1fr;
	}
	.acans-profile-quote {
		grid-column: 1 / -1;
	}
	.acans-about-features {
		border-right: 0;
	}
}

@media (max-width: 820px) {
	.acans-profile-modern-root {
		width: min(100%, calc(100vw - 22px)) !important;
		margin-top: 18px !important;
	}
	.acans-profile-hero {
		grid-template-columns: 1fr;
	}
	.acans-main-photo-wrap {
		max-height: 760px;
	}
	.acans-profile-summary h1 {
		font-size: clamp(40px, 11vw, 64px) !important;
	}
	.acans-gallery-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.acans-profile-admin-slot {
		top: 48px;
		right: 12px;
	}
}

@media (max-width: 620px) {
	.acans-profile-breadcrumb {
		padding-right: 56px;
	}
	.acans-profile-thumbs {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
	.acans-profile-facts {
		grid-template-columns: 1fr;
		padding: 10px 16px;
	}
	.acans-profile-fact:nth-child(odd),
	.acans-profile-fact:nth-child(even) {
		padding-left: 4px;
		padding-right: 4px;
		border-right: 0;
		border-bottom: 1px solid #eeeeef;
	}
	.acans-profile-fact:last-child {
		border-bottom: 0;
	}
	.acans-profile-about {
		grid-template-columns: 1fr;
		padding: 25px;
	}
	.acans-about-features {
		padding: 25px 0;
		border: 0;
		border-top: 1px solid var(--acans-line);
		border-bottom: 1px solid var(--acans-line);
	}
	.acans-profile-actions {
		display: grid;
		grid-template-columns: 1fr;
	}
	.acans-profile-highlights {
		display: grid;
		grid-template-columns: repeat(2, minmax(0,1fr));
		gap: 18px;
	}
}

@media (max-width: 420px) {
	.acans-profile-shell {
		padding: 0;
	}
	.acans-profile-thumbs {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
	.acans-gallery-grid {
		gap: 11px;
	}
	.acans-gallery-item {
		border-radius: 11px;
	}
	.acans-profile-about {
		padding: 20px;
	}
}

@media (max-width: 620px) {
	.acans-profile-lightbox {
		padding: 18px;
	}

	.acans-profile-lightbox img {
		max-width: 90vw !important;
		max-height: 72vh !important;
	}

	.acans-lightbox-close {
		top: 10px;
		right: 10px;
		width: 40px;
		height: 40px;
		font-size: 26px;
	}
}


/* ACANS v1.2 — Lightbox gerçek ekran üzerinde, kompakt açılır. */
body > .acans-profile-lightbox {
	position: fixed !important;
	inset: 0 !important;
	z-index: 2147483000 !important;
	display: none !important;
	align-items: center !important;
	justify-content: center !important;
	width: 100vw !important;
	height: 100vh !important;
	max-width: none !important;
	max-height: none !important;
	margin: 0 !important;
	padding: 28px !important;
	background: rgba(8, 10, 13, .72) !important;
	backdrop-filter: blur(5px) !important;
	transform: none !important;
	overflow: hidden !important;
}

body > .acans-profile-lightbox.is-open {
	display: flex !important;
}

body > .acans-profile-lightbox img {
	display: block !important;
	width: auto !important;
	height: auto !important;
	max-width: min(680px, 82vw) !important;
	max-height: 78vh !important;
	object-fit: contain !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 12px !important;
	background: transparent !important;
	box-shadow: 0 24px 70px rgba(0, 0, 0, .38) !important;
	transform: none !important;
}

body > .acans-profile-lightbox .acans-lightbox-close {
	position: fixed !important;
	top: 18px !important;
	right: 20px !important;
	z-index: 2147483001 !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 42px !important;
	height: 42px !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 1px solid rgba(255, 255, 255, .45) !important;
	border-radius: 50% !important;
	color: #fff !important;
	background: rgba(17, 19, 23, .72) !important;
	font-size: 27px !important;
	line-height: 1 !important;
	cursor: pointer !important;
}

@media (max-width: 620px) {
	body > .acans-profile-lightbox {
		padding: 16px !important;
	}

	body > .acans-profile-lightbox img {
		max-width: 90vw !important;
		max-height: 72vh !important;
	}

	body > .acans-profile-lightbox .acans-lightbox-close {
		top: 10px !important;
		right: 10px !important;
		width: 38px !important;
		height: 38px !important;
		font-size: 24px !important;
	}
}


/* =========================================================
   ACANS v1.4 — Native dialog lightbox
   Fotoğraf ekranın önünde, viewport içine sığarak açılır.
   ========================================================= */

body > dialog.acans-profile-lightbox {
	position: fixed !important;
	inset: 0 !important;
	z-index: 2147483640 !important;
	display: none !important;
	width: auto !important;
	height: auto !important;
	max-width: none !important;
	max-height: none !important;
	margin: auto !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	overflow: visible !important;
	transform: none !important;
}

body > dialog.acans-profile-lightbox[open] {
	display: block !important;
}

body > dialog.acans-profile-lightbox::backdrop {
	background: rgba(8, 10, 13, .76) !important;
	backdrop-filter: blur(5px) !important;
}

body > dialog.acans-profile-lightbox .acans-lightbox-stage {
	display: grid !important;
	place-items: center !important;
	width: min(92vw, 900px) !important;
	height: min(84vh, 860px) !important;
	margin: 0 !important;
	padding: 0 !important;
	background: transparent !important;
	overflow: hidden !important;
}

body > dialog.acans-profile-lightbox .acans-lightbox-stage img {
	display: block !important;
	width: auto !important;
	height: auto !important;
	max-width: 92vw !important;
	max-height: 84vh !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 12px !important;
	background: transparent !important;
	object-fit: contain !important;
	box-shadow: 0 24px 70px rgba(0, 0, 0, .42) !important;
	transform: none !important;
}

body > dialog.acans-profile-lightbox .acans-lightbox-close {
	position: fixed !important;
	top: 18px !important;
	right: 20px !important;
	z-index: 2147483641 !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 44px !important;
	height: 44px !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 1px solid rgba(255, 255, 255, .46) !important;
	border-radius: 50% !important;
	color: #fff !important;
	background: rgba(16, 18, 22, .78) !important;
	box-shadow: 0 12px 30px rgba(0, 0, 0, .25) !important;
	font-size: 28px !important;
	line-height: 1 !important;
	cursor: pointer !important;
}

body.acans-lightbox-open {
	overflow: hidden !important;
}

@media (max-width: 620px) {
	body > dialog.acans-profile-lightbox .acans-lightbox-stage {
		width: 94vw !important;
		height: 78vh !important;
	}

	body > dialog.acans-profile-lightbox .acans-lightbox-stage img {
		max-width: 94vw !important;
		max-height: 78vh !important;
		border-radius: 9px !important;
	}

	body > dialog.acans-profile-lightbox .acans-lightbox-close {
		top: 10px !important;
		right: 10px !important;
		width: 40px !important;
		height: 40px !important;
		font-size: 25px !important;
	}
}


/* =========================================================
   ACANS v1.5 — Casting hızlı profil modalı
   ========================================================= */

body > dialog.acans-cast-modal {
	position: fixed !important;
	inset: 0 !important;
	z-index: 2147483640 !important;
	display: none !important;
	width: min(920px, 94vw) !important;
	max-width: 920px !important;
	height: auto !important;
	max-height: 88vh !important;
	margin: auto !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 18px !important;
	background: transparent !important;
	box-shadow: 0 32px 100px rgba(0, 0, 0, .55) !important;
	overflow: visible !important;
	transform: none !important;
}

body > dialog.acans-cast-modal[open] {
	display: block !important;
}

body > dialog.acans-cast-modal::backdrop {
	background: rgba(0, 0, 0, .83) !important;
	backdrop-filter: blur(8px) !important;
}

.acans-cast-modal-card {
	display: grid !important;
	grid-template-columns: minmax(0, 58%) minmax(300px, 42%) !important;
	width: 100% !important;
	height: min(690px, 82vh) !important;
	max-height: 82vh !important;
	border: 1px solid rgba(255, 255, 255, .12) !important;
	border-radius: 18px !important;
	background: #171a2b !important;
	overflow: hidden !important;
}

.acans-cast-modal-media {
	position: relative !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	min-width: 0 !important;
	height: 100% !important;
	background: #d1d0c5 !important;
	overflow: hidden !important;
}

.acans-cast-modal-image {
	display: block !important;
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	max-height: none !important;
	margin: 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: #d1d0c5 !important;
	object-fit: contain !important;
	object-position: center center !important;
	box-shadow: none !important;
	transform: none !important;
	transition: opacity .15s ease !important;
}

.acans-cast-modal-image.is-changing {
	opacity: .45 !important;
}

.acans-cast-modal-info {
	position: relative !important;
	display: flex !important;
	flex-direction: column !important;
	min-width: 0 !important;
	height: 100% !important;
	padding: 34px 28px 24px !important;
	color: #fff !important;
	background:
		radial-gradient(circle at 100% 0, rgba(238, 31, 47, .13), transparent 35%),
		linear-gradient(155deg, #1b1e31, #141727) !important;
	overflow: hidden !important;
}

.acans-cast-modal-close {
	position: absolute !important;
	top: 14px !important;
	right: 14px !important;
	z-index: 5 !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 38px !important;
	height: 38px !important;
	padding: 0 !important;
	border: 1px solid rgba(255, 255, 255, .24) !important;
	border-radius: 50% !important;
	color: #d9dbe4 !important;
	background: rgba(7, 9, 17, .42) !important;
	font-size: 27px !important;
	font-weight: 300 !important;
	line-height: 1 !important;
	cursor: pointer !important;
	transition: .2s ease !important;
}

.acans-cast-modal-close:hover {
	color: #fff !important;
	border-color: rgba(255, 255, 255, .55) !important;
	transform: rotate(8deg) !important;
}

.acans-cast-modal-heading {
	padding-right: 42px !important;
}

.acans-cast-modal-heading h2 {
	margin: 0 !important;
	color: #fff !important;
	font-family: "DM Sans", Arial, sans-serif !important;
	font-size: clamp(25px, 2.2vw, 34px) !important;
	line-height: 1.12 !important;
	font-weight: 800 !important;
	letter-spacing: -.025em !important;
}

.acans-cast-modal-heading p {
	margin: 7px 0 0 !important;
	color: #f4a21a !important;
	font-size: 13px !important;
	font-weight: 700 !important;
}

.acans-cast-meta {
	display: flex !important;
	flex-wrap: wrap !important;
	gap: 8px 13px !important;
	margin-top: 17px !important;
	color: #a9aec0 !important;
	font-size: 12px !important;
	font-weight: 600 !important;
}

.acans-cast-meta span {
	display: inline-flex !important;
	align-items: center !important;
	gap: 5px !important;
}

.acans-cast-meta svg {
	width: 15px !important;
	height: 15px !important;
	fill: none !important;
	stroke: currentColor !important;
	stroke-width: 1.7 !important;
	stroke-linecap: round !important;
	stroke-linejoin: round !important;
}

.acans-cast-stats {
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	gap: 8px !important;
	margin-top: 24px !important;
}

.acans-cast-stats > div {
	min-width: 0 !important;
	min-height: 78px !important;
	padding: 13px 11px !important;
	border: 1px solid rgba(255, 255, 255, .10) !important;
	border-radius: 10px !important;
	background: rgba(255, 255, 255, .035) !important;
}

.acans-cast-stats small {
	display: block !important;
	margin-bottom: 8px !important;
	color: #6f768e !important;
	font-size: 9px !important;
	font-weight: 800 !important;
	letter-spacing: .08em !important;
	text-transform: uppercase !important;
}

.acans-cast-stats strong {
	display: block !important;
	color: #fff !important;
	font-size: 13px !important;
	line-height: 1.25 !important;
	font-weight: 800 !important;
	word-break: break-word !important;
}

.acans-cast-modal-actions {
	display: grid !important;
	gap: 10px !important;
	margin-top: auto !important;
	padding-top: 26px !important;
}

.acans-cast-full-profile,
.acans-cast-shortlist {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 9px !important;
	width: 100% !important;
	min-height: 50px !important;
	padding: 0 16px !important;
	border-radius: 10px !important;
	font-size: 14px !important;
	font-weight: 800 !important;
	cursor: pointer !important;
	transition: .2s ease !important;
}

.acans-cast-full-profile {
	border: 0 !important;
	color: #fff !important;
	background: linear-gradient(100deg, #f6bd43, #f36d12) !important;
	box-shadow: 0 10px 28px rgba(243, 109, 18, .22) !important;
}

.acans-cast-full-profile:hover {
	transform: translateY(-2px) !important;
	filter: brightness(1.05) !important;
}

.acans-cast-full-profile svg {
	width: 18px !important;
	height: 18px !important;
	fill: none !important;
	stroke: currentColor !important;
	stroke-width: 1.8 !important;
}

.acans-cast-shortlist {
	border: 1px solid rgba(47, 196, 146, .45) !important;
	color: #45dfaa !important;
	background: rgba(21, 102, 82, .18) !important;
}

.acans-cast-shortlist:hover,
.acans-cast-shortlist.is-added {
	color: #fff !important;
	border-color: rgba(47, 196, 146, .75) !important;
	background: rgba(30, 139, 108, .46) !important;
}

.acans-cast-modal-actions > small {
	display: block !important;
	margin-top: 3px !important;
	color: #3e445c !important;
	font-size: 9px !important;
	text-align: center !important;
}

.acans-cast-arrow {
	position: absolute !important;
	top: 50% !important;
	z-index: 4 !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 42px !important;
	height: 42px !important;
	padding: 0 !important;
	border: 1px solid rgba(255, 255, 255, .32) !important;
	border-radius: 50% !important;
	color: #fff !important;
	background: rgba(17, 19, 22, .52) !important;
	backdrop-filter: blur(5px) !important;
	font-size: 30px !important;
	line-height: 1 !important;
	cursor: pointer !important;
	transform: translateY(-50%) !important;
	transition: .2s ease !important;
}

.acans-cast-arrow:hover {
	background: rgba(17, 19, 22, .82) !important;
}

.acans-cast-prev {
	left: 14px !important;
}

.acans-cast-next {
	right: 14px !important;
}

.acans-cast-dots {
	position: absolute !important;
	left: 50% !important;
	bottom: 15px !important;
	z-index: 4 !important;
	display: flex !important;
	align-items: center !important;
	gap: 6px !important;
	padding: 7px 9px !important;
	border-radius: 999px !important;
	background: rgba(18, 19, 22, .42) !important;
	backdrop-filter: blur(6px) !important;
	transform: translateX(-50%) !important;
}

.acans-cast-dots button {
	width: 7px !important;
	height: 7px !important;
	min-width: 7px !important;
	min-height: 7px !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 50% !important;
	background: rgba(255, 255, 255, .34) !important;
	cursor: pointer !important;
	transition: .2s ease !important;
}

.acans-cast-dots button.is-active {
	background: #f7b42c !important;
	transform: scale(1.35) !important;
}

body.acans-cast-modal-open {
	overflow: hidden !important;
}

@media (max-width: 760px) {
	body > dialog.acans-cast-modal {
		width: 94vw !important;
		max-height: 92vh !important;
	}

	.acans-cast-modal-card {
		grid-template-columns: 1fr !important;
		grid-template-rows: minmax(310px, 53vh) auto !important;
		height: auto !important;
		max-height: 90vh !important;
		overflow-y: auto !important;
	}

	.acans-cast-modal-info {
		height: auto !important;
		min-height: 360px !important;
		padding: 26px 20px 20px !important;
		overflow: visible !important;
	}

	.acans-cast-stats {
		grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	}

	.acans-cast-modal-actions {
		margin-top: 24px !important;
	}
}

@media (max-width: 460px) {
	.acans-cast-modal-card {
		grid-template-rows: minmax(270px, 47vh) auto !important;
	}

	.acans-cast-stats {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}

	.acans-cast-meta {
		display: grid !important;
		grid-template-columns: 1fr 1fr !important;
	}

	.acans-cast-arrow {
		width: 38px !important;
		height: 38px !important;
	}
}
