body {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	justify-content: center;
	align-items: center;
}

.eMainPage {
	background: white;
	padding: 50px;
	border-radius: 30px;
	box-shadow: 0 20px 60px rgba(0,0,0,0.3);
	text-align: center;
	max-width: 600px;
	width: 90%;
}

.eMainPage h1 {
	color: #333;
	font-size: 36px;
	margin-bottom: 10px;
}

.eMainPage .vSubtitle {
	color: #666;
	font-size: 18px;
	margin-bottom: 40px;
	font-style: italic;
}

.eButtonsContainer {
	display: flex;
	gap: 20px;
	justify-content: center;
}

.eBoardButton {
	flex: 1;
	padding: 20px;
	border: none;
	border-radius: 15px;
	font-size: 18px;
	font-weight: bold;
	cursor: pointer;
	transition: transform 0.2s, box-shadow 0.2s;
	text-decoration: none;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
}

.eBoardButton.ordinary {
	background: #f0f0f0;
	color: #333;
}

.eBoardButton.shared {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
}

.eBoardButton:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.eBoardButton:active {
	transform: translateY(0);
}

.eBoardButton .vEmoji {
	font-size: 48px;
}

.eBoardButton .vTitle {
	font-size: 20px;
}

.eBoardButton .vDesc {
	font-size: 14px;
	opacity: 0.8;
}

