﻿

        .aparat-card {
            border: none;
            background: white;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            cursor: pointer;
        }

            .aparat-card:hover {
                transform: translateY(-3px);
                box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            }

        .video-thumbnail {
            position: relative;
            overflow: hidden;
            aspect-ratio: 16 / 9;
        }

            .video-thumbnail img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

        .video-play-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 2rem;
            color: white;
            background-color: rgba(0,0,0,0.4);
            padding: 10px;
            border-radius: 50%;
        }

        .video-info-bar {
            position: absolute;
            bottom: 0;
            width: 100%;
            background: rgba(0,0,0,0.6);
            color: white;
            font-size: 0.75rem;
            padding: 10px 10px;
            text-align: left;
        }

        .video-title {
            font-weight: bold;
            font-size: 0.95rem;
            color: #212121;
            margin-top: 8px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .video-author {
            font-size: 0.85rem;
            color: #666;
        }
    