/* Custom font for a modern look */
body {
    font-family: 'Inter', sans-serif;
}

/* Ensure the image scales down to fit the available space */
#video-frame {
    /* Removed transition property for instant frame changes (as per original JS comment) */
    width: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Instagram gradient for better aesthetic */
.instagram-icon {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2.5rem; /* Base icon size */
}