.me-wrap { display:flex; justify-content:center; margin: 24px 0; }

.me-card {
	width: 100%;
	max-width: 420px;
	background: #14151a;
	color: #fff;
	border-radius: 18px;
	padding: 24px;
	box-shadow: 0 10px 40px rgba(0,0,0,.25);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	box-sizing: border-box;
}

.me-cover {
	width: 100%;
	aspect-ratio: 1 / 1;
	border-radius: 12px;
	overflow: hidden;
	margin-bottom: 16px;
	background: #222;
}
.me-cover img { width: 100%; height: 100%; object-fit: cover; display:block; -webkit-user-drag: none; }

.me-meta { text-align: center; margin-bottom: 20px; }
.me-title { margin: 0 0 4px; font-size: 20px; font-weight: 700; }
.me-artist { margin: 0; font-size: 14px; color: #b3b3b3; }
.me-year { color: #888; }

/* Gate (formulário) */
.me-lead { font-size: 13px; color: #c9c9c9; text-align: center; margin-bottom: 16px; line-height: 1.5; }
.me-step { display: flex; gap: 8px; }
.me-step-code { flex-wrap: wrap; }
.me-input {
	flex: 1;
	min-width: 0;
	padding: 12px 14px;
	border-radius: 10px;
	border: 1px solid #333;
	background: #1f2026;
	color: #fff;
	font-size: 15px;
}
.me-input:focus { outline: none; border-color: #6c5ce7; }
.me-code { letter-spacing: 6px; text-align: center; font-weight: 700; }

.me-btn {
	padding: 12px 18px;
	border-radius: 10px;
	border: none;
	background: #6c5ce7;
	color: #fff;
	font-weight: 600;
	font-size: 14px;
	cursor: pointer;
	white-space: nowrap;
	transition: background .15s ease, transform .1s ease;
}
.me-btn:hover { background: #5a4bd1; }
.me-btn:active { transform: scale(.97); }
.me-btn:disabled { opacity: .6; cursor: default; }

.me-link {
	background: none;
	border: none;
	color: #9d94f5;
	font-size: 13px;
	cursor: pointer;
	margin-top: 4px;
	text-decoration: underline;
	width: 100%;
	text-align: center;
}

.me-msg { min-height: 18px; font-size: 13px; text-align: center; margin: 10px 0 0; color: #ff8a8a; }
.me-msg.me-ok { color: #7ee08a; }

/* Player */
.me-player { margin-top: 4px; }
.me-controls { display: flex; align-items: center; gap: 14px; }

.me-play-btn {
	flex-shrink: 0;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: #6c5ce7;
	border: none;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background .15s ease;
}
.me-play-btn:hover { background: #5a4bd1; }

.me-progress-wrap { flex: 1; min-width: 0; }
.me-progress-bar {
	position: relative;
	width: 100%;
	height: 6px;
	border-radius: 4px;
	background: #333;
	cursor: pointer;
	overflow: hidden;
}
.me-progress-fill { position: absolute; left:0; top:0; height: 100%; width: 0%; background: #6c5ce7; border-radius: 4px; }
.me-time { display: flex; justify-content: space-between; font-size: 11px; color: #999; margin-top: 6px; }

@media (max-width: 480px) {
	.me-card { padding: 18px; border-radius: 14px; }
	.me-step { flex-direction: column; }
	.me-btn { width: 100%; }
}
