/*
Theme Name: starter starter starter starter starter starter
Theme URI: https://starter.starter.starter
Author: starter starter
Description: Ultra modern, SEO uyumlu profesyonel video teması. Gelişmiş admin paneli, özelleştirilebilir renkler, responsive tasarım.
Version: 1.0.0
Text Domain: starter-starter-starter
*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

:root {
    --primary: #ff9000;
    --primary-dark: #e68200;
    --primary-light: #ffab3d;
    --bg-primary: #000000;
    --bg-secondary: #0d0d0d;
    --bg-card: #1a1a1a;
    --bg-card-hover: #242424;
    --bg-input: #2a2a2a;
    --text-white: #ffffff;
    --text-light: #e0e0e0;
    --text-gray: #999999;
    --text-dark: #666666;
    --border: #333333;
    --success: #00c853;
    --danger: #ff1744;
    --gradient-primary: linear-gradient(135deg, #ff9000 0%, #ff6600 100%);
    --gradient-dark: linear-gradient(180deg, rgba(0,0,0,0.8) 0%, transparent 100%);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.4);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.5);
    --shadow-glow: 0 0 30px rgba(255,144,0,0.3);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-primary);
    color: var(--text-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: none;
}

.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =============================================
   HEADER - COMPACT DESIGN
   ============================================= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #000;
    border-bottom: 1px solid var(--border);
    padding: 8px 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-branding {
    flex-shrink: 0;
}

.site-logo {
    display: block;
}

.site-logo img {
    height: 32px;
    width: auto;
}

/* Header Right - Mini Search */
.header-right {
    flex-shrink: 0;
}

.mini-search {
    display: flex;
    align-items: center;
    background: var(--bg-card);
    border-radius: 6px;
    overflow: hidden;
}

.mini-search .search-btn {
    background: transparent;
    border: none;
    padding: 6px 10px;
    color: var(--text-gray);
    font-size: 12px;
    cursor: pointer;
    transition: var(--transition);
}

.mini-search .search-btn:hover {
    color: var(--primary);
}

.mini-search .search-input {
    background: transparent;
    border: none;
    padding: 6px 10px 6px 0;
    color: var(--text-white);
    font-size: 12px;
    width: 100px;
    outline: none;
}

.mini-search .search-input::placeholder {
    color: var(--text-dark);
}

.mini-search:focus-within {
    box-shadow: 0 0 0 1px var(--primary);
}

.mini-search:focus-within .search-input {
    width: 150px;
}

/* Old search styles for compatibility */
.header-search {
    flex: 1;
    max-width: 500px;
}

.search-form {
    display: flex;
    align-items: center;
    background: var(--bg-input);
    border-radius: 30px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: var(--transition);
}

.search-form:focus-within {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.search-field {
    flex: 1;
    background: transparent;
    border: none;
    padding: 14px 24px;
    font-size: 14px;
    color: var(--text-white);
    outline: none;
}

.search-field::placeholder {
    color: var(--text-dark);
}

.search-submit {
    background: var(--gradient-primary);
    padding: 14px 28px;
    color: var(--bg-primary);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.search-submit:hover {
    filter: brightness(1.1);
}

.search-submit i {
    font-size: 16px;
}

/* Navigation */
.main-navigation {
    display: flex;
    align-items: center;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 4px;
}

.main-navigation a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-gray);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.main-navigation a:hover,
.main-navigation .current-menu-item a {
    color: var(--text-white);
    background: var(--bg-card);
}

.main-navigation a i {
    font-size: 14px;
    color: var(--primary);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: var(--bg-card);
    border-radius: 50%;
    color: var(--text-gray);
    transition: var(--transition);
}

.header-btn:hover {
    background: var(--primary);
    color: var(--bg-primary);
}

.btn-upload {
    width: auto;
    padding: 0 20px;
    gap: 8px;
    background: var(--gradient-primary);
    color: var(--bg-primary);
    font-weight: 600;
    font-size: 13px;
    border-radius: 30px;
}

.btn-upload:hover {
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

/* Category bar - moved to header */

/* =============================================
   MAIN CONTENT
   ============================================= */
.site-main {
    padding-top: 70px;
    min-height: 100vh;
}

.content-wrapper {
    display: flex;
    gap: 30px;
    padding: 30px 0;
}

.main-content {
    flex: 1;
    min-width: 0;
}

/* Section Header */
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.section-title {
    font-size: 22px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-title i {
    color: var(--primary);
    font-size: 20px;
}

.section-title .count {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    margin-left: 8px;
}

.view-all {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 500;
}

.view-all:hover {
    gap: 10px;
}

/* =============================================
   VIDEO GRID
   ============================================= */
.video-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.has-sidebar .video-grid {
    grid-template-columns: repeat(3, 1fr);
}

/* =============================================
   VIDEO CARD - PREMIUM STYLE
   ============================================= */
.video-card {
    position: relative;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.video-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    background: var(--bg-card-hover);
}

/* Thumbnail Container */
.video-thumb {
    position: relative;
    display: block;
    width: 100%;
    padding-top: 56.25%;
    background: var(--bg-secondary);
    overflow: hidden;
}

.video-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.video-card:hover .video-thumb img {
    transform: scale(1.08);
}

/* Thumbnail Overlay */
.thumb-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, transparent 50%);
    opacity: 0;
    transition: var(--transition);
}

.video-card:hover .thumb-overlay {
    opacity: 1;
}

/* Play Button */
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    box-shadow: var(--shadow-glow);
}

