/* Dreams AI — Presentation Builder (modern AI theme) */

body.dreams-ai-presentation-builder-page {
	margin: 0;
	min-height: 100vh;
	font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	color: #e8eef9;
	background: #05070f;
	-webkit-font-smoothing: antialiased;
}

body.dreams-ai-presentation-builder-page #wpadminbar,
body.dreams-ai-presentation-builder-page .site-header,
body.dreams-ai-presentation-builder-page #site-header,
body.dreams-ai-presentation-builder-page #masthead,
body.dreams-ai-presentation-builder-page .elementor-location-header,
body.dreams-ai-presentation-builder-page header:not(.dai-pb__topbar),
body.dreams-ai-presentation-builder-page footer,
body.dreams-ai-presentation-builder-page .site-footer,
body.dreams-ai-presentation-builder-page #site-footer,
body.dreams-ai-presentation-builder-page #colophon,
body.dreams-ai-presentation-builder-page .elementor-location-footer,
body.dreams-ai-presentation-builder-page .breadcrumb-bar,
body.dreamsai-hide-site-header-footer header:not(.dai-pb__topbar),
body.dreamsai-hide-site-header-footer .site-header,
body.dreamsai-hide-site-header-footer #site-header,
body.dreamsai-hide-site-header-footer #masthead,
body.dreamsai-hide-site-header-footer .elementor-location-header,
body.dreamsai-hide-site-header-footer footer,
body.dreamsai-hide-site-header-footer .site-footer,
body.dreamsai-hide-site-header-footer #site-footer,
body.dreamsai-hide-site-header-footer #colophon,
body.dreamsai-hide-site-header-footer .elementor-location-footer,
body.dreamsai-hide-site-header-footer .breadcrumb-bar,
body:has(.dai-pb) header:not(.dai-pb__topbar),
body:has(.dai-pb) .site-header,
body:has(.dai-pb) #site-header,
body:has(.dai-pb) #masthead,
body:has(.dai-pb) .elementor-location-header,
body:has(.dai-pb) footer,
body:has(.dai-pb) .site-footer,
body:has(.dai-pb) #site-footer,
body:has(.dai-pb) #colophon,
body:has(.dai-pb) .elementor-location-footer,
body:has(.dai-pb) .breadcrumb-bar {
	display: none !important;
}

.dai-pb {
	--pb-bg: #05070f;
	--pb-surface: rgba(14, 20, 36, 0.72);
	--pb-surface-2: rgba(22, 30, 52, 0.85);
	--pb-border: rgba(255, 255, 255, 0.08);
	--pb-border-focus: rgba(124, 92, 255, 0.55);
	--pb-text: #e8eef9;
	--pb-muted: #8b9bb8;
	--pb-accent: #7c5cff;
	--pb-accent-2: #ff6b4a;
	--pb-gradient: linear-gradient(135deg, #5711f6 0%, #9614eb 42%, #ff1ade 100%);
	--pb-radius: 20px;
	--pb-radius-lg: 28px;
	--pb-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
	min-height: 100vh;
	position: relative;
	overflow-x: hidden;
	padding: clamp(16px, 4vw, 48px);
	box-sizing: border-box;
}

.dai-pb *,
.dai-pb *::before,
.dai-pb *::after {
	box-sizing: border-box;
}

/* Ambient background */
.dai-pb__ambient {
	position: fixed;
	inset: 0;
	pointer-events: none;
	z-index: 0;
	overflow: hidden;
}

.dai-pb__orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	opacity: 0.55;
	animation: dai-pb-float 18s ease-in-out infinite;
}

.dai-pb__orb--1 {
	width: min(520px, 70vw);
	height: min(520px, 70vw);
	top: -12%;
	left: -8%;
	background: radial-gradient(circle, rgba(255, 107, 74, 0.35), transparent 70%);
}

.dai-pb__orb--2 {
	width: min(480px, 65vw);
	height: min(480px, 65vw);
	right: -10%;
	top: 20%;
	background: radial-gradient(circle, rgba(124, 92, 255, 0.4), transparent 70%);
	animation-delay: -6s;
}

