/* ONOC Podcast Player */
.onoc-player {
	background: #1a1a2e;
	border-radius: 12px;
	padding: 20px 24px;
	margin: 24px 0;
	color: #fff;
	font-family: inherit;
}

.onoc-player__controls {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}

/* Play/Pause Button */
.onoc-player__play {
	background: #e94560;
	border: none;
	border-radius: 50%;
	width: 44px;
	height: 44px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: background 0.2s, transform 0.1s;
	color: #fff;
	padding: 0;
}
.onoc-player__play:hover { background: #c73652; transform: scale(1.05); }
.onoc-player__play svg { width: 18px; height: 18px; }

/* Time display */
.onoc-player__time {
	font-size: 13px;
	font-variant-numeric: tabular-nums;
	color: #aaa;
	min-width: 36px;
	text-align: center;
	flex-shrink: 0;
	white-space: nowrap;
}

/* Progress bar */
.onoc-player__progress-wrap {
	flex: 1;
	min-width: 80px;
	padding: 10px 0;
	cursor: pointer;
}
.onoc-player__progress-bar {
	position: relative;
	height: 4px;
	background: #333;
	border-radius: 2px;
}
.onoc-player__progress-fill {
	height: 100%;
	background: #e94560;
	border-radius: 2px;
	width: 0%;
	transition: width 0.1s linear;
	pointer-events: none;
}
.onoc-player__progress-handle {
	position: absolute;
	top: 50%;
	left: 0%;
	transform: translate(-50%, -50%);
	width: 14px;
	height: 14px;
	background: #fff;
	border-radius: 50%;
	opacity: 0;
	transition: opacity 0.15s;
	pointer-events: none;
}
.onoc-player__progress-wrap:hover .onoc-player__progress-handle { opacity: 1; }

/* Volume */
.onoc-player__volume-wrap {
	display: flex;
	align-items: center;
	gap: 6px;
	flex-shrink: 0;
	color: #aaa;
}
.onoc-player__volume {
	-webkit-appearance: none;
	appearance: none;
	width: 64px;
	height: 4px;
	background: #333;
	border-radius: 2px;
	cursor: pointer;
	accent-color: #e94560;
	outline: none;
}
.onoc-player__volume::-webkit-slider-thumb {
	-webkit-appearance: none;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: #e94560;
	cursor: pointer;
}

/* Speed buttons */
.onoc-player__speed-wrap {
	display: flex;
	gap: 4px;
	flex-shrink: 0;
}
.onoc-player__speed-btn {
	background: transparent;
	border: 1px solid #444;
	border-radius: 4px;
	color: #aaa;
	font-size: 11px;
	padding: 3px 6px;
	cursor: pointer;
	transition: all 0.15s;
	line-height: 1.4;
}
.onoc-player__speed-btn:hover,
.onoc-player__speed-btn.active {
	background: #e94560;
	border-color: #e94560;
	color: #fff;
}

/* Download button */
.onoc-player__download {
	color: #aaa;
	text-decoration: none;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	transition: color 0.15s;
}
.onoc-player__download:hover { color: #fff; }

/* Responsive */
@media (max-width: 600px) {
	.onoc-player { padding: 14px 16px; }
	.onoc-player__controls { gap: 8px; }
	.onoc-player__speed-wrap { order: 10; width: 100%; justify-content: flex-start; margin-top: 4px; }
	.onoc-player__volume-wrap { display: none; }
}

/* Video Embed */
.onoc-video-embed {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	height: 0;
	overflow: hidden;
	margin: 24px 0;
}
.onoc-video-embed iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}
