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

body {
	background: #1e1e1e;
	color: #e0e0e0;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
	line-height: 1.6;
}

header {
	background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
	color: #ecf0f1;
	padding: 1.5rem 2rem;
	box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
}

header h1 {
	font-size: 2rem;
	font-weight: 600;
	letter-spacing: 1px;
	margin: 0;
}

.header-buttons {
	display: flex;
	gap: 1rem;
	align-items: center;
}

.new-member-btn {
	background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
	color: #ffffff;
	text-decoration: none;
	padding: 0.6rem 1.2rem;
	border-radius: 6px;
	font-size: 0.95rem;
	font-weight: 600;
	transition: all 0.2s ease;
	border: 2px solid rgba(52, 152, 219, 0.5);
	white-space: nowrap;
}

.new-member-btn:hover {
	background: linear-gradient(135deg, #2980b9 0%, #1f618d 100%);
	border-color: #3498db;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(52, 152, 219, 0.4);
}

.admin-btn {
	background: rgba(236, 240, 241, 0.1);
	color: #ecf0f1;
	text-decoration: none;
	padding: 0.6rem 1rem;
	border-radius: 6px;
	font-size: 1.2rem;
	transition: all 0.2s ease;
	border: 2px solid transparent;
}

.admin-btn:hover {
	background: rgba(236, 240, 241, 0.2);
	border-color: rgba(236, 240, 241, 0.3);
	transform: translateY(-1px);
}

nav {
	margin-top: 1rem;
	display: flex;
	gap: 1.5rem;
}

nav a {
	color: #ecf0f1;
	text-decoration: none;
	padding: 0.5rem 1rem;
	border-radius: 4px;
	transition: background 0.3s ease;
}

nav a:hover {
	background: rgba(236, 240, 241, 0.1);
}

nav a.active {
	background: rgba(52, 152, 219, 0.7);
	color: #ffffff;
	box-shadow: 0 2px 8px rgba(52, 152, 219, 0.4);
	font-weight: 600;
}

main {
	max-width: 1400px;
	margin: 2rem auto;
	padding: 0 2rem;
	min-height: calc(100vh - 400px);
}

footer {
	background: #1a1a1a;
	border-top: 1px solid #333;
	padding: 2rem;
	margin-top: 3rem;
	text-align: center;
}

.github-link {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	color: #95a5a6;
	text-decoration: none;
	padding: 0.8rem 1.5rem;
	border-radius: 6px;
	transition: all 0.3s ease;
	border: 1px solid #444;
	font-weight: 500;
}

.github-link:hover {
	color: #ecf0f1;
	border-color: #95a5a6;
	background: rgba(149, 165, 166, 0.1);
	transform: translateY(-2px);
}

.github-icon {
	width: 20px;
	height: 20px;
}