.gdla-audio-box {
	--gdla-button-bg: #2b84b9;
	--gdla-button-border: #1f6d9d;
	--gdla-button-hover: #246f9b;
	--gdla-button-hover-border: #1b5c81;
	--gdla-button-active: #195a7e;
	--gdla-button-active-border: #154a68;
	--gdla-button-fill: rgba(255, 255, 255, 0.22);
	--gdla-surface: #ffffff;
	--gdla-text: #172033;
	--gdla-muted: #667085;
	--gdla-ring: rgba(43, 132, 185, 0.22);
	display: none !important;
	margin: 10px 0;
	padding: 0;
	max-width: 360px;
}

.gdla-audio-box[hidden] {
	display: none !important;
}

.gdla-audio-box.gdla-audio-box-shortcode {
	display: block !important;
	width: 100%;
	max-width: none;
	margin: 24px 0;
}

.gdla-audio-box.gdla-audio-box-shortcode .gdla-player {
	border-radius: 32px !important;
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.99), rgba(244, 249, 252, 0.96)),
		radial-gradient(circle at 10% 0%, rgba(43, 132, 185, 0.18), transparent 34%) !important;
	box-shadow: 0 18px 42px rgba(15, 23, 42, 0.13) !important;
}

.gdla-audio-box.gdla-audio-box-shortcode .gdla-button-icon {
	width: 22px !important;
	height: 22px !important;
	font-size: 20px !important;
}

.gdla-audio-box.gdla-audio-box-shortcode .gdla-button-label {
	white-space: normal !important;
}

.gdla-audio-box.gdla-audio-box-shortcode .gdla-audio-wave {
	display: inline-flex !important;
}

.gdla-audio-box .gdla-player {
	position: relative !important;
	display: grid !important;
	gap: 7px !important;
	width: 100%;
	max-width: 560px !important;
	margin: 0 !important;
	padding: 8px;
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: 999px;
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 253, 0.94)),
		radial-gradient(circle at 12% 0%, rgba(43, 132, 185, 0.16), transparent 32%);
	box-shadow: 0 10px 24px rgba(15, 23, 42, 0.1);
	color: var(--gdla-text);
}

.gdla-audio-box.is-playing .gdla-player {
	border-color: rgba(43, 132, 185, 0.28);
	box-shadow: 0 12px 28px rgba(15, 23, 42, 0.14), 0 0 0 3px rgba(43, 132, 185, 0.16);
}

.gdla-audio-box .gdla-player-toolbar {
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	gap: 6px !important;
	flex-wrap: wrap !important;
}

.gdla-audio-box .gdla-language-switch {
	display: inline-flex !important;
	align-items: center !important;
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: 999px !important;
	background: rgba(15, 23, 42, 0.055) !important;
	box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.8);
}

.gdla-audio-box .gdla-language-switch {
	gap: 2px !important;
	padding: 3px !important;
}

.gdla-audio-box .gdla-speed-toggle {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	min-width: 38px !important;
	min-height: 34px !important;
	border: 1px solid rgba(15, 23, 42, 0.08) !important;
	border-radius: 999px !important;
	background: #ffffff !important;
	color: var(--gdla-text) !important;
	padding: 0 9px !important;
	font-size: 11px !important;
	font-weight: 900 !important;
	line-height: 1 !important;
	cursor: pointer !important;
	box-shadow: 0 5px 14px rgba(15, 23, 42, 0.12) !important;
	appearance: none !important;
	-webkit-appearance: none !important;
	transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.gdla-audio-box .gdla-speed-toggle:hover,
.gdla-audio-box.is-speed-open .gdla-speed-toggle {
	transform: translateY(-1px);
	box-shadow: 0 8px 18px rgba(15, 23, 42, 0.16) !important;
}

.gdla-audio-box .gdla-speed-control {
	position: relative !important;
	z-index: 30 !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
}

.gdla-audio-box .gdla-speed-switch {
	position: absolute !important;
	left: 50% !important;
	bottom: calc(100% - 2px) !important;
	z-index: 20 !important;
	display: grid !important;
	grid-template-columns: 1fr !important;
	gap: 4px !important;
	min-width: 82px !important;
	padding: 6px !important;
	border: 1px solid rgba(15, 23, 42, 0.1) !important;
	border-radius: 16px !important;
	background: #ffffff !important;
	box-shadow: 0 16px 38px rgba(15, 23, 42, 0.22) !important;
	opacity: 0 !important;
	pointer-events: none !important;
	transform: translate(-50%, 6px) scale(0.96) !important;
	transform-origin: bottom center;
	transition: opacity 0.16s ease, transform 0.16s ease;
}

.gdla-audio-box .gdla-speed-switch::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -7px;
	width: 30px;
	height: 8px;
	border-right: 1px solid rgba(15, 23, 42, 0.1);
	border-bottom: 1px solid rgba(15, 23, 42, 0.1);
	border-left: 1px solid rgba(15, 23, 42, 0.04);
	border-radius: 0 0 12px 12px;
	background: #ffffff;
	box-shadow: 0 10px 18px rgba(15, 23, 42, 0.08);
	transform: translateX(-50%);
}

