/*
 * DesirePorn Premium UI
 * Draft-only design layer. Loaded after Blocksy.
 */

:root {
	--dp-bg: #08070b;
	--dp-bg-soft: #100c15;
	--dp-surface: #15101c;
	--dp-surface-2: #1d1527;
	--dp-surface-3: #261a31;
	--dp-text: #fbf8ff;
	--dp-muted: #b9afc3;
	--dp-line: rgba(255, 255, 255, 0.09);
	--dp-line-strong: rgba(210, 103, 255, 0.35);
	--dp-accent: #d267ff;
	--dp-accent-deep: #8f42ff;
	--dp-accent-hot: #ff477f;
	--dp-gold: #f1cb7b;
	--dp-success: #66e29b;
	--dp-radius: 16px;
	--dp-radius-lg: 26px;
	--dp-shadow: 0 18px 55px rgba(0, 0, 0, 0.34);
	--dp-container: min(1220px, calc(100vw - 40px));
}

html {
	scroll-behavior: smooth;
	background: var(--dp-bg);
}

body {
	color: var(--dp-text);
	background:
		radial-gradient(circle at 14% -10%, rgba(143, 66, 255, 0.14), transparent 30rem),
		radial-gradient(circle at 90% 22%, rgba(255, 71, 127, 0.07), transparent 26rem),
		var(--dp-bg);
	font-family: "Aptos", "Segoe UI Variable", "Segoe UI", sans-serif;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

#main-container {
	overflow: clip;
}

a {
	text-underline-offset: 0.18em;
}

::selection {
	color: #fff;
	background: rgba(210, 103, 255, 0.55);
}

/* Header */
#header.ct-header {
	position: relative;
	z-index: 50;
	border-bottom: 1px solid var(--dp-line);
	background: rgba(8, 7, 11, 0.86);
	box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
	backdrop-filter: blur(18px) saturate(135%);
	-webkit-backdrop-filter: blur(18px) saturate(135%);
}

#header [data-row="middle"] {
	min-height: 76px;
}

#header .ct-container {
	width: var(--dp-container);
}

#header .site-logo-container {
	display: inline-flex;
	align-items: center;
}

#header .site-logo-container img {
	width: clamp(190px, 16vw, 250px);
	height: auto;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

#header .site-logo-container:hover img {
	opacity: 0.9;
	transform: translateY(-1px);
}

#header .menu {
	gap: clamp(8px, 1.15vw, 20px);
}

#header .ct-menu-link {
	position: relative;
	padding: 28px 2px 24px;
	color: rgba(255, 255, 255, 0.78);
	font-size: 13px;
	font-weight: 750;
	letter-spacing: 0.075em;
	text-transform: uppercase;
	transition: color 0.2s ease;
}

#header .ct-menu-link::after {
	position: absolute;
	right: 50%;
	bottom: 18px;
	left: 50%;
	height: 2px;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--dp-accent), var(--dp-accent-hot));
	content: "";
	transition: right 0.22s ease, left 0.22s ease;
}

#header .ct-menu-link:hover,
#header .current-menu-item > .ct-menu-link {
	color: #fff;
}

#header .ct-menu-link:hover::after,
#header .current-menu-item > .ct-menu-link::after {
	right: 0;
	left: 0;
}

#header .ct-header-cta .ct-button {
	min-height: 42px;
	padding-inline: 21px;
	border: 1px solid rgba(255, 255, 255, 0.17);
	border-radius: 999px;
	color: #fff;
	background: linear-gradient(115deg, var(--dp-accent-deep), #be3fee 62%, var(--dp-accent-hot));
	box-shadow: 0 9px 24px rgba(173, 61, 255, 0.27);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.07em;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#header .ct-header-cta .ct-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 13px 30px rgba(173, 61, 255, 0.38);
}

#header .ct-header-search {
	width: 42px;
	height: 42px;
	border: 1px solid var(--dp-line);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.045);
}

#header .ct-header-search:hover {
	border-color: var(--dp-line-strong);
	background: rgba(210, 103, 255, 0.1);
}

