:root {
	font-family: Georgia, 'Times New Roman', serif;
	color: #f5f1e8;
	background: #18211f;
	line-height: 1.5;
	font-synthesis: none;
}

* { box-sizing: border-box; }

body {
	margin: 0;
	min-width: 320px;
	background: radial-gradient(circle at 85% 10%, #31584d 0, transparent 35%), #18211f;
	transition: background 250ms ease, color 250ms ease;
}

.dashboard { width: min(1100px, calc(100% - 40px)); margin: 0 auto; padding: 48px 0; }
.dashboard-header { display: flex; justify-content: space-between; align-items: end; margin-bottom: 32px; }
.eyebrow { margin: 0; color: #c5a46d; font: 600 0.75rem/1.2 Arial, sans-serif; letter-spacing: 0.12em; text-transform: uppercase; }
h1, h2, p { margin-top: 0; }
h1 { margin-bottom: 0; font-size: clamp(3rem, 8vw, 6rem); line-height: 0.9; letter-spacing: 0; }
h2 { margin-bottom: 24px; font-size: 1.1rem; font-weight: 600; }
.header-actions button { border: 1px solid #6d8279; border-radius: 4px; padding: 10px 14px; color: inherit; background: transparent; cursor: pointer; }
.header-actions button:hover { background: #31433d; }
.dashboard-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.card { min-height: 190px; padding: 24px; border: 1px solid #4e665d; border-radius: 8px; background: rgba(28, 41, 37, 0.85); box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16); }
.clock-card { grid-column: span 7; }
.system-card { grid-column: span 5; }
.weather-card, .music-card { grid-column: span 6; }
.notes-card { grid-column: span 12; }
.clock-display { font-size: clamp(3rem, 8vw, 6rem); line-height: 1; }
.date-display, .location, .artist-name { color: #b5c1ba; }
.system-details { display: grid; gap: 14px; margin: 0; }
.system-details div { display: flex; justify-content: space-between; gap: 16px; border-bottom: 1px solid #385048; padding-bottom: 8px; }
dt, label { color: #9eafa5; font: 0.75rem Arial, sans-serif; text-transform: uppercase; letter-spacing: 0.05em; }
dd { margin: 0; text-align: right; }
.weather-placeholder, .music-placeholder { display: flex; align-items: center; gap: 18px; }
.weather-icon { font-size: 3.5rem; }
.temperature { margin-bottom: 2px; font-size: 2.6rem; line-height: 1; }
.location, .artist-name, .track-title { margin-bottom: 0; }
.album-art { width: 72px; aspect-ratio: 1; border-radius: 4px; background: linear-gradient(135deg, #c5a46d, #6b3e36); }
.track-title { font-size: 1.25rem; }
textarea { display: block; width: 100%; margin-top: 10px; resize: vertical; border: 1px solid #4e665d; border-radius: 4px; padding: 12px; color: inherit; background: #17221e; font: inherit; }
.light-theme { color: #18211f; background: radial-gradient(circle at 85% 10%, #d4e1d8 0, transparent 35%), #f2eee5; }
.light-theme .card { border-color: #b4c3b8; background: rgba(255, 255, 255, 0.7); }
.light-theme .header-actions button:hover { background: #dce8df; }
.light-theme .date-display, .light-theme .location, .light-theme .artist-name { color: #52645a; }
.light-theme .system-details div { border-color: #c6d3c9; }
.light-theme textarea { border-color: #b4c3b8; background: #fffdf8; }

@media (max-width: 700px) {
	.dashboard { width: min(100% - 24px, 520px); padding: 28px 0; }
	.dashboard-header { align-items: start; }
	.dashboard-grid { display: flex; flex-direction: column; }
	.card { min-height: 0; }
}
