.date-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 1.5rem 0;
}
.date-btn {
    min-height: 2.25rem;
    min-width: 2.25rem;
    padding: 0.4rem 0.75rem;
    font-size: 1rem;
    background: var(--card);
    color: var(--fg);
    border: 1px solid var(--border);
    border-radius: 6px;
    cursor: pointer;
    touch-action: manipulation;
}
.date-btn:hover { background: var(--hover-bg); filter: none; }
.date-btn:disabled { opacity: 0.3; cursor: default; }
.date-btn:disabled:hover { background: var(--card); }
.date-label {
    font-size: 1.1rem;
    font-weight: 600;
    min-width: 180px;
    text-align: center;
}
.stream-info {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    color: var(--muted);
}
.stream-info a { color: var(--accent); text-decoration: none; }
.stream-info a:hover { text-decoration: underline; }

.link-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.85rem 1rem;
    margin: 0.75rem 0;
    transition: border-color 0.15s;
}
.link-card:hover { border-color: var(--border-strong); }
@media (min-width: 640px) {
    .link-card { padding: 1rem 1.25rem; }
}
.link-header {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 4px;
}
.link-domain {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--accent);
    background: var(--accent-soft-bg);
    padding: 2px 8px;
    border-radius: 4px;
    white-space: nowrap;
}
.link-author {
    font-size: 11px;
    color: var(--muted);
    margin-left: auto;
    white-space: nowrap;
}
.link-author-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 1px 5px;
    border-radius: 3px;
    margin-right: 4px;
}
.link-author-badge.owner {
    background: var(--warn-soft-bg);
    color: var(--warn-soft-text);
    border: 1px solid var(--warn-soft-border);
}
.link-author-badge.moderator {
    background: var(--info-soft-bg);
    color: var(--info-soft-text);
    border: 1px solid var(--info-soft-border);
}
.link-title {
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.4;
}
.link-title a {
    color: var(--fg-strong);
    text-decoration: none;
}
.link-title a:hover { color: var(--accent); }
.link-desc {
    color: var(--muted);
    font-size: 0.85rem;
    line-height: 1.45;
    margin-top: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.link-url {
    font-size: 0.8rem;
    color: var(--muted);
    margin-top: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.link-time {
    font-size: 0.75rem;
    color: var(--muted);
}
.links-empty {
    text-align: center;
    color: var(--muted);
    padding: 3rem 1rem;
}
.copy-wrap {
    text-align: center;
    margin-bottom: 1rem;
}
.copy-btn {
    font-size: 0.85rem;
    padding: 0.4rem 1rem;
    background: var(--card);
    color: var(--fg);
    border: 1px solid var(--border);
    border-radius: 6px;
    cursor: pointer;
}
.copy-btn:hover { background: var(--hover-bg); }
