:root {
    --nav-bg: #1c2b4a;
    --page-bg: #f0f4f8;
}

body {
    background: var(--page-bg);
    min-height: 100vh;
}

.navbar {
    background: linear-gradient(135deg, #1c2b4a 0%, #2d4a7a 100%);
}

.stat-card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(28, 43, 74, 0.08);
}

.stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #6c757d;
}

.stat-value {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.2;
}

.media-thumb {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 8px;
    background: #dee2e6;
}

.type-badge-photo {
    background: #e7f1ff;
    color: #0d6efd;
}

.type-badge-video {
    background: #ffe8ec;
    color: #dc3545;
}

#liveBadge {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.caption-cell {
    max-width: 280px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card {
    border-radius: 12px;
    border: none;
}
