/* --- Project Iframe (PC Mode Simulation) --- */
.project-iframe {
    width: 400%;          /* 4x width for proper Desktop styling (~1000px-1200px equivalent) */
    height: 400%;         
    transform: scale(0.25); /* Scale back down (1/4) to fit */
    transform-origin: top left;
    border: none;
    display: block;
    transition: all 0.5s ease; /* For smooth Blur effect */
    /* Optional: Prevent scroll trapping if needed, but user might want interaction */
    pointer-events: none; 
}

/* Add Blur on Hover (Matching the Image effect) */
.browser-window:hover .project-iframe {
    filter: blur(4px) brightness(0.4);
}
