/* /announcements — лента анонсов CEX.
   Тёмные карточки в стиле /referrals, но в ОДИН столбик + боковая панель
   фильтров слева. Цветные бейджи типа (листинг/делистинг/тех-работы/...). */

.announcements-page {
  background: var(--bg);
  color: var(--text);
  margin: 0;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
}

/* Hide the shell "Scanner Panel / Quotes" brand block on this page
   (same as /account, /alerts, /referrals). */
.announcements-page .app-shell-brand { display: none; }

.ann-main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 40px 24px 80px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.ann-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ann-title {
  margin: 0;
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.ann-sub {
  margin: 0;
  color: rgba(234, 236, 239, 0.62);
  font-size: 14.5px;
  line-height: 1.55;
  max-width: 680px;
}

/* Header right-side controls: language switch + notifications button. */
.ann-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* EN | RU segmented language toggle. Active = white pill (matches the notify
   button); inactive = muted. Each option is a full-reload link. */
.ann-lang {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.ann-lang-opt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  padding: 5px 9px;
  border-radius: 7px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(234, 236, 239, 0.55);
  text-decoration: none;
  transition: color 0.14s ease, background 0.14s ease;
}
.ann-lang-opt:hover { color: rgba(234, 236, 239, 0.95); }
.ann-lang-opt.is-on { color: #11151a; background: #ffffff; cursor: default; }

/* --- Layout: side panel + single-column feed --- */
.ann-layout {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

/* --- Side panel (filters) --- */
.ann-sidepanel {
  flex: 0 0 248px;
  position: sticky;
  top: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  background: linear-gradient(180deg, #15191e 0%, #0e1216 100%);
  border: 1px solid #232a31;
  border-radius: 16px;
}

.ann-filter-block { display: flex; flex-direction: column; gap: 10px; }

.ann-filter-label {
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #fff;
}

/* small exchange logo in the exchange filter list */
.ann-chip-ico {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  object-fit: contain;
  flex-shrink: 0;
}

.ann-search {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(234, 236, 239, 0.6);
}

.ann-search input {
  flex: 1 1 auto;
  min-width: 0;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text);
  font: inherit;
  font-size: 13px;
}

.ann-search input::placeholder { color: rgba(234, 236, 239, 0.4); }

/* Filters as vertical lists, NO capsules: unselected = muted plain text,
   selected = colour change only (exchanges -> accent, types -> own colour). */
.ann-chips {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1px;
}

.ann-chip {
  appearance: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  text-align: left;
  padding: 6px 6px;
  border: none;
  background: none;
  border-radius: 6px;
  font: inherit;
  font-size: 13px;
  font-weight: 500;
  color: rgba(234, 236, 239, 0.5);
  transition: color 0.14s ease, background 0.14s ease;
}

.ann-chip:hover { color: rgba(234, 236, 239, 0.92); background: rgba(255, 255, 255, 0.04); }

/* selected: "All" + exchanges -> accent; type chips overridden to own colour below */
.ann-chip.is-on { color: var(--accent, #6ee7b7); font-weight: 700; }

/* type colour dot follows currentColor (grey when unselected, coloured when selected) */
.ann-chip[data-type]:not([data-type=""])::before {
  content: "";
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}
.ann-chip--listing.is-on { color: #5ef0b6; }
.ann-chip--delisting.is-on { color: #ff8585; }
.ann-chip--maintenance.is-on { color: #f4c152; }
.ann-chip--airdrop.is-on { color: #c4a6ff; }
.ann-chip--promo.is-on { color: #ff8fc8; }
.ann-chip--trading_update.is-on { color: #7cbcff; }
.ann-chip--other.is-on { color: #aeb8c2; }

.ann-status-block {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  gap: 12px;
}

.ann-live-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(234, 236, 239, 0.82);
  cursor: pointer;
}
.ann-live-toggle input { accent-color: var(--accent, #6ee7b7); width: 15px; height: 15px; }

.ann-status { font-size: 12px; color: rgba(234, 236, 239, 0.45); min-height: 16px; }
.ann-status.is-error { color: #ff8585; }

/* --- Feed: column of cards --- */
.ann-feed {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ann-empty {
  padding: 40px 0;
  text-align: center;
  color: rgba(234, 236, 239, 0.45);
  font-size: 14px;
}

.ann-loadmore {
  align-self: center;
  margin-top: 8px;
  appearance: none;
  cursor: pointer;
  padding: 10px 24px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(234, 236, 239, 0.9);
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.ann-loadmore:hover {
  background: rgba(212, 163, 115, 0.1);
  border-color: rgba(212, 163, 115, 0.4);
  color: #ecd0a8;
}

.ann-card {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  background:
    radial-gradient(130% 100% at 0% 0%, rgba(255, 255, 255, 0.055), transparent 55%),
    linear-gradient(180deg, #1a1e24 0%, #101318 100%);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  padding: 16px 18px;
  transition: border-color 0.16s ease, transform 0.16s ease, box-shadow 0.16s ease;
}

/* exchange logo at the start of each card (ref image) */
.ann-logo {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  object-fit: contain;
  flex-shrink: 0;
}
.ann-logo.is-broken { display: none; }

.ann-body {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.ann-card:hover {
  border-color: rgba(233, 205, 166, 0.45);
  transform: translateY(-2px);
  box-shadow: 0 16px 38px -18px rgba(0, 0, 0, 0.85);
}

.ann-card-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Type badge — coloured pill */
.ann-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 9px;
  border-radius: 6px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.2;
  flex-shrink: 0;
}
.ann-badge--listing { background: rgba(94, 240, 182, 0.14); color: #5ef0b6; }
.ann-badge--delisting { background: rgba(255, 107, 107, 0.14); color: #ff8585; }
.ann-badge--maintenance { background: rgba(244, 193, 82, 0.14); color: #f4c152; }
.ann-badge--airdrop { background: rgba(176, 139, 255, 0.16); color: #c4a6ff; }
.ann-badge--promo { background: rgba(255, 143, 200, 0.16); color: #ff8fc8; }
.ann-badge--trading_update { background: rgba(90, 169, 255, 0.14); color: #7cbcff; }
.ann-badge--other { background: rgba(154, 166, 178, 0.14); color: #aeb8c2; }

.ann-exch {
  font-size: 12px;
  font-weight: 600;
  color: rgba(234, 236, 239, 0.8);
  padding: 2px 8px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

.ann-time {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: rgba(234, 236, 239, 0.42);
  flex-shrink: 0;
}
.ann-time-ic { width: 12px; height: 12px; flex-shrink: 0; opacity: 0.85; }

.ann-card-title {
  font-size: 15px;
  line-height: 1.45;
  font-weight: 600;
  color: #eef2f6;
  text-decoration: none;
  display: block;
}
a.ann-card-title:hover { color: #ecd0a8; }

/* Haiku-generated description under the title (EN on /, RU on /ru). Empty when the
   item has no translation yet (non-listing/delisting, or not yet processed). */
.ann-card-desc {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(234, 236, 239, 0.62);
}
.ann-card-desc:empty { display: none; }
/* Each description sentence/section is its own paragraph (not one wall of text). */
.ann-desc-p { margin: 0 0 7px; }
.ann-desc-p:last-child { margin-bottom: 0; }

.ann-syms { display: flex; flex-wrap: wrap; gap: 6px; }

.ann-sym {
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 2px 7px;
  border-radius: 5px;
  background: rgba(90, 169, 255, 0.1);
  border: 1px solid rgba(90, 169, 255, 0.28);
  color: #7cbcff;
}

/* A coin chip we can deep-link → clickable "open this coin on the exchange" (+ ref). */
a.ann-sym-link {
  text-decoration: none;
  cursor: pointer;
  transition: background 0.14s ease, border-color 0.14s ease, color 0.14s ease, transform 0.14s ease;
}
a.ann-sym-link:hover {
  background: rgba(90, 169, 255, 0.22);
  border-color: rgba(90, 169, 255, 0.6);
  color: #b9dcff;
  transform: translateY(-1px);
}

/* Card action buttons (Анонс / Участвовать). */
.ann-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.ann-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 9px;
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease,
    transform 0.12s ease, box-shadow 0.15s ease;
}
.ann-btn::after { content: "↗"; font-size: 11px; opacity: 0.65; }
.ann-btn:active { transform: translateY(1px); }
/* Анонс = white button. */
.ann-btn-anons {
  color: #11151a;
  background: #ffffff;
  border: 1px solid #ffffff;
}
.ann-btn-anons:hover {
  background: #e9edf1;
  border-color: #e9edf1;
}
/* Участвовать = primary CTA (gold gradient — the "win / reward" money button). */
.ann-btn-promo {
  color: #3a2c00;
  background: linear-gradient(180deg, #f4cd5f 0%, #e0a52e 100%);
  border: 1px solid transparent;
  font-weight: 700;
}
.ann-btn-promo:hover {
  background: linear-gradient(180deg, #f8d572 0%, #e8af3c 100%);
  box-shadow: 0 8px 20px -9px rgba(224, 165, 46, 0.6);
  transform: translateY(-1px);
}

/* --- Responsive: stack side panel above feed --- */
@media (max-width: 880px) {
  .ann-layout { flex-direction: column; }
  .ann-sidepanel {
    position: static;
    flex: 1 1 auto;
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }
  .ann-filter-block { flex: 1 1 200px; }
}

@media (max-width: 600px) {
  .ann-main { padding: 28px 14px 56px; gap: 20px; }
  .ann-title { font-size: 24px; }
  .ann-card-row { flex-wrap: wrap; }
  .ann-time { margin-left: 0; }
}

/* ===================================================================== */
/* 🔔 Telegram notifications panel (notify.js)                            */
/* ===================================================================== */

/* header becomes a row so the bell button sits opposite the title */
.ann-header { flex-direction: row; align-items: center; justify-content: space-between; flex-wrap: wrap; }

.ann-notify-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 15px; border-radius: 11px; cursor: pointer;
  background: #ffffff; color: #11151a;
  border: 1px solid #ffffff; font-size: 14px; font-weight: 600;
}
.ann-notify-btn:hover { background: #e9edf1; border-color: #e9edf1; }

.annn-modal { position: fixed; inset: 0; z-index: 1000; display: block; }
.annn-modal[hidden] { display: none; }
.annn-backdrop { position: absolute; inset: 0; background: rgba(4, 7, 10, 0.66); backdrop-filter: blur(2px); }
.annn-card {
  position: relative; z-index: 1; width: min(560px, calc(100vw - 32px));
  max-height: calc(100vh - 56px); overflow-y: auto; margin: 28px auto;
  background: linear-gradient(180deg, #161b20 0%, #0e1216 100%);
  border: 1px solid #283139; border-radius: 18px; padding: 24px 24px 28px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}
.annn-x {
  position: absolute; top: 14px; right: 14px; width: 30px; height: 30px;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0; margin: 0; box-sizing: border-box; font-family: inherit;
  border-radius: 8px; border: 1px solid #283139; background: transparent;
  color: rgba(234, 236, 239, 0.7); cursor: pointer; font-size: 15px; line-height: 1;
}
.annn-x:hover { background: rgba(255, 255, 255, 0.05); color: #fff; }
.annn-title { margin: 0 0 18px; font-size: 19px; font-weight: 700; color: #fff; }
.annn-sec { padding: 16px 0; border-top: 1px solid #1e252b; }
.annn-sec:first-of-type { border-top: 0; padding-top: 0; }
.annn-h3 { margin: 0 0 8px; font-size: 14.5px; font-weight: 700; color: #eaecef; }
.annn-note { margin: 0 0 10px; font-size: 12.5px; color: rgba(234, 236, 239, 0.55); }
.annn-label { margin: 12px 0 6px; font-size: 12.5px; color: rgba(234, 236, 239, 0.72); font-weight: 600; }
.annn-hint { font-weight: 400; color: rgba(234, 236, 239, 0.45); }
.annn-status { font-size: 13.5px; color: rgba(234, 236, 239, 0.85); margin-bottom: 10px; }

.annn-guest { text-align: center; padding: 14px 0 4px; }
.annn-guest p { color: rgba(234, 236, 239, 0.78); font-size: 14px; line-height: 1.55; margin: 0 0 16px; }

.annn-btn {
  display: inline-flex; align-items: center; gap: 6px; padding: 9px 16px;
  border-radius: 10px; border: 1px solid #ffffff;
  background: #ffffff; color: #11151a;
  font-size: 13.5px; font-weight: 650; cursor: pointer; text-decoration: none;
}
.annn-btn:hover { background: #e9edf1; border-color: #e9edf1; }
.annn-btn:disabled { opacity: 0.45; cursor: not-allowed; }
.annn-btn:disabled:hover { background: #ffffff; border-color: #ffffff; }
/* secondary actions (Recheck / Unlink): white outline, transparent fill */
.annn-btn-ghost { background: transparent; color: #eaecef; border-color: rgba(255, 255, 255, 0.5); }
.annn-btn-ghost:hover { background: rgba(255, 255, 255, 0.1); color: #fff; border-color: #fff; }

.annn-form summary { cursor: pointer; font-size: 13.5px; color: var(--accent, #6ee7b7); }
.annn-help { margin: 10px 0; padding-left: 18px; color: rgba(234, 236, 239, 0.7); font-size: 13px; line-height: 1.7; }
.annn-help a { color: var(--accent, #6ee7b7); }
.annn-form form { display: flex; gap: 8px; margin-top: 8px; flex-wrap: wrap; }
.annn-form input, .annn-q {
  flex: 1 1 220px; min-width: 0; padding: 10px 12px; border-radius: 9px;
  border: none; outline: none; background: #0c0f13; color: #eaecef; font-size: 13.5px;
}
.annn-q { margin: 10px 0; width: 100%; }
.annn-form input:focus, .annn-q:focus { outline: none; border: none; background: #11161c; }
.annn-active p { margin: 0 0 8px; font-size: 13.5px; color: #eaecef; }
.annn-deep { margin: 8px 0; font-size: 13px; color: rgba(234, 236, 239, 0.7); }
.annn-actions { display: flex; gap: 8px; margin-top: 10px; }

.annn-msg { margin: 8px 0 0; font-size: 12.5px; }
.annn-msg.is-ok { color: #5ef0b6; }
.annn-msg.is-err { color: #ff8585; }

/* centered in-page confirm (unlink) — sits above the panel modal */
.annn-confirm { position: fixed; inset: 0; z-index: 1100; display: flex; align-items: center; justify-content: center; background: rgba(4, 7, 10, 0.66); }
.annn-confirm-card { width: min(360px, calc(100vw - 48px)); background: linear-gradient(180deg, #161b20 0%, #0e1216 100%); border: 1px solid #283139; border-radius: 14px; padding: 22px 20px; box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5); }
.annn-confirm-msg { margin: 0 0 18px; color: #eaecef; font-size: 14px; line-height: 1.5; text-align: center; }
.annn-confirm-actions { display: flex; gap: 10px; justify-content: center; }

.annn-chips { display: flex; flex-wrap: wrap; gap: 7px; }
.annn-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 11px; border-radius: 9px; border: 1px solid #2c353d;
  background: rgba(255, 255, 255, 0.02); color: rgba(234, 236, 239, 0.78);
  font-size: 12.5px; cursor: pointer;
}
.annn-chip-ico { width: 15px; height: 15px; border-radius: 3px; object-fit: contain; flex: 0 0 auto; }
.annn-chip:hover { background: rgba(255, 255, 255, 0.05); }
.annn-chip.is-on { color: var(--accent, #6ee7b7); border-color: rgba(110, 231, 183, 0.45); background: rgba(110, 231, 183, 0.12); font-weight: 650; }

/* notification-language toggle — reuses the header .ann-lang/.ann-lang-opt segmented pill so it
   looks IDENTICAL to the site language switcher up top; placed at the RIGHT of the row, with the
   Create-subscription button on the LEFT. (Type/exchange pickers stay the green .annn-chip.) */
.annn-subrow { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-top: 14px; }
.annn-langsel { display: inline-flex; align-items: center; gap: 8px; margin-left: auto; }
.annn-langsel-label { font-size: 12.5px; color: rgba(234, 236, 239, 0.72); font-weight: 600; }
/* the pill options are <button>s here (header uses <a>) — reset native button chrome so they
   render byte-identically to the header toggle. */
button.ann-lang-opt { background: transparent; border: none; font-family: inherit; -webkit-appearance: none; appearance: none; cursor: pointer; }
button.ann-lang-opt.is-on { cursor: default; }

.annn-subs { display: flex; flex-direction: column; gap: 8px; }
.annn-sub-row { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border: 1px solid #2c353d; border-radius: 10px; background: rgba(255, 255, 255, 0.02); }
.annn-sub-text { flex: 1; font-size: 12.8px; color: #eaecef; line-height: 1.4; }
.annn-sub-del {
  flex: 0 0 auto; display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; padding: 0; margin: 0; box-sizing: border-box; font-family: inherit;
  border: 1px solid #2c353d; border-radius: 8px;
  background: transparent; color: rgba(234, 236, 239, 0.6); cursor: pointer; font-size: 13px; line-height: 1;
}
.annn-sub-del:hover { color: #ff8585; border-color: rgba(255, 133, 133, 0.5); background: rgba(255, 133, 133, 0.1); }
.annn-switch { position: relative; display: inline-flex; flex: 0 0 auto; width: 34px; height: 19px; }
.annn-switch input { position: absolute; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.annn-switch span { position: absolute; inset: 0; border-radius: 999px; background: #2c353d; transition: background 0.15s; }
.annn-switch span::after { content: ""; position: absolute; top: 2px; left: 2px; width: 15px; height: 15px; border-radius: 50%; background: #eaecef; transition: transform 0.15s; }
.annn-switch input:checked + span { background: var(--accent, #6ee7b7); }
.annn-switch input:checked + span::after { transform: translateX(15px); }

@media (max-width: 600px) {
  .annn-card { margin: 14px auto; padding: 18px 16px 22px; }
}

/* --- Announcement SEO hub pages (/announcements/<exchange>) + feed footer links --- */
a.ann-chip { text-decoration: none; }  /* hub sidebar uses <a> filter chips (feed uses <button>) */
.annhub-intro { margin: 2px 0 18px; color: rgba(234, 236, 239, 0.8); font-size: 14px; line-height: 1.6; max-width: 760px; }
.annhub-intro a { color: var(--accent, #6ee7b7); white-space: nowrap; }
.annhub-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.annhub-item { display: flex; align-items: flex-start; gap: 12px; padding: 12px 14px; border: 1px solid #1c232b; border-radius: 10px; background: rgba(255, 255, 255, 0.02); }
.annhub-badge { flex: 0 0 auto; align-self: flex-start; display: inline-flex; align-items: center; width: auto; min-width: 86px; justify-content: center; padding: 4px 10px; border-radius: 7px; font-size: 11.5px; font-weight: 700; letter-spacing: 0.02em; white-space: nowrap; border: 1px solid transparent; }
.annhub-badge--listing { color: #6ee7b7; background: rgba(110, 231, 183, 0.12); border-color: rgba(110, 231, 183, 0.3); }
.annhub-badge--delisting { color: #ff8585; background: rgba(255, 133, 133, 0.12); border-color: rgba(255, 133, 133, 0.3); }
.annhub-badge--maintenance { color: #ffcf6e; background: rgba(255, 207, 110, 0.12); border-color: rgba(255, 207, 110, 0.3); }
.annhub-badge--airdrop { color: #c39bf5; background: rgba(195, 155, 245, 0.12); border-color: rgba(195, 155, 245, 0.3); }
.annhub-badge--promo { color: #ffd86e; background: rgba(255, 216, 110, 0.12); border-color: rgba(255, 216, 110, 0.3); }
.annhub-badge--trading_update { color: #7cbcff; background: rgba(124, 188, 255, 0.12); border-color: rgba(124, 188, 255, 0.3); }
.annhub-badge--other { color: rgba(234, 236, 239, 0.62); background: rgba(255, 255, 255, 0.05); border-color: rgba(255, 255, 255, 0.12); }
.annhub-body { flex: 1 1 auto; min-width: 0; }
.annhub-link { color: #eaecef; font-size: 14.5px; font-weight: 600; text-decoration: none; line-height: 1.4; }
.annhub-link:hover { color: var(--accent, #6ee7b7); text-decoration: underline; }
.annhub-desc { margin: 5px 0 0; color: rgba(234, 236, 239, 0.6); font-size: 13px; line-height: 1.55; }
.annhub-date { flex: 0 0 auto; color: rgba(234, 236, 239, 0.4); font-size: 12px; white-space: nowrap; margin-top: 2px; }
.annhub-empty { color: rgba(234, 236, 239, 0.6); font-size: 14px; padding: 20px 0; }
.annhub-others { margin: 30px 0 8px; }
.annhub-others-title { font-size: 14px; color: rgba(234, 236, 239, 0.75); font-weight: 600; margin: 0 0 10px; }
.annhub-others-links, .annhub-footer { display: flex; flex-wrap: wrap; gap: 8px 14px; align-items: center; }
.annhub-others-links a, .annhub-footer a { color: rgba(234, 236, 239, 0.7); font-size: 13px; text-decoration: none; }
.annhub-others-links a:hover, .annhub-footer a:hover { color: var(--accent, #6ee7b7); }
.annhub-footer { margin: 26px 4px 10px; padding-top: 16px; border-top: 1px solid #1c232b; }
.annhub-footer-label { color: rgba(234, 236, 239, 0.5); font-size: 13px; font-weight: 600; }
@media (max-width: 600px) { .annhub-item { flex-wrap: wrap; } .annhub-date { order: 3; } }
