/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #fceeff 0%, #f5f7fa 100%);
    overflow: hidden;
}

.container {
    text-align: center;
    background: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: transform 0.3s ease;
}

.gif {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

h1 {
    color: #333;
    margin-bottom: 2rem;
    font-weight: 600;
    font-size: 1.5rem;
}

.buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    /* Ensure buttons stay centered vertically if sizes change */
}

button {
    padding: 10px 30px;
    font-size: 1.1rem;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Smoother transition */
    font-weight: 500;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#yesBtn {
    background-color: #ff6b6b;
    color: white;
}

#yesBtn:hover {
    background-color: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(255, 107, 107, 0.3);
}

/* Class for enlarged state */
#yesBtn.grown {
    font-size: 2.2rem;
    /* Double text size */
    padding: 20px 60px;
    /* Double padding */
    background-color: #ff4757;
}

#noBtn {
    background-color: #f1f3f5;
    color: #333;
}

#noBtn:hover {
    background-color: #e9ecef;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}