body {
    margin: 0;
    padding: 0;
    font-family: 'Comic Sans MS', cursive, sans-serif;
    background: linear-gradient(45deg, #8B4513, #D2691E, #CD853F);
    background-size: 400% 400%;
    animation: gradientShift 8s ease-in-out infinite;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.container {
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem;
    border-radius: 50px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    position: relative;
    max-width: 600px;
    margin: 2rem;
    border: 5px dashed #8B4513;
}

.main-text {
    font-size: 3rem;
    color: #8B4513;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    animation: wobble 2s ease-in-out infinite;
}

@keyframes wobble {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-2deg); }
    75% { transform: rotate(2deg); }
}

.subtitle {
    font-size: 1.5rem;
    color: #654321;
    margin-bottom: 2rem;
    font-weight: 700;
}

.critter-emoji {
    font-size: 4rem;
    display: inline-block;
    margin: 0 10px;
    animation: bounce 2s infinite;
}

.critter-emoji:nth-child(2) { animation-delay: 0.2s; }
.critter-emoji:nth-child(3) { animation-delay: 0.4s; }
.critter-emoji:nth-child(4) { animation-delay: 0.6s; }
.critter-emoji:nth-child(5) { animation-delay: 0.8s; }

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-20px); }
    60% { transform: translateY(-10px); }
}

.construction-text {
    font-size: 1.2rem;
    color: #666;
    margin-top: 2rem;
    font-style: italic;
}

.stink-lines {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: #90EE90;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0px); }
    50% { transform: translateX(-50%) translateY(-15px); }
}

.footer {
    position: absolute;
    bottom: 10px;
    font-size: 0.9rem;
    color: #888;
}

.paw-prints {
    position: absolute;
    font-size: 1.5rem;
    color: rgba(139, 69, 19, 0.3);
    animation: walk 15s linear infinite;
}

@keyframes walk {
    0% { left: -100px; }
    100% { left: calc(100% + 100px); }
}

.paw-prints:nth-child(1) { top: 20%; animation-delay: 0s; }
.paw-prints:nth-child(2) { top: 70%; animation-delay: 5s; }
.paw-prints:nth-child(3) { top: 40%; animation-delay: 10s; }

@media (max-width: 768px) {
    .main-text { font-size: 2rem; }
    .subtitle { font-size: 1.2rem; }
    .container { padding: 2rem; margin: 1rem; }
    .critter-emoji { font-size: 3rem; }
}
