@charset "utf-8";
 :root {
	--bg-color: #121212;
	--card-bg: #181818;
	--accent-color: #f0c808;
	--text-main: #eaeaea;
	--text-muted: #a0a0a0;
	--border-color: #282828;
}
* {
box-sizing: border-box;
}
body {
	margin: 0;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
	background: var(--bg-color);
	color: var(--text-main);
	line-height: 1.6;
}
a {
	color: var(--accent-color);
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
}
h1, h2, h3 {
	font-weight: 600;
	margin-top: 0;
}
h1 {
	font-size: 2.5rem;
}
h2 {
	font-size: 2rem;
	color: var(--accent-color);
	margin-bottom: 24px;
}
h3 {
	font-size: 1.2rem;
	color: #fff;
	margin-bottom: 8px;
}
.container {
	max-width: 1080px;
	margin: 0 auto;
	padding: 60px 20px;
}
.hero {
	min-height: 80vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background: radial-gradient(circle at top, #1f1f1f, #0f0f0f);
	background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1519681393784-d120267933ba') center/cover no-repeat;
	border-bottom: 1px solid var(--border-color);
}
.hero-subtitle {
	font-size: 1.2rem;
	color: var(--text-muted);
	max-width: 600px;
	margin: 20px auto 40px;
}
.hero-buttons {
	display: flex;
	gap: 16px;
	justify-content: center;
}
.btn {
	padding: 10px 20px;
	border-radius: 30px;
	text-decoration: none;
	color: #fff;
	border: 1px solid rgba(255,255,255,0.2);
	transition: 0.3s;
}
.btn:hover {
	background: rgba(255,255,255,0.1);
	text-decoration: none;
}
section {
	border-bottom: 1px solid var(--border-color);
}
.grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 20px;
	margin-top: 24px;
}
.card {
	background: var(--card-bg);
	border: 1px solid var(--border-color);
	border-radius: 8px;
	padding: 24px;
	display: flex;
	flex-direction: column;
}
.card-full {
	grid-column: 1 / -1;
}
.badge {
	display: inline-block;
	align-self: flex-start;
	padding: 4px 10px;
	border-radius: 4px;
	background: rgba(240, 200, 8, 0.15);
	color: var(--accent-color);
	font-size: 0.85rem;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 12px;
}
.media-block {
	text-align: center;
	margin-bottom: 24px;
}
.media-block img {
	max-width: 100%;
	height: auto;
	border-radius: 6px;
}
ul {
	margin: 0;
	padding-left: 20px;
	color: var(--text-muted);
}
li {
	margin-bottom: 8px;
}
li strong {
	color: var(--text-main);
}
.divider {
	text-align: center;
	padding: 60px 20px;
	font-size: 1.3rem;
	font-style: italic;
	color: var(--text-muted);
	background: #2f1218;
}
footer {
	padding: 40px 20px;
	text-align: center;
	font-size: 0.9rem;
	color: var(--text-muted);
}