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

/* Ensure full height and disable scrolling */
html,
body {
    height: 100%;
    overflow: hidden;
}

/* Body styling */
body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #fff;
    text-align: center;
    user-select: none;
}

/* Image styling */
img {
    width: 300px;
    max-width: 90%;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    pointer-events: none;
    -webkit-user-drag: none;
    user-drag: none;
    user-select: none;
}

/* Header */
header {
    font-size: 24px;
    margin-top: 20px;
}

/* Contact */
.contact-wrapper {
    margin-top: 150px;
    font-size: 16px;
    user-select: text;
}

/* Google Translate ignore class */
/* Removed user-select here to keep original copy behavior */

/* Responsive */
@media (max-width: 600px) {
    header {
        font-size: 18px;
    }

    .contact-wrapper {
        font-size: 14px;
    }
}
