:root { --ink: #182027; --muted: #5e6870; --paper: #f8f7f2; --surface: #ffffff; --line: #d8d9d0; --accent: #007e78; --danger: #b13232; }
* { box-sizing: border-box; } body { margin: 0; color: var(--ink); background: radial-gradient(circle at 100% 0, #e1f1e9, transparent 34rem), var(--paper); font-family: Georgia, 'Times New Roman', serif; } .topbar { min-height: 68px; border-bottom: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; padding: 0 5vw; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; } .brand { color: var(--ink); font-weight: 700; text-decoration: none; } nav { display: flex; align-items: center; gap: 1rem; font-size: .85rem; } nav a { color: var(--ink); } .page, .welcome { width: min(1120px, 90vw); margin: 0 auto; padding: 5rem 0; } .welcome-page { min-height: 100vh; display: grid; place-items: center; } .welcome { width: min(640px, 90vw); padding: 5rem 0; } .eyebrow { color: var(--accent); font: 700 .75rem/1.2 ui-monospace, monospace; letter-spacing: .08em; text-transform: uppercase; } h1 { margin: .4rem 0 1rem; font-size: clamp(2.3rem, 6vw, 5.4rem); line-height: .95; font-weight: 500; } h2 { font-size: 1.3rem; margin: 0 0 .6rem; font-weight: 600; } .intro { max-width: 570px; color: var(--muted); font-size: 1.15rem; line-height: 1.55; } .button { display: inline-flex; align-items: center; justify-content: center; min-height: 42px; padding: .65rem 1rem; border: 1px solid var(--ink); border-radius: 4px; cursor: pointer; font: 700 .8rem/1 ui-monospace, monospace; text-decoration: none; } .primary { color: white; background: var(--accent); border-color: var(--accent); } .secondary { color: var(--ink); background: transparent; } .link-button { padding: 0; border: 0; background: none; color: var(--ink); cursor: pointer; font: inherit; text-decoration: underline; } .video-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.25rem; margin-top: 3rem; } .video-card { overflow: hidden; border: 1px solid var(--line); border-radius: 6px; background: var(--surface); } .video-card img, .thumbnail-placeholder { display: block; width: 100%; aspect-ratio: 16/9; object-fit: cover; background: #dce6df; } .video-card > div { padding: 1.1rem; } .video-card p, .admin-row p { color: var(--muted); line-height: 1.4; } .status { color: var(--muted); font-family: ui-monospace, monospace; } .error { color: var(--danger); } .back-link { color: var(--accent); font: .8rem ui-monospace, monospace; } .player-shell { margin-top: 1.25rem; background: #111; aspect-ratio: 16/9; display: grid; place-items: center; } .player-shell iframe { width: 100%; height: 100%; border: 0; } .upload-form { display: grid; gap: 1rem; max-width: 650px; margin: 2rem 0 4rem; } label { display: grid; gap: .45rem; font: 700 .8rem ui-monospace, monospace; } input, textarea { width: 100%; padding: .7rem; color: var(--ink); background: var(--surface); border: 1px solid var(--line); border-radius: 4px; font: 1rem Georgia, serif; } textarea { min-height: 120px; resize: vertical; } .section-heading, .admin-row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; } .admin-list { border-top: 1px solid var(--line); } .admin-row { padding: 1rem 0; border-bottom: 1px solid var(--line); } .admin-row p { margin: .3rem 0 0; font-size: .9rem; } .icon-button { width: 38px; height: 38px; border: 1px solid currentColor; border-radius: 4px; background: transparent; cursor: pointer; font: 0/0 a; } .icon-button::after { content: '×'; font: 1.6rem/1 Arial, sans-serif; } .danger { color: var(--danger); } @media (max-width: 600px) { .topbar { padding: 0 5vw; } .page, .welcome { padding: 3.4rem 0; } nav span { display: none; } }