:root {
  --bg: #0b1220;
  --bg-elevated: #121a2b;
  --card: #161f33;
  --card-hover: #1c2740;
  --border: rgba(148, 163, 184, 0.16);
  --text: #e8eef9;
  --muted: #94a3b8;
  --accent: #2dd4bf;
  --accent-dim: rgba(45, 212, 191, 0.15);
  --danger: #f87171;
  --radius: 14px;
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  --font: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "PingFang SC",
    "Noto Sans SC", "Microsoft YaHei", sans-serif;
  --topbar-h: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  min-height: 100%;
  -webkit-font-smoothing: antialiased;
}

body {
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(45, 212, 191, 0.08), transparent),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(59, 130, 246, 0.06), transparent);
}

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

img {
  max-width: 100%;
  display: block;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(11, 18, 32, 0.85);
  border-bottom: 1px solid var(--border);
}

.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  min-height: var(--topbar-h);
}

.brand {
  display: flex;
  gap: 12px;
  align-items: center;
}
.brand-icon {
  font-size: 1.6rem;
}
.brand h1 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.subtitle {
  margin: 2px 0 0;
  font-size: 0.75rem;
  color: var(--muted);
}

.search-wrap {
  display: flex;
  gap: 8px;
  flex: 1;
  min-width: 200px;
  max-width: 420px;
}
.search-wrap input {
  flex: 1;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text);
  padding: 10px 16px;
  font-size: 0.95rem;
  outline: none;
}
.search-wrap input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}

.btn {
  appearance: none;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--text);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, transform 0.1s;
  white-space: nowrap;
}
.btn:hover:not(:disabled) {
  background: var(--card-hover);
}
.btn:active:not(:disabled) {
  transform: scale(0.98);
}
.btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.btn-primary {
  background: var(--accent-dim);
  border-color: rgba(45, 212, 191, 0.45);
  color: var(--accent);
}
.btn-accent {
  background: linear-gradient(135deg, rgba(45, 212, 191, 0.25), rgba(59, 130, 246, 0.2));
  border-color: rgba(45, 212, 191, 0.5);
  color: #ecfeff;
  text-decoration: none;
}
.btn-accent:hover {
  text-decoration: none;
  filter: brightness(1.08);
}
.btn-ghost {
  background: transparent;
}
.btn-sm {
  padding: 4px 10px;
  font-size: 0.75rem;
}
.icon-btn {
  padding: 8px 10px;
}

.main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 16px 80px;
}

.status {
  text-align: center;
  color: var(--muted);
  padding: 12px;
  font-size: 0.9rem;
}
.status.error {
  color: var(--danger);
}

.empty {
  text-align: center;
  color: var(--muted);
  padding: 64px 16px;
  line-height: 1.6;
}

.feed {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition: transform 0.15s, border-color 0.15s, background 0.15s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.card:hover,
.card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(45, 212, 191, 0.35);
  background: var(--card-hover);
  outline: none;
}

.card-media {
  position: relative;
  aspect-ratio: 4 / 5;
  background: #0a0f1a;
  overflow: hidden;
}
.card-media img,
.card-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-media.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  aspect-ratio: 1;
}
.card-media.placeholder .card-excerpt {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.7rem;
  font-weight: 600;
  color: #e2e8f0;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.media-fail {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.55);
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
}
.card-media.broken .media-fail {
  opacity: 1;
  pointer-events: auto;
}