.dai-pb__orb--3 {
	width: min(360px, 50vw);
	height: min(360px, 50vw);
	bottom: -8%;
	left: 30%;
	background: radial-gradient(circle, rgba(56, 189, 248, 0.2), transparent 70%);
	animation-delay: -12s;
}

.dai-pb__grid {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
	background-size: 48px 48px;
	mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 20%, transparent 75%);
}

@keyframes dai-pb-float {
	0%, 100% { transform: translate(0, 0) scale(1); }
	50% { transform: translate(12px, -18px) scale(1.05); }
}

.dai-pb__shell {
	position: relative;
	z-index: 1;
	max-width: 1180px;
	margin: 0 auto;
}

/* Top bar */
.dai-pb__topbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: clamp(24px, 5vw, 40px);
	flex-wrap: wrap;
	background: none;
    border-bottom: none;
}

.dai-pb__back {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 16px;
	border-radius: 999px;
	border: 1px solid var(--pb-border);
	background: var(--pb-surface);
	color: var(--pb-text);
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	backdrop-filter: blur(12px);
	transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.dai-pb__back:hover {
	border-color: rgba(255, 255, 255, 0.18);
	background: var(--pb-surface-2);
	color: #fff;
	transform: translateY(-1px);
}

.dai-pb__topbar-pill {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px 16px;
	border-radius: 999px;
	border: 1px solid rgba(124, 92, 255, 0.25);
	background: rgba(124, 92, 255, 0.12);
	font-size: 13px;
	font-weight: 600;
	color: #c4b5fd;
}

.dai-pb__pulse {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #a78bfa;
	box-shadow: 0 0 12px #7c5cff;
	animation: dai-pb-pulse 2s ease-in-out infinite;
}

@keyframes dai-pb-pulse {
	0%, 100% { opacity: 1; transform: scale(1); }
	50% { opacity: 0.5; transform: scale(1.35); }
}

/* Two-column layout */
.dai-pb__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
	gap: clamp(24px, 4vw, 48px);
	align-items: start;
	margin-bottom: clamp(32px, 6vw, 56px);
}

/* Intro column */
.dai-pb__badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 14px;
	margin-bottom: 20px;
	border-radius: 999px;
	border: 1px solid rgba(255, 138, 76, 0.25);
	background: rgba(255, 107, 74, 0.1);
	font-size: 13px;
	font-weight: 600;
	color: #ffc9a8;
}

.dai-pb__badge svg {
	color: #ff9f6b;
}

.dai-pb__title {
	margin: 0 0 16px;
	font-size: clamp(2rem, 5.5vw, 3.25rem);
	line-height: 1.08;
	font-weight: 800;
	letter-spacing: -0.04em;
	color: #fff;
}

