.koa-wrapper {
    max-width: 500px;
    margin: 40px auto;
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}
.koa-question {
    font-size: 28px;
    margin-bottom: 30px;
    color: #333;
}
.koa-image-box img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.koa-buttons {
    margin-top: 40px;
}
.koa-btn {
    padding: 15px 50px;
    margin: 0 15px;
    font-size: 22px;
    border: none;
    border-radius: 10px;
    color: white;
    cursor: pointer;
}
.koa-btn.avoid { background: #e74c3c; }
.koa-btn.kiss { background: #27ae60; }
.koa-btn:hover { opacity: 0.9; }

/* Admin */
#koa-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.koa-thumb {
    position: relative;
    width: 120px;
    height: 120px;
}
.koa-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}
.koa-thumb .remove {
    position: absolute;
    top: 5px;
    right: 5px;
    background: rgba(0,0,0,0.7);
    color: white;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    text-align: center;
    line-height: 26px;
    cursor: pointer;
    font-size: 16px;
}