/* Hyrox Timer - Base styles
   Event colors: black (#0d0d0d background) and yellow (#d4b800 accent) */

:root {
    --color-bg:      #0d0d0d;
    --color-surface: #1a1a1a;
    --color-accent:  #d4b800;   /* event yellow */
    --color-text:    #e0e0e0;
    --color-muted:   #666;
}

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

body {
    font-family: monospace;
    background: var(--color-bg);
    color: var(--color-text);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    text-align: center;
    padding: 2rem;
}

h1 {
    font-size: 2rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: var(--color-accent);
}

.status.ok {
    color: #4caf50;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.checklist {
    list-style: none;
    text-align: left;
    display: inline-block;
}

.checklist li {
    padding: 0.3rem 0;
    color: #9e9e9e;
    font-size: 0.9rem;
}

.checklist li::before {
    content: "[x] ";
    color: var(--color-accent);
}
