/* Shared Styles Across All Pages */

body {
    /* CSS Custom Properties for maintainability - shared across all pages */
    --color-bg: #1a1a1a;
    --color-text: #ffffff;
    --color-accent: #ff7f50;
    --color-ghost: #ffffff;
    --color-blush: #ffc0cb;

    /* Ghost sizing - used on index page */
    --ghost-width: 70px;
    --ghost-height: 90px;
    --ghost-spacing: 5px;

    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: 'Lato', sans-serif;
    margin: 0;
    padding: 0;
}

/* Skip link for accessibility - shared across all pages */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--color-accent);
    color: var(--color-bg);
    padding: 8px;
    text-decoration: none;
    z-index: 100;
    border-radius: 0 0 4px 0;
}

.skip-link:focus {
    top: 0;
}
