/*single source of the page background and shared palette for all user-facing pages.
  every user-facing page gets this file (via player_base2.html or the auth templates) —
  do not set body backgrounds anywhere else.*/

:root {
	--ls-page-bg: #e9e5da;          /*calm warm stone — dimmer than white so cards stand out*/
	--ls-page-bg-top: #f2efe6;      /*slightly lighter at the very top, under the navbar*/
	--ls-gold-glow: rgba(212, 165, 63, 0.17);
	--ls-ink: #1c1917;
}

body {
	background-color: var(--ls-page-bg);
	background-image:
		radial-gradient(70rem 34rem at 50% -12rem, var(--ls-gold-glow), transparent),
		linear-gradient(180deg, var(--ls-page-bg-top) 0%, var(--ls-page-bg) 38rem);
	background-repeat: no-repeat;
}
