.center-app-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.center-app-icon {
    flex: 0 0 40px;
    margin-right: 0;
}

.community-panel {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid #d8e0e8;
}

.community-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.community-like-form {
    margin: 0;
}

.like-button {
    min-width: 110px;
}

.like-button.liked {
    background: #2563eb;
    color: #fff;
    border-color: #2563eb;
}

.community-count {
    color: #5b6572;
    font-size: 13px;
}

.comment-form textarea {
    min-height: 110px;
    margin-bottom: 12px;
}

.comment-list {
    display: grid;
    gap: 12px;
    margin-top: 16px;
}

.comment-card {
    padding: 14px 16px;
    border: 1px solid #d8e0e8;
    border-radius: 12px;
    background: #f9fbfd;
}

.comment-meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
    color: #5b6572;
    font-size: 13px;
}

.comment-content {
    margin: 0;
    color: #1f2933;
    line-height: 1.65;
    white-space: pre-wrap;
    word-break: break-word;
}

.comment-author {
    color: #1d4ed8;
    text-decoration: none;
}

.comment-author:hover {
    text-decoration: underline;
}

.report-form textarea {
    min-height: 88px;
}

.profile-user-card {
    display: grid;
    gap: 12px;
}

.profile-meta {
    color: #5b6572;
    font-size: 13px;
}

.profile-app-list {
    display: grid;
    gap: 12px;
}

.comment-empty {
    color: #6b7280;
    margin: 0;
}

@media (max-width: 768px) {
    .community-bar,
    .comment-meta,
    .center-app-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .like-button {
        width: 100%;
    }

    .center-app-icon {
        width: 40px;
        height: 40px;
    }
}
