* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html, body {
	height: 100%;
	background: #0f0f0f;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
	color: #ffffff;
}

.site-logo {
	position: fixed;
	top: 20px;
	left: 20px;
	z-index: 1000;
	display: block;
	width: 50px;
	height: 50px;
	transition: opacity 0.2s ease;
}

.site-logo:hover {
	opacity: 0.8;
}

.site-logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

@media (max-width: 768px) {
	.site-logo {
		width: 40px;
		height: 40px;
		top: 15px;
		left: 15px;
	}
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 40px 20px;
}

h1 {
	font-size: 2.5rem;
	margin-bottom: 40px;
	text-align: center;
	color: #ffffff;
	font-weight: 700;
}

.auth-required {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 60px 20px;
	text-align: center;
}

.auth-required p {
	font-size: 1.25rem;
	color: #b0b0b0;
	margin-bottom: 30px;
}

.login-button {
	display: inline-block;
	padding: 12px 32px;
	background: #ffffff;
	color: #0f0f0f;
	text-decoration: none;
	font-weight: 600;
	font-size: 1rem;
	border-radius: 6px;
	transition: all 0.2s ease;
	border: 2px solid #ffffff;
}

.login-button:hover {
	background: transparent;
	color: #ffffff;
	transform: translateY(-2px);
}