body {
    font-family: "Comic Sans MS", sans-serif;
    background: linear-gradient(135deg, #ff9a9e, #fad0c4);
    height: 100vh;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

h1 {
    color: #ffffff;
    text-shadow: 3px 3px #ff49a1;
    font-size: 3rem;
    margin-bottom: 20px;
    animation: wiggle 2s infinite ease-in-out;
}

@keyframes wiggle {
    0%, 100% { transform: rotate(-2deg); }
    50% { transform: rotate(2deg); }
}

#destinyButton {
    padding: 15px 35px;
    font-size: 1.5rem;
    border: none;
    border-radius: 50px;
    background: #ff69b4;
    color: white;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 0 20px rgba(255, 105, 180, 0.7);
}

#destinyButton:hover {
    transform: scale(1.1);
    background: #ff85c9;
}

.floating {
    position: absolute;
    font-size: 2rem;
    animation: floatUp 3s linear forwards;
    pointer-events: none;
}

@keyframes floatUp {
    from { transform: translateY(0); opacity: 1; }
    to { transform: translateY(-120px); opacity: 0; }
}
