.video-wrap {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
	background: #000;
}

video {
	width: 100%;
	height: 100%;
	object-fit: contain; /* 改成 cover 可滿版裁切 */
	display: block;
	background: #000;
}

.mute-btn {
	position: absolute;
	left: 12px;
	bottom: 12px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 10px 12px;
	border: none;
	border-radius: 999px;
	background: transparent;
	color: #fff;
	font-size: 18px;
	cursor: pointer;
	user-select: none;
/*	backdrop-filter: blur(4px);*/
}

.mute-btn:focus-visible {
	outline: 2px solid #7dd3fc;
	outline-offset: 2px;
}

.ticketLinks{
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
}
.ticketLinks a {
    color: white;
}
.ticketLinksBtn{
	padding: 10px 2vw;
	background-color: #0e0e0e96;
	color: white;
	border: none;
	cursor: pointer;
	border-radius: 5px;
/*	font-size: min(3.5vw,25px);*/
	font-size: 20px;
}
#ticketPreorder{
		display: block;
	}
@media screen and (max-width:896px){ 
	.video-wrap {
		height: 350px;
	}
	video {
	    position: absolute;
	    top: 50%;
	    left: 50%;
	    width: auto;
	    height: 100%;
	    transform: translate(-50%, -50%); /* 完整置中 */
  	}
  	.ticketLinksBtn{
		  font-size: 15px;
  	}
}
@media screen and (max-width:450px){ 
	#ticketPreorder{
		display: none;
	}  

}