.dai-pb__title-gradient {
	display: block;
	background: var(--pb-gradient);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.dai-pb__lead {
	margin: 0 0 28px;
	max-width: 42ch;
	font-size: clamp(1rem, 2.2vw, 1.125rem);
	line-height: 1.65;
	color: var(--pb-muted);
}

.dai-pb__stats {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.dai-pb__stats li {
	flex: 1 1 90px;
	min-width: 90px;
	padding: 16px 18px;
	border-radius: var(--pb-radius);
	border: 1px solid var(--pb-border);
	background: var(--pb-surface);
	backdrop-filter: blur(12px);
}

.dai-pb__stats strong {
	display: block;
	font-size: 1.35rem;
	font-weight: 800;
	color: #fff;
	line-height: 1.2;
}

.dai-pb__stats span {
	display: block;
	margin-top: 4px;
	font-size: 12px;
	color: var(--pb-muted);
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

/* Form card */
.dai-pb__card {
	padding: clamp(20px, 4vw, 32px);
	border-radius: var(--pb-radius-lg);
	border: 1px solid var(--pb-border);
	background: var(--pb-surface-2);
	backdrop-filter: blur(20px);
	box-shadow: var(--pb-shadow);
}

.dai-pb__card-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 24px;
}

.dai-pb__card-head h2 {
	margin: 0;
	font-size: 1.125rem;
	font-weight: 700;
	color: #fff;
}

.dai-pb__reset {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 14px;
	border: 1px solid var(--pb-border);
	border-radius: 999px;
	background: transparent;
	color: var(--pb-muted);
	font: inherit;
	font-size: 13px;
	cursor: pointer;
	transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.dai-pb__reset:hover {
	color: #fff;
	border-color: rgba(255, 255, 255, 0.2);
	background: rgba(255, 255, 255, 0.04);
}

.dai-pb__field {
	margin-bottom: 20px;
}

.dai-pb__field label {
	display: block;
	margin-bottom: 8px;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #a8b8d8;
}

.dai-pb__textarea-wrap textarea {
	width: 100%;
	min-height: 140px;
	padding: 16px 18px;
	border: 1px solid var(--pb-border);
	border-radius: var(--pb-radius);
	background: rgba(8, 12, 24, 0.65);
	color: var(--pb-text);
	font: inherit;
	font-size: 15px;
	line-height: 1.55;
	resize: vertical;
	transition: border-color 0.2s, box-shadow 0.2s;
}

.dai-pb__textarea-wrap textarea::placeholder {
	color: #5c6b88;
}

.dai-pb__textarea-wrap textarea:focus {
	outline: none;
	border-color: var(--pb-border-focus);
	box-shadow: 0 0 0 3px rgba(124, 92, 255, 0.2);
}

.dai-pb__textarea-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: 8px;
	flex-wrap: wrap;
}

.dai-pb__hint {
	font-size: 12px;
	color: var(--pb-muted);
}

.dai-pb__count {
	font-size: 12px;
	color: #6b7a96;
	font-variant-numeric: tabular-nums;
}

/* Prompt chips */
.dai-pb__chips {
	margin-bottom: 22px;
}

.dai-pb__chips-label {
	display: block;
	margin-bottom: 10px;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--pb-muted);
}

.dai-pb__chips-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.dai-pb__chip {
	padding: 8px 14px;
	border-radius: 999px;
	border: 1px solid var(--pb-border);
	background: rgba(255, 255, 255, 0.03);
	color: #b8c5de;
	font: inherit;
	font-size: 12px;
	line-height: 1.35;
	text-align: left;
	cursor: pointer;
	transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.dai-pb__chip:hover,
.dai-pb__chip.is-active {
	border-color: rgba(124, 92, 255, 0.45);
	background: rgba(124, 92, 255, 0.15);
	color: #fff;
}

/* Controls row */
.dai-pb__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-bottom: 24px;
}

.dai-pb__select {
	position: relative;
}

.dai-pb__select select {
	width: 100%;
	appearance: none;
	padding: 14px 40px 14px 16px;
	border: 1px solid var(--pb-border);
	border-radius: var(--pb-radius);
	background: rgba(8, 12, 24, 0.65);
	color: var(--pb-text);
	font: inherit;
	font-size: 15px;
	cursor: pointer;
	transition: border-color 0.2s, box-shadow 0.2s;
}

.dai-pb__select::after {
	content: "";
	position: absolute;
	right: 16px;
	top: 50%;
	width: 8px;
	height: 8px;
	border-right: 2px solid var(--pb-muted);
	border-bottom: 2px solid var(--pb-muted);
	transform: translateY(-65%) rotate(45deg);
	pointer-events: none;
}

.dai-pb__select select:focus {
	outline: none;
	border-color: var(--pb-border-focus);
	box-shadow: 0 0 0 3px rgba(124, 92, 255, 0.2);
}

/* Submit */
.dai-pb__actions {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.dai-pb__submit {
	position: relative;
	width: 100%;
	min-height: 56px;
	padding: 0 24px;
	border: none;
	border-radius: 999px;
	background: var(--pb-gradient);
	color: #fff;
	font: inherit;
	font-size: 16px;
	font-weight: 700;
	cursor: pointer;
	overflow: hidden;
	transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
	box-shadow: 0 12px 40px rgba(124, 92, 255, 0.35);
}

.dai-pb__submit:hover:not(:disabled) {
	transform: translateY(-2px);
	box-shadow: 0 16px 48px rgba(124, 92, 255, 0.45);
}

.dai-pb__submit:disabled {
	opacity: 0.75;
	cursor: wait;
}

.dai-pb__submit.is-loading .dai-pb__submit-inner {
	opacity: 0;
}

.dai-pb__submit-inner {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.dai-pb__submit-loader {
	display: none;
	position: absolute;
	inset: 0;
	align-items: center;
	justify-content: center;
}

.dai-pb__submit.is-loading .dai-pb__submit-loader {
	display: flex;
}

.dai-pb__submit-loader::after {
	content: "";
	width: 22px;
	height: 22px;
	border: 2px solid rgba(255, 255, 255, 0.35);
	border-top-color: #fff;
	border-radius: 50%;
	animation: dai-pb-spin 0.7s linear infinite;
}

@keyframes dai-pb-spin {
	to { transform: rotate(360deg); }
}

.dai-pb__kbd-hint {
	margin: 0;
	text-align: center;
	font-size: 12px;
	color: var(--pb-muted);
}

.dai-pb__kbd-hint kbd {
	display: inline-block;
	padding: 2px 6px;
	border-radius: 6px;
	border: 1px solid var(--pb-border);
	background: rgba(0, 0, 0, 0.25);
	font-size: 11px;
	font-family: inherit;
}

.dai-pb__message {
	margin: 16px 0 0;
	padding: 12px 16px;
	border-radius: 12px;
	font-size: 14px;
	line-height: 1.45;
}

.dai-pb__message:empty {
	display: none;
}

.dai-pb__message.is-error {
	background: rgba(239, 68, 68, 0.12);
	border: 1px solid rgba(239, 68, 68, 0.3);
	color: #fecaca;
}

.dai-pb__message.is-success {
	background: rgba(34, 197, 94, 0.12);
	border: 1px solid rgba(34, 197, 94, 0.3);
	color: #bbf7d0;
}

.dai-pb__message.is-info {
	background: rgba(124, 92, 255, 0.12);
	border: 1px solid rgba(124, 92, 255, 0.25);
	color: #ddd6fe;
}

/* Features */
.dai-pb__features {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

.dai-pb__feature {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 20px;
	border-radius: var(--pb-radius);
	border: 1px solid var(--pb-border);
	background: var(--pb-surface);
	backdrop-filter: blur(12px);
	transition: border-color 0.25s, transform 0.25s;
}

.dai-pb__feature:hover {
	border-color: rgba(124, 92, 255, 0.3);
	transform: translateY(-3px);
}

.dai-pb__feature-icon {
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 14px;
	font-size: 20px;
	background: linear-gradient(135deg, rgba(255, 107, 74, 0.2), rgba(124, 92, 255, 0.25));
}

.dai-pb__feature strong {
	display: block;
	margin-bottom: 4px;
	font-size: 15px;
	color: #fff;
}

.dai-pb__feature p {
	margin: 0;
	font-size: 13px;
	line-height: 1.5;
	color: var(--pb-muted);
}

/* Responsive */
@media (max-width: 960px) {
	.dai-pb__layout {
		grid-template-columns: 1fr;
	}

	.dai-pb__intro {
		text-align: center;
	}

	.dai-pb__lead {
		margin-left: auto;
		margin-right: auto;
	}

	.dai-pb__stats {
		justify-content: center;
	}

	.dai-pb__stats li {
		flex: 1 1 100px;
		max-width: 140px;
	}
}

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

	.dai-pb__features {
		grid-template-columns: 1fr;
	}

	.dai-pb__chip {
		font-size: 11px;
		padding: 7px 12px;
	}

	.dai-pb__topbar {
		flex-direction: column;
		align-items: stretch;
	}

	.dai-pb__topbar-pill {
		justify-content: center;
	}

	.dai-pb__kbd-hint {
		display: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	.dai-pb__orb,
	.dai-pb__pulse,
	.dai-pb__submit-loader::after {
		animation: none;
	}

	.dai-pb__submit:hover:not(:disabled),
	.dai-pb__feature:hover,
	.dai-pb__back:hover {
		transform: none;
	}
}

.dai-pb__field--checkbox {
	margin-bottom: 24px;
}

.dai-pb__checkbox-label {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 15px;
	font-weight: 500;
	color: var(--pb-text);
	cursor: pointer;
	user-select: none;
}

.dai-pb__checkbox-label input[type="checkbox"] {
	appearance: none;
	width: 20px;
	height: 20px;
	border: 1px solid var(--pb-border);
	border-radius: 6px;
	background: rgba(8, 12, 24, 0.65);
	cursor: pointer;
	position: relative;
	transition: background 0.2s, border-color 0.2s;
}

.dai-pb__checkbox-label input[type="checkbox"]:checked {
	background: var(--pb-accent);
	border-color: var(--pb-accent);
}

.dai-pb__checkbox-label input[type="checkbox"]:checked::after {
	content: "✓";
	position: absolute;
	color: #fff;
	font-size: 13px;
	font-weight: 900;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.dai-pb__checkbox-label input[type="checkbox"]:focus {
	outline: none;
	border-color: var(--pb-border-focus);
	box-shadow: 0 0 0 3px rgba(124, 92, 255, 0.2);
}

/* ================= LOGIN PROMPT STYLES ================= */
.dai-login-prompt-wrapper {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at top right, #1a0b2e 0%, #0a1128 50%, #050a1a 100%);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    z-index: 999999;
}
.dai-login-prompt-wrapper::before,
.dai-login-prompt-wrapper::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    animation: floatOrb 10s infinite ease-in-out alternate;
}
.dai-login-prompt-wrapper::before {
    background: rgba(122, 19, 240, 0.15);
    top: -100px;
    right: -100px;
}
.dai-login-prompt-wrapper::after {
    background: rgba(255, 26, 222, 0.15);
    bottom: -100px;
    left: -100px;
    animation-delay: -5s;
}
@keyframes floatOrb {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-30px, 50px) scale(1.1); }
}

.dai-login-prompt-box {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 0;
    text-align: center;
    min-width: 380px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255,255,255,0.1);
    overflow: hidden;
    transform: translateY(20px);
    opacity: 0;
    animation: slideUpFade 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes slideUpFade {
    to { transform: translateY(0); opacity: 1; }
}

.dai-login-prompt-header {
    padding: 30px 30px 0;
    border-bottom: none;
}
.dai-login-prompt-title {
    background: linear-gradient(135deg, #a755ff 0%, #ff42e6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    font-size: 24px;
    margin: 0;
    letter-spacing: -0.5px;
}
.dai-login-prompt-body {
    padding: 20px 30px 40px;
}
.dai-login-prompt-text {
    color: #e2e8f0;
    font-size: 16px;
    font-weight: 400;
    margin: 0 0 30px 0;
    line-height: 1.6;
}
.dai-login-prompt-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}
.dai-btn-login {
    color: #ffffff;
    background: linear-gradient(135deg, #7a13f0 0%, #a755ff 100%);
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(122, 19, 240, 0.4);
    border: 1px solid rgba(255,255,255,0.1);
}
.dai-btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(122, 19, 240, 0.6);
    color: #ffffff;
    background: linear-gradient(135deg, #8b2df2 0%, #b36bf5 100%);
}
.dai-btn-register {
    color: #ffffff;
    background: rgba(255,255,255,0.05);
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}
.dai-btn-register:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-2px);
    border-color: rgba(255,255,255,0.3);
    color: #ffffff;
}
.dai-login-prompt-footer {
    margin-top: 25px;
    text-align: center;
}
.dai-btn-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
}
.dai-btn-back:hover {
    color: #ffffff;
    transform: translateX(-3px);
}
.dai-btn-back svg {
    transition: transform 0.3s ease;
}
.dai-btn-back:hover svg {
    transform: translateX(-2px);
}

