* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 99%, #fecfef 100%);
    overflow: hidden; /* Prevent scrolling when button runs away */
}

/* Moving animated background to make it feel alive */
.background-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #ff758c 0%, #ff7eb3 100%);
    opacity: 0.8;
    z-index: -1;
    animation: gradientShift 10s ease infinite;
    background-size: 400% 400%;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.story-container {
    width: 100%;
    max-width: 600px;
    padding: 20px;
    position: relative;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.screen {
    position: absolute;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    visibility: hidden;
    width: 100%;
}

.screen.active {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.card.glassmorphism {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 8px 32px 0 rgba(255, 117, 140, 0.37);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.gif-container {
    width: 100%;
    max-width: 250px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.gif-container img {
    width: 100%;
    height: auto;
    display: block;
}

h1 {
    color: #4a154b;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.4;
    text-shadow: 0px 2px 5px rgba(255,255,255,0.8);
}

button {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.next-btn, .yes-btn {
    background: #ff477e;
    color: white;
    box-shadow: 0 4px 15px rgba(255, 71, 126, 0.4);
}

.next-btn:hover, .yes-btn:hover {
    background: #ff2a6d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 71, 126, 0.6);
}

.action-buttons {
    display: flex;
    gap: 20px;
    margin-top: 10px;
    position: relative; /* For absolutely positioning the NO button later if needed */
    width: 100%;
    justify-content: center;
    height: 50px; /* reserve space */
}

.no-btn {
    background: #f1f3f5;
    color: #495057;
    position: relative; /* Will be changed to absolute by JS */
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.5rem;
    }
    .card.glassmorphism {
        padding: 30px 20px;
    }
}
