/* Base Styles using Variables */
:root {
    --primary-color: #ff4d6d;
    --secondary-color: #ff8fa3;
    --bg-color: #fff0f3;
    --text-color: #590d22;
    --white: #ffffff;
    --btn-shadow: rgba(255, 77, 109, 0.4);
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-color);
    background-image: radial-gradient(#ffccd5 2px, transparent 2px);
    background-size: 30px 30px;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    color: var(--text-color);
}

.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(5px);
    max-width: 90%;
    width: 400px;
}

h1 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.image-container {
    margin-bottom: 1.5rem;
}

.valentine-img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    /* Placeholder style until image is loaded */
    min-height: 200px; 
    object-fit: cover;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
    min-height: 60px; /* Ensure space for buttons */
}

.btn {
    padding: 12px 30px;
    font-size: 1.2rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    font-weight: 600;
}

.btn-yes {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 15px var(--btn-shadow);
}

.btn-yes:hover {
    transform: scale(1.1);
    background-color: #ff2a55;
}

.btn-no {
    background-color: var(--white);
    color: var(--text-color);
    border: 2px solid var(--secondary-color);
}

/* Make sure the No button can be absolute positioned when moving */
#noBtn {
    position: relative; 
    transition: all 0.3s ease; /* Smooth movement initially */
}