.gdla-audio-box.is-speed-open .gdla-speed-switch {
	opacity: 1 !important;
	pointer-events: auto !important;
	transform: translate(-50%, 0) scale(1) !important;
}

.gdla-audio-box .gdla-lang-button,
.gdla-audio-box .gdla-speed-button {
	border: 0 !important;
	border-radius: 999px !important;
	background: transparent !important;
	color: inherit !important;
	cursor: pointer !important;
	line-height: 1 !important;
	text-decoration: none !important;
	appearance: none !important;
	-webkit-appearance: none !important;
	transition: transform 0.18s ease, background-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.gdla-audio-box .gdla-lang-button {
	padding: 6px 9px !important;
	font-size: 11px !important;
	font-weight: 800 !important;
	letter-spacing: 0.04em;
}

.gdla-audio-box .gdla-speed-button {
	padding: 5px 7px !important;
	font-size: 11px !important;
	font-weight: 800 !important;
}

.gdla-audio-box .gdla-lang-button:hover,
.gdla-audio-box .gdla-speed-button:hover {
	transform: translateY(-1px);
}

.gdla-audio-box .gdla-lang-button.is-active {
	background: #ffffff !important;
	color: var(--gdla-text) !important;
	box-shadow: 0 5px 14px rgba(15, 23, 42, 0.16) !important;
}

.gdla-audio-box .gdla-speed-button.is-active {
	background: var(--gdla-text) !important;
	color: #ffffff !important;
	box-shadow: 0 5px 14px rgba(15, 23, 42, 0.14) !important;
}

.gdla-audio-box .gdla-main-button,
.gdla-audio-box button.gdla-main-button,
.entry-content .gdla-audio-box .gdla-main-button {
	--gdla-progress: 0%;
	--gdla-current-bg: var(--gdla-button-bg);
	--gdla-current-border: var(--gdla-button-border);
	--gdla-current-shadow: 0 8px 18px rgba(15, 23, 42, 0.13);
	position: relative !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 100% !important;
	min-height: 42px !important;
	border: 1px solid var(--gdla-current-border) !important;
	border-radius: 999px !important;
	background: var(--gdla-current-bg) !important;
	background-color: var(--gdla-current-bg) !important;
	color: #ffffff !important;
	padding: 0 !important;
	font-size: 13px !important;
	font-weight: 800 !important;
	line-height: 1 !important;
	cursor: pointer !important;
	overflow: hidden !important;
	box-shadow: var(--gdla-current-shadow) !important;
	text-decoration: none !important;
	appearance: none !important;
	-webkit-appearance: none !important;
	touch-action: none !important;
	user-select: none !important;
	-webkit-user-select: none !important;
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease !important;
}

.gdla-audio-box .gdla-main-button:hover,
.gdla-audio-box .gdla-main-button:focus {
	--gdla-current-bg: var(--gdla-button-hover);
	--gdla-current-border: var(--gdla-button-hover-border);
	color: #ffffff !important;
	outline: none !important;
	text-decoration: none !important;
	transform: translateY(-1px);
}

.gdla-audio-box .gdla-main-button:focus-visible {
	box-shadow: var(--gdla-current-shadow), 0 0 0 4px var(--gdla-ring) !important;
}

.gdla-audio-box .gdla-main-button.is-active {
	--gdla-current-bg: var(--gdla-button-active);
	--gdla-current-border: var(--gdla-button-active-border);
	--gdla-current-shadow: 0 10px 22px rgba(15, 23, 42, 0.18), 0 0 0 3px rgba(43, 132, 185, 0.16);
	transform: translateY(-1px);
}

.gdla-audio-box .gdla-main-button.is-dragging {
	cursor: grabbing !important;
}

.gdla-audio-box .gdla-button-content {
	position: relative !important;
	z-index: 2 !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 7px !important;
	width: 100% !important;
	padding: 10px 14px !important;
	pointer-events: none !important;
}

.gdla-audio-box .gdla-button-label {
	flex: 1 1 auto;
	min-width: 0;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.gdla-audio-box .gdla-button-icon {
	width: 18px;
	height: 18px;
	font-size: 16px;
}

.gdla-audio-box .gdla-button-progress {
	position: absolute !important;
	inset: 0 !important;
	z-index: 1 !important;
	display: block !important;
	border-radius: inherit !important;
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
		rgba(255, 255, 255, 0.04) !important;
}

.gdla-audio-box .gdla-button-progress-fill {
	position: absolute !important;
	inset: 0 auto 0 0 !important;
	width: var(--gdla-progress, 0%) !important;
	border-radius: inherit !important;
	background: linear-gradient(90deg, var(--gdla-button-fill) 0%, rgba(255, 255, 255, 0.44) 100%) !important;
	transition: width 0.15s linear;
}

.gdla-audio-box .gdla-main-button.is-dragging .gdla-button-progress-fill {
	transition: none;
}

.gdla-audio-box .gdla-audio-wave {
	display: inline-flex !important;
	align-items: center !important;
	gap: 2px !important;
	height: 14px !important;
}

.gdla-audio-box .gdla-audio-wave span {
	display: block;
	width: 2px;
	height: 11px;
	border-radius: 99px;
	background: rgba(255, 255, 255, 0.92);
	transform: scaleY(0.45);
	transform-origin: center;
}

.gdla-audio-box .gdla-audio-wave span:nth-child(2) {
	height: 14px;
	animation-delay: 120ms !important;
}

.gdla-audio-box .gdla-audio-wave span:nth-child(3) {
	height: 9px;
	animation-delay: 240ms !important;
}

.gdla-audio-box .gdla-main-button.is-active .gdla-audio-wave span {
	animation: gdla-wave 720ms ease-in-out infinite !important;
}

.gdla-audio-box .gdla-player-meta {
	display: flex !important;
	justify-content: center !important;
	gap: 4px !important;
	padding: 0 4px !important;
	color: var(--gdla-muted) !important;
	font-size: 12px !important;
	font-weight: 800 !important;
	font-variant-numeric: tabular-nums;
}

.gdla-audio-box .gdla-time-separator {
	opacity: 0.65;
}

.gdla-audio-element,
.gdla-track-data[hidden],
.gdla-debug,
.gdla-help,
.gdla-status {
	display: none !important;
}

body.gdla-qr-intro-open,
.gdla-qr-intro-open {
	overflow: hidden !important;
}

body.gdla-qr-intro-open > *:not(.gdla-qr-intro) {
	filter: blur(2px) saturate(0.96) !important;
	pointer-events: none !important;
	user-select: none !important;
}

.gdla-qr-intro {
	position: fixed !important;
	inset: 0 !important;
	z-index: 2147483646 !important;
	display: grid !important;
	place-items: center !important;
	min-height: 100vh !important;
	padding: clamp(18px, 4vw, 48px) !important;
	overflow: hidden !important;
	isolation: isolate !important;
	color: #ffffff !important;
}

.gdla-qr-intro-bg,
.gdla-qr-intro-scrim {
	position: absolute !important;
	inset: 0 !important;
	z-index: -2 !important;
}

.gdla-qr-intro-bg {
	background-color: #172033 !important;
	background-image:
		linear-gradient(135deg, rgba(43, 132, 185, 0.18), rgba(15, 23, 42, 0.56)),
		var(--gdla-intro-image, radial-gradient(circle at 20% 16%, rgba(255, 255, 255, 0.22), transparent 28%)),
		radial-gradient(circle at 20% 16%, rgba(255, 255, 255, 0.22), transparent 28%) !important;
	background-position: center !important;
	background-size: cover !important;
	filter: blur(5px) saturate(1.04) contrast(1.02) !important;
	transform: scale(1.03) !important;
}

.gdla-qr-intro-scrim {
	z-index: -1 !important;
	background:
		linear-gradient(180deg, rgba(4, 10, 20, 0.16) 0%, rgba(4, 10, 20, 0.38) 48%, rgba(4, 10, 20, 0.66) 100%),
		radial-gradient(circle at 72% 22%, rgba(43, 132, 185, 0.2), transparent 34%) !important;
}

.gdla-qr-intro-card {
	width: min(520px, calc(100vw - 32px)) !important;
	margin: 0 auto !important;
	padding: clamp(16px, 3vw, 24px) !important;
	border: 1px solid rgba(255, 255, 255, 0.24) !important;
	border-radius: 26px !important;
	background: linear-gradient(145deg, rgba(9, 18, 34, 0.66), rgba(9, 18, 34, 0.42)) !important;
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.18) !important;
	backdrop-filter: blur(12px) saturate(1.12) !important;
	-webkit-backdrop-filter: blur(12px) saturate(1.12) !important;
	text-align: left !important;
	animation: gdla-intro-in 460ms cubic-bezier(0.2, 0.8, 0.2, 1) both !important;
}

.gdla-qr-intro-kicker {
	display: inline-flex !important;
	align-items: center !important;
	margin-bottom: 12px !important;
	padding: 8px 12px !important;
	border: 1px solid rgba(255, 255, 255, 0.24) !important;
	border-radius: 999px !important;
	background: rgba(255, 255, 255, 0.14) !important;
	color: rgba(255, 255, 255, 0.88) !important;
	font-size: 12px !important;
	font-weight: 900 !important;
	letter-spacing: 0.08em !important;
	line-height: 1 !important;
	text-transform: uppercase !important;
}

.gdla-qr-intro-card h1 {
	max-width: 520px !important;
	margin: 0 0 12px !important;
	color: #ffffff !important;
	font-size: clamp(28px, 7vw, 52px) !important;
	font-weight: 950 !important;
	line-height: 0.96 !important;
	letter-spacing: -0.06em !important;
	text-wrap: balance;
}

.gdla-qr-intro-card p {
	max-width: 440px !important;
	margin: 0 0 8px !important;
	color: rgba(255, 255, 255, 0.78) !important;
	font-size: clamp(13px, 2.4vw, 16px) !important;
	font-weight: 650 !important;
	line-height: 1.5 !important;
}

.gdla-qr-intro-hint {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	margin-top: 18px !important;
	min-height: 42px !important;
	padding: 12px 16px !important;
	border: 1px solid rgba(255, 255, 255, 0.22) !important;
	border-radius: 999px !important;
	background: rgba(255, 255, 255, 0.12) !important;
	color: rgba(255, 255, 255, 0.9) !important;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14) !important;
	font-size: 13px !important;
	font-weight: 900 !important;
	letter-spacing: 0.02em !important;
	line-height: 1 !important;
}

