* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    overflow: hidden;
    cursor: default;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
}

.container {
    width: 100vw;
    height: 100vh;
    background-image: url('BD2DjbBaupK59Ez4Q5QnhWs3F6knDwLLNFv5RUJDN777.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Sneeze emoji styling */
.sneeze-emoji {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    font-size: 4rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    animation: pulse 2s infinite;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
}

.sneeze-emoji:hover {
    transform: translate(-50%, -50%) scale(1.3);
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.4));
}

/* Counter styling */
.counter {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    padding: 15px 25px;
    border-radius: 25px;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 30;
    text-align: center;
    border: 2px solid #ff4444;
    transition: all 0.3s ease;
}

.counter:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

#count {
    color: #ff4444;
    font-size: 2rem;
    font-weight: bolder;
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes bounce {
    0% {
        transform: translate(-50%, -50%) scale(0.3);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .sneeze-emoji {
        top: 50%;
        left: 50%;
        font-size: 3rem;
    }
    
    .counter {
        font-size: 1.2rem;
        padding: 12px 20px;
        top: 15px;
        right: 15px;
    }
    
    #count {
        font-size: 1.6rem;
    }
}
