body {
    background-color: #DCD7C7;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    overflow: hidden;
    font-family: Arial, sans-serif;
    position: relative;
}

.lucky-cactus-container {
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1 {
    font-size: 3em;
    color: #4a5c53;
    margin: 0 0 20px 0;
}

.instructions-text {
    font-size: 1.2em;
    color: #6c7a89;
    margin: 20px 0 0 0;
}

#cactus {
    cursor: pointer;
    font-size: 200px;
    transition: transform 0.1s ease-out;
    user-select: none;
}

#cactus.tapped {
    transform: scale(1.05);
}

#emojis-display {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.emoji {
    font-size: 40px;
    position: absolute;
    animation: popUp 1.2s forwards;
    opacity: 0;
    user-select: none;
}

@keyframes popUp {
    0% {
        opacity: 0;
        transform: translate(-50%, 0) scale(0.5);
    }
    30% {
        opacity: 1;
        transform: translate(-50%, -20px) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -100px) scale(1);
    }
}

.cactus-emoji {
    display: block;
}