* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #fce4ec;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    text-align: center;
    max-width: 500px;
    padding: 20px;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

h1 {
    color: #e91e63;
    margin-bottom: 10px;
    font-size: 2.5rem;
}

.subtitle {
    color: #9e9e9e;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.gif-container {
    margin: 20px 0;
}

.bear-gif {
    max-width: 100%;
    border-radius: 10px;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.button {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.yes-button {
    background-color: #4caf50;
    color: white;
}

.yes-button:hover {
    background-color: #388e3c;
    transform: scale(1.05);
}

.no-button {
    background-color: #f44336;
    color: white;
    /* Başlangıçta biraz daha küçük */
    transform: scale(0.9);
}

.no-button:hover {
    background-color: #d32f2f;
}

/* Success page styles */
.success-page {
    padding: 30px;
}

.success-message {
    font-size: 2.5rem;
    color: #e91e63;
    margin-bottom: 15px;
}

.love-message {
    font-size: 2rem;
    color: #e91e63;
    margin-bottom: 25px;
}