.card-body {
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.card-author {
  display: flex;
  gap: 10px;
  align-items: center;
}
.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  background: #1e293b;
  border: 1px solid var(--border);
  flex-shrink: 0;
}
.avatar.lg {
  width: 48px;
  height: 48px;
}
.card-author-text {
  min-width: 0;
}
.card-author-name {
  font-weight: 650;
  font-size: 0.9rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.card-author-handle {
  font-size: 0.78rem;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.card-snippet {
  margin: 0;
  font-size: 0.85rem;
  color: #cbd5e1;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--muted);
}
.card-stats {
  display: flex;
  gap: 10px;
}

.sentinel {
  height: 40px;
}

/* Modal */
.modal[hidden] {
  display: none !important;
}
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 12px;
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.72);
  backdrop-filter: blur(6px);
}
.modal-panel {
  position: relative;
  width: min(720px, 100%);
  max-height: min(94vh, 960px);
  overflow: auto;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.modal-toolbar {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  background: rgba(18, 26, 43, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.modal-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.modal-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}
.modal-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.modal-media {
  display: grid;
  gap: 10px;
}
.modal-media .media-item {
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  border: 1px solid var(--border);
  position: relative;
}
.modal-media img,
.modal-media video {
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
  margin: 0 auto;
  background: #000;
}
.media-fallback {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 40px 20px;
  color: var(--muted);
  text-align: center;
}

.author-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.author-meta {
  flex: 1;
  min-width: 120px;
}
.author-name {
  font-weight: 700;
  font-size: 1.05rem;
}
.author-handle {
  font-size: 0.9rem;
}
.author-stats {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  font-size: 0.85rem;
}
.stat {
  color: #fda4af;
  font-weight: 600;
}

.text-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px;
}
.text-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.text-card-head h2 {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 650;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.tweet-text {
  margin: 0;
  white-space: pre-wrap;
  word-break: break-word;
  line-height: 1.55;
  font-size: 1rem;
}
.tweet-text.article-body,
pre.article-body {
  white-space: pre-wrap;
  word-break: break-word;
  line-height: 1.65;
  font-size: 0.98rem;
  font-family: inherit;
  max-height: min(70vh, 900px);
  overflow: auto;
  padding: 4px 2px;
}

.meta-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chip {
  border: 1px solid var(--border);
  background: rgba(148, 163, 184, 0.08);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.78rem;
  color: var(--muted);
}

.muted {
  color: var(--muted);
}

@media (max-width: 640px) {
  .feed {
    grid-template-columns: 1fr;
  }
  .modal {
    padding: 0;
  }
  .modal-panel {
    width: 100%;
    max-height: 100%;
    height: 100%;
    border-radius: 0;
  }
  .modal-toolbar {
    gap: 6px;
  }
  .search-wrap {
    max-width: none;
    width: 100%;
  }
}



/* Video card play affordance */
.card-media.has-video .play-badge {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.55);
  border: 2px solid rgba(255, 255, 255, 0.85);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0;
  pointer-events: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(4px);
}
.badge.badge-article {
  background: rgba(56, 189, 248, 0.25);
  border-color: rgba(56, 189, 248, 0.45);
  color: #7dd3fc;
}
.badge.badge-video {
  background: rgba(45, 212, 191, 0.22);
  border-color: rgba(45, 212, 191, 0.55);
  color: #99f6e4;
}

/* Modal: non-playable / fallback video */
.media-fallback.video-open-x {
  position: relative;
  padding: 0;
  min-height: 200px;
  overflow: hidden;
}
.media-fallback.video-open-x .video-poster {
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
  background: #000;
  opacity: 0.85;
}
.video-open-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.2));
  padding: 20px;
}
.play-on-x {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(45, 212, 191, 0.35), rgba(59, 130, 246, 0.3));
  border: 1px solid rgba(45, 212, 191, 0.65);
  color: #ecfeff;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}
.play-on-x:hover {
  text-decoration: none;
  filter: brightness(1.08);
}
.play-on-x-icon {
  display: inline-flex;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  font-size: 0.8rem;
}

/* Thread grouping */
.thread-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  grid-column: 1 / -1;
  padding: 12px;
  border: 1px dashed rgba(45, 212, 191, 0.28);
  border-radius: calc(var(--radius) + 4px);
  background: rgba(45, 212, 191, 0.04);
}
.thread-group-label {
  font-size: 0.75rem;
  font-weight: 650;
  color: var(--accent);
  letter-spacing: 0.02em;
}
.thread-replies {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
  padding-left: 8px;
  border-left: 2px solid rgba(45, 212, 191, 0.35);
}
.card-nested {
  box-shadow: none;
}
.thread-badge {
  margin: 10px 12px 0;
  display: inline-flex;
  align-self: flex-start;
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.35);
  color: #93c5fd;
  border-radius: 999px;
  padding: 3px 10px;
  font-size: 0.72rem;
  font-weight: 650;
}
.card .thread-badge {
  position: relative;
  z-index: 1;
}

