/* Dashboard Layout */
.dashboard-container {
    display: flex;
    min-height: 100vh;
    background: var(--gray-50);
}

/* Sidebar */
.sidebar {
    width: 280px;
    background: var(--white);
    border-right: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
    padding: 24px 0;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
}

.sidebar-logo {
    padding: 0 24px 32px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--gray-900);
    font-weight: 700;
    font-size: 20px;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0 16px;
    flex: 1;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 8px;
    color: var(--gray-600);
    text-decoration: none;
    font-weight: 500;
    transition: all var(--transition-fast);
}

.nav-item:hover {
    background: var(--gray-50);
    color: var(--gray-900);
}

.nav-item.active {
    background: rgba(139, 92, 246, 0.1);
    color: var(--purple-600);
}

.nav-item svg {
    width: 20px;
    height: 20px;
    stroke-width: 2;
}

.sidebar-user {
    padding: 16px 24px;
    border-top: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-avatar {
    width: 36px;
    height: 36px;
    background: var(--primary-gradient);
    border-radius: 50%;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
}

.user-info {
    flex: 1;
    overflow: hidden;
}

.user-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-900);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-plan {
    font-size: 12px;
    color: var(--gray-500);
    color: var(--gray-500);
}

/* Sidebar Usage Meter */
.usage-meter-container {
    padding: 24px 24px 16px;
    border-top: 1px solid var(--gray-200);
}

.usage-label {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 8px;
}

.usage-bar-bg {
    height: 6px;
    background: var(--gray-200);
    border-radius: 3px;
    overflow: hidden;
}

.usage-bar-fill {
    height: 100%;
    background: var(--primary-gradient);
    width: 0%;
    /* Set via inline style */
    border-radius: 3px;
    transition: width 1s ease-out;
}

.usage-text {
    font-size: 11px;
    color: var(--gray-500);
    margin-top: 6px;
}

/* Plan Card (dynamically injected) */
.plan-card {
    padding: 16px 24px;
    border-top: 1px solid var(--gray-200);
}

.plan-card-inner {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.plan-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.plan-badge {
    font-size: 12px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 12px;
    text-transform: capitalize;
}

.plan-badge.free {
    background: var(--gray-100);
    color: var(--gray-600);
}

.plan-badge.starter {
    background: #dbeafe;
    color: #1d4ed8;
}

.plan-badge.professional {
    background: #ede9fe;
    color: #7c3aed;
}

.plan-badge.business {
    background: #fef3c7;
    color: #b45309;
}

.plan-badge.enterprise {
    background: #d1fae5;
    color: #047857;
}

.plan-expires {
    font-size: 11px;
    color: var(--gray-500);
}

.plan-usage .usage-label {
    margin-bottom: 6px;
}

.plan-usage .usage-numbers {
    font-weight: 500;
    color: var(--gray-600);
}

.plan-usage .usage-bar-fill.warning {
    background: linear-gradient(135deg, #f59e0b, #ef4444);
}

.plan-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

.plan-btn {
    font-size: 12px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 6px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}

.plan-btn.upgrade {
    background: var(--primary-gradient);
    color: white;
}

.plan-btn.upgrade:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.plan-btn.cancel {
    background: none;
    color: var(--gray-500);
    border: 1px solid var(--gray-200);
}

.plan-btn.cancel:hover {
    color: #ef4444;
    border-color: #ef4444;
}

/* Main Content Area */
.main-content {
    flex: 1;
    margin-left: 280px;
    padding: 32px 40px;
}

/* Top Header */
.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.header-title h1 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--gray-900);
}

.header-title p {
    color: var(--gray-500);
    margin-top: 4px;
}

.header-actions {
    display: flex;
    gap: 16px;
}

.search-bar {
    position: relative;
    width: 320px;
}

.search-bar input {
    width: 100%;
    padding: 10px 16px 10px 40px;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: all var(--transition-fast);
}

.search-bar input:focus {
    border-color: var(--purple-500);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
    pointer-events: none;
}

/* ===== QUICK ACTION CARDS ===== */
.quick-actions {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.quick-action-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.quick-action-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.03) 0%, rgba(37, 99, 235, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.quick-action-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(124, 58, 237, 0.12);
    border-color: var(--purple-300);
}

.quick-action-card:hover::before {
    opacity: 1;
}

.action-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.quick-action-card:hover .action-icon {
    transform: scale(1.1);
}
.action-icon.motion-icon {
    background: linear-gradient(135deg, #7C3AED 0%, #2563EB 100%);
    color: white;
}

.quick-action-card.highlight {
    border: 1px solid rgba(124, 58, 237, 0.4);
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.08);
}

.quick-action-card.highlight::before {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.06) 0%, rgba(37, 99, 235, 0.06) 100%);
    opacity: 0.5;
}

.quick-action-card.highlight:hover {
    border-color: rgba(124, 58, 237, 0.8);
    box-shadow: 0 12px 32px rgba(124, 58, 237, 0.2);
}

