.mtv-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 16px;
	margin-bottom: 42px;
}

.mtv-header-left {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.mtv-brand {
	display: flex;
	align-items: center;
	gap: 10px;
}

.mtv-icon {
	width: 32px;
	height: 32px;
	object-fit: contain;
}

.mtv-title {
	font-size: 1em;
	font-weight: 500;
}

.mtv-score-row {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 16px;
	margin-top: 12px;
}

.mtv-score {
	font-size: 32px;
	font-weight: 700;
	line-height: 1;
}

.mtv-score span {
	font-size: 54px;
}

.mtv-stars {
	display: flex;
	gap: 3px;
	color: #f5a623;
	font-size: 1.2em;
}

.mtv-description {
	font-size: 0.85em;
	opacity: 0.6;
}

.button.videos {
	background: #CC29361A;
    color: #B6171E;
    text-transform: none;
    font-size: 18px;
    letter-spacing: 0;
    border-radius: 0px;
    border: 0px;
    padding: 9px 15px;
    margin-top: 20px;
	transition: background 0.2s ease, color 0.2s ease;
}

.button.videos:hover {
	background: #B6171E;
    color: #fff;
}