/* Shared stylesheet for the legal / info pages (privacy, terms, about).
   Kept separate from the editor's own styles on purpose - this is plain,
   readable prose styling, not the editor's Win95 control chrome, but it
   reuses the same fonts/colors so the pages still feel like part of the
   same site. Edit this one file to restyle all three pages at once. */

:root{
	--face:#c0c0c0;
	--bevel-light:#ffffff;
	--bevel-shadow:#808080;
	--desktop-bg:#017c7c;
	--desktop-bg-2:#016868;
	--text:#000000;
	--title-start:#000082;
	--title-end:#1084d0;
	--title-text:#ffffff;
	--link:#0b3d91;
	--ui-font:Tahoma,'Segoe UI',Verdana,Geneva,sans-serif;
	--display-font:'Silkscreen',var(--ui-font);
	--body-font:Georgia,'Times New Roman',serif;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
	margin:0;
	height:100vh;
	overflow:hidden;
	background:linear-gradient(180deg, var(--desktop-bg) 0%, var(--desktop-bg-2) 100%);
	font-family:var(--ui-font);
	color:var(--text);
	padding:18px;
	display:flex;
	flex-direction:column;
}

/* The window itself never exceeds the viewport - it's a flex column so the
   titlebar and footer stay put, and only .page-body (the text) scrolls. */
.page-window{
	max-width:760px;
	width:100%;
	margin:0 auto;
	background:var(--face);
	border:2px outset var(--face);
	box-shadow:2px 2px 6px rgba(0,0,0,.45);
	display:flex;
	flex-direction:column;
	min-height:0;
	max-height:100%;
}

.page-titlebar{
	background:#000082;
	color:var(--title-text);
	font-family:var(--display-font);
	font-size:13px;
	letter-spacing:.5px;
	padding:8px 10px;
	flex:0 0 auto;
}

.page-body{
	background:#fdfdfa;
	padding:26px 32px 34px;
	font-family:var(--body-font);
	font-size:15px;
	line-height:1.6;
	flex:1 1 auto;
	overflow-y:auto;
	min-height:0;
}

.page-body h1{
	font-family:var(--ui-font);
	font-size:22px;
	margin:0 0 4px;
}
.page-body .updated{
	font-family:var(--ui-font);
	font-size:12px;
	color:#555;
	margin:0 0 26px;
}
.page-body h2{
	font-family:var(--ui-font);
	font-size:16px;
	margin:28px 0 8px;
	padding-bottom:4px;
	border-bottom:1px solid var(--bevel-shadow);
}
.page-body p{ margin:0 0 12px; }
.page-body ul{ margin:0 0 12px; padding-left:22px; }
.page-body li{ margin:0 0 6px; }
.page-body a{ color:var(--link); }
.page-body .fill-me{
	background:#fff3b0;
	padding:0 3px;
	border:1px dashed #b8960b;
	font-family:var(--ui-font);
	font-size:13px;
}

.page-footer{
	display:flex;
	flex-wrap:wrap;
	gap:14px;
	padding:12px 16px;
	background:var(--face);
	border-top:1px solid var(--bevel-shadow);
	font-size:12px;
	flex:0 0 auto;
}
.page-footer a{ color:var(--link); text-decoration:none; }
.page-footer a:hover{ text-decoration:underline; }
