.kiyas-card {
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
    transition: transform 0.2s ease;
}

.kiyas-card:hover {
    transform: translateY(-4px);
}

.kiyas-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    flex-wrap: nowrap;
    position: relative;
}

.kiyas-image {
    width: 40%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.kiyas-image img {
    max-width: 100%;
    max-height: 200px;
    object-fit: contain;
}

.vote-count {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255, 255, 255, 0.6);
    /* yarı saydam beyaz */
    color: #4F6CFF;
    /* ana tema rengi */
    font-size: 14px;
    font-weight: 600;
    padding: 4px 10px;
    border: 1px solid #4F6CFF;
    border-radius: 20px;
    backdrop-filter: blur(4px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
    z-index: 2;
}


.vote-count.right {
    left: auto;
    right: 12px;
}

.vote-count:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.05);
}

.vs-middle {
    width: 20%;
    text-align: center;
    font-size: 24px;
    color: #888;
    font-weight: bold;
}

.kiyas-title {
    padding: 12px 20px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #222;
    border-top: 1px solid #eee;
}

@media screen and (max-width: 768px) {
    .kiyas-inner {
        flex-direction: column;
    }

    .kiyas-image,
    .vs-middle {
        width: 100%;
        margin-bottom: 10px;
    }

    .vote-count,
    .vote-count.right {
        top: 10px;
        left: 10px;
        right: auto;
    }

    .vote-count.right {
        left: auto;
        right: 10px;
    }
}