/* ================= LIGHT MODE OVERRIDE & VISIBILITY FIXES ================= */
.dai-pb {
	background-color: #05070f !important;
	color: #e8eef9 !important;
	border-radius: 24px;
	position: relative;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.dai-pb h1.dai-pb__title,
.dai-pb .dai-pb__title {
	color: #ffffff !important;
}

.dai-pb p.dai-pb__lead,
.dai-pb .dai-pb__lead {
	color: #94a3b8 !important;
}

.dai-pb .dai-pb__badge {
	color: #ffc9a8 !important;
	background: rgba(255, 107, 74, 0.15) !important;
	border-color: rgba(255, 138, 76, 0.3) !important;
}

.dai-pb .dai-pb__topbar-pill {
	color: #c4b5fd !important;
	background: rgba(124, 92, 255, 0.15) !important;
	border-color: rgba(124, 92, 255, 0.3) !important;
}

.dai-pb a.dai-pb__back,
.dai-pb .dai-pb__back {
	color: #e2e8f0 !important;
	background: rgba(15, 23, 42, 0.8) !important;
	border-color: rgba(255, 255, 255, 0.15) !important;
}

.dai-pb a.dai-pb__back:hover,
.dai-pb .dai-pb__back:hover {
	color: #ffffff !important;
	background: rgba(30, 41, 59, 0.9) !important;
	border-color: rgba(255, 255, 255, 0.25) !important;
}

.dai-pb .dai-pb__card {
	background: rgba(15, 23, 42, 0.85) !important;
	border-color: rgba(255, 255, 255, 0.12) !important;
	color: #f8fafc !important;
	box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5) !important;
}