/* Homepage structure */
.home .ct-container-full[data-content="normal"] {
	padding-top: 0;
}

.home .entry-content {
	padding-bottom: 72px;
}

.home .entry-content > *:not(.alignfull) {
	width: var(--dp-container);
	max-width: 1220px;
	margin-inline: auto;
}

.home .entry-content > .wp-block-group.alignfull:first-child {
	position: relative;
	isolation: isolate;
	display: grid;
	min-height: clamp(410px, 52vw, 610px);
	align-content: center;
	overflow: hidden;
	padding: clamp(78px, 10vw, 138px) max(20px, calc((100vw - 1220px) / 2));
	background:
		linear-gradient(105deg, rgba(8, 7, 11, 0.96), rgba(20, 11, 30, 0.8) 52%, rgba(8, 7, 11, 0.9)),
		radial-gradient(circle at 72% 38%, rgba(210, 103, 255, 0.4), transparent 29rem) !important;
	border-bottom: 1px solid var(--dp-line);
}

.home .entry-content > .wp-block-group.alignfull:first-child::before {
	position: absolute;
	z-index: -1;
	inset: 0;
	background:
		linear-gradient(rgba(255, 255, 255, 0.021) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.021) 1px, transparent 1px);
	background-size: 44px 44px;
	-webkit-mask-image: linear-gradient(to bottom, #000, transparent 85%);
	mask-image: linear-gradient(to bottom, #000, transparent 85%);
	content: "";
}

.home .entry-content > .wp-block-group.alignfull:first-child::after {
	position: absolute;
	z-index: -1;
	top: 50%;
	left: 50%;
	width: min(780px, 90vw);
	height: min(780px, 90vw);
	border: 1px solid rgba(210, 103, 255, 0.15);
	border-radius: 50%;
	box-shadow:
		0 0 0 80px rgba(210, 103, 255, 0.035),
		0 0 0 160px rgba(210, 103, 255, 0.018);
	content: "";
	transform: translate(-50%, -50%);
}

.home .entry-content > .wp-block-group.alignfull:first-child h1 {
	max-width: 960px;
	margin: 0 auto 22px;
	color: #fff;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(42px, 6vw, 78px);
	font-weight: 650;
	line-height: 0.98;
	letter-spacing: -0.045em;
	text-wrap: balance;
	text-shadow: 0 10px 45px rgba(0, 0, 0, 0.5);
}

.home .entry-content > .wp-block-group.alignfull:first-child > p {
	max-width: 720px;
	margin: 0 auto 34px;
	color: rgba(255, 255, 255, 0.72);
	font-size: clamp(16px, 2vw, 20px);
	font-weight: 450;
	line-height: 1.6;
	text-wrap: balance;
}

.dp-tc-hero-search {
	display: grid !important;
	grid-template-columns: minmax(0, 1fr) 58px;
	width: min(760px, 100%);
	margin: 0 auto !important;
	padding: 7px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 999px;
	background: rgba(13, 10, 18, 0.82);
	box-shadow: 0 22px 55px rgba(0, 0, 0, 0.38);
	backdrop-filter: blur(14px);
}

.dp-tc-hero-search input[type="search"] {
	width: 100%;
	min-width: 0;
	height: 54px;
	padding: 0 22px;
	border: 0 !important;
	border-radius: 999px;
	outline: 0;
	color: #fff !important;
	background: transparent !important;
	box-shadow: none !important;
	font-size: 16px;
}

.dp-tc-hero-search input[type="search"]::placeholder {
	color: #a99eb2;
}

.dp-tc-hero-search button {
	display: grid;
	width: 54px;
	height: 54px;
	place-items: center;
	border: 0;
	border-radius: 50%;
	color: #fff;
	background: linear-gradient(135deg, var(--dp-accent-deep), var(--dp-accent-hot));
	box-shadow: 0 9px 24px rgba(176, 64, 255, 0.35);
	font-size: 24px;
	cursor: pointer;
	transition: transform 0.2s ease;
}

.dp-tc-hero-search button:hover {
	transform: scale(1.05);
}

.dp-hero-proof {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 9px 20px;
	margin: 22px auto 0;
	color: rgba(255, 255, 255, 0.62);
	font-size: 12px;
	font-weight: 750;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.dp-hero-proof span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.dp-hero-proof span::before {
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--dp-accent);
	box-shadow: 0 0 12px var(--dp-accent);
	content: "";
}

/* Section rhythm and headings */
.home .entry-content > h2,
.home .dp-model-section h2 {
	margin-top: clamp(58px, 7vw, 92px);
	margin-bottom: 22px;
	color: #fff;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(30px, 3.7vw, 46px) !important;
	font-weight: 650;
	line-height: 1.12;
	letter-spacing: -0.03em;
}

.home .entry-content > h2::before,
.home .dp-model-section h2::before {
	display: block;
	width: 48px;
	height: 3px;
	margin: 0 auto 14px;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--dp-accent), var(--dp-accent-hot));
	box-shadow: 0 0 18px rgba(210, 103, 255, 0.45);
	content: "";
}

