* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body {
	font-family: 'Segoe UI', Arial, Helvetica, sans-serif;
	font-size: 15px;
	line-height: 1.6;
	color: #4a4a4a;
	background: #E9EBE5;
	min-height: 100vh;
	position: relative;
	overflow-x: hidden;
}
body::before {
	content: '';
	position: fixed;
	top: -50%;
	right: -20%;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(255,210,24,0.15) 0%, transparent 70%);
	border-radius: 50%;
	animation: float1 20s ease-in-out infinite;
	z-index: 0;
}
body::after {
	content: '';
	position: fixed;
	bottom: -30%;
	left: -10%;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(13,92,255,0.08) 0%, transparent 70%);
	border-radius: 50%;
	animation: float2 25s ease-in-out infinite;
	z-index: 0;
}
@keyframes float1 {
	0%, 100% { transform: translate(0, 0); }
	50% { transform: translate(-60px, 80px); }
}
@keyframes float2 {
	0%, 100% { transform: translate(0, 0); }
	50% { transform: translate(50px, -60px); }
}
header {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	padding: 30px 40px;
	max-width: 960px;
	margin: 0 auto;
}
header img {
	height: 60px;
	width: auto;
}
nav {
	display: flex;
	gap: 6px;
	flex-wrap: wrap;
}
nav a, nav span.active {
	display: inline-block;
	padding: 10px 18px;
	font-size: 13px;
	text-decoration: none;
	color: #2b2b29;
	background: rgba(213,217,206,0.7);
	backdrop-filter: blur(4px);
	transition: all 0.3s ease;
	border-radius: 3px;
}
nav a:hover {
	background: rgba(255,210,24,0.85);
	color: #2b2b29;
	transform: translateY(-1px);
}
nav span.active {
	background: rgba(255,210,24,0.85);
	color: #0d5cff;
	font-weight: bold;
}
main {
	position: relative;
	z-index: 1;
	max-width: 960px;
	margin: 0 auto;
	padding: 40px 40px 80px;
}
main h1 {
	font-size: 24px;
	color: #2b2b29;
	margin-bottom: 20px;
	letter-spacing: -0.3px;
}
main p {
	margin-bottom: 14px;
}
main > ul {
	margin: 20px 0 20px 0;
	list-style: none;
}
main > ul > li {
	margin-bottom: 20px;
	padding: 18px 22px;
	background: rgba(255,255,255,0.45);
	backdrop-filter: blur(6px);
	border-left: 3px solid #ffd218;
	border-radius: 4px;
	transition: background 0.3s ease;
}
main > ul > li:hover {
	background: rgba(255,255,255,0.65);
}
main > ul > li ul {
	margin: 8px 0 0 20px;
}
main > ul > li li {
	margin-bottom: 4px;
}
main strong {
	color: #2b2b29;
}
main u {
	text-decoration: none;
	font-weight: bold;
	color: #2b2b29;
	font-size: 16px;
}
a.inline {
	color: #336699;
	text-decoration: none;
	border-bottom: 1px dotted #336699;
	transition: color 0.2s;
}
a.inline:hover {
	color: #0d5cff;
}
footer {
	position: relative;
	z-index: 1;
	max-width: 960px;
	margin: 0 auto;
	padding: 20px 40px;
	font-size: 12px;
	color: #998f8f;
	border-top: 1px solid rgba(213,217,206,0.6);
	text-align: center;
}
.hero {
	text-align: center;
	padding: 80px 40px 40px;
}
.hero h1 {
	font-size: 32px;
	margin-bottom: 12px;
}
.hero p {
	font-size: 17px;
	color: #6b6b6b;
	max-width: 560px;
	margin: 0 auto;
}