.action-icon.upload-icon {
    background: linear-gradient(135deg, #7C3AED 0%, #6D28D9 100%);
    color: white;
}

.action-icon.record-icon {
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
    color: white;
}

.action-icon.template-icon {
    background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
    color: white;
}

.action-icon.brand-icon {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
}

.action-content {
    flex: 1;
    min-width: 0;
}

.action-content h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.action-content p {
    font-size: 13px;
    color: var(--gray-500);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.action-arrow {
    font-size: 20px;
    color: var(--gray-300);
    transition: all 0.3s ease;
}

.quick-action-card:hover .action-arrow {
    color: var(--purple-500);
    transform: translateX(4px);
}

.action-badge {
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
    color: #92400E;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 1200px) {
    .quick-actions {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .quick-actions {
        grid-template-columns: 1fr;
    }
}

/* Video Sections */
.video-section {
    margin-bottom: 48px;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.section-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
    display: flex;
    align-items: center;
    gap: 8px;
}

.video-count {
    background: var(--gray-200);
    color: var(--gray-600);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

/* Video Card */
.video-card {
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    /* overflow: hidden; Removed to allow menu popup */
    transition: all var(--transition-base);
    position: relative;
    /* group: card Removed non-standard property */
}

.video-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--purple-200);
    z-index: 5;
    /* Bring hovered card forward */
}

/* Draft Video Card - Distinct styling */
.video-card.draft {
    border: 2px dashed var(--gray-400);
    background: linear-gradient(135deg, var(--white) 0%, rgba(107, 114, 128, 0.05) 100%);
}

.video-card.draft:hover {
    border-color: var(--purple-400);
    border-style: dashed;
}

.video-card.draft .video-thumbnail::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.1);
    pointer-events: none;
}

/* Continue Editing button for drafts */
.draft-continue-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: linear-gradient(135deg, var(--purple-500), var(--purple-600));
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 8px;
}

.draft-continue-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.35);
}

/* Thumbnail Container supporting Aspect Ratios */
.card-thumbnail {
    aspect-ratio: 16/9;
    background: var(--gray-100);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px 15px 0 0;
    /* Match card radius minus border */
    /* Ensure child elements don't overflow the rounded corners on hover */
    mask-image: radial-gradient(white, black);
    -webkit-mask-image: -webkit-radial-gradient(white, black);
}

/* ... existing blur styles ... */
/* Background Blur Effect for different aspect ratios */
.thumbnail-bg-blur {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    filter: blur(20px);
    opacity: 0.5;
    z-index: 0;
}

.card-thumbnail svg,
.card-thumbnail img {
    position: relative;
    z-index: 1;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform var(--transition-slow);
}

.video-card:hover .card-thumbnail svg,
.video-card:hover .card-thumbnail img {
    transform: scale(1.05);
}

.duration-badge {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.75);
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    z-index: 2;
}

/* Format Badges */
.format-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    color: var(--gray-700);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: var(--shadow-sm);
}

.format-badge.instagram {
    color: #E1306C;
}

.format-badge.youtube {
    color: #FF0000;
}

.card-content {
    padding: 16px;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 8px;
}

.video-title {
    font-weight: 600;
    color: var(--gray-900);
    font-size: 16px;
    line-height: 1.4;
    cursor: pointer;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.video-title:hover {
    color: var(--purple-600);
}

.card-actions {
    position: relative;
}

.btn-card-menu {
    background: none;
    border: none;
    color: var(--gray-400);
    padding: 4px;
    cursor: pointer;
    border-radius: 4px;
    transition: all var(--transition-fast);
}

.btn-card-menu:hover {
    background: var(--gray-100);
    color: var(--gray-600);
}

.action-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    width: 180px;
    padding: 4px;
    z-index: 100;
    /* Increased z-index */
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-fast);
}

.action-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 12px;
    text-align: left;
    background: none;
    border: none;
    font-size: 14px;
    color: var(--gray-700);
    cursor: pointer;
    border-radius: 6px;
    transition: all var(--transition-fast);
}

.menu-item:hover {
    background: var(--gray-50);
    color: var(--gray-900);
}

.menu-item svg {
    color: var(--gray-400);
}

.menu-item:hover svg {
    color: var(--purple-600);
}

.menu-separator {
    height: 1px;
    background: var(--gray-100);
    margin: 4px 0;
}

.menu-item.delete {
    color: #EF4444;
}

.menu-item.delete svg {
    color: #EF4444;
}

.menu-item.delete:hover {
    background: #FEF2F2;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--gray-500);
}

.status-badge {
    padding: 2px 8px;
    border-radius: 12px;
    font-weight: 500;
    font-size: 11px;
    text-transform: uppercase;
}

.status-badge.draft {
    background: var(--gray-100);
    color: var(--gray-600);
}

.status-badge.completed {
    background: #ECFDF5;
    color: #059669;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .sidebar {
        width: 80px;
        align-items: center;
    }

    .sidebar-logo span,
    .nav-item,
    /* This hides the text but keeps icon if formatted right, but flex might break. Simple fix below */
    .user-info {
        display: none;
    }

    .nav-item {
        justify-content: center;
        padding: 12px;
    }

    .sidebar-user {
        padding: 16px;
        justify-content: center;
    }

    .main-content {
        margin-left: 80px;
        padding: 24px;
    }
}

