@charset "utf-8";

#overlay { position: fixed; top: 0px; left: 0px; width: 100vw; height: 100vh; background: rgba(0, 0, 0, 0.6); display: none; z-index: 1000; }

#popup { width: 90vw; max-width: 400px; max-height: 90vh; background: transparent; border-radius: 10px; position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 1001; overflow: hidden; display: none; }

#popup img { width: 100%; height: auto; display: block; border-radius: 10px; }

.close-btn { position: absolute; top: 8px; right: 12px; font-size: 24px; font-weight: bold; color: white; cursor: pointer; z-index: 1002; text-shadow: black 0px 0px 5px; }