body {
    margin: 0;
    padding: 50px; /* Increased margin for object removal zone */
    font-family: 'Comic Sans MS', cursive, sans-serif;
    background: linear-gradient(45deg, #87CEEB, #98FB98, #FFB6C1, #F0E68C);
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
    overflow: hidden;
    height: 100vh;
    box-sizing: border-box;
    /* Goose cursor with multiple fallbacks */
    cursor: url("goose-cursor.png") 16 16, url("goose.png") 16 16, pointer;
}

/* Override all cursor styles to always show goose */
*, *:hover, *:active, *:focus {
    cursor: url("goose-cursor.png") 16 16, url("goose.png") 16 16, pointer !important;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

#hidden-message {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    font-weight: bold;
    color: #2E8B57;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
    z-index: -1;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

#hidden-message.revealed {
    opacity: 1;
    z-index: 1000;
}

#game-container {
    position: relative;
    width: 100vw;
    height: 100vh;
}

.draggable-object {
    position: absolute;
    user-select: none;
    z-index: 100;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.draggable-object:hover {
    transform: scale(1.1);
}

.draggable-object:active {
    transform: scale(0.95);
}

/* Small objects */
.object-small {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
}

/* Medium objects */
.object-medium {
    width: 60px;
    height: 60px;
    font-size: 1.8rem;
}

/* Large objects */
.object-large {
    width: 80px;
    height: 80px;
    font-size: 2.5rem;
}

/* Shape variations */
.shape-circle {
    border-radius: 50%;
}

.shape-square {
    border-radius: 10px;
}

.shape-diamond {
    border-radius: 15px;
    transform: rotate(45deg);
}

.shape-diamond .object-content {
    transform: rotate(-45deg);
}

.shape-star {
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.shape-hexagon {
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

.shape-triangle {
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.bubble {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.8), rgba(173,216,230,0.6));
    border: 2px solid rgba(255,255,255,0.3);
    cursor: pointer;
    animation: float 6s ease-in-out infinite;
    z-index: 50;
    box-shadow: 0 0 20px rgba(173,216,230,0.4);
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(5deg); }
    50% { transform: translateY(-10px) rotate(-5deg); }
    75% { transform: translateY(-30px) rotate(3deg); }
}

.bubble::before {
    content: '';
    position: absolute;
    top: 15%;
    left: 25%;
    width: 30%;
    height: 30%;
    background: rgba(255,255,255,0.6);
    border-radius: 50%;
}

.pop-animation {
    animation: pop 0.3s ease-out forwards;
}

@keyframes pop {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
    100% { transform: scale(0); opacity: 0; }
}

/* Different object styles */
.object-1 { background: #FF6B6B; }
.object-2 { background: #4ECDC4; }
.object-3 { background: #45B7D1; }
.object-4 { background: #96CEB4; }
.object-5 { background: #FECA57; }
.object-6 { background: #FF9FF3; }
.object-7 { background: #54A0FF; }
.object-8 { background: #5F27CD; }