.dai-pb .dai-pb__card-head h2 {
	color: #ffffff !important;
}

.dai-pb button.dai-pb__reset,
.dai-pb .dai-pb__reset {
	color: #94a3b8 !important;
	border-color: rgba(255, 255, 255, 0.15) !important;
}

.dai-pb button.dai-pb__reset:hover,
.dai-pb .dai-pb__reset:hover {
	color: #ffffff !important;
	background: rgba(255, 255, 255, 0.08) !important;
	border-color: rgba(255, 255, 255, 0.25) !important;
}

.dai-pb .dai-pb__field label {
	color: #cbd5e1 !important;
}

.dai-pb .dai-pb__textarea-wrap textarea {
	background: rgba(2, 6, 23, 0.8) !important;
	color: #f8fafc !important;
	border-color: rgba(255, 255, 255, 0.15) !important;
}

.dai-pb .dai-pb__textarea-wrap textarea::placeholder {
	color: #64748b !important;
}

.dai-pb .dai-pb__textarea-wrap textarea:focus {
	border-color: rgba(124, 92, 255, 0.6) !important;
	box-shadow: 0 0 0 3px rgba(124, 92, 255, 0.25) !important;
}

.dai-pb .dai-pb__hint,
.dai-pb .dai-pb__count {
	color: #94a3b8 !important;
}