.video-card:hover .play-btn {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.play-btn::after {
    content: '';
    border-style: solid;
    border-width: 12px 0 12px 20px;
    border-color: transparent transparent transparent var(--bg-primary);
    margin-left: 4px;
}

/* Duration Badge */
.duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0,0,0,0.9);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 600;
    color: var(--text-white);
    z-index: 2;
}

/* Quality Badge */
.quality {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--gradient-primary);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-size: 11px;
    font-weight: 700;
    color: var(--bg-primary);
    text-transform: uppercase;
    z-index: 2;
}

/* Preview on Hover */
.preview-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--bg-card);
}

.preview-progress-bar {
    height: 100%;
    background: var(--primary);
    width: 0;
    transition: width 0.1s linear;
}

.video-card:hover .preview-progress-bar {
    animation: preview-load 3s linear infinite;
}

@keyframes preview-load {
    0% { width: 0; }
    100% { width: 100%; }
}

/* Video Info */
.video-info {
    padding: 14px;
}

.video-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 40px;
}

.video-title a {
    color: var(--text-white);
}

.video-title a:hover {
    color: var(--primary);
}

/* Video Meta */
.video-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-dark);
}

.video-stats {
    display: flex;
    align-items: center;
    gap: 12px;
}

.video-stats span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.video-stats i {
    font-size: 11px;
    color: var(--text-gray);
}

.video-date {
    color: var(--text-dark);
}

/* Video Tags */
.video-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
}

.video-tags a {
    font-size: 11px;
    color: var(--text-gray);
    background: var(--bg-secondary);
    padding: 4px 10px;
    border-radius: 12px;
}

.video-tags a:hover {
    background: var(--primary);
    color: var(--bg-primary);
}

/* No Thumbnail */
.no-thumb {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.no-thumb i {
    font-size: 48px;
    color: var(--border);
}

/* =============================================
   SIDEBAR
   ============================================= */
.sidebar {
    width: 340px;
    flex-shrink: 0;
}

.widget {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 20px;
    margin-bottom: 24px;
}

.widget-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 10px;
}

.widget-title i {
    color: var(--primary);
}

.widget ul {
    list-style: none;
}

.widget li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.widget li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.widget a {
    color: var(--text-gray);
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.widget a:hover {
    color: var(--primary);
}

.widget a .count {
    background: var(--bg-secondary);
    padding: 2px 10px;
    border-radius: 10px;
    font-size: 12px;
}

/* Popular Videos Widget */
.popular-video-item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.popular-video-item:last-child {
    border-bottom: none;
}

.popular-video-thumb {
    width: 120px;
    flex-shrink: 0;
    border-radius: var(--radius-sm);
    overflow: hidden;
    position: relative;
}

.popular-video-thumb img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.popular-video-info h4 {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.popular-video-info h4 a {
    color: var(--text-light);
}

.popular-video-info h4 a:hover {
    color: var(--primary);
}

.popular-video-meta {
    font-size: 11px;
    color: var(--text-dark);
    display: flex;
    gap: 10px;
}

/* =============================================
   SINGLE VIDEO PAGE
   ============================================= */
.single-video {
    max-width: 100%;
}

.video-player {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: #000;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 24px;
    max-width: 1200px;
}

.video-player iframe,
.video-player video,
.video-player img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.video-details {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 24px;
}

.video-details h1 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.4;
}

.video-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 16px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin: 16px 0;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.action-btn:hover {
    background: var(--primary);
    color: var(--bg-primary);
}

.action-btn i {
    font-size: 16px;
}

.action-btn.liked {
    background: var(--success);
    color: var(--text-white);
}

.action-btn.disliked {
    background: var(--danger);
    color: var(--text-white);
}

/* Related Videos */
.related-section {
    margin-top: 40px;
}

.related-section h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.related-section h3 i {
    color: var(--primary);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* =============================================
   PAGINATION
   ============================================= */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border);
}

.pagination a,
.pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 16px;
    background: var(--bg-card);
    color: var(--text-gray);
    font-size: 14px;
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.pagination a:hover {
    background: var(--bg-card-hover);
    color: var(--text-white);
}

.pagination .current {
    background: var(--gradient-primary);
    color: var(--bg-primary);
}

.pagination .prev,
.pagination .next {
    padding: 0 20px;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
    background: var(--bg-secondary);
    margin-top: 60px;
    border-top: 1px solid var(--border);
}

.footer-main {
    padding: 50px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-brand .site-title {
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--text-dark);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--bg-card);
    border-radius: 50%;
    color: var(--text-gray);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--bg-primary);
}

.footer-widget h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-white);
}

