:root {
    --primary-love: #ff4d6d;
    --secondary-love: #ff758f;
    --bg-gradient: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
    --glass-bg: rgba(255, 255, 255, 0.4);
    --glass-border: rgba(255, 255, 255, 0.6);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Tajawal', 'Outfit', sans-serif;
}

body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-gradient);
    overflow: hidden;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 8px 32px 0 rgba(255, 77, 109, 0.2);
    width: 100%;
    animation: fadeIn 1s ease-out;
    position: relative;
    transition: all 0.5s ease;
}

.gif-container {
    width: 100%;
    margin-bottom: 20px;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.2);
}

#bear-gif {
    width: 100%;
    max-height: 250px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

h1 {
    color: #4a4a4a;
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.05);
}

.btn-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    min-height: 80px;
}

button {
    padding: 12px 25px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

#yes-btn {
    background-color: var(--primary-love);
    color: white;
}

#yes-btn:hover {
    transform: scale(1.1);
    background-color: #ff0a54;
}

#no-btn {
    background-color: #ffffff;
    color: #a0a0a0;
    position: relative;
}

#no-btn:hover {
    background-color: #f0f0f0;
}

/* Response Style */
.success-msg {
    font-size: 1.5rem;
    color: var(--primary-love);
    margin-top: 20px;
    line-height: 1.6;
    animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes popIn {
    0% { transform: scale(0.5); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

/* Mobile specific tweaks */
@media (max-width: 480px) {
    h1 {
        font-size: 1.6rem;
    }
    .card {
        padding: 30px 15px;
    }
}
