        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }
        
        /****body {
           
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            background-color: #f8f9fa;
            padding: 20px;
        }**/
        
        .container2 {
            /*max-width: 1200px;
            width: 100%;*/
            padding-top: 20px;
            padding-bottom: 20px;
            font-family: 'Poppins', sans-serif;
        }
        
        p {
             font-family: 'Poppins', sans-serif;
             font-size: 14px;
             color: #000000;
        }
        .section-opinion {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 20px;
            color: #212529;
            position: relative;
            padding-bottom: 10px;
            text-align: left;
        }
        
        .section-opinion::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 120px;
            height: 3px;
            background: linear-gradient(90deg, #ff0000, #feb47b);
            border-radius: 3px;
        }
        
      
        .vlog-card {
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            cursor: pointer;
        }
        
        .vlog-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            
            z-index: 10;
        }
        
        .vlog-thumbnail {
            position: relative;
            padding-bottom: 56.25%; /* 16:9 aspect ratio */
            overflow: hidden;
        }
        
        .vlog-thumbnail img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        
        .vlog-card:hover .vlog-thumbnail img {
            transform: scale(1.08);
        }
        
        .play-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            background: rgba(0, 0, 0, 0.2);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .vlog-card:hover .play-overlay {
            opacity: 1;
        }
        
        .play-icon {
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            transform: scale(0.8);
            transition: all 0.3s ease;
        }
        
        .play-icon svg {
            width: 24px;
            height: 24px;
            fill: #ff7e5f;
            margin-left: 4px;
        }
        
        .vlog-card:hover .play-icon {
            transform: scale(1);
            background: #fff;
        }
        
        .vlog-content {
            padding: 20px;
        }
        
        .vlog-category {
            display: inline-block;
            font-size: 12px;
            font-weight: 500;
            padding: 4px 10px;
            border-radius: 30px;
            margin-bottom: -10px;
            color: #fff;
            background: linear-gradient(90deg, #ff0000, #bd4040);
            box-shadow: 0 4px 10px rgba(255, 126, 95, 0.2);
        }
        
        .vlog-title {
            font-size: 18px;
            font-weight: 600;
            color: #212529;
            margin-bottom: 8px;
            line-height: 1.4;
            transition: color 0.3s ease;
        }
        
        .vlog-card:hover .vlog-title {
            color: #ff5f5f;
        }
        
        .vlog-meta {
            display: flex;
            align-items: center;
            margin-top: 15px;
            padding-top: 15px;
            border-top: 1px solid #f2f2f2;
        }
        
        .vlog-author {
            display: flex;
            align-items: center;
        }
        
        .author-avatar {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 10px;
            border: 2px solid #fff;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }
        
        .author-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .author-name {
            font-size: 13px;
            font-weight: 500;
            color: #495057;
        }
        
        .vlog-stats {
            margin-left: auto;
            display: flex;
            align-items: center;
        }
        
        .stat-item {
            display: flex;
            align-items: center;
            margin-left: 15px;
            font-size: 13px;
            color: #6c757d;
        }
        
        .stat-item svg {
            width: 14px;
            height: 14px;
            margin-right: 5px;
            fill: #adb5bd;
        }
        
        .duration-badge {
            position: absolute;
            bottom: 10px;
            right: 10px;
            background-color: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 3px 8px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: 500;
            z-index: 2;
        }
        
        .ribbon {
            position: absolute;
            top: 10px;
            left: -15px;
            padding: 5px 15px;
            background: #4361ee;
            color: white;
            font-size: 11px;
            font-weight: 600;
            z-index: 5;
            transform: rotate(-3deg);
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }
        
        .ribbon::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            border-top: 10px solid #2a3eb1;
            border-left: 15px solid transparent;
        }
        
        .fresh {
            background: #4361ee;
        }
        
        .trending {
            background: #f72585;
        }
        
        .trending::after {
            border-top-color: #c01a69;
        }
        
        @media (max-width: 700px) {
            .vlog-grid {
                grid-template-columns: 1fr;
            }
            
            .section-title {
                font-size: 24px;
            }
        }
        
        /* Shimmer animation on hover */
        .vlog-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                90deg,
                transparent,
                rgba(255, 255, 255, 0.2),
                transparent
            );
            z-index: 1;
            transition: all 0.6s ease;
        }
        
        .vlog-card:hover::before {
            left: 100%;
        }