/* Ricoshot legal pages (privacy, terms) — same dark "facility" palette as
   the landing page (site.css) and Hall of Fame (hof.css), but no animated
   canvas or bouncing title: this is a document, keep it readable. */

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

body {
	background: #141417;
	color: #e8e8e4;
	font-family: "Verdana", "DejaVu Sans", sans-serif;
	line-height: 1.6;
}

header {
	text-align: center;
	padding: 40px 16px 16px;
}
header h1 {
	font-size: 34px;
	letter-spacing: 2px;
	color: #d51616;
	text-shadow: -2px -2px 0 #000, 2px -2px 0 #000, -2px 2px 0 #000, 2px 2px 0 #000;
}
header h2 {
	margin-top: 8px;
	font-size: 17px;
	font-weight: normal;
	color: #b8b8b4;
	letter-spacing: 1px;
}
header .updated {
	margin-top: 10px;
	font-size: 12.5px;
	color: #6f6f68;
}

article {
	max-width: 640px;
	margin: 0 auto;
	padding: 8px 20px 40px;
}
article h3 {
	margin-top: 28px;
	margin-bottom: 8px;
	font-size: 17px;
	color: #f0f0ea;
}
article p, article li {
	font-size: 15px;
	color: #cfcfc9;
	margin-bottom: 10px;
}
article ul { padding-left: 20px; margin-bottom: 10px; }
article a { color: #e05555; }
article a:hover { color: #ff8080; }

nav.back {
	text-align: center;
	padding: 10px 16px 44px;
}
nav.back a {
	display: inline-block;
	background: #400d0d;
	color: #f2e6e6;
	text-decoration: none;
	border-radius: 26px;
	padding: 10px 26px;
	font-size: 14px;
	transition: background 0.15s;
}
nav.back a:hover { background: #801414; }

/* Contact form (contact/index.html) */
form.contact { display: flex; flex-direction: column; gap: 14px; margin-top: 6px; }
form.contact label { font-size: 13px; color: #9a9a96; }
form.contact input, form.contact textarea {
	display: block;
	width: 100%;
	margin-top: 4px;
	background: #1c1c20;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 8px;
	padding: 10px 12px;
	font: inherit;
	font-size: 14.5px;
	color: #e8e8e4;
}
form.contact input:focus, form.contact textarea:focus {
	outline: none;
	border-color: #d51616;
}
form.contact textarea { resize: vertical; min-height: 120px; }
/* honeypot field: present in the DOM for bots, invisible and unreachable
   for everyone else (display:none is skipped by some bots on purpose) */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
form.contact button {
	align-self: flex-start;
	background: #b30d0d;
	color: #fff;
	border: none;
	border-radius: 26px;
	padding: 12px 30px;
	font-size: 15px;
	cursor: pointer;
	transition: background 0.15s;
}
form.contact button:hover { background: #d51616; }
form.contact button:disabled { opacity: 0.6; cursor: default; }
.form-status { font-size: 14px; margin-top: -4px; }
.form-status.ok { color: #4fd671; }
.form-status.error { color: #ff6b5e; }

@media (max-width: 480px) {
	header h1 { font-size: 26px; }
}
