body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: url('assets/background.jpg') no-repeat center center fixed;
    background-size: cover;
    font-family: Arial, sans-serif;
    color: #d0e0d0;
    text-shadow: 0 0 5px #000;
}

/* Fog overlay (Neocities-safe version) */
body::after {
    content: "";
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: url('assets/fog.png') repeat;
    opacity: 0.15;
    pointer-events: none;
    animation: fogMove 30s linear infinite;
}

@keyframes fogMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-200px, -100px); }
}

#content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.4);
    padding: 20px;
    border-radius: 8px;
}

#mosquito {
    position: absolute;
    width: 50px;
    height: 50px;
    pointer-events: auto;
    cursor: crosshair;
}

#mosquito img {
    width: 100%;
    height: 100%;
}