:root {
	--bg: #0a0d12;
	--bg-elevated: #121820;
	--surface: #181f28;
	--border: #273241;
	--gold: #d4af37;
	--gold-soft: #e8c96a;
	--red: #9b1c31;
	--text: #eef2f7;
	--text-muted: #8b9aab;
	--success: #3ecf7a;
	--danger: #f07171;
	--radius: 12px;
	--shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
	font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
	background: var(--bg);
	background-image:
		radial-gradient(ellipse 80% 50% at 90% -10%, rgba(155, 28, 49, 0.18), transparent),
		radial-gradient(ellipse 60% 40% at 0% 100%, rgba(212, 175, 55, 0.08), transparent);
	color: var(--text);
	line-height: 1.6;
	min-height: 100vh;
}

a { color: var(--gold-soft); text-decoration: none; }
a:hover { color: #fff; }

.container {
	width: min(1120px, calc(100% - 32px));
	margin: 0 auto;
}

/* Header */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(10, 13, 18, 0.92);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--border);
}

.site-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 14px 0;
}

.brand {
	display: flex;
	align-items: center;
	gap: 12px;
	color: #fff;
	font-weight: 700;
	font-size: 1.05rem;
}

.brand img {
	width: 42px;
	height: 42px;
	border-radius: 8px;
}

.brand-name {
	line-height: 1.2;
}

.site-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 18px;
	align-items: center;
}

.site-nav a {
	color: var(--text-muted);
	font-size: 0.92rem;
	font-weight: 500;
}

.site-nav a:hover { color: var(--gold-soft); }

.site-nav a.nav-fivem {
	color: #88c999;
	border: 1px solid rgba(136, 201, 153, 0.35);
	padding: 6px 12px;
	border-radius: 6px;
}

.site-nav a.nav-fivem:hover {
	background: rgba(43, 122, 62, 0.2);
	color: #fff;
}

.site-nav a.nav-zombie {
	color: #6fcf7a;
	border: 1px solid rgba(70, 156, 88, 0.35);
	padding: 6px 12px;
	border-radius: 6px;
}

.site-nav a.nav-zombie:hover {
	background: rgba(70, 156, 88, 0.2);
	color: #fff;
}

/* Hero */
.hero {
	padding: 72px 0 48px;
}

.hero-grid {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 32px;
	align-items: start;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 12px;
	border-radius: 999px;
	background: rgba(212, 175, 55, 0.12);
	border: 1px solid rgba(212, 175, 55, 0.25);
	color: var(--gold-soft);
	font-size: 0.82rem;
	font-weight: 600;
	margin-bottom: 18px;
}

.hero h1 {
	font-size: clamp(2rem, 5vw, 3.2rem);
	line-height: 1.1;
	margin-bottom: 14px;
}

.hero h1 span { color: var(--gold); }

.hero-lead {
	color: var(--text-muted);
	font-size: 1.08rem;
	max-width: 54ch;
	margin-bottom: 28px;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 22px;
}

.btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 20px;
	border-radius: 10px;
	font-weight: 600;
	font-size: 0.95rem;
	border: 1px solid transparent;
	cursor: pointer;
	transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
	background: linear-gradient(135deg, var(--red), #c4243d);
	color: #fff;
}