.thread-panel {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
}
.thread-panel-head {
  font-size: 0.8rem;
  font-weight: 650;
  color: var(--muted);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.thread-panel-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.thread-panel-item {
  appearance: none;
  text-align: left;
  width: 100%;
  cursor: pointer;
  border: 1px solid var(--border);
  background: rgba(148, 163, 184, 0.06);
  border-radius: 10px;
  padding: 10px 12px;
  color: var(--text);
  display: grid;
  gap: 4px;
  font-family: inherit;
}
.thread-panel-item:hover {
  border-color: rgba(45, 212, 191, 0.4);
  background: rgba(45, 212, 191, 0.08);
}
.thread-panel-tag {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
}
.thread-panel-author {
  font-size: 0.8rem;
  color: var(--muted);
}
.thread-panel-snip {
  font-size: 0.85rem;
  color: #cbd5e1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 640px) {
  .thread-replies {
    grid-template-columns: 1fr;
    padding-left: 6px;
  }
}

/* Filter / tag bar */
.filter-bar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 16px 0;
}
.tag-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.tag-chip {
  appearance: none;
  border: 1px solid var(--border);
  background: rgba(148, 163, 184, 0.08);
  color: var(--muted);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 650;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.tag-chip:hover {
  border-color: rgba(45, 212, 191, 0.4);
  color: var(--text);
}
.tag-chip.active {
  background: var(--accent-dim);
  border-color: rgba(45, 212, 191, 0.55);
  color: var(--accent);
}
.tag-chip .count {
  opacity: 0.7;
  margin-left: 4px;
  font-weight: 500;
}

.topbar-actions {
  display: flex;
  gap: 6px;
  align-items: center;
}
.topbar-actions .btn.active {
  background: rgba(248, 113, 113, 0.12);
  border-color: rgba(248, 113, 113, 0.45);
  color: #fca5a5;
}

.trash-banner {
  background: rgba(248, 113, 113, 0.1);
  border: 1px solid rgba(248, 113, 113, 0.3);
  border-radius: 12px;
  padding: 10px 14px;
  margin-bottom: 14px;
  font-size: 0.85rem;
  color: #fecaca;
  line-height: 1.45;
}

.btn-danger {
  background: rgba(248, 113, 113, 0.15);
  border-color: rgba(248, 113, 113, 0.5);
  color: #fca5a5;
}
.btn-danger:hover:not(:disabled) {
  background: rgba(248, 113, 113, 0.25);
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 2px;
}
.card-tag {
  font-size: 0.68rem;
  font-weight: 650;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(45, 212, 191, 0.12);
  border: 1px solid rgba(45, 212, 191, 0.3);
  color: #99f6e4;
}

.tags-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px;
}
.tag-edit {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tag-toggle {
  appearance: none;
  border: 1px solid var(--border);
  background: rgba(148, 163, 184, 0.06);
  color: var(--muted);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.8rem;
  font-weight: 650;
  cursor: pointer;
  font-family: inherit;
}
.tag-toggle.on {
  background: var(--accent-dim);
  border-color: rgba(45, 212, 191, 0.55);
  color: var(--accent);
}
.tag-toggle:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.manage-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.settings-panel {
  width: min(480px, 100%);
  max-height: min(80vh, 640px);
}
.settings-heading {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
}
.settings-help {
  margin: 0 0 14px;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
}
.settings-help code {
  font-size: 0.8em;
  background: rgba(148, 163, 184, 0.12);
  padding: 1px 6px;
  border-radius: 4px;
}
.settings-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 650;
  color: var(--muted);
  margin-bottom: 6px;
}
.settings-input {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  padding: 10px 12px;
  font-size: 0.95rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  outline: none;
}
.settings-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}
.settings-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}
.settings-status {
  margin-top: 10px;
  font-size: 0.85rem;
}

@media (max-width: 640px) {
  .topbar-actions {
    width: 100%;
    justify-content: flex-end;
  }
}

/* —— Usage dashboard —— */
.usage-view {
  max-width: 720px;
  margin: 0 auto;
  padding: 8px 4px 48px;
}

.usage-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.usage-title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
}

.usage-sub {
  margin: 6px 0 0;
  font-size: 0.85rem;
}

.usage-metrics {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.usage-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
  box-shadow: var(--shadow);
}

.usage-card-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 10px;
}

.usage-card-label {
  font-weight: 600;
  font-size: 0.95rem;
}

.usage-card-nums {
  font-size: 0.85rem;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  text-align: right;
}

.usage-bar {
  height: 10px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.15);
  overflow: hidden;
}

.usage-bar-fill {
  height: 100%;
  border-radius: 999px;
  width: 0%;
  transition: width 0.35s ease, background-color 0.2s ease;
  background: #34d399;
}

.usage-bar-fill.warn {
  background: #fbbf24;
}

.usage-bar-fill.danger {
  background: #f87171;
}

.usage-card-foot {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 0.8rem;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}

.usage-card-error {
  margin-top: 8px;
  font-size: 0.8rem;
  color: var(--danger);
}

.usage-setup,
.usage-error {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
  margin-bottom: 16px;
  font-size: 0.9rem;
  line-height: 1.55;
}

.usage-error {
  border-color: rgba(248, 113, 113, 0.35);
  color: #fecaca;
}

.usage-setup ol {
  margin: 10px 0 0;
  padding-left: 1.25rem;
}

.usage-setup code {
  font-size: 0.85em;
  background: rgba(148, 163, 184, 0.12);
  padding: 1px 6px;
  border-radius: 6px;
}

.usage-meta,
.usage-note {
  margin: 16px 0 0;
  font-size: 0.8rem;
  line-height: 1.5;
}

#usage-btn.active {
  background: var(--accent-dim);
  color: var(--accent);
}


/* Stream type badge on modal video */
.media-item .stream-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 4px 8px;
  border-radius: 6px;
  background: rgba(45, 212, 191, 0.28);
  border: 1px solid rgba(45, 212, 191, 0.55);
  color: #99f6e4;
  pointer-events: none;
}
.media-item .stream-badge.stream-badge-mp4 {
  background: rgba(59, 130, 246, 0.28);
  border-color: rgba(59, 130, 246, 0.55);
  color: #bfdbfe;
}
.video-open-overlay {
  flex-direction: column;
  gap: 12px;
}
.video-proxy-link {
  color: #94a3b8;
  font-size: 0.85rem;
  text-decoration: underline;
}
.video-proxy-link:hover {
  color: #e2e8f0;
}
