import React from 'react';
export default function TicketCard({ activated, videoRef, onVideoEnded, onFirstFrame, className = "" }) {
return (
{/* SVG Clip Path definitions */}
{/* Animated glow halo behind the card */}
{/* Video Player */}
{/* Subtle sheen sweep that plays while idle */}
{!activated &&
}
);
}