 .featured12-container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .featured12-split-container {
            display: flex;
            gap: 30px;
            margin: 20px 0;
            transform-style: preserve-3d;
            perspective: 1000px;
        }
        
        .featured12-main-content {
            flex: 7; /* 70% */
            transform-style: preserve-3d;
			display: none;
        }
        
        .featured12-side-content {
            flex: 3; /* 30% */
            display: flex;
            flex-direction: column;
            gap: 25px;
            transform-style: preserve-3d;
        }
        
        .featured12-card {
            background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
            transform-style: preserve-3d;
            transition: transform 0.5s ease, box-shadow 0.5s ease;
            
            position: relative;
        }
        
       
        
        .featured12-card-image {
            height: 380px;
            overflow: hidden;
            position: relative;
        }
        
        .featured12-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .featured12-card:hover .featured12-card-image img {
            transform: scale(1.05);
        }
        
        .featured12-image-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
            padding: 30px;
            transform: translateZ(30px);
            z-index: 2;
        }
        
        
        .featured12-card-title {
            font-size: 28px;
            font-weight: 800;
            margin-bottom: 20px;
            background: linear-gradient(45deg, #ffffff, #838383);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            transform: translateZ(40px);
        }
        

        
        .featured12-watch-now-btn {
            background: linear-gradient(45deg, #000000db, #00000091);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(255, 0, 51, 0.4);
            transform: translateZ(40px);
            display: flex;
            align-items: center;
            gap: 10px;
            
        }
        
        .featured12-watch-now-btn:hover {
            transform: translateZ(40px) translateY(-5px);
            box-shadow: 0 10px 20px rgba(255, 0, 51, 0.6);
            background: linear-gradient(45deg, #ff3366, #ff0033);
        }
        
        .featured12-blog-post {
            background: linear-gradient(145deg, #1a1a1a, #0d0d0d00);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
            transform-style: preserve-3d;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            display: flex;
            flex-direction: column;
        }
        
        .featured12-blog-post:hover {
            transform: translateZ(15px) rotateY(5deg);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 0, 51, 0.2);
        }
        
        .featured12-blog-image {
            height: 180px;
            overflow: hidden;
        }
        
        .featured12-blog-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        
        .featured12-blog-post:hover .featured12-blog-image img {
            transform: scale(1.1);
        }
        
        .featured12-blog-content {
            padding: 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        
        .featured12-blog-date {
            color: #ff0033;
            font-size: 12px;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .featured12-blog-title {
            font-size: 16px;
            font-weight: 500;
            
            color: white;
        }
        

        
        .featured12-section-title {
            font-size: 32px;
            font-weight: 800;
            text-align: center;
            margin: 40px 0 30px;
            background: linear-gradient(45deg, #ff0033, #ff9999);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }
        
        
        @media (max-width: 1100px) {
            .featured12-card-image {
    height: 200px;
    
}

.featured12-image-overlay {
    display: flex;
    flex-direction: column;
        align-items: flex-end;
}

.featured12-card-title {
    font-size:16px;
    display:none;
}

.featured12-watch-now-btn {
    font-size:16px;
    padding:10px 20px;
}

.featured12-blog-title {
    font-size: 15px;
    font-weight: 500;
    color: white;
	line-height:30px;
}
    
        }