body {
	margin: 0;
	padding: 0;
	background-color: #000000;
	color: #00B4ff;
	font-family: Arial, sans-serif;
}

h1 {
	text-align: center;
	font-size: 1.8em;
}

.video-container {
	height: calc(100vh - 120px);
	width: calc((100vh - 120px) * 16 / 9);
	max-width: 98vw;
	border: 1px solid #00B4ff;
	border-radius: 8px;
	margin: 0 auto;
	position: relative;
}

video {
	height: 100%;
	width: 100%;
	border-radius: 8px;
}

.status {
	color: #00B4ff;
	font-size: 14px;
	margin: 5px 10px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: absolute;
	bottom: -30px;
	right: 0px;
    left: 0px;
}

.viewer-counter {
	display: flex;
	align-items: center;
	gap: 8px;
}

.red-circle {
	width: 12px;
	height: 12px;
	background-color: #ff0000;
	border-radius: 50%;
	animation: blink 1s infinite;
}

@keyframes blink {
	0% { opacity: 1; }
	50% { opacity: 0.3; }
	100% { opacity: 1; }
}

.viewer-count {
	color: #ff0000;
	font-weight: bold;
}

.logo {
	width: 24px;
	height: 24px;
	margin-right: 10px;
}