body {
	font-family: Arial, sans-serif;
	text-align: center;
	background-color: #f4f4f4;
	padding: 20px;
}

.container {
	max-width: 600px;
	margin: auto;
	background: #ffffff;
	padding: 20px;
	border-radius: 12px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

header {
	margin-bottom: 16px;
}

header h1 {
	margin: 0 0 8px 0;
}

header p {
	margin: 0 0 16px 0;
	color: #555555;
}

/* search input removed */

.list {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 10px;
}

.sound-button {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px 12px;
	font-size: 16px;
	background: #007BFF;
	color: #ffffff;
	border-radius: 10px;
	cursor: pointer;
	user-select: none;
	transition: transform 0.05s ease, background 0.3s ease;
}

.sound-button:hover {
	background: #0056b3;
}

.sound-button:active {
	transform: translateY(1px);
}

.sound-button.active {
	background: #28a745;
}

.progress-bar {
	position: absolute;
	bottom: 0;
	left: 0;
	height: 5px;
	width: 100%;
	background: rgba(255, 255, 255, 0.25);
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}

.progress {
	height: 100%;
	width: 0%;
	background: #ffffff;
	transition: width 0.1s linear;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}

.ads-container {
	margin-top: 40px;
}

.guide {
	text-align: left;
	margin: 16px auto 0 auto;
	max-width: 600px;
	padding-left: 18px;
}

.guide li {
	margin-bottom: 6px;
}

footer {
	margin-top: 28px;
	text-align: center;
	font-size: 14px;
	color: #555555;
}

footer a {
	margin: 0 10px;
	text-decoration: none;
	color: inherit;
}

footer a:hover {
	opacity: 0.8;
}

footer img {
	width: 24px;
	height: 24px;
	vertical-align: middle;
	margin-right: 6px;
}

