@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&family=Comic+Neue:wght@700&display=swap');

body {
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    min-height: 100vh;
    font-family: 'Comic Neue', cursive, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    background: rgba(255,255,255,0.92);
    border-radius: 30px;
    padding: 2rem;
    min-width: 320px;
    max-width: 480px;
    box-shadow: 0 12px 36px rgba(252,182,159, 0.2);
    margin: 2rem;
}

h1 {
    font-family: 'Fredoka One', cursive, sans-serif;
    color: #fc7e4c;
    font-size: 2.2rem;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 1.6rem;
}

.kitty-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.kitty-img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #fc7e4c;
    background: #eee3da;
    margin-bottom: 0.5rem;
    box-shadow: 0 4px 18px rgba(252,126,76,0.10);
    position: relative;
}

.desc-card {
    background: #fff5e4;
    border-radius: 16px;
    padding: 1rem 1.5rem;
    margin-top: 0.3rem;
    width: 100%;
    box-shadow: 0 2px 12px rgba(242,108,69,0.09);
    font-size: 1.08rem;
}

.desc-card h2 {
    font-family: 'Fredoka One', cursive, sans-serif;
    color: #4f3852;
    font-size: 1.28rem;
    margin: 0 0 0.72em 0;
}

.desc-card ul {
    margin: 0;
    padding: 0 0 0 1.1em;
    list-style: disc;
}

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

.bouncy-btn {
    display: block;
    margin: 2rem auto 0 auto;
    background: linear-gradient(90deg, #ffb09e, #f9c07d);
    color: #673066;
    border: none;
    border-radius: 50px;
    padding: 1rem 2.3rem;
    font-size: 1.3em;
    font-family: 'Fredoka One', cursive, sans-serif;
    letter-spacing: 1px;
    box-shadow: 0 6px 16px rgba(252,182,159, 0.15);
    cursor: pointer;
    transition: transform 0.08s cubic-bezier(.61,-0.29,.74,1.14), box-shadow 0.18s;
    outline: none;
}

.bouncy-btn:active {
    transform: scale(1.08) translateY(-5px);
    box-shadow: 0 16px 38px rgba(252,182,159,0.25);
}

@keyframes bounceBtn {
    0%, 100% {
        transform: translateY(0);
    }
    12% {
        transform: translateY(-10px);
    }
    25% {
        transform: translateY(0);
    }
}

@media (max-width: 470px) {
    .container {
        min-width: 0;
        padding: 1em;
    }
    .kitty-img {
        width: 150px;
        height: 150px;
    }

    .desc-card {
        padding: 0.66rem 0.5rem;
        font-size: 0.98rem;
    }
    .bouncy-btn {
        font-size: 1em;
        padding: 0.7rem 1.1rem;
    }
}