:root {
    color-scheme: dark;
    --ink: #f8fbff;
    --muted: #aeb9cf;
    --night: #080a1e;
    --night-soft: #10132e;
    --panel: rgba(10, 13, 38, .78);
    --line: rgba(255, 255, 255, .16);
    --pink: #ff4fd8;
    --cyan: #20e3ff;
    --yellow: #ffe552;
    --mint: #39ffc8;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
    color: var(--ink);
    background:
        radial-gradient(circle at 8% 4%, rgba(255,79,216,.28), transparent 31%),
        radial-gradient(circle at 93% 13%, rgba(32,227,255,.22), transparent 30%),
        var(--night);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
body::before {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    content: "";
    background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(to bottom, black, transparent 82%);
}
button, input { font: inherit; }
a, button { -webkit-tap-highlight-color: transparent; }
a:focus-visible, button:focus-visible, input:focus-visible {
    outline: 3px solid var(--yellow);
    outline-offset: 4px;
}

.topbar {
    width: min(1460px, calc(100% - 64px));
    height: 86px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    border-bottom: 1px solid var(--line);
}
.back-link, footer > a:last-child {
    color: var(--muted);
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-decoration: none;
    text-transform: uppercase;
    transition: color .18s;
}
.back-link span { display: inline-block; margin-right: 7px; color: var(--cyan); transition: transform .18s; }
.back-link:hover, footer > a:last-child:hover { color: white; }
.back-link:hover span { transform: translateX(-4px); }
.wordmark {
    color: white;
    font-size: 1.2rem;
    font-weight: 950;
    letter-spacing: .24em;
    text-decoration: none;
}
.wordmark span { color: var(--pink); }
.storage-status {
    justify-self: end;
    margin: 0;
    color: var(--muted);
    font-size: .67rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.storage-status span {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-right: 9px;
    border-radius: 50%;
    background: var(--mint);
    box-shadow: 0 0 13px var(--mint);
}

.hero {
    width: min(560px, calc(100% - 64px));
    margin: 0 auto;
    padding: 82px 0 108px;
}
.hero-copy { position: relative; }
.hero-copy::after {
    position: absolute;
    top: -90px;
    right: -40px;
    z-index: -1;
    width: 260px;
    height: 260px;
    border: 1px solid rgba(32,227,255,.18);
    border-radius: 50%;
    box-shadow: inset 0 0 80px rgba(32,227,255,.04), 0 0 80px rgba(32,227,255,.04);
    content: "";
}
.eyebrow {
    margin: 0 0 24px;
    color: var(--cyan);
    font-size: .7rem;
    font-weight: 900;
    letter-spacing: .17em;
    text-transform: uppercase;
}
h1 {
    max-width: 750px;
    margin: 0;
    font-size: clamp(4.2rem, 7.2vw, 7.1rem);
    line-height: .83;
    letter-spacing: -.07em;
    text-shadow: 0 0 36px rgba(255,255,255,.13);
}
h1 em {
    display: block;
    color: transparent;
    background: linear-gradient(90deg, var(--pink), var(--yellow), var(--cyan));
    background-clip: text;
    -webkit-background-clip: text;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
}
.intro {
    max-width: 530px;
    margin: 38px 0 0;
    color: #d8e0f1;
    font-size: 1.08rem;
    line-height: 1.65;
}
.privacy-note {
    display: flex;
    gap: 13px;
    max-width: 420px;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
}
.privacy-note > span { color: var(--pink); font-size: 1.25rem; }
.privacy-note p { margin: 1px 0 0; color: var(--muted); font-size: .73rem; line-height: 1.55; }

.event-form {
    position: relative;
    padding: 32px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: var(--panel);
    box-shadow: 16px 16px 0 rgba(32,227,255,.12), 0 28px 80px rgba(0,0,0,.3);
    backdrop-filter: blur(24px);
}
.event-form::before {
    position: absolute;
    top: -1px;
    right: 44px;
    width: 75px;
    height: 3px;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--pink), var(--yellow));
    box-shadow: 0 0 18px var(--pink);
    content: "";
}
.form-heading { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 28px; }
.form-heading > span {
    display: grid;
    width: 36px;
    height: 36px;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid rgba(32,227,255,.42);
    border-radius: 50%;
    color: var(--cyan);
    background: rgba(32,227,255,.08);
    font-size: .65rem;
    font-weight: 900;
}
.form-heading h2 { margin: 0 0 5px; font-size: 1.4rem; letter-spacing: -.035em; }
.form-heading p { margin: 0; color: var(--muted); font-size: .77rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: block; margin-bottom: 17px; }
.field > span {
    display: block;
    margin: 0 0 8px 2px;
    color: #dbe4f4;
    font-size: .62rem;
    font-weight: 900;
    letter-spacing: .13em;
    text-transform: uppercase;
}
.field input {
    width: 100%;
    height: 52px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 12px;
    color: white;
    background: rgba(255,255,255,.035);
    color-scheme: dark;
    transition: border-color .18s, background .18s, box-shadow .18s;
}
.field input::placeholder { color: #6f7892; }
.field input:hover, .field input:focus {
    border-color: rgba(32,227,255,.62);
    outline: 0;
    background: rgba(255,255,255,.06);
    box-shadow: 0 0 0 3px rgba(32,227,255,.08);
}
.timezone-note { margin: -9px 0 18px 2px; color: #7f8aa4; font-size: .62rem; }

.image-drop {
    min-height: 88px;
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 18px;
    padding: 15px;
    overflow: hidden;
    border: 1px dashed rgba(255,255,255,.25);
    border-radius: 14px;
    color: #dbe4f4;
    background-color: rgba(57,255,200,.035);
    background-position: center;
    background-size: cover;
    cursor: pointer;
    transition: border-color .18s, background-color .18s;
}
.image-drop:hover, .image-drop.is-dragging { border-color: var(--mint); background-color: rgba(57,255,200,.08); }
.image-drop.has-preview { border-style: solid; color: white; }
.image-drop input { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.image-icon {
    display: grid;
    width: 40px;
    height: 40px;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid currentColor;
    border-radius: 50%;
    font-size: 1.3rem;
}
.image-copy { min-width: 0; display: grid; gap: 4px; }
.image-copy strong { font-size: .75rem; }
.image-copy small { max-width: 210px; overflow: hidden; color: currentColor; opacity: .58; font-size: .63rem; text-overflow: ellipsis; white-space: nowrap; }
.remove-image {
    margin-left: auto;
    padding: 7px 9px;
    border: 1px solid rgba(255,255,255,.24);
    border-radius: 8px;
    color: white;
    background: rgba(5,7,20,.42);
    cursor: pointer;
    font-size: .59rem;
    font-weight: 800;
    text-transform: uppercase;
}
.form-error { margin: -4px 0 13px; color: #ff8fbc; font-size: .72rem; line-height: 1.45; }
.create-button {
    width: 100%;
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 19px;
    border: 1px solid rgba(32,227,255,.56);
    border-radius: 13px;
    color: #061118;
    background: linear-gradient(90deg, var(--cyan), var(--mint));
    box-shadow: 0 10px 28px rgba(32,227,255,.14);
    cursor: pointer;
    font-size: .72rem;
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: transform .18s, box-shadow .18s, filter .18s;
}
.create-button span:last-child { font-size: 1.3rem; }
.create-button:hover { transform: translateY(-2px); filter: brightness(1.06); box-shadow: 0 14px 34px rgba(32,227,255,.24); }
.create-button:disabled { transform: none; cursor: wait; filter: grayscale(.7); opacity: .5; }

.moments {
    padding: 94px max(32px, calc((100vw - 1400px) / 2 + 32px)) 118px;
    border-top: 1px solid var(--line);
    background: rgba(3,5,18,.68);
}
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: 45px; }
.section-heading .eyebrow { margin-bottom: 14px; color: var(--mint); }
.section-heading h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.8rem, 5vw, 4.8rem);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -.045em;
}
.event-count { padding-bottom: 8px; color: var(--yellow); font-size: .65rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.timer-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.timer-grid:empty { display: none; }
.timer-card {
    position: relative;
    min-height: 420px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 24px;
    background-color: #172b3c;
    background-image: linear-gradient(135deg, transparent 0 58%, rgba(32,227,255,.11) 58% 61%, transparent 61%), radial-gradient(circle at 82% 18%, rgba(255,79,216,.8) 0 8%, transparent 8.2%);
    background-position: center;
    background-size: cover;
    box-shadow: 0 20px 60px rgba(0,0,0,.26);
    isolation: isolate;
}
.timer-card:nth-child(4n + 2):not(.has-image) { background-color: #352343; }
.timer-card:nth-child(4n + 3):not(.has-image) { background-color: #344026; }
.card-scrim { position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(4,6,18,.36), rgba(4,6,18,.48) 45%, rgba(4,6,18,.93)); }
.timer-card:not(.has-image) .card-scrim { background: linear-gradient(180deg, rgba(4,6,18,.08), rgba(4,6,18,.54)); }
.card-content { min-height: 420px; display: flex; flex-direction: column; padding: 28px; }
.card-topline { display: flex; align-items: center; justify-content: space-between; }
.event-label { color: rgba(255,255,255,.68); font-size: .57rem; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.delete-button {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border: 1px solid rgba(255,255,255,.35);
    border-radius: 50%;
    color: white;
    background: rgba(5,7,20,.18);
    cursor: pointer;
    font-size: 1.35rem;
    line-height: 1;
    transition: border-color .18s, background .18s, transform .18s;
}
.delete-button:hover { border-color: var(--pink); background: var(--pink); transform: rotate(7deg); }
.event-heading { display: flex; justify-content: space-between; gap: 20px; align-items: flex-start; margin-top: 44px; }
.event-heading h3 { margin: 0 0 8px; color: white; font-size: clamp(1.75rem, 3vw, 2.6rem); line-height: 1; letter-spacing: -.045em; }
.event-heading p { margin: 0; color: rgba(255,255,255,.66); font-size: .73rem; }
.photo-badge { flex: 0 0 auto; padding: 7px 9px; border: 1px solid rgba(255,255,255,.3); border-radius: 99px; color: rgba(255,255,255,.76); font-size: .5rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.countdown { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: auto; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.22); }
.time-unit { min-width: 0; padding: 0 14px; border-left: 1px solid rgba(255,255,255,.2); }
.time-unit:first-child { padding-left: 0; border-left: 0; }
.time-unit strong { display: block; color: white; font-size: clamp(2.2rem, 4.4vw, 4rem); font-weight: 720; line-height: 1; letter-spacing: -.065em; font-variant-numeric: tabular-nums; }
.time-unit span { display: block; margin-top: 11px; color: var(--cyan); font-size: .49rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.complete-message { margin-top: auto; padding-top: 27px; border-top: 1px solid rgba(255,255,255,.22); }
.complete-message > span { color: var(--pink); font-family: Georgia, "Times New Roman", serif; font-size: clamp(3.5rem, 7vw, 5.8rem); line-height: .9; }
.complete-message p { margin-bottom: 0; color: rgba(255,255,255,.63); font-size: .78rem; }

.empty-state {
    min-height: 220px;
    display: grid;
    grid-template-columns: minmax(250px, 1fr) minmax(280px, 1fr) auto;
    gap: 40px;
    align-items: center;
    padding: 40px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255,255,255,.025);
}
.empty-state[hidden] { display: none; }
.empty-number { color: rgba(255,255,255,.1); font-size: clamp(2.6rem, 6vw, 5.4rem); font-weight: 800; letter-spacing: -.07em; font-variant-numeric: tabular-nums; }
.empty-state h3 { margin: 0 0 9px; font-size: 1.18rem; }
.empty-state p { margin: 0; color: var(--muted); font-size: .78rem; line-height: 1.55; }
.empty-state a { color: var(--pink); font-size: .66rem; font-weight: 900; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; }

footer {
    width: min(1400px, calc(100% - 64px));
    min-height: 124px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 30px;
}
footer p { margin: 0; color: var(--muted); font-size: .68rem; }
footer > a:last-child { justify-self: end; }

@media (max-width: 1020px) {
    .hero { max-width: 790px; grid-template-columns: 1fr; gap: 62px; }
    h1 { font-size: clamp(4.2rem, 12vw, 7rem); }
    .timer-grid { grid-template-columns: 1fr; }
    .time-unit strong { font-size: clamp(2.8rem, 8vw, 4.8rem); }
}
@media (max-width: 700px) {
    .topbar, .hero, footer { width: min(100% - 36px, 1400px); }
    .topbar { height: 74px; grid-template-columns: 1fr auto; }
    .topbar .wordmark { justify-self: end; }
    .storage-status { display: none; }
    .hero { padding: 68px 0 82px; gap: 52px; }
    .hero-copy::after { display: none; }
    h1 { font-size: clamp(3.4rem, 18vw, 5.6rem); }
    .intro { margin-top: 28px; font-size: .95rem; }
    .privacy-note { margin-top: 27px; }
    .event-form { padding: 24px 20px; border-radius: 19px; box-shadow: 8px 8px 0 rgba(32,227,255,.12); }
    .field-row { grid-template-columns: 1fr; gap: 0; }
    .moments { padding: 74px 18px 82px; }
    .section-heading { align-items: flex-start; }
    .event-count { padding-top: 5px; }
    .timer-card, .card-content { min-height: 390px; }
    .card-content { padding: 22px; }
    .event-heading { margin-top: 32px; }
    .photo-badge { display: none; }
    .time-unit { padding: 0 8px; }
    .time-unit strong { font-size: clamp(1.8rem, 11vw, 2.8rem); }
    .time-unit span { letter-spacing: .05em; }
    .empty-state { grid-template-columns: 1fr; gap: 23px; padding: 27px; }
    footer { grid-template-columns: 1fr auto; }
    footer p { display: none; }
}
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition-duration: .01ms !important; }
}

/* Countdown dialog */
.header-actions {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 18px;
}
.header-actions .storage-status { justify-self: auto; }
.add-countdown-button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 17px;
    border: 1px solid rgba(32,227,255,.48);
    border-radius: 999px;
    color: #07131a;
    background: linear-gradient(90deg, var(--cyan), var(--mint));
    box-shadow: 0 9px 28px rgba(32,227,255,.16);
    cursor: pointer;
    font-size: .69rem;
    font-weight: 950;
    letter-spacing: .06em;
    text-transform: uppercase;
    white-space: nowrap;
    transition: transform .18s, box-shadow .18s, filter .18s;
}
.add-countdown-button > span:first-child { font-size: 1.05rem; line-height: 1; }
.add-countdown-button:hover {
    transform: translateY(-2px);
    filter: brightness(1.07);
    box-shadow: 0 12px 34px rgba(32,227,255,.26);
}
.add-short { display: none; }

.countdown-dialog {
    width: min(590px, calc(100% - 24px));
    max-width: none;
    max-height: calc(100dvh - 24px);
    margin: auto;
    padding: 12px;
    overflow-x: hidden;
    overflow-y: auto;
    border: 0;
    color: var(--ink);
    background: transparent;
}
.countdown-dialog::backdrop {
    background: rgba(2, 4, 17, .78);
    backdrop-filter: blur(9px);
}
.countdown-dialog[open] { animation: dialog-in .2s ease-out; }
.dialog-panel { position: relative; }
.dialog-panel .event-form { margin: 0; }
.dialog-close {
    position: absolute;
    top: 17px;
    right: 17px;
    z-index: 3;
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 50%;
    color: white;
    background: rgba(255,255,255,.06);
    cursor: pointer;
    font-size: 1.35rem;
    line-height: 1;
    transition: border-color .18s, background .18s, transform .18s;
}
.dialog-close:hover { border-color: var(--pink); background: var(--pink); transform: rotate(6deg); }
body.modal-open { overflow: hidden; }
.empty-create-button {
    padding: 0;
    border: 0;
    color: var(--pink);
    background: transparent;
    cursor: pointer;
    font-size: .66rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.empty-create-button span { display: inline-block; margin-left: 4px; font-size: .9rem; transition: transform .18s; }
.empty-create-button:hover span { transform: rotate(90deg); }
@keyframes dialog-in {
    from { opacity: 0; transform: translateY(12px) scale(.985); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 1120px) {
    .header-actions .storage-status { display: none; }
}
@media (max-width: 700px) {
    .topbar { grid-template-columns: auto 1fr auto; gap: 8px; }
    .topbar .wordmark { justify-self: center; font-size: .9rem; }
    .back-label { display: none; }
    .back-link { font-size: 0; }
    .back-link > span:first-child { margin: 0; font-size: 1rem; }
    .add-full { display: none; }
    .add-short { display: inline; }
    .add-countdown-button { min-height: 40px; padding: 0 12px; }
    .countdown-dialog { width: calc(100% - 12px); max-height: calc(100dvh - 12px); padding: 6px; }
    .dialog-panel .event-form { padding-top: 30px; }
    .dialog-close { top: 14px; right: 14px; }
}
/* Backup transfer */
.transfer-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 9px;
    padding-bottom: 1px;
}
.transfer-actions .event-count { margin-right: 7px; padding-bottom: 0; }
.transfer-button {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0 13px;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 999px;
    color: #dce5f5;
    background: rgba(255,255,255,.045);
    cursor: pointer;
    font-size: .62rem;
    font-weight: 900;
    letter-spacing: .07em;
    text-transform: uppercase;
    white-space: nowrap;
    transition: transform .18s, border-color .18s, background .18s, color .18s;
}
.transfer-button:hover {
    transform: translateY(-2px);
    border-color: var(--cyan);
    color: white;
    background: rgba(32,227,255,.09);
}
.transfer-button:disabled { transform: none; cursor: not-allowed; opacity: .38; }
.transfer-button.is-busy { pointer-events: none; opacity: .5; }
.import-button:focus-within { outline: 3px solid var(--yellow); outline-offset: 4px; }
.transfer-button > span { color: var(--cyan); font-size: .9rem; line-height: 1; }
.import-button { position: relative; }
.import-button input { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.transfer-status {
    margin: -24px 0 28px;
    padding: 11px 14px;
    border: 1px solid rgba(57,255,200,.24);
    border-radius: 11px;
    color: #bfffea;
    background: rgba(57,255,200,.06);
    font-size: .72rem;
    line-height: 1.45;
}
.transfer-status[data-tone="error"] {
    border-color: rgba(255,79,216,.34);
    color: #ffc1ed;
    background: rgba(255,79,216,.08);
}

@media (max-width: 700px) {
    .section-heading { flex-wrap: wrap; }
    .transfer-actions { width: 100%; justify-content: flex-start; flex-wrap: wrap; }
    .transfer-actions .event-count { margin-right: auto; }
    .transfer-status { margin-top: -28px; }
}
/* Doomsday livestream */
.doomsday-feature {
    max-width: 1120px;
    margin: 0 auto 84px;
    overflow: hidden;
    border: 1px solid rgba(129, 255, 150, .2);
    border-radius: 24px;
    background: rgba(5, 8, 20, .86);
    box-shadow: 0 26px 90px rgba(0,0,0,.36), 0 0 45px rgba(57,255,200,.05);
}
.doomsday-frame {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #020309;
}
.doomsday-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.doomsday-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 20px 22px 12px;
}
.doomsday-meta p {
    margin: 0 0 6px;
    color: var(--mint);
    font-size: .58rem;
    font-weight: 900;
    letter-spacing: .15em;
    text-transform: uppercase;
}
.doomsday-meta h2 {
    margin: 0;
    font-family: inherit;
    font-size: clamp(1.2rem, 2.4vw, 1.8rem);
    font-weight: 850;
    letter-spacing: -.025em;
}
.doomsday-meta a {
    flex: 0 0 auto;
    color: #dbe5f5;
    font-size: .66rem;
    font-weight: 900;
    letter-spacing: .06em;
    text-decoration: none;
    text-transform: uppercase;
}
.doomsday-meta a span { margin-left: 5px; color: var(--cyan); }
.doomsday-meta a:hover { color: white; }
.doomsday-note {
    margin: 0;
    padding: 0 22px 19px;
    color: rgba(255,255,255,.4);
    font-size: .59rem;
    line-height: 1.45;
}

@media (max-width: 700px) {
    .doomsday-feature { margin-bottom: 60px; border-radius: 17px; }
    .doomsday-meta { align-items: flex-start; padding: 16px 16px 10px; }
    .doomsday-meta a { font-size: 0; }
    .doomsday-meta a span { font-size: .9rem; }
    .doomsday-note { padding: 0 16px 16px; }
}