body {
    background-color: #f1e7d5;
    text-align: center;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.container {
    position: absolute;
    top: 43%; /* 向上移动10% */
    left: 50%;
    transform: translate(-50%, -50%);
}

#mainImage {
    width: 200px;
    transition: all 0.3s ease;
}

h1 {
    font-size: 28px;
    color: #68495b;
}

.avvv{
    position:fixed;
    width:90%;
    margin-left:5%;
    font-size:1.25rem;
    color:#fff;
    text-align:center;
    padding:1rem 0;
    border-radius:0.5rem;
    background-color:#cc33ff;
    bottom:0.4rem;
}

button {
    font-size: 18px;
    padding: 10px 20px;
    border: none;
    border-radius: 90px;
    cursor: pointer;
    margin: 10px;
    transition: all 0.3s ease;
}

#yes {
    background-color: #d4818e;
    color: white;
}

#no {
    background-color: #6784b1;
    color: white;
    position: relative;
}

.yes-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: ##f1e7d5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* 新增按钮样式 */
#make-btn, #more-btn {
    position: fixed;
    right: 20px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid white;
    background-color: rgba(0, 0, 0, 0.3);
    color: white;
    text-align: center;
    line-height: 48px;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 1000;
}

#make-btn {
    bottom: 110px;
    animation: float 3s ease-in-out infinite;
    animation-delay: 0.5s;
}

#more-btn {
    bottom: 50px;
    animation: float 3s ease-in-out infinite;
}

/* 浮动动画 */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* 悬停效果 */
#make-btn:hover, #more-btn:hover {
    transform: scale(1.1);
    background-color: rgba(0, 0, 0, 0.5);
}

/* 点击效果 */
#make-btn:active, #more-btn:active {
    transform: scale(0.95);
}

/* 响应式适配 */
@media (max-width: 375px) {
    #make-btn, #more-btn {
        width: 42px;
        height: 42px;
        line-height: 42px;
    }
}