:root {
    --bg: #0f1115;
    --panel: #171a21;
    --fg: #e6e8ee;
    --muted: #8a92a6;
    --accent: #4f8cff;
    --border: #242935;
}

* { box-sizing: border-box; }

html, body {
    margin: 0;
    padding: 0;
    background: var(--bg);
    color: var(--fg);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 15px;
    line-height: 1.5;
    min-height: 100vh;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 24px;
}

.brand {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--fg);
}
.brand:hover { text-decoration: none; color: var(--accent); }

.tagline {
    color: var(--muted);
    font-size: 13px;
}

main { flex: 1; }

.shot {
    text-align: center;
    margin-bottom: 20px;
}
.shot img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: var(--panel);
}

.meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    padding: 12px 16px;
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 8px;
}
.info {
    color: var(--muted);
    font-size: 13px;
}
.actions {
    display: flex;
    gap: 8px;
}

.btn {
    display: inline-block;
    padding: 8px 14px;
    background: var(--accent);
    color: white;
    border: 0;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    font-family: inherit;
}
.btn:hover { opacity: 0.9; text-decoration: none; color: white; }
.btn.ghost {
    background: transparent;
    color: var(--fg);
    border: 1px solid var(--border);
}

footer {
    margin-top: 32px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    color: var(--muted);
    font-size: 13px;
    text-align: center;
}

.landing h1, .notfound h1 {
    font-size: 28px;
    margin: 24px 0 8px;
}
.landing p, .notfound p {
    color: var(--muted);
}
