body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #E6F3FF; /* Cinnamoroll light blue */
    font-family: 'Quicksand', sans-serif;
    /* Cute polka dot background */
    background-image: radial-gradient(#ffffff 15%, transparent 15%), radial-gradient(#ffffff 15%, transparent 15%);
    background-size: 40px 40px;
    background-position: 0 0, 20px 20px;
}

.card {
    background-color: #ffffff;
    border-radius: 25px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 90%;
    border: 4px solid #BFE0FF;
    position: relative;
}

h1 {
    font-family: 'Fredoka One', cursive;
    color: #8CBEFF; /* Classic Cinnamoroll blue */
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 0px #FFF0F5;
}

img {
    max-width: 100%;
    border-radius: 15px;
    margin-bottom: 20px;
    height: 250px;
    object-fit: cover;
}

p {
    color: #666;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    font-weight: 700;
}

button {
    background-color: #FFB3C6; /* Soft pink */
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-family: 'Fredoka One', cursive;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.2s, background-color 0.2s;
    box-shadow: 0 4px 15px rgba(255, 179, 198, 0.5);
}

button:hover {
    background-color: #FF99B3;
    transform: scale(1.05);
}

button:active {
    transform: scale(0.95);
}

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

.bounce {
    animation: bounce 2s infinite ease-in-out;
}