body {
    font-family: 'DM Sans', sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #f4f4f4;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1, h2 {
    color: #333;
}

p {
    color: #555;
    line-height: 1.6;
}

.underline {
    text-decoration: underline;
    color: #000;
    cursor: pointer;
    position: relative;
}

.popup-image {
    position: absolute;
    display: none;
    width: 150px;
    height: 150px;
    border: 1px solid #ccc;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 10;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.popup-image.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.popup-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sticker {
    position: absolute;
    width: 50px;
    height: 50px;
    z-index: 5;
    cursor: move; /* Show move cursor when hovering over sticker */
    pointer-events: auto; /* Allows stickers to be interacted with */
}

.sticker img {
    max-width: 50px;
    height: auto;
    object-fit: cover;
}

.sticker-area {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* Allows clicks to pass through to other elements */
}

/* Responsive styles */
@media (max-width: 600px) {
    .container {
        padding: 10px;
    }
    .popup-image {
        width: 100px;
        height: 100px;
    }
    .sticker {
        width: 30px;
        height: 30px;
    }
    .sticker img {
        max-width: 30px;
    }
}
