/* Mobile first. No framework and no build step: a handful of screens does not
   justify a bundler, and it keeps the container the same shape as t3o. */
:root {
    --bg: #12100f;
    --surface: #1c1917;
    --text: #f5f0eb;
    --muted: #a8a29e;
    --accent: #d94f2b;
    --line: #2c2724;
    --tap: 44px;
    --gap: 0.75rem;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font: 16px/1.5 system-ui, -apple-system, "Segoe UI", sans-serif;
    padding-bottom: calc(var(--tap) + env(safe-area-inset-bottom) + 1rem);
}

.content { padding: var(--gap); max-width: 46rem; margin: 0 auto; }

.tabbar {
    position: fixed;
    inset: auto 0 0 0;
    display: flex;
    background: var(--surface);
    border-top: 1px solid var(--line);
    padding-bottom: env(safe-area-inset-bottom);
}

.tabbar a {
    flex: 1;
    min-height: var(--tap);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    text-decoration: none;
    font-size: 0.8rem;
}

/* Unbuilt destinations (My plan, Friends, Settings): same slot as a real
   tab, visibly inert so they read as "not here yet" rather than a dead
   link. */
.tabbar__soon {
    flex: 1;
    min-height: var(--tap);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 0.8rem;
    opacity: 0.5;
}

.day-heading {
    position: sticky;
    top: 0;
    background: var(--bg);
    padding: 0.75rem 0 0.25rem;
    margin: 0;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
}

.screening {
    display: grid;
    grid-template-columns: 3.5rem 1fr;
    gap: var(--gap);
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--line);
}

.screening__time { font-variant-numeric: tabular-nums; color: var(--muted); }
.screening__title { margin: 0 0 0.15rem; font-size: 1rem; }
.screening__title a { color: var(--text); text-decoration: none; }
.screening__meta { color: var(--muted); font-size: 0.8rem; }

.screening--cancelled .screening__title { text-decoration: line-through; opacity: 0.6; }

.tag {
    display: inline-block;
    font-size: 0.7rem;
    padding: 0.1rem 0.4rem;
    border: 1px solid var(--line);
    border-radius: 0.2rem;
    color: var(--muted);
    margin-right: 0.25rem;
}