.gdla-qr-intro.is-leaving {
	pointer-events: none !important;
	animation: gdla-intro-out 340ms ease both !important;
}

@keyframes gdla-wave {
	0%,
	100% {
		transform: scaleY(0.45);
	}

	50% {
		transform: scaleY(1);
	}
}

@keyframes gdla-intro-in {
	from {
		opacity: 0;
		transform: translateY(18px) scale(0.98);
	}

	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

@keyframes gdla-intro-out {
	to {
		opacity: 0;
		transform: scale(1.02);
	}
}

@media (max-width: 767px) {
	body.gdla-audio-sticky-active {
		overflow-x: hidden !important;
		padding-bottom: calc(92px + env(safe-area-inset-bottom, 0px)) !important;
	}

	.gdla-audio-box {
		position: fixed !important;
		right: 6px !important;
		bottom: calc(1px + env(safe-area-inset-bottom, 0px)) !important;
		left: 6px !important;
		z-index: 2147483600 !important;
		display: block !important;
		box-sizing: border-box !important;
		width: auto !important;
		max-width: none !important;
		margin: 0 !important;
		padding: 0 !important;
	}

	.gdla-audio-box .gdla-player {
		display: grid !important;
		grid-template-columns: minmax(0, 1fr) auto !important;
		grid-template-areas:
			"lang speed"
			"main main" !important;
		align-items: center !important;
		box-sizing: border-box !important;
		min-width: 0 !important;
		overflow: visible !important;
		column-gap: 6px !important;
		row-gap: 5px !important;
		width: 100% !important;
		max-width: none !important;
		margin: 0 !important;
		padding: 7px !important;
		border-radius: 24px !important;
		background:
			linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(239, 246, 251, 0.92)),
			radial-gradient(circle at 8% 0%, rgba(43, 132, 185, 0.18), transparent 34%) !important;
		box-shadow: 0 16px 38px rgba(15, 23, 42, 0.18) !important;
	}

	.gdla-audio-box .gdla-player-toolbar {
		display: contents !important;
	}

	.gdla-audio-box .gdla-language-switch {
		grid-area: lang !important;
		justify-content: center !important;
		justify-self: start !important;
		gap: 1px !important;
		min-width: 0 !important;
		padding: 2px !important;
	}

	.gdla-audio-box .gdla-speed-switch {
		right: 0 !important;
		left: auto !important;
		bottom: calc(100% - 3px) !important;
		min-width: 82px !important;
		border-bottom-right-radius: 10px !important;
		transform: translateY(6px) scale(0.96) !important;
		transform-origin: bottom right !important;
	}

	.gdla-audio-box.is-speed-open .gdla-speed-switch {
		transform: translateY(0) scale(1) !important;
	}

	.gdla-audio-box .gdla-speed-switch::after {
		right: 8px;
		left: auto;
		bottom: -8px;
		width: 36px;
		transform: none;
	}

	.gdla-audio-box .gdla-speed-control {
		grid-area: speed !important;
		display: inline-flex !important;
		justify-self: end !important;
		width: 40px !important;
		min-width: 40px !important;
		visibility: visible !important;
		opacity: 1 !important;
	}

	.gdla-audio-box .gdla-speed-toggle {
		display: inline-flex !important;
		width: 40px !important;
		min-width: 40px !important;
		min-height: 38px !important;
		padding: 0 !important;
		border-top-left-radius: 14px !important;
		font-size: 11px !important;
		visibility: visible !important;
		opacity: 1 !important;
	}

	.gdla-audio-box .gdla-lang-button {
		padding: 6px !important;
		font-size: 10px !important;
	}

	.gdla-audio-box .gdla-main-button,
	.gdla-audio-box button.gdla-main-button,
	.entry-content .gdla-audio-box .gdla-main-button {
		grid-area: main !important;
		justify-self: stretch !important;
		box-sizing: border-box !important;
		width: 100% !important;
		min-width: 0 !important;
		max-width: 100% !important;
		min-height: 38px !important;
		font-size: 11px !important;
	}

	.gdla-audio-box .gdla-button-content {
		gap: 5px !important;
		min-width: 0 !important;
		padding: 8px 8px !important;
	}

	.gdla-audio-box .gdla-audio-wave {
		display: none !important;
	}

	.gdla-audio-box .gdla-button-icon {
		flex: 0 0 auto !important;
		width: 16px !important;
		height: 16px !important;
		font-size: 15px !important;
	}

	.gdla-audio-box .gdla-button-label {
		flex: 1 1 auto !important;
		min-width: 0 !important;
		overflow: hidden !important;
		max-width: 100% !important;
		white-space: nowrap !important;
		text-overflow: ellipsis !important;
		text-align: center !important;
		line-height: 1.1 !important;
	}

	.gdla-audio-box .gdla-player-meta {
		display: none !important;
	}

	.gdla-qr-intro {
		place-items: center !important;
		padding: 14px !important;
	}

	.gdla-qr-intro-card {
		width: min(500px, calc(100vw - 28px)) !important;
		border-radius: 24px !important;
		padding: 18px !important;
	}

	.gdla-qr-intro-card h1 {
		font-size: clamp(28px, 11vw, 46px) !important;
	}
}

@media (max-width: 360px) {
	.gdla-audio-box {
		right: 4px !important;
		left: 4px !important;
	}

	.gdla-audio-box .gdla-player {
		grid-template-columns: minmax(0, 1fr) 39px !important;
		column-gap: 3px !important;
		padding: 6px !important;
	}

	.gdla-audio-box .gdla-lang-button {
		padding: 6px !important;
		font-size: 9px !important;
	}

	.gdla-audio-box .gdla-speed-control,
	.gdla-audio-box .gdla-speed-toggle {
		width: 39px !important;
		min-width: 39px !important;
	}

	.gdla-audio-box .gdla-main-button,
	.gdla-audio-box button.gdla-main-button,
	.entry-content .gdla-audio-box .gdla-main-button {
		font-size: 11px !important;
	}

	.gdla-audio-box .gdla-button-content {
		gap: 4px !important;
		padding: 7px 6px !important;
	}
}
