.archive-video-list {
    background: var(--rednaija-bg);
    min-height: 100vh;
    padding: 20px 0;
}

.container-fluid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Archive Header */
.archive-header {
    margin-bottom: 40px;
    text-align: center;
}

.archive-title-section {
    background: rgba(255,255,255,0.02);
    padding: 30px 20px;
    margin-bottom: 20px;
}

.archive-title {
    color: var(--rednaija-text);
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 15px 0;
}

.archive-description {
    color: rgba(255,255,255,0.8);
    font-size: 16px;
    line-height: 1.5;
    max-width: 800px;
    margin: 0 auto 20px;
}

.archive-meta {
    margin-top: 20px;
}

.results-count {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    font-weight: 500;
}

/* Video Grid Section */
.video-grid-section {
    margin-top: 40px;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2px;
}

.video-item {
    background: rgba(255,255,255,0.02);
    transition: all 0.3s ease;
    position: relative;
}

.video-item:hover {
    background: rgba(255,255,255,0.05);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    z-index: 10;
}

.video-thumbnail {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: #1a1a1a;
    overflow: hidden;
}

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

.video-item:hover .video-thumb {
    transform: scale(1.05);
}

.no-thumbnail {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: #2a2a2a;
    color: #666;
}

.duration-overlay {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0,0,0,0.8);
    color: #fff;
    font-size: 12px;
    padding: 2px 6px;
    font-weight: 600;
}

.quality-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    color: #fff;
    font-size: 10px;
    padding: 2px 6px;
    font-weight: 700;
    text-transform: uppercase;
}

.quality-badge.4k { background: #ff6b35; }
.quality-badge.1080p { background: #e74c3c; }
.quality-badge.720p { background: #f39c12; }
.quality-badge.480p { background: #95a5a6; }

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-item:hover .play-overlay {
    opacity: 1;
}

.play-button {
    width: 50px;
    height: 50px;
    background: rgba(231, 76, 60, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.video-item:hover .play-button {
    transform: scale(1);
}

.video-info {
    padding: 12px;
}

.video-title {
    margin: 0 0 8px 0;
    font-size: 14px;
    line-height: 1.3;
}

.video-title a {
    color: var(--rednaija-text);
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.video-title a:hover {
    color: var(--rednaija-primary);
}

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

.view-count {
    color: rgba(255,255,255,0.7);
    font-size: 12px;
}

.post-date {
    color: rgba(255,255,255,0.5);
    font-size: 11px;
}

/* WordPress Pagination */
.pagination-section {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
}

.pagination-section .page-numbers {
    display: inline-block;
    padding: 8px 12px;
    margin: 0 2px;
    background: rgba(255,255,255,0.05);
    color: var(--rednaija-text);
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.pagination-section .page-numbers:hover,
.pagination-section .page-numbers.current {
    background: var(--rednaija-primary);
    color: #fff;
    border-color: var(--rednaija-primary);
}

.pagination-section .page-numbers.prev,
.pagination-section .page-numbers.next {
    font-weight: 600;
}

.pagination-section .page-numbers.dots {
    background: transparent;
    border: none;
    cursor: default;
}

.no-videos-message {
    text-align: center;
    padding: 60px 20px;
    color: rgba(255,255,255,0.7);
}

.no-videos-message h3 {
    color: var(--rednaija-text);
    margin-bottom: 15px;
    font-size: 24px;
}

.no-videos-message p {
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.5;
}

.browse-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.browse-btn {
    display: inline-block;
    padding: 12px 24px;
    background: var(--rednaija-primary);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.browse-btn:hover {
    background: #c0392b;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .videos-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .archive-title {
        font-size: 28px;
    }
    
    .archive-title-section {
        padding: 25px 15px;
    }
}

@media (max-width: 768px) {
    .videos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .container-fluid {
        padding: 0 10px;
    }
    
    .archive-title {
        font-size: 24px;
    }
    
    .archive-description {
        font-size: 14px;
    }
    
    .archive-title-section {
        padding: 20px 10px;
    }
    
    .video-info {
        padding: 8px;
    }
    
    .video-title {
        font-size: 13px;
    }
    
    .play-button {
        width: 40px;
        height: 40px;
    }
    
    .browse-links {
        flex-direction: column;
        align-items: center;
    }
    
    .browse-btn {
        width: 200px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .archive-video-list {
        padding: 10px 0;
    }
    
    .container-fluid {
        padding: 0 5px;
    }
    
    .archive-title {
        font-size: 20px;
    }
    
    .archive-description {
        font-size: 13px;
    }
    
    .archive-title-section {
        padding: 15px 8px;
    }
    
    .results-count {
        font-size: 12px;
    }
    
    .videos-grid {
        gap: 1px;
    }
    
    .video-info {
        padding: 6px;
    }
    
    .video-title {
        font-size: 12px;
    }
    
    .view-count {
        font-size: 10px;
    }
    
    .post-date {
        font-size: 9px;
    }
    
    .duration-overlay {
        font-size: 10px;
        padding: 1px 4px;
        bottom: 4px;
        right: 4px;
    }
    
    .quality-badge {
        font-size: 8px;
        padding: 1px 4px;
        top: 4px;
        left: 4px;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .video-item {
        border: 2px solid var(--rednaija-primary);
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print styles */
@media print {
    .pagination-section,
    .play-overlay,
    .browse-links {
        display: none !important;
    }
}