@media (max-width: 768px) {
    .dashboard-container {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
        height: auto;
        position: relative;
        flex-direction: row;
        justify-content: space-between;
        padding: 16px 24px;
        border-right: none;
        border-bottom: 1px solid var(--gray-200);
    }

    .sidebar-nav,
    .sidebar-user {
        display: none;
        /* Hide for now, use mobile toggle in future */
    }

    .sidebar-logo span {
        display: inline;
        /* Show logo text on mobile header */
    }

    .main-content {
        margin-left: 0;
        padding: 16px;
    }

    .dashboard-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .header-actions {
        width: 100%;
        flex-direction: column;
    }

    .search-bar {
        width: 100%;
    }

    .btn-primary-small {
        width: 100%;
        justify-content: center;
    }
}

/* ===== PREMIUM EMPTY STATE ===== */
.empty-state-premium {
    grid-column: 1 / -1;
    position: relative;
    padding: 80px 40px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.03) 0%, rgba(37, 99, 235, 0.03) 100%);
    border: 2px dashed var(--gray-200);
    overflow: hidden;
    text-align: center;
    transition: all 0.3s ease;
}

.empty-state-premium:hover {
    border-color: var(--purple-300);
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.05) 0%, rgba(37, 99, 235, 0.05) 100%);
}

.empty-state-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.empty-state-bg .gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.empty-state-bg .orb-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.3) 0%, transparent 70%);
    top: -100px;
    right: -50px;
    animation: float-orb 15s infinite ease-in-out;
}

.empty-state-bg .orb-2 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.3) 0%, transparent 70%);
    bottom: -80px;
    left: -30px;
    animation: float-orb 18s infinite ease-in-out reverse;
}

@keyframes float-orb {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(20px, -20px) scale(1.1);
    }
}

.empty-state-content {
    position: relative;
    z-index: 1;
}

.empty-state-icon {
    position: relative;
    display: inline-block;
    margin-bottom: 24px;
}

.empty-state-icon svg {
    filter: drop-shadow(0 4px 20px rgba(124, 58, 237, 0.2));
}

.sparkle-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.sparkle {
    position: absolute;
    font-size: 20px;
    animation: sparkle-float 3s infinite ease-in-out;
}

.sparkle.s1 {
    top: -10px;
    right: -20px;
    animation-delay: 0s;
}

.sparkle.s2 {
    bottom: 0;
    left: -25px;
    animation-delay: 1s;
}

.sparkle.s3 {
    top: 50%;
    right: -30px;
    animation-delay: 2s;
}

@keyframes sparkle-float {

    0%,
    100% {
        opacity: 0.3;
        transform: translateY(0) scale(0.8);
    }

    50% {
        opacity: 1;
        transform: translateY(-10px) scale(1.2);
    }
}

.empty-state-title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--purple-600) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.empty-state-description {
    font-size: 16px;
    color: var(--gray-500);
    max-width: 400px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

.empty-state-premium .btn-primary.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.3);
    transition: all 0.3s ease;
}

.empty-state-premium .btn-primary.btn-lg:hover {
    box-shadow: 0 12px 32px rgba(124, 58, 237, 0.4);
    transform: translateY(-2px);
}

.empty-state-features {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-600);
    transition: all 0.2s ease;
}

.feature-pill:hover {
    background: white;
    border-color: var(--purple-300);
    color: var(--purple-600);
    transform: translateY(-2px);
}

/* Create Video Button Enhancement */
.create-video-btn {
    position: relative;
    overflow: hidden;
}

.create-video-btn .btn-sparkle {
    margin-left: 4px;
    animation: btn-sparkle-pulse 2s infinite ease-in-out;
}

@keyframes btn-sparkle-pulse {

    0%,
    100% {
        opacity: 0.7;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

.create-video-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.create-video-btn:hover::before {
    left: 100%;
}

/* Video thumbnail styling */
.video-thumbnail {
    position: relative;
    aspect-ratio: 16/9;
    background: var(--gray-100);
    border-radius: 16px 16px 0 0;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

.status-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.uploading {
    background: rgba(245, 158, 11, 0.9);
    color: white;
}

.status-badge.processing {
    background: rgba(59, 130, 246, 0.9);
    color: white;
    animation: processing-pulse 1.5s infinite;
}

@keyframes processing-pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

.status-badge.ready {
    background: rgba(16, 185, 129, 0.9);
    color: white;
}

.status-badge.error {
    background: rgba(239, 68, 68, 0.9);
    color: white;
}

.status-badge.draft {
    background: rgba(107, 114, 128, 0.9);
    color: white;
}

/* Video Info Styling */
.video-info {
    padding: 16px;
}

.video-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.video-actions {
    position: relative;
}

.video-actions .action-btn {
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    color: var(--gray-400);
    border-radius: 4px;
    transition: all 0.2s;
}

.video-actions .action-btn:hover {
    background: var(--gray-100);
    color: var(--gray-600);
}

.video-meta {
    font-size: 13px;
    color: var(--gray-500);
}