/* Hero Video/Image Card Styles */

.video-card-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px; /* Increased for larger visual */
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    /* aspect-ratio removed to adapt to image */
    background: #000;
    transform: perspective(1000px) rotateY(-2deg);
    transition: transform 0.3s ease;
    border: 4px solid #111827; /* Dark bezel look */
}

.video-card-wrapper:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.01);
}

.hero-card-image {
    width: 100%;
    height: auto;
    display: block;
}

.video-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 99px;
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 0 rgba(34, 197, 94, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

/* Update hero visual container */
.hero-visual {
    display: flex;
    justify-content: flex-end; /* Align right */
    align-items: center;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .hero-visual {
        justify-content: center;
        margin-top: 3rem;
        display: flex !important; /* Force show on mobile if hidden before */
    }
    
    .video-card-wrapper {
        max-width: 100%;
        transform: none; /* Remove 3D effect on mobile */
    }
}
