/* RESET & BASE STYLES */
* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    /* Dark theme (default) */
    --bg-primary: #050505;
    --bg-secondary: #111;
    --bg-tertiary: #222;
    --text-primary: #d0d0d0;
    --text-secondary: #aaa;
    --accent: #0af;
    --accent-hover: #0099cc;
    --border: #444;
    --border-light: #555;
    --shadow: rgba(0, 0, 0, 0.9);
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: 'Courier New', Courier, monospace;
    font-size: 19px;
    line-height: 1.7;
    overflow: hidden;
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    user-select: none;
    position: relative;
}

/* BACKGROUND IMAGE LAYER */
body::before {
    content: '';
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image: url('https://picsum.photos/1920/1080.jpg?random=1&blur=2');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.2;
    z-index: -1;
    filter: grayscale(30%);
}

/* TYPOGRAPHY */
p { margin-bottom: 1.8em; text-align: justify; }

.rhythm {
    color: #666;
    font-style: italic;
    display: block;
    text-align: center;
    margin: 2.5em 0;
    letter-spacing: 3px;
    font-size: 0.9em;
}

.void {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #222;
    font-size: 0.7em;
    letter-spacing: 5px;
}

.highlight {
    color: #fff;
    font-weight: bold;
    text-shadow: 0 0 5px rgba(255,255,255,0.3);
}