* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f0ff 0%, #fff0f5 100%);
}

#daisy-field {
    width: 100%;
    height: 100%;
    position: relative;
}

.daisy {
    position: absolute;
    width: 60px;
    height: 60px;
    left: 0;
    top: 0;
    filter: blur(0.5px);
    transition: transform 0.3s ease-out;
}

.petal {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 20px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px 20px 0 0;
    transform-origin: 50% 100%;
    pointer-events: none;
}

.center {
    position: absolute;
    width: 37px;
    height: 37px;
    background: #FFD700;
    border-radius: 50%;
    left: 67%;
    top: 114%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}