        .vip-video-kutu {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 25px;
            margin-top: 25px;
            margin-bottom: 35px;
        }
        .video-card {
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.06);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            border: 1px solid #eee;
            cursor: pointer;
            position: relative;
        }
        .video-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(229, 9, 20, 0.15);
            border-color: rgba(229,9,20,0.3);
        }
        .video-thumb {
            position: relative;
            width: 100%;
            height: 200px;
            overflow: hidden;
            background: #000;
        }
        .video-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.85;
            transition: transform 0.5s ease, opacity 0.3s;
            display: block;
        }
        .video-card:hover .video-thumb img {
            transform: scale(1.08);
            opacity: 1;
        }
        .play-pulsar {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 60px;
            height: 60px;
            pointer-events: none;
        }
        .play-circle {
            position: absolute;
            width: 100%;
            height: 100%;
            background: rgba(229, 9, 20, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2;
            transition: 0.3s;
            box-shadow: 0 4px 15px rgba(0,0,0,0.4);
        }
        .play-circle i {
            color: #fff;
            font-size: 24px;
            margin-left: 5px;
        }
        .play-pulsar::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #e50914;
            border-radius: 50%;
            z-index: 1;
            animation: pulse 1.5s ease-out infinite;
        }
        @keyframes pulse {
            0% { transform: scale(1); opacity: 0.8; }
            100% { transform: scale(1.6); opacity: 0; }
        }
        .video-card:hover .play-circle {
            background: #ff0a16;
            transform: scale(1.1);
        }
        .item-baslik-yeni {
            background: #fdfaf6;
            padding: 18px 15px;
            font-weight: bold;
            color: #333;
            font-size: 15px;
            text-align: center;
            border-top: 3px solid #e50914;
            min-height: 65px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0;
            flex-grow: 1;
        }
        .sayfalama-butonlari {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 20px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }
        .sayfalama-butonlari .btn {
            border-radius: 30px;
            font-weight: bold;
            padding: 10px 25px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            color: #fff;
            background-color: #93041c;
            border: none;
            transition: 0.3s;
        }
        .sayfalama-butonlari .btn:hover {
            background-color: #f39c12;
            transform: translateY(-2px);
        }
    