.btn-primary:hover { color: #fff; }

.btn-gold {
	background: rgba(212, 175, 55, 0.15);
	border-color: rgba(212, 175, 55, 0.35);
	color: var(--gold-soft);
}

.btn-ghost {
	background: var(--surface);
	border-color: var(--border);
	color: var(--text);
}

.btn-openmp {
	background: linear-gradient(135deg, #1a6fd4, #0d4a94);
	border-color: rgba(90, 160, 255, 0.4);
	color: #fff;
	box-shadow: 0 8px 24px rgba(26, 111, 212, 0.25);
}

.btn-openmp:hover {
	color: #fff;
	background: linear-gradient(135deg, #2a7fe4, #1a5aa4);
}

.ip-box {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	padding: 12px 14px;
	background: var(--bg-elevated);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	font-family: Consolas, monospace;
	font-size: 0.92rem;
}

/* Status card */
.status-card {
	background: var(--bg-elevated);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	overflow: hidden;
}

.status-card-head {
	padding: 18px 20px;
	border-bottom: 1px solid var(--border);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.status-card-head h2 {
	font-size: 1rem;
	font-weight: 600;
}

.status-pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 5px 10px;
	border-radius: 999px;
	font-size: 0.78rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.status-pill.online {
	background: rgba(62, 207, 122, 0.15);
	color: var(--success);
}

.status-pill.offline {
	background: rgba(240, 113, 113, 0.15);
	color: var(--danger);
}

.status-pill .dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: currentColor;
}

.status-card-body { padding: 20px; }

.stat-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin-bottom: 16px;
}

.stat-box {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 10px;
	padding: 14px;
}

.stat-box .label {
	font-size: 0.78rem;
	color: var(--text-muted);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 4px;
}

.stat-box .value {
	font-size: 1.35rem;
	font-weight: 700;
}

.status-meta {
	font-size: 0.88rem;
	color: var(--text-muted);
}

.status-meta strong { color: var(--text); }

/* Sections */
.section {
	padding: 56px 0;
}

.section-title {
	font-size: 1.6rem;
	margin-bottom: 10px;
}

.section-lead {
	color: var(--text-muted);
	margin-bottom: 28px;
	max-width: 60ch;
}

.feature-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}

.feature-card {
	background: var(--bg-elevated);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 22px;
}

.feature-card .icon {
	width: 40px;
	height: 40px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(212, 175, 55, 0.12);
	color: var(--gold);
	font-size: 1.1rem;
	margin-bottom: 14px;
}

.feature-card h3 {
	font-size: 1.05rem;
	margin-bottom: 8px;
}

.feature-card p {
	color: var(--text-muted);
	font-size: 0.92rem;
}

.openmp-box {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 24px;
	padding: 20px 22px;
	background: linear-gradient(135deg, rgba(26, 111, 212, 0.12), rgba(13, 74, 148, 0.08));
	border: 1px solid rgba(90, 160, 255, 0.25);
	border-radius: var(--radius);
}

.openmp-box h3 {
	font-size: 1.1rem;
	margin-bottom: 6px;
}

.openmp-box p {
	color: var(--text-muted);
	font-size: 0.94rem;
	max-width: 640px;
}

.openmp-notice {
	margin-bottom: 28px;
	padding: 14px 18px;
	background: rgba(255, 193, 7, 0.08);
	border: 1px solid rgba(255, 193, 7, 0.28);
	border-radius: var(--radius);
	font-size: 0.9rem;
}

.openmp-notice strong {
	display: block;
	margin-bottom: 6px;
	color: #e8c547;
	font-size: 0.95rem;
}

.openmp-notice p {
	margin: 0;
	color: var(--text-muted);
	line-height: 1.55;
}

.section-fivem {
	padding-top: 0;
}

.fivem-box {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 24px 26px;
	background: linear-gradient(135deg, rgba(43, 122, 62, 0.14), rgba(18, 18, 18, 0.4));
	border: 1px solid rgba(136, 201, 153, 0.28);
	border-radius: var(--radius);
}

.fivem-badge {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: #88c999;
	margin-bottom: 8px;
}

.fivem-box h2 {
	font-size: 1.35rem;
	margin-bottom: 8px;
}

.fivem-box p {
	color: var(--text-muted);
	font-size: 0.94rem;
	max-width: 640px;
}

.fivem-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.btn-fivem {
	background: linear-gradient(135deg, #2b7a3e, #1f5c2e);
	border-color: rgba(136, 201, 153, 0.4);
	color: #fff;
	box-shadow: 0 8px 24px rgba(43, 122, 62, 0.25);
}

.btn-fivem:hover {
	color: #fff;
	background: linear-gradient(135deg, #35964d, #2b7a3e);
}

.section-zombie {
	padding-top: 0;
}

.zombie-box {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 24px 26px;
	background: linear-gradient(135deg, rgba(70, 156, 88, 0.12), rgba(231, 76, 60, 0.06));
	border: 1px solid rgba(70, 156, 88, 0.28);
	border-radius: var(--radius);
}

.zombie-badge {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: #6fcf7a;
	margin-bottom: 8px;
}

.zombie-box h2 {
	font-size: 1.35rem;
	margin-bottom: 8px;
}

.zombie-box p {
	color: var(--text-muted);
	font-size: 0.94rem;
	max-width: 640px;
}

.zombie-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.btn-zombie {
	background: linear-gradient(135deg, #469c58, #2d6b3a);
	border-color: rgba(111, 207, 122, 0.4);
	color: #fff;
	box-shadow: 0 8px 24px rgba(70, 156, 88, 0.22);
}

.btn-zombie:hover {
	color: #fff;
	background: linear-gradient(135deg, #52b366, #469c58);
}

.steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}

.step {
	background: var(--bg-elevated);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 20px;
}

.step-num {
	display: inline-block;
	width: 28px;
	height: 28px;
	line-height: 28px;
	text-align: center;
	border-radius: 8px;
	background: var(--red);
	color: #fff;
	font-weight: 700;
	font-size: 0.85rem;
	margin-bottom: 12px;
}

.step h3 { font-size: 1rem; margin-bottom: 8px; }
.step p { color: var(--text-muted); font-size: 0.9rem; }

.cta-band {
	margin: 0 0 56px;
	padding: 32px;
	border-radius: var(--radius);
	background: linear-gradient(135deg, rgba(155, 28, 49, 0.25), rgba(212, 175, 55, 0.08));
	border: 1px solid var(--border);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.cta-band h2 { font-size: 1.4rem; margin-bottom: 6px; }
.cta-band p { color: var(--text-muted); }

/* Footer */
.site-footer {
	border-top: 1px solid var(--border);
	background: var(--bg-elevated);
	padding: 24px 0;
	margin-top: 20px;
}

.footer-inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	font-size: 0.88rem;
	color: var(--text-muted);
}

.footer-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 16px;
}

@media (max-width: 900px) {
	.hero-grid { grid-template-columns: 1fr; }
	.feature-grid { grid-template-columns: 1fr 1fr; }
	.steps { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
	.site-header-inner { flex-direction: column; align-items: flex-start; }
	.feature-grid, .steps { grid-template-columns: 1fr; }
	.stat-row { grid-template-columns: 1fr; }
}