.home .dp-model-section {
	width: var(--dp-container);
	max-width: 1220px;
	margin: 0 auto 18px;
	padding-top: 1px;
}

.home .dp-model-section h2 {
	margin-top: clamp(54px, 7vw, 84px);
}

/* Live models */
.dp-model-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
	gap: 18px !important;
}

.dp-model-card {
	position: relative;
	border: 1px solid var(--dp-line) !important;
	border-radius: var(--dp-radius) !important;
	background: linear-gradient(155deg, rgba(31, 22, 42, 0.96), rgba(16, 12, 22, 0.98)) !important;
	box-shadow: 0 16px 42px rgba(0, 0, 0, 0.22);
	transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease !important;
}

.dp-model-card:hover {
	border-color: rgba(210, 103, 255, 0.5) !important;
	box-shadow: 0 22px 50px rgba(0, 0, 0, 0.36);
	transform: translateY(-6px) !important;
}

.dp-model-image-wrap {
	overflow: hidden;
	aspect-ratio: 16 / 9;
	background: #0a080d;
}

.dp-model-image {
	transition: transform 0.45s ease, filter 0.3s ease;
}

.dp-model-card:hover .dp-model-image {
	filter: saturate(1.08);
	transform: scale(1.045);
}

.dp-live-badge {
	top: 12px !important;
	left: 12px !important;
	padding: 5px 9px !important;
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 999px !important;
	background: rgba(221, 25, 73, 0.9) !important;
	box-shadow: 0 5px 16px rgba(220, 0, 59, 0.34);
	font-size: 10px !important;
	letter-spacing: 0.1em;
	backdrop-filter: blur(6px);
}

.dp-model-info {
	padding: 14px 15px 16px !important;
}

.dp-model-name {
	margin-bottom: 9px !important;
	font-size: 15px !important;
	letter-spacing: 0.01em;
}

.dp-model-meta {
	color: var(--dp-muted) !important;
	font-size: 12px !important;
}

.dp-free-chat {
	color: var(--dp-success) !important;
}

/* Video cards */
.dp-tc-grid,
.dp-popular-premium {
	display: grid !important;
	grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
	gap: 22px 18px !important;
	width: 100%;
}

