* {
		margin: 0;
		padding: 0;
		box-sizing: border-box;
	}
	
	body,
	html {
		width: 100%;
		height: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
		background-color: black;
		cursor: none;
		overflow: hidden;
		font-family: Arial, sans-serif;
	}
	
	#videoContainer {
		position: relative;
		width: 100%;
		height: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
		overflow: hidden;
	}
	
	video {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	
	.location {
		position: absolute;
		bottom: 100px;
		left: 50%;
		transform: translateX(-50%);
		color: rgba(255, 255, 255, 1);
		font-size: 15px;
		background: rgba(255, 255, 255, 0.1);
		backdrop-filter: blur(10px);
		padding: 10px;
		border-radius: 10px;
		font-family: Arial, sans-serif;
		opacity: 0.5;
		transition: opacity 0.5s ease, transform 0.5s ease;
		border-top: 1px solid rgba(255, 255, 255, 0.2);
		border-left: 1px solid rgba(255, 255, 255, 0.2);
		box-shadow: 0 4px 20px rgba(132, 132, 132, 0.2);
	}
	
	.location:hover {
		opacity: 1;
		background: rgba(0, 255, 0, 0.1);
		transform: translateX(-50%) scale(1.02);
		color: rgba(0, 255, 0, 1);
	}
	
	.controls-area {
		position: absolute;
		bottom: 32px;
		left: 50%;
		transform: translateX(-50%);
		width: 66.67%;
		height: 48px;
		background: rgba(0, 255, 0, 0.1);
		backdrop-filter: blur(10px);
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 0 16px;
		border-radius: 10px;
		transition: opacity 0.3s ease, transform 0.3s ease;
		border-top: 1px solid rgba(0, 255, 0, 0.2);
		border-left: 1px solid rgba(0, 255, 0, 0.2);
		box-shadow: 0 4px 20px rgba(0, 128, 0, 0.2);
	}
	
	.controls-area:hover {
		opacity: 1;
		background: rgba(0, 255, 0, 0.2);
		transform: translateX(-50%) scale(1.02);
	}
	
	.progress-container {
		flex-grow: 1;
		height: 5px;
		margin: 0 16px;
		background: rgba(0, 255, 0, 0.3);
		border-radius: 5px;
		box-shadow: 0 0 5px rgba(0, 255, 0, 0.3);
	}
	
	.progress-bar-container {
		width: 0;
		height: 100%;
		background-color: rgba(0, 255, 0, 1);
		transition: width 0.1s ease;
		box-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
		border-radius: 5px;
	}
	
	#musicButton {
		background: none;
		border: none;
		color: rgba(0, 255, 0, 1);
		font-size: 18px;
		cursor: pointer;
		padding: 5px;
		margin: 0 10px;
		transition: all 0.1s ease;
		text-shadow: 0 0 5px rgba(0, 255, 0, 0.5);
	}
	
	#musicButton:hover {
		transform: scale(1.2);
		text-shadow: 0 0 10px rgba(0, 255, 0, 0.8);
	}
	
	.time {
		color: rgba(0, 255, 0, 1);
		font-size: 14px;
		margin: 0 16px;
		text-shadow: 0 0 5px rgba(0, 255, 0, 0.5);
	}
	
	.notification {
		position: fixed;
		top: 16px;
		left: 50%;
		transform: translateX(-50%);
		color: rgba(0, 255, 0, 1);
		opacity: 1;
		background: rgba(0, 255, 0, 0.2);
		font-size: 14px;
		padding: 10px;
		border-radius: 10px;
		font-family: Arial, sans-serif;
		backdrop-filter: blur(10px);
		transition: visibility 0s, opacity 0.5s ease, transform 0.5s ease;
		border-top: 1px solid rgba(0, 255, 0, 0.2);
		border-left: 1px solid rgba(0, 255, 0, 0.2);
		box-shadow: 0 4px 20px rgba(0, 128, 0, 0.2);
		visibility: hidden;
		text-shadow: 0 0 5px rgba(0, 255, 0, 0.5);
	}
	
	.centered-notification {
		position: fixed;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		background: rgba(0, 255, 0, 0.1);
		color: rgba(0, 255, 0, 1);
		font-size: 16px;
		padding: 20px 40px;
		text-shadow: 0 0 5px rgba(0, 255, 0, 0.5);
		border-radius: 10px;
		backdrop-filter: blur(10px);
		visibility: hidden;
		white-space: pre-wrap;
		transition: opacity 0.5s ease, visibility 0.5s;
		opacity: 1;    
		border-top: 1px solid rgba(255, 255, 255, 0.2);
		border-left: 1px solid rgba(255, 255, 255, 0.2);
		box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
		line-height: 1.5;
	}
	
	.card {
		position: fixed;
		justify-content: center;
		align-items: center;
		padding: 32px;
		border-radius: 10px;
		display: flex;
		flex-direction: column;
		transition: all 0.3s ease;
		background: rgba(255, 255, 255, 0.1);
		border-top: 1px solid rgba(255, 255, 255, 0.2);
		border-left: 1px solid rgba(255, 255, 255, 0.2);
		box-shadow: 0 4px 20px rgba(132, 132, 132, 0.2);
		backdrop-filter: blur(10px);
		color: rgba(255, 255, 255, 1);
		font-size: 19px;
		line-height: 1.5;
	}
	
	.card-content {
		text-align: left;
		white-space: pre-line;
		margin-top: -22px;
	}
	
	.card:hover {
		transform: translateY(-5px) translateX(5px);
	}
	
	.y2k-element {
		position: absolute;
		background: linear-gradient(90deg, rgba(0, 255, 255, 1), rgba(0, 255, 0, 1));
		opacity: 0.2;
		border-radius: 50%;
	}
	
	.y2k-element:nth-child(1) {
		width: 50px;
		height: 50px;
		top: -25px;
		left: -25px;
	}
	
	.y2k-element:nth-child(2) {
		width: 30px;
		height: 30px;
		bottom: -15px;
		right: -15px;
	}
	
	@keyframes float {
		0%, 100% { transform: translateY(0); }
		50% { transform: translateY(-10px); }
	}