body {
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 99%, #fecfef 100%);
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
    /* Prevent scrolling when button moves */
}

.container {
    text-align: center;
    background: rgba(255, 255, 255, 0.8);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    max-width: 90%;
}

h1 {
    font-family: 'Dancing Script', cursive;
    color: #d63384;
    font-size: 3.5rem;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    position: relative;
    /* Container context */
}

button {
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    font-weight: 600;
}

#yes-btn {
    background-color: #ff4757;
    color: white;
    box-shadow: 0 4px 15px rgba(255, 71, 87, 0.4);
}

#yes-btn:hover {
    transform: scale(1.1);
    background-color: #ff6b81;
}

#no-btn {
    background-color: #eccc68;
    color: #2f3542;
    box-shadow: 0 4px 15px rgba(236, 204, 104, 0.4);
    position: absolute;
    /* Needed for movement */
    left: 50%;
    /* Initial positioning relative to .buttons container might be tricky if absolute. */
    /* Let's keep it relative initially and switch to fixed/absolute in JS or CSS for movement. 
       Actually, to make it jump anywhere on screen, fixed/absolute on body is best. 
       But for initial layout, we want it next to Yes. 
       
       Strategy: 
       CSS: static/relative initially.
       JS: switch to absolute/fixed on first hover.
    */
    position: relative;
    transition: left 0.2s ease, top 0.2s ease;
}