.footer-widget ul {
    list-style: none;
}

.footer-widget li {
    margin-bottom: 12px;
}

.footer-widget a {
    color: var(--text-dark);
    font-size: 14px;
}

.footer-widget a:hover {
    color: var(--primary);
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid var(--border);
    text-align: center;
    color: var(--text-dark);
    font-size: 13px;
}

/* =============================================
   AGE VERIFICATION
   ============================================= */
.age-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(20px);
}

.age-modal-content {
    background: var(--bg-card);
    padding: 50px;
    border-radius: var(--radius-xl);
    text-align: center;
    max-width: 480px;
    box-shadow: var(--shadow-lg);
}

.age-modal-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary);
}

.age-modal-content p {
    color: var(--text-gray);
    margin-bottom: 32px;
    line-height: 1.7;
}

.age-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.age-btn {
    padding: 14px 36px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    transition: var(--transition);
}

.age-btn.yes {
    background: var(--gradient-primary);
    color: var(--bg-primary);
}

.age-btn.yes:hover {
    box-shadow: var(--shadow-glow);
    transform: translateY(-3px);
}

.age-btn.no {
    background: var(--bg-secondary);
    color: var(--text-gray);
}

.age-btn.no:hover {
    background: var(--border);
}

/* =============================================
   BREADCRUMBS
   ============================================= */
.breadcrumbs {
    padding: 16px 0;
    margin-bottom: 8px;
}

.breadcrumbs ol {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dark);
}

.breadcrumbs li:not(:last-child)::after {
    content: '›';
    color: var(--text-dark);
}

.breadcrumbs a {
    color: var(--text-gray);
}

.breadcrumbs a:hover {
    color: var(--primary);
}

/* =============================================
   NO RESULTS
   ============================================= */
.no-results {
    text-align: center;
    padding: 80px 20px;
}

.no-results i {
    font-size: 64px;
    color: var(--border);
    margin-bottom: 24px;
}

.no-results h2 {
    font-size: 28px;
    margin-bottom: 12px;
}

.no-results p {
    color: var(--text-dark);
    font-size: 16px;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1200px) {
    .video-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .has-sidebar .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .related-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .content-wrapper {
        flex-direction: column;
    }
    
    .sidebar {
        width: 100%;
    }
    
    .video-grid,
    .has-sidebar .video-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .header-search {
        order: 3;
        flex: none;
        width: 100%;
        max-width: none;
        margin-top: 12px;
    }
    
    .header-inner {
        flex-wrap: wrap;
    }
    
    .main-navigation {
        display: none;
    }
    
    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .site-main {
        padding-top: 60px;
    }
    
    .header-inner {
        gap: 10px;
    }
    
    .video-grid,
    .has-sidebar .video-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .site-title {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 18px;
    }
    
    .video-info {
        padding: 12px;
    }
    
    .video-title {
        font-size: 13px;
        min-height: 36px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .video-details h1 {
        font-size: 18px;
    }
    
    .video-actions {
        gap: 8px;
    }
    
    .action-btn {
        padding: 8px 14px;
        font-size: 13px;
    }
    
    .header-right .search-field {
        width: 100px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .site-main {
        padding-top: 55px;
    }
    
    .site-title {
        font-size: 16px;
    }
    
    
    .header-right .search-field {
        width: 80px;
        padding: 6px 10px;
        font-size: 12px;
    }
    
    .header-right .search-submit {
        padding: 6px 10px;
    }
    
    .video-grid,
    .has-sidebar .video-grid {
        gap: 8px;
    }
    
    .video-info {
        padding: 8px;
    }
    
    .video-title {
        font-size: 11px;
        min-height: 30px;
    }
    
    .video-meta {
        font-size: 10px;
    }
    
    .duration {
        font-size: 9px;
        padding: 2px 6px;
    }
    
    .quality {
        font-size: 8px;
        padding: 2px 6px;
    }
    
    .pagination a,
    .pagination span {
        min-width: 34px;
        height: 34px;
        font-size: 12px;
    }
    
    .age-modal-content {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .age-buttons {
        flex-direction: column;
    }
    
    .section-title {
        font-size: 16px;
    }
    
    .section-header {
        margin-bottom: 16px;
        padding-bottom: 12px;
    }
}

/* =============================================
   SCROLLBAR
   ============================================= */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-dark);
}

/* =============================================
   SELECTION
   ============================================= */
::selection {
    background: var(--primary);
    color: var(--bg-primary);
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.video-card {
    animation: fadeIn 0.4s ease forwards;
}

.video-card:nth-child(1) { animation-delay: 0.05s; }
.video-card:nth-child(2) { animation-delay: 0.1s; }
.video-card:nth-child(3) { animation-delay: 0.15s; }
.video-card:nth-child(4) { animation-delay: 0.2s; }
.video-card:nth-child(5) { animation-delay: 0.25s; }
.video-card:nth-child(6) { animation-delay: 0.3s; }
.video-card:nth-child(7) { animation-delay: 0.35s; }
.video-card:nth-child(8) { animation-delay: 0.4s; }
