/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    overflow: hidden;
    width: 100vw;
    height: 100vh;
    background-color: #fff;
}

/* Download Protection CSS */
body, img {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
}

/* Full-screen Image Container */
.image-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    z-index: 1;
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: top center;
    pointer-events: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    padding-bottom: 50px;
}

/* Email Button Container */
.email-button-container {
    position: fixed;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    display: flex;
    justify-content: center;
}

/* Email Button Styling */
.email-button {
    background-color: #ffffff;
    color: #000000;
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: inline-block;
    letter-spacing: 0.5px;
}

.email-button:hover {
    background-color: #f5f5f5;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.email-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* No Image Message */
.no-image-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-size: 18px;
    text-align: center;
    z-index: 10;
}

/* Tablet Breakpoint (768px and below) */
/*@media screen and (max-width: 768px) {*/

/*    .email-button {*/
/*        padding: 10px 20px;*/
/*        font-size: 14px;*/
/*        border-radius: 20px;*/
/*    }*/
/*}*/

/* Mobile Breakpoint (480px and below) */
/*@media screen and (max-width: 480px) {*/

/*    .email-button {*/
/*        padding: 8px 16px;*/
/*        font-size: 12px;*/
/*        border-radius: 18px;*/
/*    }*/
/*}*/

/* Prevent image context menu on iOS Safari */
img {
    -webkit-touch-callout: none;
}

/* Additional protection layers */
.image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