.dp-tc-card {
	overflow: hidden;
	min-width: 0;
	border: 1px solid var(--dp-line);
	border-radius: var(--dp-radius);
	background: linear-gradient(155deg, rgba(29, 21, 39, 0.96), rgba(14, 11, 18, 0.98));
	box-shadow: 0 14px 38px rgba(0, 0, 0, 0.2);
	transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.dp-tc-card:hover {
	border-color: rgba(210, 103, 255, 0.42);
	box-shadow: 0 22px 46px rgba(0, 0, 0, 0.34);
	transform: translateY(-6px);
}

.dp-tc-thumb-link {
	position: relative;
	display: block;
	overflow: hidden;
	aspect-ratio: 16 / 9;
	background: #0b090d;
}

.dp-tc-thumb,
.dp-tc-hover-preview {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	transition: transform 0.45s ease, filter 0.3s ease;
}

.dp-tc-card:hover .dp-tc-thumb {
	filter: saturate(1.08) contrast(1.03);
	transform: scale(1.045);
}

.dp-tc-duration-badge,
.dp-tc-quality-badge {
	position: absolute !important;
	inset: auto 10px 10px auto !important;
	display: inline-flex !important;
	width: auto !important;
	min-width: 0 !important;
	max-width: none !important;
	height: auto !important;
	min-height: 0 !important;
	align-items: center;
	justify-content: center;
	padding: 5px 8px !important;
	border: 1px solid rgba(255, 255, 255, 0.16) !important;
	border-radius: 7px !important;
	color: #fff !important;
	background: rgba(7, 6, 9, 0.78) !important;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
	font-size: 10px !important;
	font-weight: 800 !important;
	line-height: 1 !important;
	letter-spacing: 0.04em;
	backdrop-filter: blur(8px);
	transform: none !important;
}

.dp-tc-title {
	display: -webkit-box;
	min-height: 50px;
	margin: 14px 14px 8px !important;
	overflow: hidden;
	color: #fff;
	font-size: 14px !important;
	font-weight: 730 !important;
	line-height: 1.5 !important;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.dp-tc-title a {
	color: inherit !important;
	text-decoration: none !important;
}

.dp-tc-meta-row {
	display: flex !important;
	grid-template-columns: none !important;
	align-items: center !important;
	justify-content: space-between !important;
	gap: 7px !important;
	column-gap: 7px !important;
	width: auto !important;
	margin: 0 14px 14px !important;
	box-sizing: border-box !important;
	color: var(--dp-muted);
	font-size: 11px;
}

.dp-tc-meta-row > span {
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.dp-tc-meta-row > span:not(:first-child) {
	padding: 3px 7px;
	border: 1px solid var(--dp-line);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.035);
}

.dp-popular-premium .dp-tc-card:nth-child(n + 9) {
	display: none !important;
}

/* Categories */
.dp-tc-category-grid {
	display: grid !important;
	grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
	gap: 18px !important;
}

.dp-tc-category-card {
	position: relative;
	overflow: hidden;
	aspect-ratio: 16 / 9;
	border: 1px solid var(--dp-line) !important;
	border-radius: var(--dp-radius) !important;
	background: var(--dp-surface);
	box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.dp-tc-category-card::after {
	position: absolute;
	inset: 35% 0 0;
	background: linear-gradient(to top, rgba(7, 6, 9, 0.96), transparent);
	content: "";
	pointer-events: none;
}

.dp-tc-category-thumb {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	transition: transform 0.45s ease, filter 0.3s ease;
}

.dp-tc-category-card:hover .dp-tc-category-thumb {
	filter: saturate(1.12);
	transform: scale(1.055);
}

.dp-tc-category-name {
	position: absolute !important;
	z-index: 2;
	right: 14px;
	bottom: 13px;
	left: 14px;
	display: block !important;
	padding: 0 !important;
	color: #fff !important;
	font-size: 15px !important;
	font-weight: 800 !important;
	letter-spacing: 0.02em;
	text-align: left !important;
	text-shadow: 0 3px 12px rgba(0, 0, 0, 0.8);
}

/* Buttons and editorial block */
.home .wp-block-button__link,
.dp-section-link {
	display: inline-flex;
	min-height: 46px;
	align-items: center;
	justify-content: center;
	padding: 0 22px;
	border: 1px solid rgba(210, 103, 255, 0.35) !important;
	border-radius: 999px !important;
	color: #fff !important;
	background: rgba(210, 103, 255, 0.09) !important;
	box-shadow: none !important;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.055em;
	text-decoration: none !important;
	text-transform: uppercase;
	transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.home .wp-block-button__link:hover,
.dp-section-link:hover {
	border-color: rgba(210, 103, 255, 0.72) !important;
	background: rgba(210, 103, 255, 0.17) !important;
	transform: translateY(-2px);
}

.dp-section-action {
	display: flex;
	justify-content: center;
	width: var(--dp-container);
	max-width: 1220px;
	margin: 28px auto 0;
}

.dp-about-panel {
	position: relative;
	overflow: hidden;
	width: var(--dp-container);
	max-width: 1220px;
	margin: clamp(70px, 8vw, 106px) auto 0;
	padding: clamp(28px, 5vw, 56px);
	border: 1px solid var(--dp-line);
	border-radius: var(--dp-radius-lg);
	background:
		linear-gradient(135deg, rgba(35, 23, 47, 0.86), rgba(16, 12, 21, 0.95)),
		var(--dp-surface);
	box-shadow: var(--dp-shadow);
}

.dp-about-panel::after {
	position: absolute;
	top: -120px;
	right: -100px;
	width: 300px;
	height: 300px;
	border-radius: 50%;
	background: rgba(210, 103, 255, 0.12);
	filter: blur(42px);
	content: "";
	pointer-events: none;
}

.dp-about-panel h2 {
	position: relative;
	z-index: 1;
	max-width: 760px;
	margin: 0 0 18px !important;
	color: #fff;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(30px, 4vw, 48px) !important;
	font-weight: 650;
	line-height: 1.12;
	letter-spacing: -0.03em;
}

.dp-about-panel p {
	position: relative;
	z-index: 1;
	max-width: 840px;
	margin: 0 0 13px;
	color: var(--dp-muted);
	font-size: 15px;
	line-height: 1.75;
}

.dp-about-actions {
	position: relative;
	z-index: 1;
	display: flex;
	flex-wrap: wrap;
	gap: 11px;
	margin-top: 24px;
}

/* Premium footer */
.dp-footer {
	position: relative;
	overflow: hidden;
	border-top: 1px solid var(--dp-line);
	background:
		radial-gradient(circle at 16% 0%, rgba(143, 66, 255, 0.14), transparent 24rem),
		#070609;
}

.dp-footer-inner {
	display: grid;
	grid-template-columns: minmax(240px, 1.35fr) repeat(3, minmax(145px, 0.65fr));
	gap: 44px;
	width: var(--dp-container);
	max-width: 1220px;
	margin: 0 auto;
	padding: 62px 0 44px;
}

.dp-footer-logo {
	display: inline-flex;
	max-width: 230px;
	margin-bottom: 18px;
}

.dp-footer-logo img {
	width: 100%;
	height: auto;
}

.dp-footer-copy {
	max-width: 390px;
	margin: 0;
	color: #91899a;
	font-size: 13px;
	line-height: 1.7;
}

.dp-footer h2 {
	margin: 4px 0 16px;
	color: #fff;
	font-family: inherit;
	font-size: 12px;
	font-weight: 850;
	letter-spacing: 0.11em;
	text-transform: uppercase;
}

.dp-footer ul {
	display: grid;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.dp-footer a {
	color: #a9a0b2;
	font-size: 13px;
	text-decoration: none;
	transition: color 0.2s ease;
}

.dp-footer a:hover {
	color: var(--dp-accent);
}

.dp-footer-live {
	color: #ff6c94 !important;
}

.dp-footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	width: var(--dp-container);
	max-width: 1220px;
	margin: 0 auto;
	padding: 22px 0 30px;
	border-top: 1px solid var(--dp-line);
	color: #756d7e;
	font-size: 11px;
}

.dp-footer-age {
	padding: 5px 9px;
	border: 1px solid rgba(255, 255, 255, 0.13);
	border-radius: 999px;
	color: #bcb4c4;
	font-weight: 800;
	letter-spacing: 0.08em;
}

/* Interior pages */
body:not(.home) .site-main {
	min-height: 65vh;
}

body:not(.home) .site-main > .ct-container,
body:not(.home) .site-main > .ct-container-full {
	padding-block: clamp(36px, 6vw, 74px);
}

body:not(.home) .entry-title {
	color: #fff;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(34px, 5vw, 58px);
	letter-spacing: -0.035em;
}

body:not(.home) .entry-content {
	color: #c8bfce;
	line-height: 1.75;
}

/* Responsive */
@media (max-width: 1100px) {
	.dp-tc-grid,
	.dp-popular-premium,
	.dp-tc-category-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	}

	.dp-footer-inner {
		grid-template-columns: 1.3fr repeat(2, 0.7fr);
	}

	.dp-footer-column:last-child {
		grid-column: 2 / -1;
	}
}

@media (max-width: 900px) {
	:root {
		--dp-container: min(100% - 30px, 1220px);
	}

	#header [data-device="desktop"] {
		display: none !important;
	}

	#header [data-device="mobile"] {
		display: block !important;
	}

	#header [data-row="middle"] {
		min-height: 68px;
	}

	#header .site-logo-container img {
		width: min(205px, 62vw);
	}

	.dp-model-grid,
	.dp-tc-grid,
	.dp-popular-premium,
	.dp-tc-category-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}

	.dp-footer-inner {
		grid-template-columns: 1.4fr 0.8fr 0.8fr;
		gap: 34px 24px;
	}

	.dp-footer-brand {
		grid-column: 1 / -1;
	}

	.dp-footer-column:last-child {
		grid-column: auto;
	}
}

