:root {
    --soft-pink: #fce4ec;
    --deep-pink: #f06292;
    --white: #ffffff;
    --bg-color: #fff0f3;
}

body {
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--bg-color);
    font-family: 'Segoe UI', sans-serif;
    overflow: hidden;
}

.card {
    background: var(--white);
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(240, 98, 146, 0.2);
    text-align: center;
    position: relative;
    width: 400px;
    min-height: 450px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
}

/* KEDİ TASARIMI */
.cat {
    position: relative;
    width: 120px;
    height: 90px;
    background: var(--soft-pink);
    margin-bottom: 30px;
    border-radius: 50px 50px 35px 35px;
    transition: all 0.5s ease;
}

.ear {
    position: absolute;
    top: -12px;
    width: 35px;
    height: 35px;
    background: var(--soft-pink);
    border-radius: 8px;
    transition: transform 0.5s;
}
.ear.left { left: 5px; transform: rotate(-15deg); }
.ear.right { right: 5px; transform: rotate(15deg); }

/* ÜZGÜN DURUM */
.cat.extra-sad .ear.left { transform: rotate(-45deg) translateY(10px); }
.cat.extra-sad .ear.right { transform: rotate(45deg) translateY(10px); }

.eye {
    position: absolute;
    top: 35px;
    width: 12px;
    height: 12px;
    background: #444;
    border-radius: 50%;
    transition: all 0.3s;
}
.eye.left { left: 30px; }
.eye.right { right: 30px; }

.cat.extra-sad .eye {
    height: 15px;
    background: #5cace2;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.mouth {
    position: absolute;
    top: 55px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 10px;
    border: 2px solid #444;
    border-top: none;
    border-radius: 0 0 12px 12px;
}

.sad-mouth {
    border-bottom: none;
    border-top: 2px solid #444;
    border-radius: 12px 12px 0 0;
    top: 60px;
}

h1 {
    color: var(--deep-pink);
    font-size: 24px;
    margin-bottom: 30px;
    min-height: 60px;
}

/* BUTONLAR */
.btn-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 100%;
}

button {
    padding: 12px 25px;
    border: none;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    white-space: nowrap;
}

#yesBtn { background-color: var(--deep-pink); color: white; }
#noBtn { background-color: #eee; color: #777; position: relative; }

.run-away {
    position: fixed !important;
    transition: left 0.3s ease-out, top 0.3s ease-out !important;
}

/* ANİMASYONLAR */
.heart-rain {
    position: absolute;
    font-size: 25px;
    pointer-events: none;
    animation: fall 3s linear forwards;
    z-index: 1001;
}

@keyframes fall {
    to { transform: translateY(100vh) rotate(360deg); opacity: 0; }
}

@keyframes jump {
    from { transform: translateY(0); }
    to { transform: translateY(-20px); }
}

.happy-animation {
    animation: jump 0.5s infinite alternate ease-in-out;
}