* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5e6d3 0%, #e8d4b8 50%, #d4a574 100%);
    font-family: 'Georgia', serif;
    overflow: hidden;
}

.container {
    text-align: center;
    position: relative;
}

.cookie {
    font-size: 8rem;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 20px 30px rgba(139, 90, 43, 0.3));
}

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

h1 {
    font-size: 3rem;
    color: #5c3d2e;
    margin-top: 1rem;
    text-shadow: 2px 2px 4px rgba(92, 61, 46, 0.2);
}

p {
    font-size: 1.25rem;
    color: #8b5a2b;
    margin-top: 0.5rem;
    font-style: italic;
}

.steam {
    position: absolute;
    top: -2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}

.steam span {
    width: 8px;
    height: 40px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: steam 2s ease-out infinite;
}

.steam span:nth-child(2) {
    animation-delay: 0.3s;
    height: 50px;
}

.steam span:nth-child(3) {
    animation-delay: 0.6s;
    height: 35px;
}

@keyframes steam {
    0% {
        opacity: 0;
        transform: translateY(0) scaleX(1);
    }
    15% {
        opacity: 0.8;
    }
    50% {
        opacity: 0.4;
        transform: translateY(-40px) scaleX(1.5);
    }
    100% {
        opacity: 0;
        transform: translateY(-80px) scaleX(2);
    }
}
