.hidden {
    display: none;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: #fdf5f8;
    overflow: hidden;
    transition: background 0.5s ease;
    text-align: center;
}

h1 {
    font-family: 'Dancing Script', cursive;
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

p {
    color: #555;
    font-size: 1.2rem;
    line-height: 1.6;
}

button {
    background-color: #ff4d6d;
    color: white;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    cursor: pointer;
    margin: 10px;
    transition: transform 0.3s ease, background-color 0.3s;
}

button:hover {
    background-color: #ff7385;
    transform: scale(1.1);
}

.button-container {
    display: flex;
    justify-content: center;
    gap: 20px;
}

#danger-image {
    width: 300px;
    height: 300px;
    background: url('laugh.png') no-repeat center/cover;
    margin: 20px auto;
    animation: shake 0.5s infinite alternate;
}

.heart, .devil {
    position: absolute;
    width: 50px;
    height: 50px;
    background-size: cover;
    animation: float 2s ease-in-out infinite;
}

.heart {
    background-image: url('heart.png');
}

.devil {
    background-image: url('danger.png');
}

@keyframes float {
    0% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(-30px); opacity: 0.7; }
    100% { transform: translateY(0); opacity: 1; }
}

#cat-image {
    margin: 20px auto;
    text-align: center;
}

#cat-image img {
    width: 300px;
    height: 300px;
}

.animate img {
    animation: shake 0.5s infinite alternate;
}

@keyframes shake {
    0% { transform: rotate(0deg); }
    50% { transform: rotate(5deg); }
    100% { transform: rotate(-5deg); }
}

/* Special background for specific sections */
.special-bg {
    background-color: #ffe4e1;
    padding: 20px;
    border-radius: 10px;
}
