body {
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #ffe0ec, #fff5f9);
    flex-direction: column;
    text-align: center;
}

h1 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 30px;
}

.button-container {
    position: relative;
    width: 300px;
    height: 100px;
}

.catch-btn {
    padding: 15px 30px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    left: 50%;  /* initial position */
    top: 60px;  /* initial position */
    transform: translateX(-50%);
    transition: all 0.2s ease;
}

.yes-btn {
    background: #ff4d88;
    color: white;
    left: 50%;
    transform: translateX(-50%);
}

.no-btn {
    background: #ccc;
    color: #333;
    left: 50%;
    top: 60px;
    transform: translateX(-50%);
}

#message {
    margin-top: 30px;
    font-size: 18px;
    font-weight: 500;
    color: #ff4d88;
    min-height: 24px;
}