/* ==========================================================================
   GeniusHydra — terminal / hacker theme
   ========================================================================== */

:root {
	--bg: #050806;
	--text: #33ff33;
	--muted: #1d8f1d;
	--dim: #0b2e0b;
	--border: #1a5c1a;
	--accent: #00ff41;
	--surface: rgba(0, 255, 65, 0.04);
	--radius: 4px;
	--font: 'JetBrains Mono', ui-monospace, 'Cascadia Mono', Consolas, monospace;
}

/* Phosphor colour themes (switched with the LEDs in the nav) */
[data-accent='green'] { --text: #33ff33; --accent: #00ff41; --muted: #1d8f1d; --border: #1a5c1a; --surface: rgba(0, 255, 65, 0.04); }
[data-accent='amber'] { --text: #ffb000; --accent: #ff9e00; --muted: #8a6a1d; --border: #6b521a; --surface: rgba(255, 176, 0, 0.04); }
[data-accent='cyan']  { --text: #00e5ff; --accent: #00e5ff; --muted: #1d7f8a; --border: #1a5c6b; --surface: rgba(0, 229, 255, 0.04); }
[data-accent='red']   { --text: #ff5555; --accent: #ff3333; --muted: #8a1d1d; --border: #6b1a1a; --surface: rgba(255, 85, 85, 0.04); }
[data-accent='paper'] { --text: #e6e6e6; --accent: #ffffff; --muted: #8a8a8a; --border: #4a4a4a; --surface: rgba(255, 255, 255, 0.04); }

/* Seasonal themes — override the phosphor colour while active */
[data-season='halloween'] { --text: #ffb35c; --accent: #ff7a00; --muted: #8a6a3d; --border: #6b3d1a; --surface: rgba(255, 122, 0, 0.05); }
[data-season='newyear']   { --text: #ff7b7b; --accent: #ffd166; --muted: #9e5a5a; --border: #7a2e2e; --surface: rgba(255, 123, 123, 0.05); }
[data-season='cny']       { --text: #ff5555; --accent: #ffd700; --muted: #9e4d4d; --border: #7a1f1f; --surface: rgba(255, 85, 85, 0.05); }
[data-season='valentine'] { --text: #ff7ab8; --accent: #ff3b6b; --muted: #9e5a7a; --border: #6b2a4a; --surface: rgba(255, 59, 107, 0.05); }
[data-season='easter']    { --text: #d6b8ff; --accent: #b98cff; --muted: #8a6db8; --border: #5a3d8a; --surface: rgba(185, 140, 255, 0.05); }
[data-season='birthday']  { --text: #ffd166; --accent: #ff6ec7; --muted: #a08a3d; --border: #6b5a1a; --surface: rgba(255, 209, 102, 0.05); }

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

[hidden] {
	display: none !important;
}

html {
	font-family: var(--font);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body {
	min-height: 100vh;
	background: var(--bg);
	color: var(--text);
	overflow-x: hidden;
	text-shadow: 0 0 1px color-mix(in srgb, var(--accent) 30%, transparent);
}

a { color: inherit; }

::selection {
	background: var(--accent);
	color: #000;
}

/* --------------------------------------------------------------------------
   Background: CRT glow + vignette + scanlines
   -------------------------------------------------------------------------- */

body::before {
	content: '';
	position: fixed;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background:
		radial-gradient(ellipse at 50% -10%, color-mix(in srgb, var(--accent) 8%, transparent), transparent 55%),
		radial-gradient(ellipse at center, transparent 50%, rgba(0, 0, 0, 0.65) 100%);
}

.crt-overlay {
	position: fixed;
	inset: 0;
	z-index: 50;
	pointer-events: none;
	background: repeating-linear-gradient(
		0deg,
		rgba(0, 0, 0, 0.16) 0px,
		rgba(0, 0, 0, 0.16) 1px,
		transparent 1px,
		transparent 3px
	);
}

/* --------------------------------------------------------------------------
   Header / nav
   -------------------------------------------------------------------------- */

.site-header {
	position: sticky;
	top: 0;
	z-index: 20;
	background: rgba(5, 8, 6, 0.88);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border-bottom: 1px solid var(--border);
}

.nav {
	max-width: 960px;
	margin: 0 auto;
	padding: 0.6rem 1.25rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem 1rem;
	flex-wrap: wrap;
}

.nav-brand {
	font-weight: 700;
	font-size: 0.9rem;
	text-decoration: none;
	color: var(--text);
}

.nav-links {
	display: flex;
	gap: 1rem;
	align-items: center;
}

.nav-links a {
	color: var(--muted);
	text-decoration: none;
	font-size: 0.8rem;
	transition: color 0.15s ease;
}

.nav-links a:hover,
.nav-links a.active {
	color: var(--accent);
}

.nav-links a.active::before {
	content: '> ';
}

.accent-switcher {
	display: flex;
	gap: 0.4rem;
	align-items: center;
}

.accent-dot {
	width: 14px;
	height: 14px;
	border-radius: 3px;
	border: 1px solid rgba(255, 255, 255, 0.25);
	cursor: pointer;
	padding: 0;
	opacity: 0.65;
	transition: opacity 0.15s ease;
}

.accent-dot:hover { opacity: 1; }

.accent-dot.active {
	opacity: 1;
	outline: 1px solid var(--text);
	outline-offset: 2px;
}

.nav-controls {
	display: flex;
	align-items: center;
	gap: 0.6rem;
}

.season-emoji {
	font-size: 1rem;
	line-height: 1;
}

.lang-toggle {
	background: transparent;
	border: 1px solid var(--border);
	color: var(--text);
	font-family: inherit;
	font-size: 0.78rem;
	padding: 0.15rem 0.5rem;
	cursor: pointer;
	transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.lang-toggle:hover {
	background: var(--accent);
	color: #000;
	border-color: var(--accent);
}

/* --------------------------------------------------------------------------
   Terminal window
   -------------------------------------------------------------------------- */

.terminal {
	position: relative;
	z-index: 1;
	max-width: 720px;
	margin: 2.5rem auto 4rem;
	border: 1px solid var(--border);
	border-radius: 8px;
	background: rgba(0, 0, 0, 0.55);
	box-shadow:
		0 0 0 1px rgba(0, 255, 65, 0.04),
		0 0 32px color-mix(in srgb, var(--accent) 8%, transparent);
	overflow: hidden;
}

.terminal-home { max-width: 560px; }

.terminal-bar {
	display: flex;
	align-items: center;
	gap: 0.45rem;
	padding: 0.55rem 0.9rem;
	border-bottom: 1px solid var(--border);
	background: var(--surface);
}

.t-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	flex-shrink: 0;
}

.t-red    { background: #ff5f56; }
.t-yellow { background: #ffbd2e; }
.t-green  { background: #27c93f; }

.terminal-title {
	margin-left: auto;
	color: var(--muted);
	font-size: 0.78rem;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.terminal-body {
	padding: 2rem 1.5rem 2.2rem;
}

/* --------------------------------------------------------------------------
   Prompt lines
   -------------------------------------------------------------------------- */

.prompt-line {
	color: var(--muted);
	font-size: 0.8rem;
	margin: 1.5rem 0 0.7rem;
	text-align: left;
}

.prompt-line:first-of-type { margin-top: 0; }

.prompt {
	color: var(--accent);
	margin-right: 0.55rem;
}

/* --------------------------------------------------------------------------
   Avatar
   -------------------------------------------------------------------------- */

.avatar {
	position: relative;
	width: 128px;
	height: 128px;
	margin: 0 auto 1.75rem;
	border-radius: 50%;
	padding: 3px;
	background: var(--accent);
	box-shadow: 0 0 26px color-mix(in srgb, var(--accent) 35%, transparent);
	animation: pulse 2.6s ease-in-out infinite;
}

@keyframes pulse {
	0%, 100% { box-shadow: 0 0 18px color-mix(in srgb, var(--accent) 25%, transparent); }
	50%      { box-shadow: 0 0 34px color-mix(in srgb, var(--accent) 45%, transparent); }
}

.avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
	display: block;
	border: 3px solid var(--bg);
}

.avatar-fallback {
	font-size: 3rem;
	font-weight: 700;
	color: #000;
	background: var(--accent);
	border-radius: 50%;
	border: 3px solid var(--bg);
}

/* Image fallback (shown only if an image fails to load) */
.img-box .img-fallback { display: none; }

.img-box.is-failed img { display: none; }

.img-box.is-failed .img-fallback {
	display: flex;
	align-items: center;
	justify-content: center;
}

.avatar .img-fallback {
	position: absolute;
	inset: 0;
}

/* --------------------------------------------------------------------------
   Headings
   -------------------------------------------------------------------------- */

h1 {
	font-size: 1.7rem;
	font-weight: 700;
	letter-spacing: 0.01em;
	color: var(--text);
	text-shadow: 0 0 10px color-mix(in srgb, var(--accent) 45%, transparent);
}

.lead {
	color: var(--muted);
	font-size: 0.9rem;
	margin: 0.5rem 0 0;
}

/* --------------------------------------------------------------------------
   Status + activities
   -------------------------------------------------------------------------- */

.status-pill {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.3rem 0.7rem;
	border: 1px solid var(--border);
	background: var(--surface);
	color: var(--text);
	font-size: 0.85rem;
}

.status-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--muted);
	flex-shrink: 0;
}

.status-dot.online  { background: var(--accent); box-shadow: 0 0 7px var(--accent); }
.status-dot.idle    { background: #ffb000; }
.status-dot.dnd     { background: #ff4d4d; }
.status-dot.offline { background: var(--muted); }

.activities {
	display: flex;
	flex-direction: column;
	gap: 0.45rem;
	text-align: left;
	margin: 0.7rem 0 1.4rem;
}

.activity-item {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	font-size: 0.85rem;
}

.act-tag {
	color: var(--accent);
	flex-shrink: 0;
}

.act-text {
	display: flex;
	flex-direction: column;
	gap: 1px;
	min-width: 0;
}

.act-label { font-weight: 500; }

.act-detail { color: var(--muted); font-size: 0.76rem; }

.act-art {
	width: 30px;
	height: 30px;
	border-radius: 3px;
	object-fit: cover;
	flex-shrink: 0;
	border: 1px solid var(--border);
}

/* --------------------------------------------------------------------------
   Copy buttons
   -------------------------------------------------------------------------- */

.copy-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.copy-btn {
	background: transparent;
	border: 1px solid var(--border);
	color: var(--text);
	font-family: inherit;
	font-size: 0.8rem;
	padding: 0.35rem 0.7rem;
	cursor: pointer;
	transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.copy-btn:hover,
.copy-btn.copied {
	background: var(--accent);
	color: #000;
	border-color: var(--accent);
}

/* --------------------------------------------------------------------------
   Link rows
   -------------------------------------------------------------------------- */

.links {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	text-align: left;
}

.link-row {
	display: flex;
	align-items: baseline;
	gap: 0.7rem;
	padding: 0.55rem 0.8rem;
	color: var(--text);
	text-decoration: none;
	border: 1px solid transparent;
	border-left: 2px solid var(--border);
	font-size: 0.9rem;
	transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.link-row:hover {
	background: var(--surface);
	border-left-color: var(--accent);
}

.link-index {
	color: var(--muted);
	min-width: 2.2ch;
	flex-shrink: 0;
}

.link-main {
	flex: 1;
	display: flex;
	align-items: baseline;
	gap: 0.6rem;
	min-width: 0;
}

.link-name { font-weight: 700; }

.link-sub {
	color: var(--muted);
	font-size: 0.78rem;
}

.link-tag {
	color: var(--muted);
	font-size: 0.72rem;
	flex-shrink: 0;
}

.link-arrow {
	color: var(--muted);
	flex-shrink: 0;
	transition: color 0.15s ease, transform 0.15s ease;
}

.link-row:hover .link-tag,
.link-row:hover .link-arrow { color: var(--accent); }

.link-row:hover .link-arrow { transform: translateX(2px); }

/* --------------------------------------------------------------------------
   Subpage cards + spec grid
   -------------------------------------------------------------------------- */

.section { margin-top: 2rem; }

.section h2 {
	font-size: 1rem;
	font-weight: 700;
	margin-bottom: 0.9rem;
	color: var(--text);
}

.section h2::before {
	content: '## ';
	color: var(--accent);
}

.card {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 1rem 1.2rem;
}

.card + .card { margin-top: 0.6rem; }

.card .card-title {
	font-weight: 700;
	color: var(--accent);
	margin-bottom: 0.3rem;
}

.card .card-sub {
	color: var(--muted);
	font-size: 0.85rem;
	line-height: 1.65;
}

.spec-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 0.6rem;
}

.spec-item {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 0.8rem 1rem;
}

.spec-label {
	color: var(--muted);
	font-size: 0.7rem;
	text-transform: lowercase;
	margin-bottom: 0.3rem;
}

.spec-value {
	color: var(--text);
	font-size: 0.88rem;
	word-break: break-word;
}

.spec-value a { text-decoration: underline; text-underline-offset: 3px; }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 1rem;
	border: 1px solid var(--border);
	background: transparent;
	color: var(--text);
	text-decoration: none;
	font-family: inherit;
	font-size: 0.85rem;
	cursor: pointer;
	transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn:hover {
	background: var(--accent);
	color: #000;
	border-color: var(--accent);
}

/* --------------------------------------------------------------------------
   Presence cards
   -------------------------------------------------------------------------- */

.presence-grid {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.presence-card {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	padding: 0.7rem 1rem;
	border: 1px solid var(--border);
	background: var(--surface);
	text-decoration: none;
	color: var(--text);
	transition: background 0.15s ease, border-color 0.15s ease;
}

.presence-card:hover {
	border-color: var(--accent);
}

.pc-tag {
	color: var(--accent);
	flex-shrink: 0;
}

.pc-text {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}

.pc-title { font-weight: 700; font-size: 0.9rem; }

.pc-sub { color: var(--muted); font-size: 0.8rem; }

.pc-status { color: var(--muted); font-size: 0.8rem; }

.pc-arrow { color: var(--muted); }

.presence-card:hover .pc-arrow { color: var(--accent); }

/* --------------------------------------------------------------------------
   Gallery
   -------------------------------------------------------------------------- */

.gallery {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
	gap: 0.6rem;
}

.gallery-item {
	aspect-ratio: 1;
	border: 1px solid var(--border);
	overflow: hidden;
	cursor: zoom-in;
	background: var(--surface);
}

.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	filter: grayscale(0.5);
	transition: transform 0.3s ease, filter 0.3s ease;
}

.gallery-item:hover img {
	transform: scale(1.05);
	filter: grayscale(0);
}

.gallery-item.is-failed { display: none; }

.lightbox {
	position: fixed;
	inset: 0;
	z-index: 60;
	background: rgba(0, 0, 0, 0.92);
	display: none;
	align-items: center;
	justify-content: center;
	padding: 1.5rem;
	cursor: zoom-out;
}

.lightbox.open { display: flex; }

.lightbox img {
	max-width: 100%;
	max-height: 100%;
	border: 1px solid var(--border);
}

.lightbox .lb-close {
	position: absolute;
	top: 1rem;
	right: 1.25rem;
	background: var(--surface);
	border: 1px solid var(--border);
	color: var(--text);
	width: 40px;
	height: 40px;
	font-size: 1.25rem;
	cursor: pointer;
	font-family: inherit;
}

/* --------------------------------------------------------------------------
   404
   -------------------------------------------------------------------------- */

.error-code {
	font-size: 3.5rem;
	font-weight: 700;
	color: var(--accent);
	text-shadow: 0 0 14px var(--accent);
	margin: 0.5rem 0 0.75rem;
}

.error-msg { color: var(--muted); font-size: 0.9rem; margin-bottom: 1.5rem; }

/* --------------------------------------------------------------------------
   Footer + cursor
   -------------------------------------------------------------------------- */

.site-footer {
	position: relative;
	z-index: 1;
	text-align: center;
	padding: 2rem 1.25rem;
	color: var(--muted);
	font-size: 0.78rem;
}

.cursor {
	display: inline-block;
	color: var(--accent);
	animation: blink 1.1s steps(1) infinite;
}

@keyframes blink {
	0%, 49% { opacity: 1; }
	50%, 100% { opacity: 0; }
}

/* --------------------------------------------------------------------------
   Falling FX particles + season preview panel
   -------------------------------------------------------------------------- */

.fx-container {
	position: fixed;
	inset: 0;
	overflow: hidden;
	pointer-events: none;
	z-index: 45;
}

.fx-particle {
	position: absolute;
	top: -40px;
	animation-name: fx-fall;
	animation-timing-function: linear;
	animation-fill-mode: forwards;
	will-change: transform;
}

@keyframes fx-fall {
	to { transform: translateY(115vh) rotate(360deg); }
}

.preview-panel {
	position: fixed;
	right: 0.9rem;
	bottom: 0.9rem;
	z-index: 55;
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	background: rgba(0, 0, 0, 0.88);
	border: 1px solid var(--border);
	border-radius: 6px;
	padding: 0.55rem;
}

.preview-btn {
	background: transparent;
	border: 1px solid var(--border);
	color: var(--text);
	font-family: inherit;
	font-size: 0.75rem;
	padding: 0.3rem 0.55rem;
	cursor: pointer;
	text-align: left;
	transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.preview-btn:hover,
.preview-btn.active {
	background: var(--accent);
	color: #000;
	border-color: var(--accent);
}

/* --------------------------------------------------------------------------
   Matrix rain + boot overlay
   -------------------------------------------------------------------------- */

.matrix-canvas {
	position: fixed;
	inset: 0;
	z-index: 0;
	opacity: 0.2;
	pointer-events: none;
}

.boot-overlay {
	position: fixed;
	inset: 0;
	z-index: 100;
	background: var(--bg);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2rem;
	cursor: pointer;
	transition: opacity 0.4s ease;
}

.boot-overlay.done {
	opacity: 0;
	pointer-events: none;
}

.boot-output {
	font-size: 0.82rem;
	line-height: 1.7;
	color: var(--text);
}

/* --------------------------------------------------------------------------
   Neofetch
   -------------------------------------------------------------------------- */

.neofetch {
	margin: 0 0 1.5rem;
	padding: 1rem 1.1rem;
	border: 1px solid var(--border);
	background: var(--surface);
	border-radius: var(--radius);
	font-size: 0.8rem;
	line-height: 1.7;
	color: var(--text);
	overflow-x: auto;
}

.neofetch .nf-accent { color: var(--accent); font-weight: 700; }
.neofetch .nf-dim { color: var(--muted); }
.neofetch .nf-label { color: var(--accent); }

/* --------------------------------------------------------------------------
   Interactive terminal
   -------------------------------------------------------------------------- */

.term {
	margin-top: 1.5rem;
	text-align: left;
}

.term-history {
	max-height: 300px;
	overflow-y: auto;
	margin-bottom: 0.6rem;
	font-size: 0.82rem;
	line-height: 1.65;
}

.term-history::-webkit-scrollbar { width: 8px; }
.term-history::-webkit-scrollbar-thumb { background: var(--border); }

.term-cmd { color: var(--text); }
.term-cmd .prompt { color: var(--accent); }
.term-out { color: var(--muted); }

.term-input-line {
	display: flex;
	align-items: center;
	gap: 0.55rem;
}

.term-input-line .prompt { color: var(--accent); }

#term-input {
	flex: 1;
	background: transparent;
	border: none;
	outline: none;
	color: var(--text);
	font-family: inherit;
	font-size: 0.85rem;
	caret-color: var(--accent);
}

/* --------------------------------------------------------------------------
   Spotify now-playing
   -------------------------------------------------------------------------- */

.spotify-card {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	border: 1px solid var(--border);
	background: var(--surface);
	border-radius: var(--radius);
	padding: 0.8rem 1rem;
	text-align: left;
	margin: 0.7rem 0 1.4rem;
}

.spotify-art {
	width: 52px;
	height: 52px;
	border-radius: 4px;
	object-fit: cover;
	border: 1px solid var(--border);
	flex-shrink: 0;
}

.spotify-info {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.spotify-song { font-weight: 700; font-size: 0.9rem; }
.spotify-artist { color: var(--muted); font-size: 0.78rem; }

.spotify-bar {
	height: 4px;
	background: var(--border);
	border-radius: 2px;
	overflow: hidden;
	margin-top: 5px;
}

.spotify-progress {
	height: 100%;
	width: 0;
	background: var(--accent);
	transition: width 1s linear;
}

.spotify-times {
	display: flex;
	justify-content: space-between;
	font-size: 0.68rem;
	color: var(--muted);
}

.steam-games {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}

.steam-game {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 0.8rem;
	border: 1px solid var(--border);
	background: var(--surface);
	border-radius: var(--radius);
	padding: 0.55rem 0.9rem;
	font-size: 0.85rem;
}

.steam-game .sg-name { font-weight: 600; }
.steam-game .sg-hours { color: var(--muted); white-space: nowrap; }
.steam-empty { color: var(--muted); font-size: 0.82rem; }

.steam-panel {
	display: flex;
	flex-direction: column;
	gap: 0.45rem;
}

.steam-summary { font-weight: 700; font-size: 0.9rem; }

.steam-status {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--muted);
	font-size: 0.85rem;
}

.steam-top-title {
	color: var(--muted);
	font-size: 0.78rem;
	margin-top: 0.3rem;
}

/* --------------------------------------------------------------------------
   Entrance + responsive + reduced motion
   -------------------------------------------------------------------------- */

.reveal {
	opacity: 0;
	animation: rise 0.5s ease forwards;
	animation-delay: calc(var(--i, 0) * 50ms + 60ms);
}

@keyframes rise {
	from { opacity: 0; transform: translateY(8px); }
	to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 560px) {
	.nav { justify-content: center; }
	.nav-links { gap: 0.8rem; flex-wrap: wrap; justify-content: center; }

	.terminal { margin: 1.25rem 0.75rem 3rem; }
	.terminal-body { padding: 1.5rem 1.1rem 1.75rem; }
	h1 { font-size: 1.4rem; }
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation: none !important;
		transition: none !important;
	}

	.reveal { opacity: 1; }
}
