:root {
    --bg: #1a0f07;
    --amber: #ff9900;
    --cream: #f4e8c1;
    --font-head: 'Shrikhand', cursive;
    --font-body: 'Space Grotesk', sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: var(--bg); color: var(--cream); font-family: var(--font-body); overflow: hidden; height: 100vh; }

canvas#vinylCanvas { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; z-index: 1; opacity: 0.3; }

.nav { position: fixed; top: 0; width: 100%; padding: 2.5rem 4rem; display: flex; justify-content: space-between; border-bottom: 2px dashed var(--amber); }
.logo { font-family: var(--font-head); font-size: 1.6rem; color: var(--amber); }
.rpm { font-size: 0.85rem; color: var(--cream); }

.hero { position: relative; z-index: 5; height: 100vh; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 0 2rem; }
h1 { font-family: var(--font-head); font-size: 3.8rem; line-height: 1.1; margin-bottom: 1.5rem; color: var(--amber); text-shadow: 3px 3px 0 #000; max-width: 850px; }
p { font-size: 1.2rem; color: var(--cream); max-width: 600px; }