body {
    background-color: #333;
    color: #eee;
    font-family: 'Verdana', sans-serif;
    overflow: hidden;
    text-align: center;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.container {
    position: relative;
    padding-top: 20vh;
    animation: shake 0.8s infinite;
}

h1 {
    font-size: 4em;
    color: #ffc400;
    text-shadow: 2px 2px 0 #000;
}

p {
    font-size: 1.8em;
}

.button-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

button {
    padding: 15px 30px;
    font-size: 1.2em;
    cursor: grab;
    border: 3px solid #555;
    background-color: #444;
    color: #ffc400;
    transition: all 0.2s;
    border-radius: 5px;
    width: 400px;
    max-width: 90%;
}

button:hover {
    background-color: #555;
    transform: translateY(-5px);
}

#annoyingRaccoon {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    border-radius: 50%;
    cursor: grab;
    transition: top 0.3s ease-out, left 0.3s ease-out;
    filter: drop-shadow(0 0 10px #000);
    z-index: 50;
    box-shadow: inset 0 0 0 10px #ffc400;
}

.trash-emoji {
    position: absolute;
    font-size: 2rem;
    opacity: 0.7;
}

#salute-container {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 100;
}

#trashcan-svg {
    width: 550px;
    height: 550px;
    z-index: 101;
    transition: transform 1s;
}

#trashcan-svg.open #trashcan-lid {
    transform: rotate(70deg);
}

.salute-particle {
    position: absolute;
    width: 10px;
    height: 10px;
    background: gold;
    border-radius: 50%;
    opacity: 1;
    animation: particle-explode 1.5s ease-out forwards;
    z-index: 99;
}

@keyframes particle-explode {
    to {
        transform: translate(var(--tx), var(--ty)) scale(0);
        opacity: 0;
    }
}

@keyframes movePath1 {
    0% { transform: translate(0, 0); } 25% { transform: translate(20vw, 30vh); } 50% { transform: translate(-10vw, 50vh); } 75% { transform: translate(30vw, -10vh); } 100% { transform: translate(0, 0); }
}
@keyframes movePath2 {
    0% { transform: translate(0, 0); } 33% { transform: translate(-25vw, -20vh); } 66% { transform: translate(15vw, 40vh); } 100% { transform: translate(0, 0); }
}
@keyframes movePath3 {
    0% { transform: translate(0, 0); } 50% { transform: translate(10vw, -30vh) rotate(360deg); } 100% { transform: translate(0, 0); }
}

@keyframes shake {
    0% { transform: translate(1px, 1px); }
    25% { transform: translate(-2px, -1px); }
    50% { transform: translate(2px, 2px); }
    75% { transform: translate(-1px, 1px); }
    100% { transform: translate(1px, -2px); }
}