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

:root,
[data-theme="dark"] {
    --bg: #333333;
    --fg: #f5f5f5;
    --muted: rgba(243, 243, 243, 0.7);
    --dot-color: #f6f6f6;
}

[data-theme="light"] {
    --bg: #f6f6f6;
    --fg: #060606;
    --muted: rgba(6, 6, 6, 0.6);
    --dot-color: #333333;
}

html,
body {
    height: 100%;
}

body {
    font-family: 'Space Grotesk', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--fg);
    min-height: 100vh;
    margin: 0;
    overflow: hidden;
    transition: background 400ms ease, color 400ms ease;
}

.poster-stage {
    position: fixed;
    inset: 0;
}

.poster {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1500px;
    height: 1000px;
    overflow: hidden;
}

#field {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.poster-copy {
    position: absolute;
    inset: auto 0 40px 0;
    padding: 0 48px;
    text-align: center;
    pointer-events: none;
}

.eyebrow {
    font-size: 0.85rem;
    letter-spacing: 0.4rem;
    color: var(--muted);
    margin-bottom: 12px;
}

.title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 600;
    margin-bottom: 8px;
}
