* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	background: linear-gradient(135deg, #0f0f0f 0%, #1a1a2e 100%);
	color: #ffffff;
	overflow-x: hidden;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Header */
header {
	padding: 20px 0;
	background: rgba(15, 15, 15, 0.9);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(255, 107, 0, 0.2);
}

nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	font-size: 28px;
	font-weight: bold;
	background: linear-gradient(135deg, #ff6b00 0%, #ff9500 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.nav-links {
	display: flex;
	gap: 30px;
	list-style: none;
}

.nav-links a {
	color: #ffffff;
	text-decoration: none;
	transition: color 0.3s;
}

.nav-links a:hover {
	color: #ff6b00;
}

/* Footer */
footer {
	background: #0a0a0a;
	padding: 40px 0;
	text-align: center;
	border-top: 1px solid rgba(255, 107, 0, 0.2);
}

footer p {
	color: #666;
}
