/*
 * Rainverse Audio Player — CodePen "Pressure" style, themed to Rainverse.
 * Palette: primary #0946b6 · background #000118 · highlight #3b91f7
 */
.rainverse-audio-player {
	background: #000118;
	color: #fff;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	border: 1px solid rgba(59, 145, 247, 0.25);
	border-radius: 6px;
	padding: 14px 16px 12px;
	margin-bottom: 28px;
}

.rainverse-audio-player .rap-info {
	display: flex;
	align-items: baseline;
	gap: 8px;
	margin-bottom: 12px;
	white-space: nowrap;
	overflow: hidden;
}
.rainverse-audio-player .rap-title {
	font-size: 13px;
	font-weight: 600;
	color: #fff;
	overflow: hidden;
	text-overflow: ellipsis;
}
.rainverse-audio-player .rap-artist {
	font-size: 10px;
	color: #6b7a99;
	flex-shrink: 0;
}

.rainverse-audio-player .rap-controls {
	display: flex;
	align-items: center;
	gap: 8px;
}

.rainverse-audio-player .rap-btn {
	background: rgba(0, 0, 0, 0.55);
	color: #3b91f7;
	border: 0;
	border-radius: 5px;
	width: 40px;
	height: 32px;
	font-size: 15px;
	line-height: 1;
	cursor: pointer;
	transition: all 0.3s ease;
}
.rainverse-audio-player .rap-btn:hover {
	background: #0946b6;
	color: #fff;
}
.rainverse-audio-player .rap-play {
	width: 50px;
	height: 38px;
	font-size: 18px;
}

.rainverse-audio-player .rap-time {
	font-size: 11px;
	color: #fff;
	min-width: 92px;
	text-align: center;
	background: rgba(0, 0, 0, 0.55);
	border-radius: 5px;
	padding: 8px 10px;
	line-height: 1;
}
.rainverse-audio-player .rap-time .rap-total {
	color: #3b91f7;
}

.rainverse-audio-player .rap-seek-group {
	flex: 1;
	min-width: 80px;
}
.rainverse-audio-player .rap-seek {
	-webkit-appearance: none;
	appearance: none;
	width: 100%;
	height: 10px;
	background: rgba(59, 145, 247, 0.35);
	border: 1px solid rgba(59, 145, 247, 0.35);
	border-radius: 5px;
	outline: none;
	cursor: pointer;
}
.rainverse-audio-player .rap-seek::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #fff;
	border: 1px solid #000118;
	cursor: pointer;
}
.rainverse-audio-player .rap-seek::-moz-range-thumb {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #fff;
	border: 1px solid #000118;
	cursor: pointer;
}

.rainverse-audio-player .rap-right-group {
	display: flex;
	gap: 4px;
}

@media (max-width: 480px) {
	.rainverse-audio-player .rap-time {
		min-width: 0;
		padding: 8px 6px;
	}
}