@media (max-width: 600px) {
	:root {
		--dp-container: min(100% - 22px, 1220px);
		--dp-radius: 13px;
	}

	.home .entry-content {
		padding-bottom: 48px;
	}

	.home .entry-content > .wp-block-group.alignfull:first-child {
		min-height: 440px;
		padding-top: 74px;
		padding-bottom: 74px;
	}

	.home .entry-content > .wp-block-group.alignfull:first-child h1 {
		font-size: clamp(39px, 12vw, 55px);
		line-height: 1.02;
	}

	.home .entry-content > .wp-block-group.alignfull:first-child > p {
		margin-bottom: 26px;
		font-size: 15px;
	}

	.dp-tc-hero-search {
		grid-template-columns: minmax(0, 1fr) 50px;
		padding: 5px;
	}

	.dp-tc-hero-search input[type="search"] {
		height: 48px;
		padding-inline: 15px;
		font-size: 15px;
	}

	.dp-tc-hero-search button {
		width: 48px;
		height: 48px;
	}

	.dp-hero-proof {
		gap: 7px 13px;
		font-size: 10px;
	}

	.home .entry-content > h2,
	.home .dp-model-section h2 {
		margin-top: 54px;
		margin-bottom: 17px;
		font-size: 31px !important;
	}

	.dp-model-grid,
	.dp-tc-grid,
	.dp-popular-premium,
	.dp-tc-category-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
		gap: 12px 10px !important;
	}

	.dp-model-info {
		padding: 10px 10px 12px !important;
	}

	.dp-model-name {
		margin-bottom: 6px !important;
		font-size: 13px !important;
	}

	.dp-model-meta {
		align-items: flex-start !important;
		flex-direction: column;
		gap: 2px !important;
		font-size: 10px !important;
	}

	.dp-live-badge {
		top: 8px !important;
		left: 8px !important;
	}

	.dp-tc-title {
		min-height: 45px;
		margin: 10px 10px 5px !important;
		font-size: 12px !important;
		line-height: 1.42 !important;
	}

	.dp-tc-meta-row {
		gap: 4px;
		margin: 0 10px 10px;
		font-size: 9px;
	}

	.dp-tc-meta-row > span:not(:first-child) {
		padding: 2px 5px;
	}

	.dp-popular-premium .dp-tc-card:nth-child(n + 7) {
		display: none;
	}

	.dp-tc-category-name {
		right: 10px;
		bottom: 9px;
		left: 10px;
		font-size: 13px !important;
	}

	.dp-about-panel {
		padding: 28px 22px;
		border-radius: 19px;
	}

	.dp-about-panel h2 {
		font-size: 31px !important;
	}

	.dp-footer-inner {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 30px 20px;
		padding-top: 44px;
	}

	.dp-footer-brand {
		grid-column: 1 / -1;
	}

	.dp-footer-bottom {
		align-items: flex-start;
		flex-direction: column;
		gap: 10px;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}
}
