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

:root {
	--brand-start: #1e59cf;
	--brand-end: #1e6ecf;
	--text-primary: #ffffff;
	--text-secondary: #ffffff;
	--text-muted: #DEDEDE;
	--surface: rgba(255, 255, 255, 0.06);
	--surface-border: rgba(255, 255, 255, 0.1);
	--accent: rgba(255, 255, 255, 0.15);
}

body {
	font-family: -apple-system, "system-ui", "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
	background: var(--brand-start);
	color: var(--text-primary);
	min-height: 100vh;
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

a { color: var(--text-primary); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(255,255,255,0.35); transition: text-decoration-color 0.2s; }
a:hover { text-decoration-color: rgba(255,255,255,0.8); }

.page-header {
	text-align: center;
	padding: 3rem 1.5rem 2rem;
}

.logo-link {
	width: 300px;
	display: inline-block;
	text-decoration: none;
	margin-bottom: 1.5rem;
}

.page-header h1 {
	font-size: clamp(1.75rem, 4vw, 2.25rem);
	font-weight: 700;
	letter-spacing: -0.02em;
	margin-bottom: 0.35rem;
}

.page-header .updated {
	font-size: 0.85rem;
	color: var(--text-muted);
}

.content {
	max-width: 680px;
	margin: 0 auto;
	padding: 0 1.5rem 4rem;
}

.summary-card,
.disclaimer-card {
	background: var(--surface);
	border: 1px solid var(--surface-border);
	border-radius: 12px;
	padding: 1.25rem 1.5rem;
	margin-bottom: 2.5rem;
	color: var(--text-secondary);
	font-size: 0.95rem;
}

.section {
	margin-bottom: 2.25rem;
}

.section h2 {
	font-size: 1.15rem;
	font-weight: 900;
	letter-spacing: -0.01em;
	margin-bottom: 0.75rem;
	color: var(--text-primary);
}

.section-number {
	color: var(--text-muted);
	font-size: 0.8rem;
	font-weight: 500;
	display: block;
	margin-bottom: 0.15rem;
	letter-spacing: 0.02em;
}

.section h3 {
	font-size: 0.95rem;
	font-weight: 700;
	margin-top: 1.25rem;
	margin-bottom: 0.5rem;
	color: var(--text-secondary);
}

.section p {
	color: var(--text-secondary);
	font-size: 0.925rem;
	margin-bottom: 0.75rem;
}

.section ul {
	list-style: none;
	padding: 0;
	margin-bottom: 0.75rem;
}

.section ul li {
	position: relative;
	padding-left: 1.25rem;
	color: var(--text-secondary);
	font-size: 0.925rem;
	margin-bottom: 0.35rem;
}

.section ul li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.75em;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: rgba(255,255,255,0.6);
}

.not-collected-list {
	background: var(--surface);
	border: 1px solid var(--surface-border);
	border-radius: 10px;
	padding: 1rem 1.25rem !important;
}

.legal-caps {
	font-size: 0.85rem;
	color: var(--text-muted);
	line-height: 1.65;
	text-transform: uppercase;
	letter-spacing: 0.01em;
	background: var(--surface);
	border: 1px solid var(--surface-border);
	border-radius: 10px;
	padding: 1.15rem 1.35rem;
	margin-bottom: 0.75rem;
}

strong {
	color: var(--text-primary);
	font-weight: 600;
}

.divider {
	border: none;
	border-top: 1px solid var(--surface-border);
	margin: 2.5rem 0;
}

.contact-block {
	background: var(--surface);
	border: 1px solid var(--surface-border);
	border-radius: 12px;
	padding: 1.25rem 1.5rem;
	color: var(--text-secondary);
	font-size: 0.925rem;
}

.contact-block .label {
	font-weight: 600;
	color: var(--text-primary);
	font-size: 0.85rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	margin-bottom: 0.5rem;
}

.page-footer {
	text-align: center;
	padding: 2rem 1.5rem 3rem;
	color: var(--text-muted);
	font-size: 0.8rem;
}

.page-footer a { color: var(--text-muted); }

.nav-links {
	display: flex;
	gap: 1.5rem;
	justify-content: center;
	margin-bottom: 0.75rem;
	font-size: 0.825rem;
}

.nav-links a {
	color: var(--text-muted);
	text-decoration: none;
	transition: color 0.2s;
}
.nav-links a:hover { color: var(--text-primary); }

@media (max-width: 600px) {
	.content { padding: 0 1.25rem 3rem; }
	.summary-card, .disclaimer-card, .contact-block { padding: 1rem 1.15rem; }
	.legal-caps { padding: 1rem 1.1rem; font-size: 0.8rem; }
}