.dai-pb .dai-pb__chips-label {
	color: #cbd5e1 !important;
}

.dai-pb button.dai-pb__chip,
.dai-pb .dai-pb__chip {
	background: rgba(255, 255, 255, 0.06) !important;
	color: #e2e8f0 !important;
	border-color: rgba(255, 255, 255, 0.12) !important;
}

.dai-pb button.dai-pb__chip:hover,
.dai-pb button.dai-pb__chip.is-active,
.dai-pb .dai-pb__chip:hover,
.dai-pb .dai-pb__chip.is-active {
	background: rgba(124, 92, 255, 0.25) !important;
	color: #ffffff !important;
	border-color: rgba(124, 92, 255, 0.5) !important;
}

.dai-pb .dai-pb__select select {
	background: rgba(2, 6, 23, 0.8) !important;
	color: #f8fafc !important;
	border-color: rgba(255, 255, 255, 0.15) !important;
}

.dai-pb .dai-pb__select select option {
	background: #0f172a !important;
	color: #f8fafc !important;
}

.dai-pb .dai-pb__stats li {
	background: rgba(15, 23, 42, 0.8) !important;
	border-color: rgba(255, 255, 255, 0.12) !important;
}

.dai-pb .dai-pb__stats strong {
	color: #ffffff !important;
}

.dai-pb .dai-pb__stats span {
	color: #94a3b8 !important;
}

.dai-pb .dai-pb__feature {
	background: rgba(15, 23, 42, 0.75) !important;
	border-color: rgba(255, 255, 255, 0.12) !important;
}

.dai-pb .dai-pb__feature strong {
	color: #ffffff !important;
}

.dai-pb .dai-pb__feature p {
	color: #94a3b8 !important;
}

.dai-pb .dai-pb__kbd-hint {
	color: #94a3b8 !important;
}

.dai-pb .dai-pb__kbd-hint kbd {
	background: rgba(2, 6, 23, 0.7) !important;
	color: #e2e8f0 !important;
	border-color: rgba(255, 255, 255, 0.15) !important;
}

