
.bottom-gradient-container {
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100vw;
	display: flex;
	justify-content: center;
	z-index: 10;
	pointer-events: none;
}

.main-content {
	width: 100vw;
	max-width: 100vw;
	margin: 0;
	padding: 2rem 0;
	border-radius: 0;
	color: #fff;
	text-align: center;
	box-shadow: 0 8px 32px 0 rgba(0,0,0,0.37);
	background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
	pointer-events: auto;
}

@media (max-width: 800px) {
	.main-content {
		padding: 1.2rem 0.2rem;
	}
}

body {
	margin: 0;
	padding: 0;
	min-height: 100vh;
	font-family: 'Segoe UI', Arial, sans-serif;
	background: url('../static/bg.jpg') no-repeat center center fixed;
	background-size: cover;
}

.navbar {
	width: 100%;
	background: rgba(0, 0, 0, 0.7);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.navbar-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0.5rem 2rem;
}

.navbar-logo {
	display: flex;
	align-items: center;
	text-decoration: none;
}

.navbar-logo-img {
	height: 40px;
	width: auto;
	display: block;
}

.navbar-menu {
	list-style: none;
	display: flex;
	gap: 2rem;
	margin: 0;
	padding: 0;
}

.navbar-menu li a {
	color: #fff;
	text-decoration: none;
	font-size: 1rem;
	transition: color 0.2s;
}

.navbar-menu li a:hover {
	color: #ffd700;
}

.main-content {
	padding-top: 100px;
	text-align: center;
	color: #fff;
	text-shadow: 0 2px 8px rgba(0,0,0,0.7);
}
